blob: f6da826d3bd6656dd39ba0be5ecd2de6f190a3fa [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) {
Denys Vlasenkocf511092017-07-18 15:58:02 +02002290 char **p;
Denys Vlasenko5b2cc0a2017-07-18 02:44:06 +02002291 bb_error_msg("%s: readonly variable", *s);
Denys Vlasenkocf511092017-07-18 15:58:02 +02002292 /*
2293 * "VAR=V BLTIN" unsets VARs after BLTIN completes.
2294 * If VAR is readonly, leaving it in the list
2295 * after asssignment error (msg above)
2296 * causes doubled error message later, on unset.
2297 */
2298 debug_printf_env("removing/freeing '%s' element\n", *s);
2299 free(*s);
2300 p = s;
2301 do { *p = p[1]; p++; } while (*p);
Denys Vlasenko5b2cc0a2017-07-18 02:44:06 +02002302 goto next;
2303 }
2304 /* Remove variable from global linked list */
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002305 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002306 *var_pp = var_p->next;
2307 /* Add it to returned list */
2308 var_p->next = old;
2309 old = var_p;
2310 }
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02002311 set_local_var(*s, SETFLAG_EXPORT);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002312 }
Denys Vlasenko5b2cc0a2017-07-18 02:44:06 +02002313 next:
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002314 s++;
2315 }
2316 return old;
2317}
2318
2319
2320/*
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002321 * Unicode helper
2322 */
2323static void reinit_unicode_for_hush(void)
2324{
2325 /* Unicode support should be activated even if LANG is set
2326 * _during_ shell execution, not only if it was set when
2327 * shell was started. Therefore, re-check LANG every time:
2328 */
Denys Vlasenko841f8332014-08-13 10:09:49 +02002329 if (ENABLE_FEATURE_CHECK_UNICODE_IN_ENV
2330 || ENABLE_UNICODE_USING_LOCALE
2331 ) {
2332 const char *s = get_local_var_value("LC_ALL");
2333 if (!s) s = get_local_var_value("LC_CTYPE");
2334 if (!s) s = get_local_var_value("LANG");
2335 reinit_unicode(s);
2336 }
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002337}
2338
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002339/*
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002340 * in_str support (strings, and "strings" read from files).
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002341 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002342
2343#if ENABLE_HUSH_INTERACTIVE
Denys Vlasenko4074d492016-09-30 01:49:53 +02002344/* To test correct lineedit/interactive behavior, type from command line:
2345 * echo $P\
2346 * \
2347 * AT\
2348 * H\
2349 * \
Denys Vlasenko10ad6222017-04-17 16:13:32 +02002350 * It exercises a lot of corner cases.
Denys Vlasenko4074d492016-09-30 01:49:53 +02002351 */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002352static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002353{
Mike Frysingerec2c6552009-03-28 12:24:44 +00002354 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002355 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00002356 if (G.PS1 == NULL)
2357 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002358 G.PS2 = get_local_var_value("PS2");
Denys Vlasenko690ad242009-04-30 21:24:24 +02002359 } else {
Mike Frysingerec2c6552009-03-28 12:24:44 +00002360 G.PS1 = NULL;
Denys Vlasenko690ad242009-04-30 21:24:24 +02002361 }
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002362 if (G.PS2 == NULL)
2363 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002364}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002365static const char *setup_prompt_string(int promptmode)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002366{
2367 const char *prompt_str;
2368 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00002369 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
2370 /* Set up the prompt */
2371 if (promptmode == 0) { /* PS1 */
2372 free((char*)G.PS1);
Denys Vlasenko6db47842009-09-05 20:15:17 +02002373 /* bash uses $PWD value, even if it is set by user.
2374 * It uses current dir only if PWD is unset.
2375 * We always use current dir. */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002376 G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#');
Mike Frysingerec2c6552009-03-28 12:24:44 +00002377 prompt_str = G.PS1;
2378 } else
2379 prompt_str = G.PS2;
2380 } else
2381 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denys Vlasenko4074d492016-09-30 01:49:53 +02002382 debug_printf("prompt_str '%s'\n", prompt_str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002383 return prompt_str;
2384}
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002385static int get_user_input(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002386{
2387 int r;
2388 const char *prompt_str;
2389
2390 prompt_str = setup_prompt_string(i->promptmode);
Denys Vlasenko8391c482010-05-22 17:50:43 +02002391# if ENABLE_FEATURE_EDITING
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002392 for (;;) {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002393 reinit_unicode_for_hush();
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002394 if (G.flag_SIGINT) {
2395 /* There was ^C'ed, make it look prettier: */
2396 bb_putchar('\n');
2397 G.flag_SIGINT = 0;
2398 }
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002399 /* buglet: SIGINT will not make new prompt to appear _at once_,
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002400 * only after <Enter>. (^C works immediately) */
Denys Vlasenko0448c552016-09-29 20:25:44 +02002401 r = read_line_input(G.line_input_state, prompt_str,
2402 G.user_input_buf, CONFIG_FEATURE_EDITING_MAX_LEN-1,
2403 /*timeout*/ -1
2404 );
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002405 /* read_line_input intercepts ^C, "convert" it to SIGINT */
2406 if (r == 0) {
2407 write(STDOUT_FILENO, "^C", 2);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002408 raise(SIGINT);
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002409 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002410 check_and_run_traps();
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002411 if (r != 0 && !G.flag_SIGINT)
2412 break;
2413 /* ^C or SIGINT: repeat */
2414 G.last_exitcode = 128 + SIGINT;
2415 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002416 if (r < 0) {
2417 /* EOF/error detected */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002418 i->p = NULL;
2419 i->peek_buf[0] = r = EOF;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002420 return r;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002421 }
Denys Vlasenko4074d492016-09-30 01:49:53 +02002422 i->p = G.user_input_buf;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002423 return (unsigned char)*i->p++;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002424# else
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002425 for (;;) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002426 G.flag_SIGINT = 0;
Denys Vlasenkob8709032011-05-08 21:20:01 +02002427 if (i->last_char == '\0' || i->last_char == '\n') {
2428 /* Why check_and_run_traps here? Try this interactively:
2429 * $ trap 'echo INT' INT; (sleep 2; kill -INT $$) &
2430 * $ <[enter], repeatedly...>
2431 * Without check_and_run_traps, handler never runs.
2432 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002433 check_and_run_traps();
Denys Vlasenkob8709032011-05-08 21:20:01 +02002434 fputs(prompt_str, stdout);
2435 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002436 fflush_all();
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002437//FIXME: here ^C or SIGINT will have effect only after <Enter>
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002438 r = fgetc(i->file);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002439 /* In !ENABLE_FEATURE_EDITING we don't use read_line_input,
2440 * no ^C masking happens during fgetc, no special code for ^C:
2441 * it generates SIGINT as usual.
2442 */
2443 check_and_run_traps();
2444 if (G.flag_SIGINT)
2445 G.last_exitcode = 128 + SIGINT;
2446 if (r != '\0')
2447 break;
2448 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002449 return r;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002450# endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002451}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002452/* This is the magic location that prints prompts
2453 * and gets data back from the user */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002454static int fgetc_interactive(struct in_str *i)
2455{
2456 int ch;
2457 /* If it's interactive stdin, get new line. */
2458 if (G_interactive_fd && i->file == stdin) {
2459 /* Returns first char (or EOF), the rest is in i->p[] */
2460 ch = get_user_input(i);
2461 i->promptmode = 1; /* PS2 */
2462 } else {
2463 /* Not stdin: script file, sourced file, etc */
2464 do ch = fgetc(i->file); while (ch == '\0');
2465 }
2466 return ch;
2467}
2468#else
2469static inline int fgetc_interactive(struct in_str *i)
2470{
2471 int ch;
2472 do ch = fgetc(i->file); while (ch == '\0');
2473 return ch;
2474}
2475#endif /* INTERACTIVE */
2476
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002477static int i_getch(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002478{
2479 int ch;
2480
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002481 if (!i->file) {
2482 /* string-based in_str */
2483 ch = (unsigned char)*i->p;
2484 if (ch != '\0') {
2485 i->p++;
2486 i->last_char = ch;
2487 return ch;
2488 }
2489 return EOF;
2490 }
2491
2492 /* FILE-based in_str */
2493
Denys Vlasenko4074d492016-09-30 01:49:53 +02002494#if ENABLE_FEATURE_EDITING
2495 /* This can be stdin, check line editing char[] buffer */
2496 if (i->p && *i->p != '\0') {
2497 ch = (unsigned char)*i->p++;
2498 goto out;
2499 }
2500#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002501 /* peek_buf[] is an int array, not char. Can contain EOF. */
2502 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002503 if (ch != 0) {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002504 int ch2 = i->peek_buf[1];
2505 i->peek_buf[0] = ch2;
2506 if (ch2 == 0) /* very likely, avoid redundant write */
2507 goto out;
2508 i->peek_buf[1] = 0;
2509 goto out;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002510 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002511
Denys Vlasenko4074d492016-09-30 01:49:53 +02002512 ch = fgetc_interactive(i);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002513 out:
Denis Vlasenko913a2012009-04-05 22:17:04 +00002514 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02002515 i->last_char = ch;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002516 return ch;
2517}
2518
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002519static int i_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002520{
2521 int ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002522
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002523 if (!i->file) {
2524 /* string-based in_str */
2525 /* Doesn't report EOF on NUL. None of the callers care. */
2526 return (unsigned char)*i->p;
2527 }
2528
2529 /* FILE-based in_str */
2530
Denys Vlasenko4074d492016-09-30 01:49:53 +02002531#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002532 /* This can be stdin, check line editing char[] buffer */
2533 if (i->p && *i->p != '\0')
2534 return (unsigned char)*i->p;
2535#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002536 /* peek_buf[] is an int array, not char. Can contain EOF. */
2537 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002538 if (ch != 0)
2539 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002540
Denys Vlasenko4074d492016-09-30 01:49:53 +02002541 /* Need to get a new char */
2542 ch = fgetc_interactive(i);
2543 debug_printf("file_peek: got '%c' %d\n", ch, ch);
2544
2545 /* Save it by either rolling back line editing buffer, or in i->peek_buf[0] */
2546#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
2547 if (i->p) {
2548 i->p -= 1;
2549 return ch;
2550 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002551#endif
Denys Vlasenko4074d492016-09-30 01:49:53 +02002552 i->peek_buf[0] = ch;
2553 /*i->peek_buf[1] = 0; - already is */
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002554 return ch;
2555}
2556
Denys Vlasenko4074d492016-09-30 01:49:53 +02002557/* Only ever called if i_peek() was called, and did not return EOF.
2558 * IOW: we know the previous peek saw an ordinary char, not EOF, not NUL,
2559 * not end-of-line. Therefore we never need to read a new editing line here.
2560 */
2561static int i_peek2(struct in_str *i)
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002562{
Denys Vlasenko4074d492016-09-30 01:49:53 +02002563 int ch;
2564
2565 /* There are two cases when i->p[] buffer exists.
2566 * (1) it's a string in_str.
Denys Vlasenko08755f92016-09-30 02:02:25 +02002567 * (2) It's a file, and we have a saved line editing buffer.
Denys Vlasenko4074d492016-09-30 01:49:53 +02002568 * In both cases, we know that i->p[0] exists and not NUL, and
2569 * the peek2 result is in i->p[1].
2570 */
2571 if (i->p)
2572 return (unsigned char)i->p[1];
2573
2574 /* Now we know it is a file-based in_str. */
2575
2576 /* peek_buf[] is an int array, not char. Can contain EOF. */
2577 /* Is there 2nd char? */
2578 ch = i->peek_buf[1];
2579 if (ch == 0) {
2580 /* We did not read it yet, get it now */
2581 do ch = fgetc(i->file); while (ch == '\0');
2582 i->peek_buf[1] = ch;
2583 }
2584
2585 debug_printf("file_peek2: got '%c' %d\n", ch, ch);
2586 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002587}
2588
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002589static void setup_file_in_str(struct in_str *i, FILE *f)
2590{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002591 memset(i, 0, sizeof(*i));
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002592 /* i->promptmode = 0; - PS1 (memset did it) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002593 i->file = f;
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002594 /* i->p = NULL; */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002595}
2596
2597static void setup_string_in_str(struct in_str *i, const char *s)
2598{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002599 memset(i, 0, sizeof(*i));
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002600 /* i->promptmode = 0; - PS1 (memset did it) */
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002601 /*i->file = NULL */;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002602 i->p = s;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002603}
2604
2605
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002606/*
2607 * o_string support
2608 */
2609#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00002610
Denis Vlasenko0b677d82009-04-10 13:49:10 +00002611static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002612{
2613 o->length = 0;
Denys Vlasenko38292b62010-09-05 14:49:40 +02002614 o->has_quoted_part = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002615 if (o->data)
2616 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002617}
2618
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002619static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002620{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00002621 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002622 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00002623}
2624
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002625static ALWAYS_INLINE void o_free_unsafe(o_string *o)
2626{
2627 free(o->data);
2628}
2629
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002630static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002631{
2632 if (o->length + len > o->maxlen) {
Denys Vlasenko46e64982016-09-29 19:50:55 +02002633 o->maxlen += (2 * len) | (B_CHUNK-1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002634 o->data = xrealloc(o->data, 1 + o->maxlen);
2635 }
2636}
2637
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002638static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002639{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002640 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002641 if (o->length < o->maxlen) {
2642 /* likely. avoid o_grow_by() call */
2643 add:
2644 o->data[o->length] = ch;
2645 o->length++;
2646 o->data[o->length] = '\0';
2647 return;
2648 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002649 o_grow_by(o, 1);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002650 goto add;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002651}
2652
Denys Vlasenko657086a2016-09-29 18:07:42 +02002653#if 0
2654/* Valid only if we know o_string is not empty */
2655static void o_delchr(o_string *o)
2656{
2657 o->length--;
2658 o->data[o->length] = '\0';
2659}
2660#endif
2661
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002662static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002663{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002664 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002665 memcpy(&o->data[o->length], str, len);
2666 o->length += len;
2667 o->data[o->length] = '\0';
2668}
2669
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002670static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00002671{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002672 o_addblock(o, str, strlen(str));
2673}
Denys Vlasenko2e48d532010-05-22 17:30:39 +02002674
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002675#if !BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002676static void nommu_addchr(o_string *o, int ch)
2677{
2678 if (o)
2679 o_addchr(o, ch);
2680}
2681#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002682# define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002683#endif
2684
2685static void o_addstr_with_NUL(o_string *o, const char *str)
2686{
2687 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00002688}
2689
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002690/*
Denys Vlasenko238081f2010-10-03 14:26:26 +02002691 * HUSH_BRACE_EXPANSION code needs corresponding quoting on variable expansion side.
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002692 * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v.
2693 * Apparently, on unquoted $v bash still does globbing
2694 * ("v='*.txt'; echo $v" prints all .txt files),
2695 * but NOT brace expansion! Thus, there should be TWO independent
2696 * quoting mechanisms on $v expansion side: one protects
2697 * $v from brace expansion, and other additionally protects "$v" against globbing.
2698 * We have only second one.
2699 */
2700
Denys Vlasenko9e800222010-10-03 14:28:04 +02002701#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002702# define MAYBE_BRACES "{}"
2703#else
2704# define MAYBE_BRACES ""
2705#endif
2706
Eric Andersen25f27032001-04-26 23:22:31 +00002707/* My analysis of quoting semantics tells me that state information
2708 * is associated with a destination, not a source.
2709 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002710static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00002711{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002712 int sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002713 char *found = strchr("*?[\\" MAYBE_BRACES, ch);
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002714 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002715 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002716 o_grow_by(o, sz);
2717 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002718 o->data[o->length] = '\\';
2719 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00002720 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002721 o->data[o->length] = ch;
2722 o->length++;
2723 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002724}
2725
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002726static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002727{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002728 int sz = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002729 if ((o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)
2730 && strchr("*?[\\" MAYBE_BRACES, ch)
2731 ) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002732 sz++;
2733 o->data[o->length] = '\\';
2734 o->length++;
2735 }
2736 o_grow_by(o, sz);
2737 o->data[o->length] = ch;
2738 o->length++;
2739 o->data[o->length] = '\0';
2740}
2741
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002742static void o_addqblock(o_string *o, const char *str, int len)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002743{
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002744 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002745 char ch;
2746 int sz;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002747 int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002748 if (ordinary_cnt > len) /* paranoia */
2749 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002750 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002751 if (ordinary_cnt == len)
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002752 return; /* NUL is already added by o_addblock */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002753 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002754 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002755
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002756 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002757 sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002758 if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002759 sz++;
2760 o->data[o->length] = '\\';
2761 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002762 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002763 o_grow_by(o, sz);
2764 o->data[o->length] = ch;
2765 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002766 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002767 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002768}
2769
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002770static void o_addQblock(o_string *o, const char *str, int len)
2771{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002772 if (!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002773 o_addblock(o, str, len);
2774 return;
2775 }
2776 o_addqblock(o, str, len);
2777}
2778
Denys Vlasenko38292b62010-09-05 14:49:40 +02002779static void o_addQstr(o_string *o, const char *str)
2780{
2781 o_addQblock(o, str, strlen(str));
2782}
2783
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002784/* A special kind of o_string for $VAR and `cmd` expansion.
2785 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002786 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002787 * list[i] contains an INDEX (int!) into this string data.
2788 * It means that if list[] needs to grow, data needs to be moved higher up
2789 * but list[i]'s need not be modified.
2790 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002791 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002792 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
2793 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002794#if DEBUG_EXPAND || DEBUG_GLOB
2795static void debug_print_list(const char *prefix, o_string *o, int n)
2796{
2797 char **list = (char**)o->data;
2798 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2799 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002800
2801 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002802 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 +02002803 prefix, list, n, string_start, o->length, o->maxlen,
2804 !!(o->o_expflags & EXP_FLAG_GLOB),
2805 o->has_quoted_part,
2806 !!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002807 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002808 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002809 fdprintf(2, " list[%d]=%d '%s' %p\n", i, (int)(uintptr_t)list[i],
2810 o->data + (int)(uintptr_t)list[i] + string_start,
2811 o->data + (int)(uintptr_t)list[i] + string_start);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002812 i++;
2813 }
2814 if (n) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002815 const char *p = o->data + (int)(uintptr_t)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002816 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002817 fdprintf(2, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002818 }
2819}
2820#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002821# define debug_print_list(prefix, o, n) ((void)0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002822#endif
2823
2824/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
2825 * in list[n] so that it points past last stored byte so far.
2826 * It returns n+1. */
2827static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002828{
2829 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00002830 int string_start;
2831 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002832
2833 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00002834 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2835 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002836 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002837 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002838 /* list[n] points to string_start, make space for 16 more pointers */
2839 o->maxlen += 0x10 * sizeof(list[0]);
2840 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00002841 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002842 memmove(list + n + 0x10, list + n, string_len);
2843 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002844 } else {
2845 debug_printf_list("list[%d]=%d string_start=%d\n",
2846 n, string_len, string_start);
2847 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002848 } else {
2849 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00002850 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
2851 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002852 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
2853 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002854 o->has_empty_slot = 0;
2855 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002856 o->has_quoted_part = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002857 list[n] = (char*)(uintptr_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002858 return n + 1;
2859}
2860
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002861/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002862static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002863{
2864 char **list = (char**)o->data;
2865 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2866
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002867 return ((int)(uintptr_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002868}
2869
Denys Vlasenko9e800222010-10-03 14:28:04 +02002870#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002871/* There in a GNU extension, GLOB_BRACE, but it is not usable:
2872 * first, it processes even {a} (no commas), second,
2873 * I didn't manage to make it return strings when they don't match
Denys Vlasenko160746b2009-11-16 05:51:18 +01002874 * existing files. Need to re-implement it.
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002875 */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002876
2877/* Helper */
2878static int glob_needed(const char *s)
2879{
2880 while (*s) {
2881 if (*s == '\\') {
2882 if (!s[1])
2883 return 0;
2884 s += 2;
2885 continue;
2886 }
2887 if (*s == '*' || *s == '[' || *s == '?' || *s == '{')
2888 return 1;
2889 s++;
2890 }
2891 return 0;
2892}
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002893/* Return pointer to next closing brace or to comma */
2894static const char *next_brace_sub(const char *cp)
2895{
2896 unsigned depth = 0;
2897 cp++;
2898 while (*cp != '\0') {
2899 if (*cp == '\\') {
2900 if (*++cp == '\0')
2901 break;
2902 cp++;
2903 continue;
Denys Vlasenko3581c622010-01-25 13:39:24 +01002904 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002905 if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002906 break;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002907 if (*cp++ == '{')
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002908 depth++;
2909 }
2910
2911 return *cp != '\0' ? cp : NULL;
2912}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002913/* Recursive brace globber. Note: may garble pattern[]. */
2914static int glob_brace(char *pattern, o_string *o, int n)
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002915{
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002916 char *new_pattern_buf;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002917 const char *begin;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002918 const char *next;
2919 const char *rest;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002920 const char *p;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002921 size_t rest_len;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002922
2923 debug_printf_glob("glob_brace('%s')\n", pattern);
2924
2925 begin = pattern;
2926 while (1) {
2927 if (*begin == '\0')
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002928 goto simple_glob;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002929 if (*begin == '{') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002930 /* Find the first sub-pattern and at the same time
2931 * find the rest after the closing brace */
2932 next = next_brace_sub(begin);
2933 if (next == NULL) {
2934 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002935 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002936 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002937 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002938 /* "{abc}" with no commas - illegal
2939 * brace expr, disregard and skip it */
2940 begin = next + 1;
2941 continue;
2942 }
2943 break;
2944 }
2945 if (*begin == '\\' && begin[1] != '\0')
2946 begin++;
2947 begin++;
2948 }
2949 debug_printf_glob("begin:%s\n", begin);
2950 debug_printf_glob("next:%s\n", next);
2951
2952 /* Now find the end of the whole brace expression */
2953 rest = next;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002954 while (*rest != '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002955 rest = next_brace_sub(rest);
2956 if (rest == NULL) {
2957 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002958 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002959 }
2960 debug_printf_glob("rest:%s\n", rest);
2961 }
2962 rest_len = strlen(++rest) + 1;
2963
2964 /* We are sure the brace expression is well-formed */
2965
2966 /* Allocate working buffer large enough for our work */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002967 new_pattern_buf = xmalloc(strlen(pattern));
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002968
2969 /* We have a brace expression. BEGIN points to the opening {,
2970 * NEXT points past the terminator of the first element, and REST
2971 * points past the final }. We will accumulate result names from
2972 * recursive runs for each brace alternative in the buffer using
2973 * GLOB_APPEND. */
2974
2975 p = begin + 1;
2976 while (1) {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002977 /* Construct the new glob expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002978 memcpy(
2979 mempcpy(
2980 mempcpy(new_pattern_buf,
2981 /* We know the prefix for all sub-patterns */
2982 pattern, begin - pattern),
2983 p, next - p),
2984 rest, rest_len);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002985
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002986 /* Note: glob_brace() may garble new_pattern_buf[].
2987 * That's why we re-copy prefix every time (1st memcpy above).
2988 */
2989 n = glob_brace(new_pattern_buf, o, n);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002990 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002991 /* We saw the last entry */
2992 break;
2993 }
2994 p = next + 1;
2995 next = next_brace_sub(next);
2996 }
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002997 free(new_pattern_buf);
2998 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002999
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003000 simple_glob:
3001 {
3002 int gr;
3003 glob_t globdata;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003004
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003005 memset(&globdata, 0, sizeof(globdata));
3006 gr = glob(pattern, 0, NULL, &globdata);
3007 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
3008 if (gr != 0) {
3009 if (gr == GLOB_NOMATCH) {
3010 globfree(&globdata);
3011 /* NB: garbles parameter */
3012 unbackslash(pattern);
3013 o_addstr_with_NUL(o, pattern);
3014 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
3015 return o_save_ptr_helper(o, n);
3016 }
3017 if (gr == GLOB_NOSPACE)
3018 bb_error_msg_and_die(bb_msg_memory_exhausted);
3019 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
3020 * but we didn't specify it. Paranoia again. */
3021 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
3022 }
3023 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
3024 char **argv = globdata.gl_pathv;
3025 while (1) {
3026 o_addstr_with_NUL(o, *argv);
3027 n = o_save_ptr_helper(o, n);
3028 argv++;
3029 if (!*argv)
3030 break;
3031 }
3032 }
3033 globfree(&globdata);
3034 }
3035 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003036}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003037/* Performs globbing on last list[],
3038 * saving each result as a new list[].
3039 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003040static int perform_glob(o_string *o, int n)
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003041{
3042 char *pattern, *copy;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003043
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003044 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003045 if (!o->data)
3046 return o_save_ptr_helper(o, n);
3047 pattern = o->data + o_get_last_ptr(o, n);
3048 debug_printf_glob("glob pattern '%s'\n", pattern);
3049 if (!glob_needed(pattern)) {
3050 /* unbackslash last string in o in place, fix length */
3051 o->length = unbackslash(pattern) - o->data;
3052 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
3053 return o_save_ptr_helper(o, n);
3054 }
3055
3056 copy = xstrdup(pattern);
3057 /* "forget" pattern in o */
3058 o->length = pattern - o->data;
3059 n = glob_brace(copy, o, n);
3060 free(copy);
3061 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003062 debug_print_list("perform_glob returning", o, n);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003063 return n;
3064}
3065
Denys Vlasenko238081f2010-10-03 14:26:26 +02003066#else /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003067
3068/* Helper */
3069static int glob_needed(const char *s)
3070{
3071 while (*s) {
3072 if (*s == '\\') {
3073 if (!s[1])
3074 return 0;
3075 s += 2;
3076 continue;
3077 }
3078 if (*s == '*' || *s == '[' || *s == '?')
3079 return 1;
3080 s++;
3081 }
3082 return 0;
3083}
3084/* Performs globbing on last list[],
3085 * saving each result as a new list[].
3086 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003087static int perform_glob(o_string *o, int n)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003088{
3089 glob_t globdata;
3090 int gr;
3091 char *pattern;
3092
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003093 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003094 if (!o->data)
3095 return o_save_ptr_helper(o, n);
3096 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003097 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003098 if (!glob_needed(pattern)) {
3099 literal:
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003100 /* unbackslash last string in o in place, fix length */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003101 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003102 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003103 return o_save_ptr_helper(o, n);
3104 }
3105
3106 memset(&globdata, 0, sizeof(globdata));
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003107 /* Can't use GLOB_NOCHECK: it does not unescape the string.
3108 * If we glob "*.\*" and don't find anything, we need
3109 * to fall back to using literal "*.*", but GLOB_NOCHECK
3110 * will return "*.\*"!
3111 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003112 gr = glob(pattern, 0, NULL, &globdata);
3113 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003114 if (gr != 0) {
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003115 if (gr == GLOB_NOMATCH) {
3116 globfree(&globdata);
3117 goto literal;
3118 }
3119 if (gr == GLOB_NOSPACE)
3120 bb_error_msg_and_die(bb_msg_memory_exhausted);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01003121 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
3122 * but we didn't specify it. Paranoia again. */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003123 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003124 }
3125 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
3126 char **argv = globdata.gl_pathv;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003127 /* "forget" pattern in o */
3128 o->length = pattern - o->data;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003129 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003130 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003131 n = o_save_ptr_helper(o, n);
3132 argv++;
3133 if (!*argv)
3134 break;
3135 }
3136 }
3137 globfree(&globdata);
3138 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003139 debug_print_list("perform_glob returning", o, n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003140 return n;
3141}
3142
Denys Vlasenko238081f2010-10-03 14:26:26 +02003143#endif /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01003144
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003145/* If o->o_expflags & EXP_FLAG_GLOB, glob the string so far remembered.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003146 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003147static int o_save_ptr(o_string *o, int n)
3148{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003149 if (o->o_expflags & EXP_FLAG_GLOB) {
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00003150 /* If o->has_empty_slot, list[n] was already globbed
3151 * (if it was requested back then when it was filled)
3152 * so don't do that again! */
3153 if (!o->has_empty_slot)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02003154 return perform_glob(o, n); /* o_save_ptr_helper is inside */
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00003155 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003156 return o_save_ptr_helper(o, n);
3157}
3158
3159/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003160static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003161{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003162 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003163 int string_start;
3164
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003165 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
3166 if (DEBUG_EXPAND)
3167 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00003168 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003169 list = (char**)o->data;
3170 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
3171 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003172 while (n) {
3173 n--;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003174 list[n] = o->data + (int)(uintptr_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003175 }
3176 return list;
3177}
3178
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003179static void free_pipe_list(struct pipe *pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003180
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003181/* Returns pi->next - next pipe in the list */
3182static struct pipe *free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003183{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003184 struct pipe *next;
3185 int i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003186
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003187 debug_printf_clean("free_pipe (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003188 for (i = 0; i < pi->num_cmds; i++) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003189 struct command *command;
3190 struct redir_struct *r, *rnext;
3191
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003192 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003193 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003194 if (command->argv) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003195 if (DEBUG_CLEAN) {
3196 int a;
3197 char **p;
3198 for (a = 0, p = command->argv; *p; a++, p++) {
3199 debug_printf_clean(" argv[%d] = %s\n", a, *p);
3200 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003201 }
3202 free_strings(command->argv);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003203 //command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003204 }
3205 /* not "else if": on syntax error, we may have both! */
3206 if (command->group) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003207 debug_printf_clean(" begin group (cmd_type:%d)\n",
3208 command->cmd_type);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003209 free_pipe_list(command->group);
3210 debug_printf_clean(" end group\n");
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003211 //command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003212 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00003213 /* else is crucial here.
3214 * If group != NULL, child_func is meaningless */
3215#if ENABLE_HUSH_FUNCTIONS
3216 else if (command->child_func) {
3217 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
3218 command->child_func->parent_cmd = NULL;
3219 }
3220#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003221#if !BB_MMU
3222 free(command->group_as_string);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003223 //command->group_as_string = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003224#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003225 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003226 debug_printf_clean(" redirect %d%s",
3227 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003228 /* guard against the case >$FOO, where foo is unset or blank */
3229 if (r->rd_filename) {
3230 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
3231 free(r->rd_filename);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003232 //r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003233 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003234 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003235 rnext = r->next;
3236 free(r);
3237 }
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003238 //command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003239 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003240 free(pi->cmds); /* children are an array, they get freed all at once */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003241 //pi->cmds = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003242#if ENABLE_HUSH_JOB
3243 free(pi->cmdtext);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003244 //pi->cmdtext = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003245#endif
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003246
3247 next = pi->next;
3248 free(pi);
3249 return next;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003250}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003251
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003252static void free_pipe_list(struct pipe *pi)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003253{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003254 while (pi) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003255#if HAS_KEYWORDS
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003256 debug_printf_clean("pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003257#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003258 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003259 pi = free_pipe(pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003260 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003261}
3262
3263
Denys Vlasenkob36abf22010-09-05 14:50:59 +02003264/*** Parsing routines ***/
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003265
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003266#ifndef debug_print_tree
3267static void debug_print_tree(struct pipe *pi, int lvl)
3268{
3269 static const char *const PIPE[] = {
3270 [PIPE_SEQ] = "SEQ",
3271 [PIPE_AND] = "AND",
3272 [PIPE_OR ] = "OR" ,
3273 [PIPE_BG ] = "BG" ,
3274 };
3275 static const char *RES[] = {
3276 [RES_NONE ] = "NONE" ,
3277# if ENABLE_HUSH_IF
3278 [RES_IF ] = "IF" ,
3279 [RES_THEN ] = "THEN" ,
3280 [RES_ELIF ] = "ELIF" ,
3281 [RES_ELSE ] = "ELSE" ,
3282 [RES_FI ] = "FI" ,
3283# endif
3284# if ENABLE_HUSH_LOOPS
3285 [RES_FOR ] = "FOR" ,
3286 [RES_WHILE] = "WHILE",
3287 [RES_UNTIL] = "UNTIL",
3288 [RES_DO ] = "DO" ,
3289 [RES_DONE ] = "DONE" ,
3290# endif
3291# if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
3292 [RES_IN ] = "IN" ,
3293# endif
3294# if ENABLE_HUSH_CASE
3295 [RES_CASE ] = "CASE" ,
3296 [RES_CASE_IN ] = "CASE_IN" ,
3297 [RES_MATCH] = "MATCH",
3298 [RES_CASE_BODY] = "CASE_BODY",
3299 [RES_ESAC ] = "ESAC" ,
3300# endif
3301 [RES_XXXX ] = "XXXX" ,
3302 [RES_SNTX ] = "SNTX" ,
3303 };
3304 static const char *const CMDTYPE[] = {
3305 "{}",
3306 "()",
3307 "[noglob]",
3308# if ENABLE_HUSH_FUNCTIONS
3309 "func()",
3310# endif
3311 };
3312
3313 int pin, prn;
3314
3315 pin = 0;
3316 while (pi) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003317 fdprintf(2, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003318 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
3319 prn = 0;
3320 while (prn < pi->num_cmds) {
3321 struct command *command = &pi->cmds[prn];
3322 char **argv = command->argv;
3323
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003324 fdprintf(2, "%*s cmd %d assignment_cnt:%d",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003325 lvl*2, "", prn,
3326 command->assignment_cnt);
3327 if (command->group) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003328 fdprintf(2, " group %s: (argv=%p)%s%s\n",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003329 CMDTYPE[command->cmd_type],
3330 argv
3331# if !BB_MMU
3332 , " group_as_string:", command->group_as_string
3333# else
3334 , "", ""
3335# endif
3336 );
3337 debug_print_tree(command->group, lvl+1);
3338 prn++;
3339 continue;
3340 }
3341 if (argv) while (*argv) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003342 fdprintf(2, " '%s'", *argv);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003343 argv++;
3344 }
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003345 fdprintf(2, "\n");
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003346 prn++;
3347 }
3348 pi = pi->next;
3349 pin++;
3350 }
3351}
3352#endif /* debug_print_tree */
3353
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003354static struct pipe *new_pipe(void)
3355{
Eric Andersen25f27032001-04-26 23:22:31 +00003356 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003357 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003358 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003359 return pi;
3360}
3361
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003362/* Command (member of a pipe) is complete, or we start a new pipe
3363 * if ctx->command is NULL.
3364 * No errors possible here.
3365 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003366static int done_command(struct parse_context *ctx)
3367{
3368 /* The command is really already in the pipe structure, so
3369 * advance the pipe counter and make a new, null command. */
3370 struct pipe *pi = ctx->pipe;
3371 struct command *command = ctx->command;
3372
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003373#if 0 /* Instead we emit error message at run time */
3374 if (ctx->pending_redirect) {
3375 /* For example, "cmd >" (no filename to redirect to) */
3376 die_if_script("syntax error: %s", "invalid redirect");
3377 ctx->pending_redirect = NULL;
3378 }
3379#endif
3380
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003381 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003382 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003383 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003384 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003385 }
3386 pi->num_cmds++;
3387 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003388 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003389 } else {
3390 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3391 }
3392
3393 /* Only real trickiness here is that the uncommitted
3394 * command structure is not counted in pi->num_cmds. */
3395 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003396 ctx->command = command = &pi->cmds[pi->num_cmds];
3397 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003398 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003399 return pi->num_cmds; /* used only for 0/nonzero check */
3400}
3401
3402static void done_pipe(struct parse_context *ctx, pipe_style type)
3403{
3404 int not_null;
3405
3406 debug_printf_parse("done_pipe entered, followup %d\n", type);
3407 /* Close previous command */
3408 not_null = done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003409#if HAS_KEYWORDS
3410 ctx->pipe->pi_inverted = ctx->ctx_inverted;
3411 ctx->ctx_inverted = 0;
3412 ctx->pipe->res_word = ctx->ctx_res_w;
3413#endif
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003414 if (type == PIPE_BG && ctx->list_head != ctx->pipe) {
3415 /* Necessary since && and || have precedence over &:
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003416 * "cmd1 && cmd2 &" must spawn both cmds, not only cmd2,
3417 * in a backgrounded subshell.
3418 */
3419 struct pipe *pi;
3420 struct command *command;
3421
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003422 /* Is this actually this construct, all pipes end with && or ||? */
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003423 pi = ctx->list_head;
3424 while (pi != ctx->pipe) {
3425 if (pi->followup != PIPE_AND && pi->followup != PIPE_OR)
3426 goto no_conv;
3427 pi = pi->next;
3428 }
3429
3430 debug_printf_parse("BG with more than one pipe, converting to { p1 &&...pN; } &\n");
3431 pi->followup = PIPE_SEQ; /* close pN _not_ with "&"! */
3432 pi = xzalloc(sizeof(*pi));
3433 pi->followup = PIPE_BG;
3434 pi->num_cmds = 1;
3435 pi->cmds = xzalloc(sizeof(pi->cmds[0]));
3436 command = &pi->cmds[0];
3437 if (CMD_NORMAL != 0) /* "if xzalloc didn't do that already" */
3438 command->cmd_type = CMD_NORMAL;
3439 command->group = ctx->list_head;
3440#if !BB_MMU
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003441 command->group_as_string = xstrndup(
3442 ctx->as_string.data,
3443 ctx->as_string.length - 1 /* do not copy last char, "&" */
3444 );
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003445#endif
3446 /* Replace all pipes in ctx with one newly created */
3447 ctx->list_head = ctx->pipe = pi;
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02003448 } else {
3449 no_conv:
3450 ctx->pipe->followup = type;
Denys Vlasenkoee553b92017-07-15 22:51:55 +02003451 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003452
3453 /* Without this check, even just <enter> on command line generates
3454 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003455 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003456 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00003457#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003458 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00003459#endif
3460#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003461 || ctx->ctx_res_w == RES_DONE
3462 || ctx->ctx_res_w == RES_FOR
3463 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00003464#endif
3465#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003466 || ctx->ctx_res_w == RES_ESAC
3467#endif
3468 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003469 struct pipe *new_p;
3470 debug_printf_parse("done_pipe: adding new pipe: "
3471 "not_null:%d ctx->ctx_res_w:%d\n",
3472 not_null, ctx->ctx_res_w);
3473 new_p = new_pipe();
3474 ctx->pipe->next = new_p;
3475 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003476 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003477 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003478 * This is used to control execution.
3479 * RES_FOR and RES_IN are NOT sticky (needed to support
3480 * cases where variable or value happens to match a keyword):
3481 */
3482#if ENABLE_HUSH_LOOPS
3483 if (ctx->ctx_res_w == RES_FOR
3484 || ctx->ctx_res_w == RES_IN)
3485 ctx->ctx_res_w = RES_NONE;
3486#endif
3487#if ENABLE_HUSH_CASE
3488 if (ctx->ctx_res_w == RES_MATCH)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003489 ctx->ctx_res_w = RES_CASE_BODY;
3490 if (ctx->ctx_res_w == RES_CASE)
3491 ctx->ctx_res_w = RES_CASE_IN;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003492#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003493 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003494 /* Create the memory for command, roughly:
3495 * ctx->pipe->cmds = new struct command;
3496 * ctx->command = &ctx->pipe->cmds[0];
3497 */
3498 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003499 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003500 }
3501 debug_printf_parse("done_pipe return\n");
3502}
3503
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003504static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003505{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003506 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003507 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003508 /* Create the memory for command, roughly:
3509 * ctx->pipe->cmds = new struct command;
3510 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003511 */
3512 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003513}
3514
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003515/* If a reserved word is found and processed, parse context is modified
3516 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003517 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003518#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003519struct reserved_combo {
3520 char literal[6];
3521 unsigned char res;
3522 unsigned char assignment_flag;
3523 int flag;
3524};
3525enum {
3526 FLAG_END = (1 << RES_NONE ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003527# if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003528 FLAG_IF = (1 << RES_IF ),
3529 FLAG_THEN = (1 << RES_THEN ),
3530 FLAG_ELIF = (1 << RES_ELIF ),
3531 FLAG_ELSE = (1 << RES_ELSE ),
3532 FLAG_FI = (1 << RES_FI ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003533# endif
3534# if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003535 FLAG_FOR = (1 << RES_FOR ),
3536 FLAG_WHILE = (1 << RES_WHILE),
3537 FLAG_UNTIL = (1 << RES_UNTIL),
3538 FLAG_DO = (1 << RES_DO ),
3539 FLAG_DONE = (1 << RES_DONE ),
3540 FLAG_IN = (1 << RES_IN ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003541# endif
3542# if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003543 FLAG_MATCH = (1 << RES_MATCH),
3544 FLAG_ESAC = (1 << RES_ESAC ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003545# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003546 FLAG_START = (1 << RES_XXXX ),
3547};
3548
3549static const struct reserved_combo* match_reserved_word(o_string *word)
3550{
Eric Andersen25f27032001-04-26 23:22:31 +00003551 /* Mostly a list of accepted follow-up reserved words.
3552 * FLAG_END means we are done with the sequence, and are ready
3553 * to turn the compound list into a command.
3554 * FLAG_START means the word must start a new compound list.
3555 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003556 static const struct reserved_combo reserved_list[] = {
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003557# if ENABLE_HUSH_IF
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003558 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3559 { "if", RES_IF, MAYBE_ASSIGNMENT, FLAG_THEN | FLAG_START },
3560 { "then", RES_THEN, MAYBE_ASSIGNMENT, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3561 { "elif", RES_ELIF, MAYBE_ASSIGNMENT, FLAG_THEN },
3562 { "else", RES_ELSE, MAYBE_ASSIGNMENT, FLAG_FI },
3563 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003564# endif
3565# if ENABLE_HUSH_LOOPS
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003566 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3567 { "while", RES_WHILE, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3568 { "until", RES_UNTIL, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3569 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3570 { "do", RES_DO, MAYBE_ASSIGNMENT, FLAG_DONE },
3571 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003572# endif
3573# if ENABLE_HUSH_CASE
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003574 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3575 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003576# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003577 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003578 const struct reserved_combo *r;
3579
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02003580 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003581 if (strcmp(word->data, r->literal) == 0)
3582 return r;
3583 }
3584 return NULL;
3585}
Denis Vlasenkobb929512009-04-16 10:59:40 +00003586/* Return 0: not a keyword, 1: keyword
3587 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003588static int reserved_word(o_string *word, struct parse_context *ctx)
3589{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003590# if ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003591 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003592 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003593 };
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003594# endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003595 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003596
Denys Vlasenko38292b62010-09-05 14:49:40 +02003597 if (word->has_quoted_part)
Denis Vlasenkobb929512009-04-16 10:59:40 +00003598 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003599 r = match_reserved_word(word);
3600 if (!r)
3601 return 0;
3602
3603 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003604# if ENABLE_HUSH_CASE
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003605 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
3606 /* "case word IN ..." - IN part starts first MATCH part */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003607 r = &reserved_match;
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003608 } else
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003609# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003610 if (r->flag == 0) { /* '!' */
3611 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003612 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00003613 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00003614 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003615 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003616 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003617 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003618 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003619 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003620
Denys Vlasenko9e55a152017-07-10 10:01:12 +02003621 old = xmemdup(ctx, sizeof(*ctx));
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003622 debug_printf_parse("push stack %p\n", old);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003623 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003624 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003625 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003626 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003627 ctx->ctx_res_w = RES_SNTX;
3628 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003629 } else {
3630 /* "{...} fi" is ok. "{...} if" is not
3631 * Example:
3632 * if { echo foo; } then { echo bar; } fi */
3633 if (ctx->command->group)
3634 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003635 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00003636
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003637 ctx->ctx_res_w = r->res;
3638 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003639 word->o_assignment = r->assignment_flag;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003640 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
Denis Vlasenkobb929512009-04-16 10:59:40 +00003641
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003642 if (ctx->old_flag & FLAG_END) {
3643 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003644
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003645 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003646 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003647 old = ctx->stack;
3648 old->command->group = ctx->list_head;
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003649 old->command->cmd_type = CMD_NORMAL;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003650# if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02003651 /* At this point, the compound command's string is in
3652 * ctx->as_string... except for the leading keyword!
3653 * Consider this example: "echo a | if true; then echo a; fi"
3654 * ctx->as_string will contain "true; then echo a; fi",
3655 * with "if " remaining in old->as_string!
3656 */
3657 {
3658 char *str;
3659 int len = old->as_string.length;
3660 /* Concatenate halves */
3661 o_addstr(&old->as_string, ctx->as_string.data);
3662 o_free_unsafe(&ctx->as_string);
3663 /* Find where leading keyword starts in first half */
3664 str = old->as_string.data + len;
3665 if (str > old->as_string.data)
3666 str--; /* skip whitespace after keyword */
3667 while (str > old->as_string.data && isalpha(str[-1]))
3668 str--;
3669 /* Ugh, we're done with this horrid hack */
3670 old->command->group_as_string = xstrdup(str);
3671 debug_printf_parse("pop, remembering as:'%s'\n",
3672 old->command->group_as_string);
3673 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003674# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003675 *ctx = *old; /* physical copy */
3676 free(old);
3677 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003678 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003679}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003680#endif /* HAS_KEYWORDS */
Eric Andersen25f27032001-04-26 23:22:31 +00003681
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003682/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003683 * Normal return is 0. Syntax errors return 1.
3684 * Note: on return, word is reset, but not o_free'd!
3685 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003686static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003687{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003688 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003689
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003690 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denys Vlasenko38292b62010-09-05 14:49:40 +02003691 if (word->length == 0 && !word->has_quoted_part) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003692 debug_printf_parse("done_word return 0: true null, ignored\n");
3693 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003694 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003695
Eric Andersen25f27032001-04-26 23:22:31 +00003696 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003697 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3698 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003699 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3700 * "2.7 Redirection
3701 * ...the word that follows the redirection operator
3702 * shall be subjected to tilde expansion, parameter expansion,
3703 * command substitution, arithmetic expansion, and quote
3704 * removal. Pathname expansion shall not be performed
3705 * on the word by a non-interactive shell; an interactive
3706 * shell may perform it, but shall do so only when
3707 * the expansion would result in one word."
3708 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003709 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003710 /* Cater for >\file case:
3711 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
3712 * Same with heredocs:
3713 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
3714 */
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003715 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
3716 unbackslash(ctx->pending_redirect->rd_filename);
3717 /* Is it <<"HEREDOC"? */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003718 if (word->has_quoted_part) {
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003719 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
3720 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003721 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003722 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003723 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003724 } else {
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003725#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003726# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003727 if (ctx->ctx_dsemicolon
3728 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3729 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003730 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003731 /* ctx->ctx_res_w = RES_MATCH; */
3732 ctx->ctx_dsemicolon = 0;
3733 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003734# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003735 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003736# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003737 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3738 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003739# endif
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003740# if ENABLE_HUSH_CASE
3741 && ctx->ctx_res_w != RES_CASE
3742# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003743 ) {
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003744 int reserved = reserved_word(word, ctx);
3745 debug_printf_parse("checking for reserved-ness: %d\n", reserved);
3746 if (reserved) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003747 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003748 debug_printf_parse("done_word return %d\n",
3749 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003750 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003751 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01003752# if BASH_TEST2
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003753 if (strcmp(word->data, "[[") == 0) {
3754 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
3755 }
3756 /* fall through */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02003757# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003758 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003759#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00003760 if (command->group) {
3761 /* "{ echo foo; } echo bar" - bad */
3762 syntax_error_at(word->data);
3763 debug_printf_parse("done_word return 1: syntax error, "
3764 "groups and arglists don't mix\n");
3765 return 1;
3766 }
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003767
3768 /* If this word wasn't an assignment, next ones definitely
3769 * can't be assignments. Even if they look like ones. */
3770 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3771 && word->o_assignment != WORD_IS_KEYWORD
3772 ) {
3773 word->o_assignment = NOT_ASSIGNMENT;
3774 } else {
3775 if (word->o_assignment == DEFINITELY_ASSIGNMENT) {
3776 command->assignment_cnt++;
3777 debug_printf_parse("++assignment_cnt=%d\n", command->assignment_cnt);
3778 }
3779 debug_printf_parse("word->o_assignment was:'%s'\n", assignment_flag[word->o_assignment]);
3780 word->o_assignment = MAYBE_ASSIGNMENT;
3781 }
3782 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
3783
Denys Vlasenko38292b62010-09-05 14:49:40 +02003784 if (word->has_quoted_part
Denis Vlasenko55789c62008-06-18 16:30:42 +00003785 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3786 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003787 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003788 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003789 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003790 char *p = word->data;
3791 while (p[0] == SPECIAL_VAR_SYMBOL
3792 && (p[1] & 0x7f) == '@'
3793 && p[2] == SPECIAL_VAR_SYMBOL
3794 ) {
3795 p += 3;
3796 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003797 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003798 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003799 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003800 }
Eric Andersen25f27032001-04-26 23:22:31 +00003801
Denis Vlasenko06810332007-05-21 23:30:54 +00003802#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003803 if (ctx->ctx_res_w == RES_FOR) {
Denys Vlasenko38292b62010-09-05 14:49:40 +02003804 if (word->has_quoted_part
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003805 || !is_well_formed_var_name(command->argv[0], '\0')
3806 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003807 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003808 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003809 return 1;
3810 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003811 /* Force FOR to have just one word (variable name) */
3812 /* NB: basically, this makes hush see "for v in ..."
3813 * syntax as if it is "for v; in ...". FOR and IN become
3814 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003815 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003816 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003817#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003818#if ENABLE_HUSH_CASE
3819 /* Force CASE to have just one word */
3820 if (ctx->ctx_res_w == RES_CASE) {
3821 done_pipe(ctx, PIPE_SEQ);
3822 }
3823#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003824
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003825 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003826
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003827 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003828 return 0;
3829}
3830
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003831
3832/* Peek ahead in the input to find out if we have a "&n" construct,
3833 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003834 * Return:
3835 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
3836 * REDIRFD_SYNTAX_ERR if syntax error,
3837 * REDIRFD_TO_FILE if no & was seen,
3838 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003839 */
3840#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003841#define parse_redir_right_fd(as_string, input) \
3842 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003843#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003844static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003845{
3846 int ch, d, ok;
3847
3848 ch = i_peek(input);
3849 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003850 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003851
3852 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003853 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003854 ch = i_peek(input);
3855 if (ch == '-') {
3856 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003857 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003858 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003859 }
3860 d = 0;
3861 ok = 0;
3862 while (ch != EOF && isdigit(ch)) {
3863 d = d*10 + (ch-'0');
3864 ok = 1;
3865 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003866 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003867 ch = i_peek(input);
3868 }
3869 if (ok) return d;
3870
3871//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
3872
3873 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003874 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003875}
3876
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003877/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003878 */
3879static int parse_redirect(struct parse_context *ctx,
3880 int fd,
3881 redir_type style,
3882 struct in_str *input)
3883{
3884 struct command *command = ctx->command;
3885 struct redir_struct *redir;
3886 struct redir_struct **redirp;
3887 int dup_num;
3888
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003889 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003890 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003891 /* Check for a '>&1' type redirect */
3892 dup_num = parse_redir_right_fd(&ctx->as_string, input);
3893 if (dup_num == REDIRFD_SYNTAX_ERR)
3894 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003895 } else {
3896 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003897 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003898 if (dup_num) { /* <<-... */
3899 ch = i_getch(input);
3900 nommu_addchr(&ctx->as_string, ch);
3901 ch = i_peek(input);
3902 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003903 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003904
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003905 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003906 int ch = i_peek(input);
3907 if (ch == '|') {
3908 /* >|FILE redirect ("clobbering" >).
3909 * Since we do not support "set -o noclobber" yet,
3910 * >| and > are the same for now. Just eat |.
3911 */
3912 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003913 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003914 }
3915 }
3916
3917 /* Create a new redir_struct and append it to the linked list */
3918 redirp = &command->redirects;
3919 while ((redir = *redirp) != NULL) {
3920 redirp = &(redir->next);
3921 }
3922 *redirp = redir = xzalloc(sizeof(*redir));
3923 /* redir->next = NULL; */
3924 /* redir->rd_filename = NULL; */
3925 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003926 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003927
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003928 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
3929 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003930
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003931 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003932 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003933 /* Erik had a check here that the file descriptor in question
3934 * is legit; I postpone that to "run time"
3935 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003936 debug_printf_parse("duplicating redirect '%d>&%d'\n",
3937 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003938 } else {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003939#if 0 /* Instead we emit error message at run time */
3940 if (ctx->pending_redirect) {
3941 /* For example, "cmd > <file" */
3942 die_if_script("syntax error: %s", "invalid redirect");
3943 }
3944#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003945 /* Set ctx->pending_redirect, so we know what to do at the
3946 * end of the next parsed word. */
3947 ctx->pending_redirect = redir;
3948 }
3949 return 0;
3950}
3951
Eric Andersen25f27032001-04-26 23:22:31 +00003952/* If a redirect is immediately preceded by a number, that number is
3953 * supposed to tell which file descriptor to redirect. This routine
3954 * looks for such preceding numbers. In an ideal world this routine
3955 * needs to handle all the following classes of redirects...
3956 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3957 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3958 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3959 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003960 *
3961 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3962 * "2.7 Redirection
3963 * ... If n is quoted, the number shall not be recognized as part of
3964 * the redirection expression. For example:
3965 * echo \2>a
3966 * writes the character 2 into file a"
Denys Vlasenko38292b62010-09-05 14:49:40 +02003967 * We are getting it right by setting ->has_quoted_part on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003968 *
3969 * A -1 return means no valid number was found,
3970 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00003971 */
3972static int redirect_opt_num(o_string *o)
3973{
3974 int num;
3975
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003976 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003977 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003978 num = bb_strtou(o->data, NULL, 10);
3979 if (errno || num < 0)
3980 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003981 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00003982 return num;
3983}
3984
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003985#if BB_MMU
3986#define fetch_till_str(as_string, input, word, skip_tabs) \
3987 fetch_till_str(input, word, skip_tabs)
3988#endif
3989static char *fetch_till_str(o_string *as_string,
3990 struct in_str *input,
3991 const char *word,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003992 int heredoc_flags)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003993{
3994 o_string heredoc = NULL_O_STRING;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003995 unsigned past_EOL;
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003996 int prev = 0; /* not \ */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003997 int ch;
3998
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003999 goto jump_in;
Denys Vlasenkob8709032011-05-08 21:20:01 +02004000
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004001 while (1) {
4002 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004003 if (ch != EOF)
4004 nommu_addchr(as_string, ch);
4005 if ((ch == '\n' || ch == EOF)
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02004006 && ((heredoc_flags & HEREDOC_QUOTED) || prev != '\\')
4007 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004008 if (strcmp(heredoc.data + past_EOL, word) == 0) {
4009 heredoc.data[past_EOL] = '\0';
4010 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
4011 return heredoc.data;
4012 }
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004013 while (ch == '\n') {
4014 o_addchr(&heredoc, ch);
4015 prev = ch;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004016 jump_in:
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004017 past_EOL = heredoc.length;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004018 do {
4019 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004020 if (ch != EOF)
4021 nommu_addchr(as_string, ch);
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02004022 } while ((heredoc_flags & HEREDOC_SKIPTABS) && ch == '\t');
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004023 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004024 }
4025 if (ch == EOF) {
4026 o_free_unsafe(&heredoc);
4027 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004028 }
4029 o_addchr(&heredoc, ch);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004030 nommu_addchr(as_string, ch);
Denys Vlasenkoc3adfac2010-09-06 11:46:03 +02004031 if (prev == '\\' && ch == '\\')
4032 /* Correctly handle foo\\<eol> (not a line cont.) */
4033 prev = 0; /* not \ */
4034 else
4035 prev = ch;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004036 }
4037}
4038
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004039/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
4040 * and load them all. There should be exactly heredoc_cnt of them.
4041 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004042static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
4043{
4044 struct pipe *pi = ctx->list_head;
4045
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004046 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004047 int i;
4048 struct command *cmd = pi->cmds;
4049
4050 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
4051 pi->num_cmds,
4052 cmd->argv ? cmd->argv[0] : "NONE");
4053 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004054 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004055
4056 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
4057 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004058 while (redir) {
4059 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004060 char *p;
4061
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004062 redir->rd_type = REDIRECT_HEREDOC2;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02004063 /* redir->rd_dup is (ab)used to indicate <<- */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004064 p = fetch_till_str(&ctx->as_string, input,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02004065 redir->rd_filename, redir->rd_dup);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004066 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004067 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004068 return 1;
4069 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004070 free(redir->rd_filename);
4071 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004072 heredoc_cnt--;
4073 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004074 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004075 }
4076 cmd++;
4077 }
4078 pi = pi->next;
4079 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004080#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004081 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004082 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004083 bb_error_msg_and_die("heredoc BUG 2");
4084#endif
4085 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004086}
4087
4088
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004089static int run_list(struct pipe *pi);
4090#if BB_MMU
4091#define parse_stream(pstring, input, end_trigger) \
4092 parse_stream(input, end_trigger)
4093#endif
4094static struct pipe *parse_stream(char **pstring,
4095 struct in_str *input,
4096 int end_trigger);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004097
Eric Andersen25f27032001-04-26 23:22:31 +00004098
Denys Vlasenkoc2704542009-11-20 19:14:19 +01004099#if !ENABLE_HUSH_FUNCTIONS
4100#define parse_group(dest, ctx, input, ch) \
4101 parse_group(ctx, input, ch)
4102#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004103static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004104 struct in_str *input, int ch)
4105{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004106 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004107 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004108 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004109 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004110 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004111 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004112
4113 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004114#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko38292b62010-09-05 14:49:40 +02004115 if (ch == '(' && !dest->has_quoted_part) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004116 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00004117 if (done_word(dest, ctx))
4118 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004119 if (!command->argv)
4120 goto skip; /* (... */
4121 if (command->argv[1]) { /* word word ... (... */
4122 syntax_error_unexpected_ch('(');
4123 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004124 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004125 /* it is "word(..." or "word (..." */
4126 do
4127 ch = i_getch(input);
4128 while (ch == ' ' || ch == '\t');
4129 if (ch != ')') {
4130 syntax_error_unexpected_ch(ch);
4131 return 1;
4132 }
4133 nommu_addchr(&ctx->as_string, ch);
4134 do
4135 ch = i_getch(input);
4136 while (ch == ' ' || ch == '\t' || ch == '\n');
4137 if (ch != '{') {
4138 syntax_error_unexpected_ch(ch);
4139 return 1;
4140 }
4141 nommu_addchr(&ctx->as_string, ch);
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004142 command->cmd_type = CMD_FUNCDEF;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004143 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004144 }
4145#endif
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004146
4147#if 0 /* Prevented by caller */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004148 if (command->argv /* word [word]{... */
4149 || dest->length /* word{... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004150 || dest->has_quoted_part /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004151 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004152 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004153 debug_printf_parse("parse_group return 1: "
4154 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004155 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004156 }
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004157#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004158
4159#if ENABLE_HUSH_FUNCTIONS
4160 skip:
4161#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004162 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004163 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004164 endch = ')';
Denys Vlasenko9d617c42009-06-09 18:40:52 +02004165 command->cmd_type = CMD_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004166 } else {
4167 /* bash does not allow "{echo...", requires whitespace */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004168 ch = i_peek(input);
4169 if (ch != ' ' && ch != '\t' && ch != '\n'
4170 && ch != '(' /* but "{(..." is allowed (without whitespace) */
4171 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004172 syntax_error_unexpected_ch(ch);
4173 return 1;
4174 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004175 if (ch != '(') {
4176 ch = i_getch(input);
4177 nommu_addchr(&ctx->as_string, ch);
4178 }
Eric Andersen25f27032001-04-26 23:22:31 +00004179 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004180
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004181 {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004182#if BB_MMU
4183# define as_string NULL
4184#else
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004185 char *as_string = NULL;
4186#endif
4187 pipe_list = parse_stream(&as_string, input, endch);
4188#if !BB_MMU
4189 if (as_string)
4190 o_addstr(&ctx->as_string, as_string);
4191#endif
4192 /* empty ()/{} or parse error? */
4193 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00004194 /* parse_stream already emitted error msg */
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004195 if (!BB_MMU)
4196 free(as_string);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004197 debug_printf_parse("parse_group return 1: "
4198 "parse_stream returned %p\n", pipe_list);
4199 return 1;
4200 }
4201 command->group = pipe_list;
4202#if !BB_MMU
4203 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4204 command->group_as_string = as_string;
4205 debug_printf_parse("end of group, remembering as:'%s'\n",
4206 command->group_as_string);
4207#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004208#undef as_string
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004209 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004210 debug_printf_parse("parse_group return 0\n");
4211 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004212 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004213}
4214
Denys Vlasenko46e64982016-09-29 19:50:55 +02004215static int i_getch_and_eat_bkslash_nl(struct in_str *input)
4216{
4217 for (;;) {
4218 int ch, ch2;
4219
4220 ch = i_getch(input);
4221 if (ch != '\\')
4222 return ch;
4223 ch2 = i_peek(input);
4224 if (ch2 != '\n')
4225 return ch;
4226 /* backslash+newline, skip it */
4227 i_getch(input);
4228 }
4229}
4230
Denys Vlasenko657086a2016-09-29 18:07:42 +02004231static int i_peek_and_eat_bkslash_nl(struct in_str *input)
4232{
4233 for (;;) {
4234 int ch, ch2;
4235
4236 ch = i_peek(input);
4237 if (ch != '\\')
4238 return ch;
4239 ch2 = i_peek2(input);
4240 if (ch2 != '\n')
4241 return ch;
4242 /* backslash+newline, skip it */
4243 i_getch(input);
4244 i_getch(input);
4245 }
4246}
4247
Denys Vlasenko0b883582016-12-23 16:49:07 +01004248#if ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004249/* Subroutines for copying $(...) and `...` things */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004250static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004251/* '...' */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004252static int add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004253{
4254 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004255 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004256 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004257 syntax_error_unterm_ch('\'');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004258 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004259 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004260 if (ch == '\'')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004261 return 1;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004262 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004263 }
4264}
4265/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004266static int add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004267{
4268 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004269 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004270 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004271 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004272 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004273 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004274 if (ch == '"')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004275 return 1;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004276 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004277 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004278 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004279 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004280 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004281 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004282 if (!add_till_backquote(dest, input, /*in_dquote:*/ 1))
4283 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004284 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004285 continue;
4286 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004287 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004288 }
4289}
4290/* Process `cmd` - copy contents until "`" is seen. Complicated by
4291 * \` quoting.
4292 * "Within the backquoted style of command substitution, backslash
4293 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4294 * The search for the matching backquote shall be satisfied by the first
4295 * backquote found without a preceding backslash; during this search,
4296 * if a non-escaped backquote is encountered within a shell comment,
4297 * a here-document, an embedded command substitution of the $(command)
4298 * form, or a quoted string, undefined results occur. A single-quoted
4299 * or double-quoted string that begins, but does not end, within the
4300 * "`...`" sequence produces undefined results."
4301 * Example Output
4302 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4303 */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004304static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004305{
4306 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004307 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004308 if (ch == '`')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004309 return 1;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004310 if (ch == '\\') {
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004311 /* \x. Copy both unless it is \`, \$, \\ and maybe \" */
4312 ch = i_getch(input);
4313 if (ch != '`'
4314 && ch != '$'
4315 && ch != '\\'
4316 && (!in_dquote || ch != '"')
4317 ) {
4318 o_addchr(dest, '\\');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004319 }
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004320 }
4321 if (ch == EOF) {
4322 syntax_error_unterm_ch('`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004323 return 0;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004324 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004325 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004326 }
4327}
4328/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4329 * quoting and nested ()s.
4330 * "With the $(command) style of command substitution, all characters
4331 * following the open parenthesis to the matching closing parenthesis
4332 * constitute the command. Any valid shell script can be used for command,
4333 * except a script consisting solely of redirections which produces
4334 * unspecified results."
4335 * Example Output
4336 * echo $(echo '(TEST)' BEST) (TEST) BEST
4337 * echo $(echo 'TEST)' BEST) TEST) BEST
4338 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
Denys Vlasenko74369502010-05-21 19:52:01 +02004339 *
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004340 * Also adapted to eat ${var%...} and $((...)) constructs, since ... part
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004341 * can contain arbitrary constructs, just like $(cmd).
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004342 * In bash compat mode, it needs to also be able to stop on ':' or '/'
4343 * for ${var:N[:M]} and ${var/P[/R]} parsing.
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004344 */
Denys Vlasenko74369502010-05-21 19:52:01 +02004345#define DOUBLE_CLOSE_CHAR_FLAG 0x80
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004346static int add_till_closing_bracket(o_string *dest, struct in_str *input, unsigned end_ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004347{
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004348 int ch;
Denys Vlasenko74369502010-05-21 19:52:01 +02004349 char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG;
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004350# if BASH_SUBSTR || BASH_PATTERN_SUBST
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004351 char end_char2 = end_ch >> 8;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004352# endif
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004353 end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1);
4354
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004355 while (1) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004356 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004357 if (ch == EOF) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004358 syntax_error_unterm_ch(end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004359 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004360 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004361 if (ch == end_ch
4362# if BASH_SUBSTR || BASH_PATTERN_SUBST
4363 || ch == end_char2
4364# endif
4365 ) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004366 if (!dbl)
4367 break;
4368 /* we look for closing )) of $((EXPR)) */
Denys Vlasenko657086a2016-09-29 18:07:42 +02004369 if (i_peek_and_eat_bkslash_nl(input) == end_ch) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004370 i_getch(input); /* eat second ')' */
4371 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004372 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004373 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004374 o_addchr(dest, ch);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004375 if (ch == '(' || ch == '{') {
4376 ch = (ch == '(' ? ')' : '}');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004377 if (!add_till_closing_bracket(dest, input, ch))
4378 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004379 o_addchr(dest, ch);
4380 continue;
4381 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004382 if (ch == '\'') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004383 if (!add_till_single_quote(dest, input))
4384 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004385 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004386 continue;
4387 }
4388 if (ch == '"') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004389 if (!add_till_double_quote(dest, input))
4390 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004391 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004392 continue;
4393 }
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004394 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004395 if (!add_till_backquote(dest, input, /*in_dquote:*/ 0))
4396 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004397 o_addchr(dest, ch);
4398 continue;
4399 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004400 if (ch == '\\') {
4401 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004402 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004403 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004404 syntax_error_unterm_ch(')');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004405 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004406 }
Denys Vlasenko657086a2016-09-29 18:07:42 +02004407#if 0
4408 if (ch == '\n') {
4409 /* "backslash+newline", ignore both */
4410 o_delchr(dest); /* undo insertion of '\' */
4411 continue;
4412 }
4413#endif
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004414 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004415 continue;
4416 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004417 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004418 return ch;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004419}
Denys Vlasenko0b883582016-12-23 16:49:07 +01004420#endif /* ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004421
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004422/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004423#if BB_MMU
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004424#define parse_dollar(as_string, dest, input, quote_mask) \
4425 parse_dollar(dest, input, quote_mask)
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004426#define as_string NULL
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004427#endif
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004428static int parse_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004429 o_string *dest,
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004430 struct in_str *input, unsigned char quote_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00004431{
Denys Vlasenko657086a2016-09-29 18:07:42 +02004432 int ch = i_peek_and_eat_bkslash_nl(input); /* first character after the $ */
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004433
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004434 debug_printf_parse("parse_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004435 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004436 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004437 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00004438 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004439 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004440 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004441 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004442 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004443 quote_mask = 0;
Denys Vlasenko657086a2016-09-29 18:07:42 +02004444 ch = i_peek_and_eat_bkslash_nl(input);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004445 if (!isalnum(ch) && ch != '_') {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004446 /* End of variable name reached */
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004447 break;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004448 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004449 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004450 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004451 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004452 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004453 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004454 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004455 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004456 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004457 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004458 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004459 o_addchr(dest, ch | quote_mask);
4460 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004461 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004462 case '$': /* pid */
4463 case '!': /* last bg pid */
4464 case '?': /* last exit code */
4465 case '#': /* number of args */
4466 case '*': /* args */
4467 case '@': /* args */
4468 goto make_one_char_var;
4469 case '{': {
Mike Frysingeref3e7fd2009-06-01 14:13:39 -04004470 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4471
Denys Vlasenko74369502010-05-21 19:52:01 +02004472 ch = i_getch(input); /* eat '{' */
4473 nommu_addchr(as_string, ch);
4474
Denys Vlasenko46e64982016-09-29 19:50:55 +02004475 ch = i_getch_and_eat_bkslash_nl(input); /* first char after '{' */
Denys Vlasenko74369502010-05-21 19:52:01 +02004476 /* It should be ${?}, or ${#var},
4477 * or even ${?+subst} - operator acting on a special variable,
4478 * or the beginning of variable name.
4479 */
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004480 if (ch == EOF
4481 || (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) /* not one of those */
4482 ) {
Denys Vlasenko74369502010-05-21 19:52:01 +02004483 bad_dollar_syntax:
4484 syntax_error_unterm_str("${name}");
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004485 debug_printf_parse("parse_dollar return 0: unterminated ${name}\n");
4486 return 0;
Denys Vlasenko74369502010-05-21 19:52:01 +02004487 }
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004488 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02004489 ch |= quote_mask;
4490
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004491 /* It's possible to just call add_till_closing_bracket() at this point.
Denys Vlasenko74369502010-05-21 19:52:01 +02004492 * However, this regresses some of our testsuite cases
4493 * which check invalid constructs like ${%}.
4494 * Oh well... let's check that the var name part is fine... */
4495
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004496 while (1) {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004497 unsigned pos;
4498
Denys Vlasenko74369502010-05-21 19:52:01 +02004499 o_addchr(dest, ch);
4500 debug_printf_parse(": '%c'\n", ch);
4501
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004502 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004503 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02004504 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004505 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004506
Denys Vlasenko74369502010-05-21 19:52:01 +02004507 if (!isalnum(ch) && ch != '_') {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004508 unsigned end_ch;
4509 unsigned char last_ch;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004510 /* handle parameter expansions
4511 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4512 */
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004513 if (!strchr(VAR_SUBST_OPS, ch)) /* ${var<bad_char>... */
Denys Vlasenko74369502010-05-21 19:52:01 +02004514 goto bad_dollar_syntax;
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004515
4516 /* Eat everything until closing '}' (or ':') */
4517 end_ch = '}';
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004518 if (BASH_SUBSTR
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004519 && ch == ':'
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004520 && !strchr(MINUS_PLUS_EQUAL_QUESTION, i_peek(input))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004521 ) {
4522 /* It's ${var:N[:M]} thing */
4523 end_ch = '}' * 0x100 + ':';
4524 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004525 if (BASH_PATTERN_SUBST
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004526 && ch == '/'
4527 ) {
4528 /* It's ${var/[/]pattern[/repl]} thing */
4529 if (i_peek(input) == '/') { /* ${var//pattern[/repl]}? */
4530 i_getch(input);
4531 nommu_addchr(as_string, '/');
4532 ch = '\\';
4533 }
4534 end_ch = '}' * 0x100 + '/';
4535 }
4536 o_addchr(dest, ch);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004537 again:
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004538 if (!BB_MMU)
4539 pos = dest->length;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004540#if ENABLE_HUSH_DOLLAR_OPS
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004541 last_ch = add_till_closing_bracket(dest, input, end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004542 if (last_ch == 0) /* error? */
4543 return 0;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004544#else
4545#error Simple code to only allow ${var} is not implemented
4546#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004547 if (as_string) {
4548 o_addstr(as_string, dest->data + pos);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004549 o_addchr(as_string, last_ch);
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004550 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004551
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004552 if ((BASH_SUBSTR || BASH_PATTERN_SUBST)
4553 && (end_ch & 0xff00)
4554 ) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004555 /* close the first block: */
4556 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004557 /* while parsing N from ${var:N[:M]}
4558 * or pattern from ${var/[/]pattern[/repl]} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004559 if ((end_ch & 0xff) == last_ch) {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004560 /* got ':' or '/'- parse the rest */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004561 end_ch = '}';
4562 goto again;
4563 }
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004564 /* got '}' */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004565 if (BASH_SUBSTR && end_ch == '}' * 0x100 + ':') {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004566 /* it's ${var:N} - emulate :999999999 */
4567 o_addstr(dest, "999999999");
4568 } /* else: it's ${var/[/]pattern} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004569 }
Denys Vlasenko74369502010-05-21 19:52:01 +02004570 break;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004571 }
Denys Vlasenko74369502010-05-21 19:52:01 +02004572 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004573 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4574 break;
4575 }
Denys Vlasenko0b883582016-12-23 16:49:07 +01004576#if ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004577 case '(': {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004578 unsigned pos;
4579
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004580 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004581 nommu_addchr(as_string, ch);
Denys Vlasenko0b883582016-12-23 16:49:07 +01004582# if ENABLE_FEATURE_SH_MATH
Denys Vlasenko657086a2016-09-29 18:07:42 +02004583 if (i_peek_and_eat_bkslash_nl(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004584 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004585 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004586 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4587 o_addchr(dest, /*quote_mask |*/ '+');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004588 if (!BB_MMU)
4589 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004590 if (!add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG))
4591 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004592 if (as_string) {
4593 o_addstr(as_string, dest->data + pos);
4594 o_addchr(as_string, ')');
4595 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004596 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004597 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004598 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004599 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004600# endif
4601# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004602 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4603 o_addchr(dest, quote_mask | '`');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004604 if (!BB_MMU)
4605 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004606 if (!add_till_closing_bracket(dest, input, ')'))
4607 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004608 if (as_string) {
4609 o_addstr(as_string, dest->data + pos);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004610 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004611 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004612 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004613# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004614 break;
4615 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004616#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004617 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004618 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004619 nommu_addchr(as_string, ch);
Denys Vlasenko657086a2016-09-29 18:07:42 +02004620 ch = i_peek_and_eat_bkslash_nl(input);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004621 if (isalnum(ch)) { /* it's $_name or $_123 */
4622 ch = '_';
4623 goto make_var;
4624 }
4625 /* else: it's $_ */
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02004626 /* TODO: $_ and $-: */
4627 /* $_ Shell or shell script name; or last argument of last command
4628 * (if last command wasn't a pipe; if it was, bash sets $_ to "");
4629 * but in command's env, set to full pathname used to invoke it */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004630 /* $- Option flags set by set builtin or shell options (-i etc) */
4631 default:
4632 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004633 }
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004634 debug_printf_parse("parse_dollar return 1 (ok)\n");
4635 return 1;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004636#undef as_string
Eric Andersen25f27032001-04-26 23:22:31 +00004637}
4638
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004639#if BB_MMU
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004640# if BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004641#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4642 encode_string(dest, input, dquote_end, process_bkslash)
4643# else
4644/* only ${var/pattern/repl} (its pattern part) needs additional mode */
4645#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4646 encode_string(dest, input, dquote_end)
4647# endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004648#define as_string NULL
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004649
4650#else /* !MMU */
4651
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004652# if BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004653/* all parameters are needed, no macro tricks */
4654# else
4655#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4656 encode_string(as_string, dest, input, dquote_end)
4657# endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004658#endif
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004659static int encode_string(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004660 o_string *dest,
4661 struct in_str *input,
Denys Vlasenko14e289b2010-09-10 10:15:18 +02004662 int dquote_end,
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004663 int process_bkslash)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004664{
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01004665#if !BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004666 const int process_bkslash = 1;
4667#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004668 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004669 int next;
4670
4671 again:
4672 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004673 if (ch != EOF)
4674 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004675 if (ch == dquote_end) { /* may be only '"' or EOF */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004676 debug_printf_parse("encode_string return 1 (ok)\n");
4677 return 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004678 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004679 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004680 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004681 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004682 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004683 }
4684 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004685 if (ch != '\n') {
4686 next = i_peek(input);
4687 }
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004688 debug_printf_parse("\" ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004689 ch, ch, !!(dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004690 if (process_bkslash && ch == '\\') {
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004691 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004692 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004693 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004694 }
4695 /* bash:
4696 * "The backslash retains its special meaning [in "..."]
4697 * only when followed by one of the following characters:
4698 * $, `, ", \, or <newline>. A double quote may be quoted
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02004699 * within double quotes by preceding it with a backslash."
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004700 * NB: in (unquoted) heredoc, above does not apply to ",
4701 * therefore we check for it by "next == dquote_end" cond.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004702 */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004703 if (next == dquote_end || strchr("$`\\\n", next)) {
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004704 ch = i_getch(input); /* eat next */
4705 if (ch == '\n')
4706 goto again; /* skip \<newline> */
Denys Vlasenko4f870492010-09-10 11:06:01 +02004707 } /* else: ch remains == '\\', and we double it below: */
4708 o_addqchr(dest, ch); /* \c if c is a glob char, else just c */
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004709 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004710 goto again;
4711 }
4712 if (ch == '$') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004713 if (!parse_dollar(as_string, dest, input, /*quote_mask:*/ 0x80)) {
4714 debug_printf_parse("encode_string return 0: "
4715 "parse_dollar returned 0 (error)\n");
4716 return 0;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004717 }
4718 goto again;
4719 }
4720#if ENABLE_HUSH_TICK
4721 if (ch == '`') {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004722 //unsigned pos = dest->length;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004723 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4724 o_addchr(dest, 0x80 | '`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004725 if (!add_till_backquote(dest, input, /*in_dquote:*/ dquote_end == '"'))
4726 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004727 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4728 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004729 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004730 }
4731#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004732 o_addQchr(dest, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004733 goto again;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004734#undef as_string
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004735}
4736
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004737/*
4738 * Scan input until EOF or end_trigger char.
4739 * Return a list of pipes to execute, or NULL on EOF
4740 * or if end_trigger character is met.
Denys Vlasenkocecbc982011-03-30 18:54:52 +02004741 * On syntax error, exit if shell is not interactive,
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004742 * reset parsing machinery and start parsing anew,
4743 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004744 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004745static struct pipe *parse_stream(char **pstring,
4746 struct in_str *input,
4747 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004748{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004749 struct parse_context ctx;
4750 o_string dest = NULL_O_STRING;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004751 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00004752
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004753 /* Single-quote triggers a bypass of the main loop until its mate is
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004754 * found. When recursing, quote state is passed in via dest->o_expflags.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004755 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004756 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
Denys Vlasenko90a99042009-09-06 02:36:23 +02004757 end_trigger ? end_trigger : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004758 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004759
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004760 /* If very first arg is "" or '', dest.data may end up NULL.
4761 * Preventing this: */
4762 o_addchr(&dest, '\0');
4763 dest.length = 0;
4764
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004765 /* We used to separate words on $IFS here. This was wrong.
4766 * $IFS is used only for word splitting when $var is expanded,
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004767 * here we should use blank chars as separators, not $IFS
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004768 */
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004769
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004770 if (MAYBE_ASSIGNMENT != 0)
4771 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004772 initialize_context(&ctx);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004773 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004774 while (1) {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004775 const char *is_blank;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004776 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004777 int ch;
4778 int next;
4779 int redir_fd;
4780 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004781
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004782 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004783 debug_printf_parse(": ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004784 ch, ch, !!(dest.o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004785 if (ch == EOF) {
4786 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004787
4788 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004789 syntax_error_unterm_str("here document");
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004790 goto parse_error;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004791 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004792 if (end_trigger == ')') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004793 syntax_error_unterm_ch('(');
4794 goto parse_error;
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004795 }
Denys Vlasenko42246472016-11-07 16:22:35 +01004796 if (end_trigger == '}') {
4797 syntax_error_unterm_ch('{');
4798 goto parse_error;
4799 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004800
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004801 if (done_word(&dest, &ctx)) {
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004802 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004803 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004804 o_free(&dest);
4805 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004806 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004807 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004808 /* (this makes bare "&" cmd a no-op.
4809 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004810 if (pi->num_cmds == 0
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01004811 IF_HAS_KEYWORDS(&& pi->res_word == RES_NONE)
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004812 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004813 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004814 pi = NULL;
4815 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004816#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02004817 debug_printf_parse("as_string1 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004818 if (pstring)
4819 *pstring = ctx.as_string.data;
4820 else
4821 o_free_unsafe(&ctx.as_string);
4822#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004823 debug_leave();
4824 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004825 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004826 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004827 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004828
4829 next = '\0';
4830 if (ch != '\n')
4831 next = i_peek(input);
4832
4833 is_special = "{}<>;&|()#'" /* special outside of "str" */
4834 "\\$\"" IF_HUSH_TICK("`"); /* always special */
4835 /* Are { and } special here? */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004836 if (ctx.command->argv /* word [word]{... - non-special */
4837 || dest.length /* word{... - non-special */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004838 || dest.has_quoted_part /* ""{... - non-special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004839 || (next != ';' /* }; - special */
4840 && next != ')' /* }) - special */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004841 && next != '(' /* {( - special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004842 && next != '&' /* }& and }&& ... - special */
4843 && next != '|' /* }|| ... - special */
4844 && !strchr(defifs, next) /* {word - non-special */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004845 )
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004846 ) {
4847 /* They are not special, skip "{}" */
4848 is_special += 2;
4849 }
4850 is_special = strchr(is_special, ch);
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004851 is_blank = strchr(defifs, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004852
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004853 if (!is_special && !is_blank) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00004854 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004855 o_addQchr(&dest, ch);
4856 if ((dest.o_assignment == MAYBE_ASSIGNMENT
4857 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004858 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004859 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00004860 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004861 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004862 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko55789c62008-06-18 16:30:42 +00004863 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004864 continue;
4865 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004866
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004867 if (is_blank) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004868 if (done_word(&dest, &ctx)) {
4869 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00004870 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004871 if (ch == '\n') {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004872 /* Is this a case when newline is simply ignored?
4873 * Some examples:
4874 * "cmd | <newline> cmd ..."
4875 * "case ... in <newline> word) ..."
4876 */
4877 if (IS_NULL_CMD(ctx.command)
4878 && dest.length == 0 && !dest.has_quoted_part
Denis Vlasenkof1736072008-07-31 10:09:26 +00004879 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004880 /* This newline can be ignored. But...
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004881 * Without check #1, interactive shell
4882 * ignores even bare <newline>,
4883 * and shows the continuation prompt:
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004884 * ps1_prompt$ <enter>
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004885 * ps2> _ <=== wrong, should be ps1
4886 * Without check #2, "cmd & <newline>"
4887 * is similarly mistreated.
4888 * (BTW, this makes "cmd & cmd"
4889 * and "cmd && cmd" non-orthogonal.
4890 * Really, ask yourself, why
4891 * "cmd && <newline>" doesn't start
4892 * cmd but waits for more input?
Denys Vlasenkob24e55d2017-07-16 20:29:35 +02004893 * The only reason is that it might be
4894 * a "cmd1 && <nl> cmd2 &" construct,
4895 * cmd1 may need to run in BG).
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004896 */
4897 struct pipe *pi = ctx.list_head;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004898 if (pi->num_cmds != 0 /* check #1 */
4899 && pi->followup != PIPE_BG /* check #2 */
4900 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004901 continue;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004902 }
Denis Vlasenkof1736072008-07-31 10:09:26 +00004903 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004904 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004905 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004906 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
4907 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004908 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004909 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004910 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004911 heredoc_cnt = 0;
4912 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004913 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004914 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00004915 ch = ';';
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004916 /* note: if (is_blank) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004917 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004918 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004919 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004920
4921 /* "cmd}" or "cmd }..." without semicolon or &:
4922 * } is an ordinary char in this case, even inside { cmd; }
4923 * Pathological example: { ""}; } should exec "}" cmd
4924 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004925 if (ch == '}') {
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004926 if (dest.length != 0 /* word} */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004927 || dest.has_quoted_part /* ""} */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004928 ) {
4929 goto ordinary_char;
4930 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004931 if (!IS_NULL_CMD(ctx.command)) { /* cmd } */
4932 /* Generally, there should be semicolon: "cmd; }"
4933 * However, bash allows to omit it if "cmd" is
4934 * a group. Examples:
4935 * { { echo 1; } }
4936 * {(echo 1)}
4937 * { echo 0 >&2 | { echo 1; } }
4938 * { while false; do :; done }
4939 * { case a in b) ;; esac }
4940 */
4941 if (ctx.command->group)
4942 goto term_group;
4943 goto ordinary_char;
4944 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004945 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004946 /* Can't be an end of {cmd}, skip the check */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004947 goto skip_end_trigger;
4948 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004949 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004950 term_group:
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004951 if (end_trigger && end_trigger == ch
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004952 && (ch != ';' || heredoc_cnt == 0)
4953#if ENABLE_HUSH_CASE
4954 && (ch != ')'
4955 || ctx.ctx_res_w != RES_MATCH
Denys Vlasenko38292b62010-09-05 14:49:40 +02004956 || (!dest.has_quoted_part && strcmp(dest.data, "esac") == 0)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004957 )
4958#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004959 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004960 if (heredoc_cnt) {
4961 /* This is technically valid:
4962 * { cat <<HERE; }; echo Ok
4963 * heredoc
4964 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004965 * HERE
4966 * but we don't support this.
4967 * We require heredoc to be in enclosing {}/(),
4968 * if any.
4969 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004970 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004971 goto parse_error;
4972 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004973 if (done_word(&dest, &ctx)) {
4974 goto parse_error;
4975 }
4976 done_pipe(&ctx, PIPE_SEQ);
4977 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004978 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00004979 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00004980 if (!HAS_KEYWORDS
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01004981 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00004982 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004983 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004984#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02004985 debug_printf_parse("as_string2 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004986 if (pstring)
4987 *pstring = ctx.as_string.data;
4988 else
4989 o_free_unsafe(&ctx.as_string);
4990#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004991 debug_leave();
4992 debug_printf_parse("parse_stream return %p: "
4993 "end_trigger char found\n",
4994 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004995 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004996 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004997 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004998 skip_end_trigger:
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004999 if (is_blank)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005000 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005001
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005002 /* Catch <, > before deciding whether this word is
5003 * an assignment. a=1 2>z b=2: b=2 is still assignment */
5004 switch (ch) {
5005 case '>':
5006 redir_fd = redirect_opt_num(&dest);
5007 if (done_word(&dest, &ctx)) {
5008 goto parse_error;
5009 }
5010 redir_style = REDIRECT_OVERWRITE;
5011 if (next == '>') {
5012 redir_style = REDIRECT_APPEND;
5013 ch = i_getch(input);
5014 nommu_addchr(&ctx.as_string, ch);
5015 }
5016#if 0
5017 else if (next == '(') {
5018 syntax_error(">(process) not supported");
5019 goto parse_error;
5020 }
5021#endif
5022 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5023 goto parse_error;
5024 continue; /* back to top of while (1) */
5025 case '<':
5026 redir_fd = redirect_opt_num(&dest);
5027 if (done_word(&dest, &ctx)) {
5028 goto parse_error;
5029 }
5030 redir_style = REDIRECT_INPUT;
5031 if (next == '<') {
5032 redir_style = REDIRECT_HEREDOC;
5033 heredoc_cnt++;
5034 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
5035 ch = i_getch(input);
5036 nommu_addchr(&ctx.as_string, ch);
5037 } else if (next == '>') {
5038 redir_style = REDIRECT_IO;
5039 ch = i_getch(input);
5040 nommu_addchr(&ctx.as_string, ch);
5041 }
5042#if 0
5043 else if (next == '(') {
5044 syntax_error("<(process) not supported");
5045 goto parse_error;
5046 }
5047#endif
5048 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5049 goto parse_error;
5050 continue; /* back to top of while (1) */
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005051 case '#':
5052 if (dest.length == 0 && !dest.has_quoted_part) {
5053 /* skip "#comment" */
5054 while (1) {
5055 ch = i_peek(input);
5056 if (ch == EOF || ch == '\n')
5057 break;
5058 i_getch(input);
5059 /* note: we do not add it to &ctx.as_string */
5060 }
5061 nommu_addchr(&ctx.as_string, '\n');
5062 continue; /* back to top of while (1) */
5063 }
5064 break;
5065 case '\\':
5066 if (next == '\n') {
5067 /* It's "\<newline>" */
5068#if !BB_MMU
5069 /* Remove trailing '\' from ctx.as_string */
5070 ctx.as_string.data[--ctx.as_string.length] = '\0';
5071#endif
5072 ch = i_getch(input); /* eat it */
5073 continue; /* back to top of while (1) */
5074 }
5075 break;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005076 }
5077
5078 if (dest.o_assignment == MAYBE_ASSIGNMENT
5079 /* check that we are not in word in "a=1 2>word b=1": */
5080 && !ctx.pending_redirect
5081 ) {
5082 /* ch is a special char and thus this word
5083 * cannot be an assignment */
5084 dest.o_assignment = NOT_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02005085 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005086 }
5087
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02005088 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
5089
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005090 switch (ch) {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005091 case '#': /* non-comment #: "echo a#b" etc */
5092 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005093 break;
5094 case '\\':
5095 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005096 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005097 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00005098 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005099 ch = i_getch(input);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01005100 /* note: ch != '\n' (that case does not reach this place) */
5101 o_addchr(&dest, '\\');
5102 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
5103 o_addchr(&dest, ch);
5104 nommu_addchr(&ctx.as_string, ch);
5105 /* Example: echo Hello \2>file
5106 * we need to know that word 2 is quoted */
5107 dest.has_quoted_part = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005108 break;
5109 case '$':
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005110 if (!parse_dollar(&ctx.as_string, &dest, input, /*quote_mask:*/ 0)) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005111 debug_printf_parse("parse_stream parse error: "
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005112 "parse_dollar returned 0 (error)\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005113 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005114 }
Eric Andersen25f27032001-04-26 23:22:31 +00005115 break;
5116 case '\'':
Denys Vlasenko38292b62010-09-05 14:49:40 +02005117 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005118 if (next == '\'' && !ctx.pending_redirect) {
5119 insert_empty_quoted_str_marker:
5120 nommu_addchr(&ctx.as_string, next);
5121 i_getch(input); /* eat second ' */
5122 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5123 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5124 } else {
5125 while (1) {
5126 ch = i_getch(input);
5127 if (ch == EOF) {
5128 syntax_error_unterm_ch('\'');
5129 goto parse_error;
5130 }
5131 nommu_addchr(&ctx.as_string, ch);
5132 if (ch == '\'')
5133 break;
5134 o_addqchr(&dest, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005135 }
Eric Andersen25f27032001-04-26 23:22:31 +00005136 }
Eric Andersen25f27032001-04-26 23:22:31 +00005137 break;
5138 case '"':
Denys Vlasenko38292b62010-09-05 14:49:40 +02005139 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005140 if (next == '"' && !ctx.pending_redirect)
5141 goto insert_empty_quoted_str_marker;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005142 if (dest.o_assignment == NOT_ASSIGNMENT)
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02005143 dest.o_expflags |= EXP_FLAG_ESC_GLOB_CHARS;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005144 if (!encode_string(&ctx.as_string, &dest, input, '"', /*process_bkslash:*/ 1))
Denys Vlasenko77a7b552010-09-09 12:40:03 +02005145 goto parse_error;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02005146 dest.o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS;
Eric Andersen25f27032001-04-26 23:22:31 +00005147 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005148#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005149 case '`': {
Denys Vlasenko60a94142011-05-13 20:57:01 +02005150 USE_FOR_NOMMU(unsigned pos;)
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005151
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005152 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5153 o_addchr(&dest, '`');
Denys Vlasenko60a94142011-05-13 20:57:01 +02005154 USE_FOR_NOMMU(pos = dest.length;)
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005155 if (!add_till_backquote(&dest, input, /*in_dquote:*/ 0))
5156 goto parse_error;
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005157# if !BB_MMU
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005158 o_addstr(&ctx.as_string, dest.data + pos);
5159 o_addchr(&ctx.as_string, '`');
Denys Vlasenko2e48d532010-05-22 17:30:39 +02005160# endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005161 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5162 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00005163 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005164 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005165#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005166 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005167#if ENABLE_HUSH_CASE
5168 case_semi:
5169#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005170 if (done_word(&dest, &ctx)) {
5171 goto parse_error;
5172 }
5173 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005174#if ENABLE_HUSH_CASE
5175 /* Eat multiple semicolons, detect
5176 * whether it means something special */
5177 while (1) {
5178 ch = i_peek(input);
5179 if (ch != ';')
5180 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005181 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005182 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02005183 if (ctx.ctx_res_w == RES_CASE_BODY) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005184 ctx.ctx_dsemicolon = 1;
5185 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005186 break;
5187 }
5188 }
5189#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005190 new_cmd:
5191 /* We just finished a cmd. New one may start
5192 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005193 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02005194 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Eric Andersen25f27032001-04-26 23:22:31 +00005195 break;
5196 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005197 if (done_word(&dest, &ctx)) {
5198 goto parse_error;
5199 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005200 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005201 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005202 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005203 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005204 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005205 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005206 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005207 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005208 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005209 if (done_word(&dest, &ctx)) {
5210 goto parse_error;
5211 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005212#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005213 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005214 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005215#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005216 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005217 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005218 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005219 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005220 } else {
5221 /* we could pick up a file descriptor choice here
5222 * with redirect_opt_num(), but bash doesn't do it.
5223 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005224 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005225 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005226 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005227 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005228#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005229 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005230 if (ctx.ctx_res_w == RES_MATCH
5231 && ctx.command->argv == NULL /* not (word|(... */
5232 && dest.length == 0 /* not word(... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02005233 && dest.has_quoted_part == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005234 ) {
5235 continue;
5236 }
5237#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005238 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005239 if (parse_group(&dest, &ctx, input, ch) != 0) {
5240 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005241 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005242 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005243 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005244#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005245 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005246 goto case_semi;
5247#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005248 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005249 /* proper use of this character is caught by end_trigger:
5250 * if we see {, we call parse_group(..., end_trigger='}')
5251 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005252 syntax_error_unexpected_ch(ch);
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01005253 G.last_exitcode = 2;
Denys Vlasenko9fda6092017-07-14 13:36:48 +02005254 goto parse_error2;
Eric Andersen25f27032001-04-26 23:22:31 +00005255 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005256 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005257 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005258 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005259 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005260
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005261 parse_error:
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01005262 G.last_exitcode = 1;
Denys Vlasenko9fda6092017-07-14 13:36:48 +02005263 parse_error2:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005264 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005265 struct parse_context *pctx;
5266 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005267
5268 /* Clean up allocated tree.
Denys Vlasenko764b2f02009-06-07 16:05:04 +02005269 * Sample for finding leaks on syntax error recovery path.
5270 * Run it from interactive shell, watch pmap `pidof hush`.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005271 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005272 * Samples to catch leaks at execution:
Denys Vlasenko5d5a6112016-11-07 19:36:50 +01005273 * while if (true | { true;}); then echo ok; fi; do break; done
5274 * 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 +00005275 */
5276 pctx = &ctx;
5277 do {
5278 /* Update pipe/command counts,
5279 * otherwise freeing may miss some */
5280 done_pipe(pctx, PIPE_SEQ);
5281 debug_printf_clean("freeing list %p from ctx %p\n",
5282 pctx->list_head, pctx);
5283 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005284 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005285 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005286#if !BB_MMU
5287 o_free_unsafe(&pctx->as_string);
5288#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005289 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005290 if (pctx != &ctx) {
5291 free(pctx);
5292 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005293 IF_HAS_KEYWORDS(pctx = p2;)
5294 } while (HAS_KEYWORDS && pctx);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005295
Denys Vlasenkoa439fa92011-03-30 19:11:46 +02005296 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005297#if !BB_MMU
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005298 if (pstring)
5299 *pstring = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005300#endif
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005301 debug_leave();
5302 return ERR_PTR;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005303 }
Eric Andersen25f27032001-04-26 23:22:31 +00005304}
5305
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005306
5307/*** Execution routines ***/
5308
5309/* Expansion can recurse, need forward decls: */
Denys Vlasenko637982f2017-07-06 01:52:23 +02005310#if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005311/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5312#define expand_string_to_string(str, do_unbackslash) \
5313 expand_string_to_string(str)
5314#endif
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005315static char *expand_string_to_string(const char *str, int do_unbackslash);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005316#if ENABLE_HUSH_TICK
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005317static int process_command_subs(o_string *dest, const char *s);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005318#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005319
5320/* expand_strvec_to_strvec() takes a list of strings, expands
5321 * all variable references within and returns a pointer to
5322 * a list of expanded strings, possibly with larger number
5323 * of strings. (Think VAR="a b"; echo $VAR).
5324 * This new list is allocated as a single malloc block.
5325 * NULL-terminated list of char* pointers is at the beginning of it,
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005326 * followed by strings themselves.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005327 * Caller can deallocate entire list by single free(list). */
5328
Denys Vlasenko238081f2010-10-03 14:26:26 +02005329/* A horde of its helpers come first: */
5330
5331static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
5332{
5333 while (--len >= 0) {
Denys Vlasenko9e800222010-10-03 14:28:04 +02005334 char c = *str++;
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005335
Denys Vlasenko9e800222010-10-03 14:28:04 +02005336#if ENABLE_HUSH_BRACE_EXPANSION
5337 if (c == '{' || c == '}') {
5338 /* { -> \{, } -> \} */
5339 o_addchr(o, '\\');
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005340 /* And now we want to add { or } and continue:
5341 * o_addchr(o, c);
5342 * continue;
Denys Vlasenko10ad6222017-04-17 16:13:32 +02005343 * luckily, just falling through achieves this.
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005344 */
Denys Vlasenko9e800222010-10-03 14:28:04 +02005345 }
5346#endif
5347 o_addchr(o, c);
5348 if (c == '\\') {
Denys Vlasenko238081f2010-10-03 14:26:26 +02005349 /* \z -> \\\z; \<eol> -> \\<eol> */
5350 o_addchr(o, '\\');
5351 if (len) {
5352 len--;
5353 o_addchr(o, '\\');
5354 o_addchr(o, *str++);
5355 }
5356 }
5357 }
5358}
5359
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005360/* Store given string, finalizing the word and starting new one whenever
5361 * we encounter IFS char(s). This is used for expanding variable values.
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005362 * End-of-string does NOT finalize word: think about 'echo -$VAR-'.
5363 * Return in *ended_with_ifs:
5364 * 1 - ended with IFS char, else 0 (this includes case of empty str).
5365 */
5366static int expand_on_ifs(int *ended_with_ifs, o_string *output, int n, const char *str)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005367{
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005368 int last_is_ifs = 0;
5369
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005370 while (1) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005371 int word_len;
5372
5373 if (!*str) /* EOL - do not finalize word */
5374 break;
5375 word_len = strcspn(str, G.ifs);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005376 if (word_len) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005377 /* We have WORD_LEN leading non-IFS chars */
Denys Vlasenko238081f2010-10-03 14:26:26 +02005378 if (!(output->o_expflags & EXP_FLAG_GLOB)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005379 o_addblock(output, str, word_len);
Denys Vlasenko238081f2010-10-03 14:26:26 +02005380 } else {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005381 /* Protect backslashes against globbing up :)
Denys Vlasenkoa769e022010-09-10 10:12:34 +02005382 * Example: "v='\*'; echo b$v" prints "b\*"
5383 * (and does not try to glob on "*")
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005384 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005385 o_addblock_duplicate_backslash(output, str, word_len);
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005386 /*/ Why can't we do it easier? */
5387 /*o_addblock(output, str, word_len); - WRONG: "v='\*'; echo Z$v" prints "Z*" instead of "Z\*" */
5388 /*o_addqblock(output, str, word_len); - WRONG: "v='*'; echo Z$v" prints "Z*" instead of Z* files */
5389 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005390 last_is_ifs = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005391 str += word_len;
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005392 if (!*str) /* EOL - do not finalize word */
5393 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005394 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005395
5396 /* We know str here points to at least one IFS char */
5397 last_is_ifs = 1;
5398 str += strspn(str, G.ifs); /* skip IFS chars */
5399 if (!*str) /* EOL - do not finalize word */
5400 break;
5401
5402 /* Start new word... but not always! */
5403 /* Case "v=' a'; echo ''$v": we do need to finalize empty word: */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005404 if (output->has_quoted_part
5405 /* Case "v=' a'; echo $v":
5406 * here nothing precedes the space in $v expansion,
5407 * therefore we should not finish the word
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005408 * (IOW: if there *is* word to finalize, only then do it):
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005409 */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005410 || (n > 0 && output->data[output->length - 1])
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005411 ) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005412 o_addchr(output, '\0');
5413 debug_print_list("expand_on_ifs", output, n);
5414 n = o_save_ptr(output, n);
5415 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005416 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005417
5418 if (ended_with_ifs)
5419 *ended_with_ifs = last_is_ifs;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005420 debug_print_list("expand_on_ifs[1]", output, n);
5421 return n;
5422}
5423
5424/* Helper to expand $((...)) and heredoc body. These act as if
5425 * they are in double quotes, with the exception that they are not :).
5426 * Just the rules are similar: "expand only $var and `cmd`"
5427 *
5428 * Returns malloced string.
5429 * As an optimization, we return NULL if expansion is not needed.
5430 */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005431#if !BASH_PATTERN_SUBST
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005432/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5433#define encode_then_expand_string(str, process_bkslash, do_unbackslash) \
5434 encode_then_expand_string(str)
5435#endif
5436static char *encode_then_expand_string(const char *str, int process_bkslash, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005437{
Denys Vlasenko637982f2017-07-06 01:52:23 +02005438#if !BASH_PATTERN_SUBST
5439 const int do_unbackslash = 1;
5440#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005441 char *exp_str;
5442 struct in_str input;
5443 o_string dest = NULL_O_STRING;
5444
5445 if (!strchr(str, '$')
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02005446 && !strchr(str, '\\')
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005447#if ENABLE_HUSH_TICK
5448 && !strchr(str, '`')
5449#endif
5450 ) {
5451 return NULL;
5452 }
5453
5454 /* We need to expand. Example:
5455 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
5456 */
5457 setup_string_in_str(&input, str);
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005458 encode_string(NULL, &dest, &input, EOF, process_bkslash);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005459//TODO: error check (encode_string returns 0 on error)?
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005460 //bb_error_msg("'%s' -> '%s'", str, dest.data);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005461 exp_str = expand_string_to_string(dest.data, /*unbackslash:*/ do_unbackslash);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005462 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
5463 o_free_unsafe(&dest);
5464 return exp_str;
5465}
5466
Denys Vlasenko0b883582016-12-23 16:49:07 +01005467#if ENABLE_FEATURE_SH_MATH
Denys Vlasenko063847d2010-09-15 13:33:02 +02005468static arith_t expand_and_evaluate_arith(const char *arg, const char **errmsg_p)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005469{
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005470 arith_state_t math_state;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005471 arith_t res;
5472 char *exp_str;
5473
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005474 math_state.lookupvar = get_local_var_value;
5475 math_state.setvar = set_local_var_from_halves;
5476 //math_state.endofname = endofname;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005477 exp_str = encode_then_expand_string(arg, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005478 res = arith(&math_state, exp_str ? exp_str : arg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005479 free(exp_str);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005480 if (errmsg_p)
5481 *errmsg_p = math_state.errmsg;
5482 if (math_state.errmsg)
5483 die_if_script(math_state.errmsg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005484 return res;
5485}
5486#endif
5487
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005488#if BASH_PATTERN_SUBST
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005489/* ${var/[/]pattern[/repl]} helpers */
5490static char *strstr_pattern(char *val, const char *pattern, int *size)
5491{
5492 while (1) {
5493 char *end = scan_and_match(val, pattern, SCAN_MOVE_FROM_RIGHT + SCAN_MATCH_LEFT_HALF);
5494 debug_printf_varexp("val:'%s' pattern:'%s' end:'%s'\n", val, pattern, end);
5495 if (end) {
5496 *size = end - val;
5497 return val;
5498 }
5499 if (*val == '\0')
5500 return NULL;
5501 /* Optimization: if "*pat" did not match the start of "string",
5502 * we know that "tring", "ring" etc will not match too:
5503 */
5504 if (pattern[0] == '*')
5505 return NULL;
5506 val++;
5507 }
5508}
5509static char *replace_pattern(char *val, const char *pattern, const char *repl, char exp_op)
5510{
5511 char *result = NULL;
5512 unsigned res_len = 0;
5513 unsigned repl_len = strlen(repl);
5514
5515 while (1) {
5516 int size;
5517 char *s = strstr_pattern(val, pattern, &size);
5518 if (!s)
5519 break;
5520
5521 result = xrealloc(result, res_len + (s - val) + repl_len + 1);
5522 memcpy(result + res_len, val, s - val);
5523 res_len += s - val;
5524 strcpy(result + res_len, repl);
5525 res_len += repl_len;
5526 debug_printf_varexp("val:'%s' s:'%s' result:'%s'\n", val, s, result);
5527
5528 val = s + size;
5529 if (exp_op == '/')
5530 break;
5531 }
5532 if (val[0] && result) {
5533 result = xrealloc(result, res_len + strlen(val) + 1);
5534 strcpy(result + res_len, val);
5535 debug_printf_varexp("val:'%s' result:'%s'\n", val, result);
5536 }
5537 debug_printf_varexp("result:'%s'\n", result);
5538 return result;
5539}
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005540#endif /* BASH_PATTERN_SUBST */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005541
5542/* Helper:
5543 * Handles <SPECIAL_VAR_SYMBOL>varname...<SPECIAL_VAR_SYMBOL> construct.
5544 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005545static NOINLINE const char *expand_one_var(char **to_be_freed_pp, char *arg, char **pp)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005546{
5547 const char *val = NULL;
5548 char *to_be_freed = NULL;
5549 char *p = *pp;
5550 char *var;
5551 char first_char;
5552 char exp_op;
5553 char exp_save = exp_save; /* for compiler */
5554 char *exp_saveptr; /* points to expansion operator */
5555 char *exp_word = exp_word; /* for compiler */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005556 char arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005557
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005558 *p = '\0'; /* replace trailing SPECIAL_VAR_SYMBOL */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005559 var = arg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005560 exp_saveptr = arg[1] ? strchr(VAR_ENCODED_SUBST_OPS, arg[1]) : NULL;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005561 arg0 = arg[0];
5562 first_char = arg[0] = arg0 & 0x7f;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005563 exp_op = 0;
5564
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005565 if (first_char == '#' /* ${#... */
5566 && arg[1] && !exp_saveptr /* not ${#} and not ${#<op_char>...} */
5567 ) {
5568 /* It must be length operator: ${#var} */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005569 var++;
5570 exp_op = 'L';
5571 } else {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005572 /* Maybe handle parameter expansion */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005573 if (exp_saveptr /* if 2nd char is one of expansion operators */
5574 && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */
5575 ) {
5576 /* ${?:0}, ${#[:]%0} etc */
5577 exp_saveptr = var + 1;
5578 } else {
5579 /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */
5580 exp_saveptr = var+1 + strcspn(var+1, VAR_ENCODED_SUBST_OPS);
5581 }
5582 exp_op = exp_save = *exp_saveptr;
5583 if (exp_op) {
5584 exp_word = exp_saveptr + 1;
5585 if (exp_op == ':') {
5586 exp_op = *exp_word++;
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005587//TODO: try ${var:} and ${var:bogus} in non-bash config
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005588 if (BASH_SUBSTR
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005589 && (!exp_op || !strchr(MINUS_PLUS_EQUAL_QUESTION, exp_op))
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005590 ) {
5591 /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */
5592 exp_op = ':';
5593 exp_word--;
5594 }
5595 }
5596 *exp_saveptr = '\0';
5597 } /* else: it's not an expansion op, but bare ${var} */
5598 }
5599
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005600 /* Look up the variable in question */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005601 if (isdigit(var[0])) {
Denys Vlasenko77a7b552010-09-09 12:40:03 +02005602 /* parse_dollar should have vetted var for us */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005603 int n = xatoi_positive(var);
5604 if (n < G.global_argc)
5605 val = G.global_argv[n];
5606 /* else val remains NULL: $N with too big N */
5607 } else {
5608 switch (var[0]) {
5609 case '$': /* pid */
5610 val = utoa(G.root_pid);
5611 break;
5612 case '!': /* bg pid */
5613 val = G.last_bg_pid ? utoa(G.last_bg_pid) : "";
5614 break;
5615 case '?': /* exitcode */
5616 val = utoa(G.last_exitcode);
5617 break;
5618 case '#': /* argc */
5619 val = utoa(G.global_argc ? G.global_argc-1 : 0);
5620 break;
5621 default:
5622 val = get_local_var_value(var);
5623 }
5624 }
5625
5626 /* Handle any expansions */
5627 if (exp_op == 'L') {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005628 reinit_unicode_for_hush();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005629 debug_printf_expand("expand: length(%s)=", val);
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005630 val = utoa(val ? unicode_strlen(val) : 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005631 debug_printf_expand("%s\n", val);
5632 } else if (exp_op) {
5633 if (exp_op == '%' || exp_op == '#') {
5634 /* Standard-mandated substring removal ops:
5635 * ${parameter%word} - remove smallest suffix pattern
5636 * ${parameter%%word} - remove largest suffix pattern
5637 * ${parameter#word} - remove smallest prefix pattern
5638 * ${parameter##word} - remove largest prefix pattern
5639 *
5640 * Word is expanded to produce a glob pattern.
5641 * Then var's value is matched to it and matching part removed.
5642 */
5643 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005644 char *t;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005645 char *exp_exp_word;
5646 char *loc;
5647 unsigned scan_flags = pick_scan(exp_op, *exp_word);
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02005648 if (exp_op == *exp_word) /* ## or %% */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005649 exp_word++;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005650 exp_exp_word = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005651 if (exp_exp_word)
5652 exp_word = exp_exp_word;
Denys Vlasenko4f870492010-09-10 11:06:01 +02005653 /* HACK ALERT. We depend here on the fact that
5654 * G.global_argv and results of utoa and get_local_var_value
5655 * are actually in writable memory:
5656 * scan_and_match momentarily stores NULs there. */
5657 t = (char*)val;
5658 loc = scan_and_match(t, exp_word, scan_flags);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005659 //bb_error_msg("op:%c str:'%s' pat:'%s' res:'%s'",
Denys Vlasenko4f870492010-09-10 11:06:01 +02005660 // exp_op, t, exp_word, loc);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005661 free(exp_exp_word);
5662 if (loc) { /* match was found */
5663 if (scan_flags & SCAN_MATCH_LEFT_HALF) /* #[#] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005664 val = loc; /* take right part */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005665 else /* %[%] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005666 val = to_be_freed = xstrndup(val, loc - val); /* left */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005667 }
5668 }
5669 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005670#if BASH_PATTERN_SUBST
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005671 else if (exp_op == '/' || exp_op == '\\') {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005672 /* It's ${var/[/]pattern[/repl]} thing.
5673 * Note that in encoded form it has TWO parts:
5674 * var/pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenko4f870492010-09-10 11:06:01 +02005675 * and if // is used, it is encoded as \:
5676 * var\pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005677 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005678 /* Empty variable always gives nothing: */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005679 // "v=''; echo ${v/*/w}" prints "", not "w"
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005680 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005681 /* pattern uses non-standard expansion.
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005682 * repl should be unbackslashed and globbed
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005683 * by the usual expansion rules:
5684 * >az; >bz;
5685 * v='a bz'; echo "${v/a*z/a*z}" prints "a*z"
5686 * v='a bz'; echo "${v/a*z/\z}" prints "\z"
5687 * v='a bz'; echo ${v/a*z/a*z} prints "az"
5688 * v='a bz'; echo ${v/a*z/\z} prints "z"
5689 * (note that a*z _pattern_ is never globbed!)
5690 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005691 char *pattern, *repl, *t;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005692 pattern = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005693 if (!pattern)
5694 pattern = xstrdup(exp_word);
5695 debug_printf_varexp("pattern:'%s'->'%s'\n", exp_word, pattern);
5696 *p++ = SPECIAL_VAR_SYMBOL;
5697 exp_word = p;
5698 p = strchr(p, SPECIAL_VAR_SYMBOL);
5699 *p = '\0';
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005700 repl = encode_then_expand_string(exp_word, /*process_bkslash:*/ arg0 & 0x80, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005701 debug_printf_varexp("repl:'%s'->'%s'\n", exp_word, repl);
5702 /* HACK ALERT. We depend here on the fact that
5703 * G.global_argv and results of utoa and get_local_var_value
5704 * are actually in writable memory:
5705 * replace_pattern momentarily stores NULs there. */
5706 t = (char*)val;
5707 to_be_freed = replace_pattern(t,
5708 pattern,
5709 (repl ? repl : exp_word),
5710 exp_op);
5711 if (to_be_freed) /* at least one replace happened */
5712 val = to_be_freed;
5713 free(pattern);
5714 free(repl);
5715 }
5716 }
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005717#endif /* BASH_PATTERN_SUBST */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005718 else if (exp_op == ':') {
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01005719#if BASH_SUBSTR && ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005720 /* It's ${var:N[:M]} bashism.
5721 * Note that in encoded form it has TWO parts:
5722 * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL>
5723 */
5724 arith_t beg, len;
Denys Vlasenko063847d2010-09-15 13:33:02 +02005725 const char *errmsg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005726
Denys Vlasenko063847d2010-09-15 13:33:02 +02005727 beg = expand_and_evaluate_arith(exp_word, &errmsg);
5728 if (errmsg)
5729 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005730 debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg);
5731 *p++ = SPECIAL_VAR_SYMBOL;
5732 exp_word = p;
5733 p = strchr(p, SPECIAL_VAR_SYMBOL);
5734 *p = '\0';
Denys Vlasenko063847d2010-09-15 13:33:02 +02005735 len = expand_and_evaluate_arith(exp_word, &errmsg);
5736 if (errmsg)
5737 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005738 debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len);
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005739 if (beg < 0) {
5740 /* negative beg counts from the end */
5741 beg = (arith_t)strlen(val) + beg;
5742 if (beg < 0) /* ${v: -999999} is "" */
5743 beg = len = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005744 }
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005745 debug_printf_varexp("from val:'%s'\n", val);
5746 if (len < 0) {
5747 /* in bash, len=-n means strlen()-n */
5748 len = (arith_t)strlen(val) - beg + len;
5749 if (len < 0) /* bash compat */
5750 die_if_script("%s: substring expression < 0", var);
5751 }
Denys Vlasenko0ba80e42017-07-17 16:50:20 +02005752 if (len <= 0 || !val || beg >= strlen(val)) {
Denys Vlasenkoe32b6502017-07-17 16:46:57 +02005753 arith_err:
5754 val = NULL;
5755 } else {
5756 /* Paranoia. What if user entered 9999999999999
5757 * which fits in arith_t but not int? */
5758 if (len >= INT_MAX)
5759 len = INT_MAX;
5760 val = to_be_freed = xstrndup(val + beg, len);
5761 }
5762 debug_printf_varexp("val:'%s'\n", val);
5763#else /* not (HUSH_SUBSTR_EXPANSION && FEATURE_SH_MATH) */
5764 die_if_script("malformed ${%s:...}", var);
5765 val = NULL;
5766#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005767 } else { /* one of "-=+?" */
5768 /* Standard-mandated substitution ops:
5769 * ${var?word} - indicate error if unset
5770 * If var is unset, word (or a message indicating it is unset
5771 * if word is null) is written to standard error
5772 * and the shell exits with a non-zero exit status.
5773 * Otherwise, the value of var is substituted.
5774 * ${var-word} - use default value
5775 * If var is unset, word is substituted.
5776 * ${var=word} - assign and use default value
5777 * If var is unset, word is assigned to var.
5778 * In all cases, final value of var is substituted.
5779 * ${var+word} - use alternative value
5780 * If var is unset, null is substituted.
5781 * Otherwise, word is substituted.
5782 *
5783 * Word is subjected to tilde expansion, parameter expansion,
5784 * command substitution, and arithmetic expansion.
5785 * If word is not needed, it is not expanded.
5786 *
5787 * Colon forms (${var:-word}, ${var:=word} etc) do the same,
5788 * but also treat null var as if it is unset.
5789 */
5790 int use_word = (!val || ((exp_save == ':') && !val[0]));
5791 if (exp_op == '+')
5792 use_word = !use_word;
5793 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
5794 (exp_save == ':') ? "true" : "false", use_word);
5795 if (use_word) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005796 to_be_freed = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005797 if (to_be_freed)
5798 exp_word = to_be_freed;
5799 if (exp_op == '?') {
5800 /* mimic bash message */
5801 die_if_script("%s: %s",
5802 var,
5803 exp_word[0] ? exp_word : "parameter null or not set"
5804 );
5805//TODO: how interactive bash aborts expansion mid-command?
5806 } else {
5807 val = exp_word;
5808 }
5809
5810 if (exp_op == '=') {
5811 /* ${var=[word]} or ${var:=[word]} */
5812 if (isdigit(var[0]) || var[0] == '#') {
5813 /* mimic bash message */
5814 die_if_script("$%s: cannot assign in this way", var);
5815 val = NULL;
5816 } else {
5817 char *new_var = xasprintf("%s=%s", var, val);
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02005818 set_local_var(new_var, /*flag:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005819 }
5820 }
5821 }
5822 } /* one of "-=+?" */
5823
5824 *exp_saveptr = exp_save;
5825 } /* if (exp_op) */
5826
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005827 arg[0] = arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005828
5829 *pp = p;
5830 *to_be_freed_pp = to_be_freed;
5831 return val;
5832}
5833
5834/* Expand all variable references in given string, adding words to list[]
5835 * at n, n+1,... positions. Return updated n (so that list[n] is next one
5836 * to be filled). This routine is extremely tricky: has to deal with
5837 * variables/parameters with whitespace, $* and $@, and constructs like
5838 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005839static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005840{
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005841 /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005842 * expansion of right-hand side of assignment == 1-element expand.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005843 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005844 char cant_be_null = 0; /* only bit 0x80 matters */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005845 int ended_in_ifs = 0; /* did last unquoted expansion end with IFS chars? */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005846 char *p;
5847
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005848 debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg,
5849 !!(output->o_expflags & EXP_FLAG_SINGLEWORD));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005850 debug_print_list("expand_vars_to_list", output, n);
5851 n = o_save_ptr(output, n);
5852 debug_print_list("expand_vars_to_list[0]", output, n);
5853
5854 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
5855 char first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005856 char *to_be_freed = NULL;
5857 const char *val = NULL;
5858#if ENABLE_HUSH_TICK
5859 o_string subst_result = NULL_O_STRING;
5860#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01005861#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005862 char arith_buf[sizeof(arith_t)*3 + 2];
5863#endif
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005864
5865 if (ended_in_ifs) {
5866 o_addchr(output, '\0');
5867 n = o_save_ptr(output, n);
5868 ended_in_ifs = 0;
5869 }
5870
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005871 o_addblock(output, arg, p - arg);
5872 debug_print_list("expand_vars_to_list[1]", output, n);
5873 arg = ++p;
5874 p = strchr(p, SPECIAL_VAR_SYMBOL);
5875
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005876 /* Fetch special var name (if it is indeed one of them)
5877 * and quote bit, force the bit on if singleword expansion -
5878 * important for not getting v=$@ expand to many words. */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005879 first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005880
5881 /* Is this variable quoted and thus expansion can't be null?
5882 * "$@" is special. Even if quoted, it can still
5883 * expand to nothing (not even an empty string),
5884 * thus it is excluded. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005885 if ((first_ch & 0x7f) != '@')
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005886 cant_be_null |= first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005887
5888 switch (first_ch & 0x7f) {
5889 /* Highest bit in first_ch indicates that var is double-quoted */
5890 case '*':
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005891 case '@': {
5892 int i;
5893 if (!G.global_argv[1])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005894 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005895 i = 1;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005896 cant_be_null |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005897 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005898 while (G.global_argv[i]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005899 n = expand_on_ifs(NULL, output, n, G.global_argv[i]);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005900 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
5901 if (G.global_argv[i++][0] && G.global_argv[i]) {
5902 /* this argv[] is not empty and not last:
5903 * put terminating NUL, start new word */
5904 o_addchr(output, '\0');
5905 debug_print_list("expand_vars_to_list[2]", output, n);
5906 n = o_save_ptr(output, n);
5907 debug_print_list("expand_vars_to_list[3]", output, n);
5908 }
5909 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005910 } else
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005911 /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....'
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005912 * and in this case should treat it like '$*' - see 'else...' below */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005913 if (first_ch == ('@'|0x80) /* quoted $@ */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005914 && !(output->o_expflags & EXP_FLAG_SINGLEWORD) /* not v="$@" case */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005915 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005916 while (1) {
5917 o_addQstr(output, G.global_argv[i]);
5918 if (++i >= G.global_argc)
5919 break;
5920 o_addchr(output, '\0');
5921 debug_print_list("expand_vars_to_list[4]", output, n);
5922 n = o_save_ptr(output, n);
5923 }
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005924 } else { /* quoted $* (or v="$@" case): add as one word */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005925 while (1) {
5926 o_addQstr(output, G.global_argv[i]);
5927 if (!G.global_argv[++i])
5928 break;
5929 if (G.ifs[0])
5930 o_addchr(output, G.ifs[0]);
5931 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005932 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005933 }
5934 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005935 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005936 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
5937 /* "Empty variable", used to make "" etc to not disappear */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005938 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005939 arg++;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005940 cant_be_null = 0x80;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005941 break;
5942#if ENABLE_HUSH_TICK
5943 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005944 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005945 arg++;
5946 /* Can't just stuff it into output o_string,
5947 * expanded result may need to be globbed
Denys Vlasenko10ad6222017-04-17 16:13:32 +02005948 * and $IFS-split */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005949 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
5950 G.last_exitcode = process_command_subs(&subst_result, arg);
5951 debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
5952 val = subst_result.data;
5953 goto store_val;
5954#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01005955#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005956 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
5957 arith_t res;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005958
5959 arg++; /* skip '+' */
5960 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
5961 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005962 res = expand_and_evaluate_arith(arg, NULL);
Denys Vlasenkobed7c812010-09-16 11:50:46 +02005963 debug_printf_subst("ARITH RES '"ARITH_FMT"'\n", res);
5964 sprintf(arith_buf, ARITH_FMT, res);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005965 val = arith_buf;
5966 break;
5967 }
5968#endif
5969 default:
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005970 val = expand_one_var(&to_be_freed, arg, &p);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005971 IF_HUSH_TICK(store_val:)
5972 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005973 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val,
5974 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005975 if (val && val[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005976 n = expand_on_ifs(&ended_in_ifs, output, n, val);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005977 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005978 }
5979 } else { /* quoted $VAR, val will be appended below */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005980 output->has_quoted_part = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005981 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val,
5982 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005983 }
5984 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005985 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
5986
5987 if (val && val[0]) {
5988 o_addQstr(output, val);
5989 }
5990 free(to_be_freed);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005991
5992 /* Restore NULL'ed SPECIAL_VAR_SYMBOL.
5993 * Do the check to avoid writing to a const string. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005994 if (*p != SPECIAL_VAR_SYMBOL)
5995 *p = SPECIAL_VAR_SYMBOL;
5996
5997#if ENABLE_HUSH_TICK
5998 o_free(&subst_result);
5999#endif
6000 arg = ++p;
6001 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
6002
6003 if (arg[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02006004 if (ended_in_ifs) {
6005 o_addchr(output, '\0');
6006 n = o_save_ptr(output, n);
6007 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006008 debug_print_list("expand_vars_to_list[a]", output, n);
6009 /* this part is literal, and it was already pre-quoted
6010 * if needed (much earlier), do not use o_addQstr here! */
6011 o_addstr_with_NUL(output, arg);
6012 debug_print_list("expand_vars_to_list[b]", output, n);
6013 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02006014 && !(cant_be_null & 0x80) /* and all vars were not quoted. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006015 ) {
6016 n--;
6017 /* allow to reuse list[n] later without re-growth */
6018 output->has_empty_slot = 1;
6019 } else {
6020 o_addchr(output, '\0');
6021 }
6022
6023 return n;
6024}
6025
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006026static char **expand_variables(char **argv, unsigned expflags)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006027{
6028 int n;
6029 char **list;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006030 o_string output = NULL_O_STRING;
6031
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006032 output.o_expflags = expflags;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006033
6034 n = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006035 while (*argv) {
Denys Vlasenko95d48f22010-09-08 13:58:55 +02006036 n = expand_vars_to_list(&output, n, *argv);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006037 argv++;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006038 }
6039 debug_print_list("expand_variables", &output, n);
6040
6041 /* output.data (malloced in one block) gets returned in "list" */
6042 list = o_finalize_list(&output, n);
6043 debug_print_strings("expand_variables[1]", list);
6044 return list;
6045}
6046
6047static char **expand_strvec_to_strvec(char **argv)
6048{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006049 return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006050}
6051
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01006052#if BASH_TEST2
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006053static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
6054{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006055 return expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006056}
6057#endif
6058
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02006059/* Used for expansion of right hand of assignments,
6060 * $((...)), heredocs, variable espansion parts.
6061 *
6062 * NB: should NOT do globbing!
6063 * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*"
6064 */
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006065static char *expand_string_to_string(const char *str, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006066{
Denys Vlasenko637982f2017-07-06 01:52:23 +02006067#if !BASH_PATTERN_SUBST && !ENABLE_HUSH_CASE
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02006068 const int do_unbackslash = 1;
6069#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006070 char *argv[2], **list;
6071
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006072 debug_printf_expand("string_to_string<='%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006073 /* This is generally an optimization, but it also
6074 * handles "", which otherwise trips over !list[0] check below.
6075 * (is this ever happens that we actually get str="" here?)
6076 */
6077 if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) {
6078 //TODO: Can use on strings with \ too, just unbackslash() them?
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006079 debug_printf_expand("string_to_string(fast)=>'%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006080 return xstrdup(str);
6081 }
6082
6083 argv[0] = (char*)str;
6084 argv[1] = NULL;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006085 list = expand_variables(argv, do_unbackslash
6086 ? EXP_FLAG_ESC_GLOB_CHARS | EXP_FLAG_SINGLEWORD
6087 : EXP_FLAG_SINGLEWORD
6088 );
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006089 if (HUSH_DEBUG)
6090 if (!list[0] || list[1])
6091 bb_error_msg_and_die("BUG in varexp2");
6092 /* actually, just move string 2*sizeof(char*) bytes back */
6093 overlapping_strcpy((char*)list, list[0]);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006094 if (do_unbackslash)
6095 unbackslash((char*)list);
6096 debug_printf_expand("string_to_string=>'%s'\n", (char*)list);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006097 return (char*)list;
6098}
6099
Denys Vlasenkobd43c672017-07-05 23:12:15 +02006100/* Used for "eval" builtin and case string */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006101static char* expand_strvec_to_string(char **argv)
6102{
6103 char **list;
6104
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02006105 list = expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006106 /* Convert all NULs to spaces */
6107 if (list[0]) {
6108 int n = 1;
6109 while (list[n]) {
6110 if (HUSH_DEBUG)
6111 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
6112 bb_error_msg_and_die("BUG in varexp3");
6113 /* bash uses ' ' regardless of $IFS contents */
6114 list[n][-1] = ' ';
6115 n++;
6116 }
6117 }
Denys Vlasenko78c9c732016-09-29 01:44:17 +02006118 overlapping_strcpy((char*)list, list[0] ? list[0] : "");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006119 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
6120 return (char*)list;
6121}
6122
6123static char **expand_assignments(char **argv, int count)
6124{
6125 int i;
6126 char **p;
6127
6128 G.expanded_assignments = p = NULL;
6129 /* Expand assignments into one string each */
6130 for (i = 0; i < count; i++) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006131 G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i], /*unbackslash:*/ 1));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006132 }
6133 G.expanded_assignments = NULL;
6134 return p;
6135}
6136
6137
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006138static void switch_off_special_sigs(unsigned mask)
6139{
6140 unsigned sig = 0;
6141 while ((mask >>= 1) != 0) {
6142 sig++;
6143 if (!(mask & 1))
6144 continue;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006145#if ENABLE_HUSH_TRAP
6146 if (G_traps) {
6147 if (G_traps[sig] && !G_traps[sig][0])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006148 /* trap is '', has to remain SIG_IGN */
6149 continue;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006150 free(G_traps[sig]);
6151 G_traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006152 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006153#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006154 /* We are here only if no trap or trap was not '' */
Denys Vlasenko0806e402011-05-12 23:06:20 +02006155 install_sighandler(sig, SIG_DFL);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006156 }
6157}
6158
Denys Vlasenkob347df92011-08-09 22:49:15 +02006159#if BB_MMU
6160/* never called */
6161void re_execute_shell(char ***to_free, const char *s,
6162 char *g_argv0, char **g_argv,
6163 char **builtin_argv) NORETURN;
6164
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006165static void reset_traps_to_defaults(void)
6166{
6167 /* This function is always called in a child shell
6168 * after fork (not vfork, NOMMU doesn't use this function).
6169 */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006170 IF_HUSH_TRAP(unsigned sig;)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006171 unsigned mask;
6172
6173 /* Child shells are not interactive.
6174 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
6175 * Testcase: (while :; do :; done) + ^Z should background.
6176 * Same goes for SIGTERM, SIGHUP, SIGINT.
6177 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006178 mask = (G.special_sig_mask & SPECIAL_INTERACTIVE_SIGS) | G_fatal_sig_mask;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006179 if (!G_traps && !mask)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006180 return; /* already no traps and no special sigs */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006181
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006182 /* Switch off special sigs */
6183 switch_off_special_sigs(mask);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006184# if ENABLE_HUSH_JOB
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006185 G_fatal_sig_mask = 0;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006186# endif
Denys Vlasenko10c01312011-05-11 11:49:21 +02006187 G.special_sig_mask &= ~SPECIAL_INTERACTIVE_SIGS;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02006188 /* SIGQUIT,SIGCHLD and maybe SPECIAL_JOBSTOP_SIGS
6189 * remain set in G.special_sig_mask */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006190
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006191# if ENABLE_HUSH_TRAP
6192 if (!G_traps)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006193 return;
6194
6195 /* Reset all sigs to default except ones with empty traps */
6196 for (sig = 0; sig < NSIG; sig++) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006197 if (!G_traps[sig])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006198 continue; /* no trap: nothing to do */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006199 if (!G_traps[sig][0])
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006200 continue; /* empty trap: has to remain SIG_IGN */
6201 /* sig has non-empty trap, reset it: */
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006202 free(G_traps[sig]);
6203 G_traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02006204 /* There is no signal for trap 0 (EXIT) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006205 if (sig == 0)
6206 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02006207 install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006208 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006209# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006210}
6211
6212#else /* !BB_MMU */
6213
6214static void re_execute_shell(char ***to_free, const char *s,
6215 char *g_argv0, char **g_argv,
6216 char **builtin_argv) NORETURN;
6217static void re_execute_shell(char ***to_free, const char *s,
6218 char *g_argv0, char **g_argv,
6219 char **builtin_argv)
6220{
6221# define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
6222 /* delims + 2 * (number of bytes in printed hex numbers) */
6223 char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
6224 char *heredoc_argv[4];
6225 struct variable *cur;
6226# if ENABLE_HUSH_FUNCTIONS
6227 struct function *funcp;
6228# endif
6229 char **argv, **pp;
6230 unsigned cnt;
6231 unsigned long long empty_trap_mask;
6232
6233 if (!g_argv0) { /* heredoc */
6234 argv = heredoc_argv;
6235 argv[0] = (char *) G.argv0_for_re_execing;
6236 argv[1] = (char *) "-<";
6237 argv[2] = (char *) s;
6238 argv[3] = NULL;
6239 pp = &argv[3]; /* used as pointer to empty environment */
6240 goto do_exec;
6241 }
6242
6243 cnt = 0;
6244 pp = builtin_argv;
6245 if (pp) while (*pp++)
6246 cnt++;
6247
6248 empty_trap_mask = 0;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006249 if (G_traps) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006250 int sig;
6251 for (sig = 1; sig < NSIG; sig++) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006252 if (G_traps[sig] && !G_traps[sig][0])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006253 empty_trap_mask |= 1LL << sig;
6254 }
6255 }
6256
6257 sprintf(param_buf, NOMMU_HACK_FMT
6258 , (unsigned) G.root_pid
6259 , (unsigned) G.root_ppid
6260 , (unsigned) G.last_bg_pid
6261 , (unsigned) G.last_exitcode
6262 , cnt
6263 , empty_trap_mask
6264 IF_HUSH_LOOPS(, G.depth_of_loop)
6265 );
6266# undef NOMMU_HACK_FMT
6267 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
6268 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
6269 */
6270 cnt += 6;
6271 for (cur = G.top_var; cur; cur = cur->next) {
6272 if (!cur->flg_export || cur->flg_read_only)
6273 cnt += 2;
6274 }
6275# if ENABLE_HUSH_FUNCTIONS
6276 for (funcp = G.top_func; funcp; funcp = funcp->next)
6277 cnt += 3;
6278# endif
6279 pp = g_argv;
6280 while (*pp++)
6281 cnt++;
6282 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
6283 *pp++ = (char *) G.argv0_for_re_execing;
6284 *pp++ = param_buf;
6285 for (cur = G.top_var; cur; cur = cur->next) {
6286 if (strcmp(cur->varstr, hush_version_str) == 0)
6287 continue;
6288 if (cur->flg_read_only) {
6289 *pp++ = (char *) "-R";
6290 *pp++ = cur->varstr;
6291 } else if (!cur->flg_export) {
6292 *pp++ = (char *) "-V";
6293 *pp++ = cur->varstr;
6294 }
6295 }
6296# if ENABLE_HUSH_FUNCTIONS
6297 for (funcp = G.top_func; funcp; funcp = funcp->next) {
6298 *pp++ = (char *) "-F";
6299 *pp++ = funcp->name;
6300 *pp++ = funcp->body_as_string;
6301 }
6302# endif
6303 /* We can pass activated traps here. Say, -Tnn:trap_string
6304 *
6305 * However, POSIX says that subshells reset signals with traps
6306 * to SIG_DFL.
6307 * I tested bash-3.2 and it not only does that with true subshells
6308 * of the form ( list ), but with any forked children shells.
6309 * I set trap "echo W" WINCH; and then tried:
6310 *
6311 * { echo 1; sleep 20; echo 2; } &
6312 * while true; do echo 1; sleep 20; echo 2; break; done &
6313 * true | { echo 1; sleep 20; echo 2; } | cat
6314 *
6315 * In all these cases sending SIGWINCH to the child shell
6316 * did not run the trap. If I add trap "echo V" WINCH;
6317 * _inside_ group (just before echo 1), it works.
6318 *
6319 * I conclude it means we don't need to pass active traps here.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006320 */
6321 *pp++ = (char *) "-c";
6322 *pp++ = (char *) s;
6323 if (builtin_argv) {
6324 while (*++builtin_argv)
6325 *pp++ = *builtin_argv;
6326 *pp++ = (char *) "";
6327 }
6328 *pp++ = g_argv0;
6329 while (*g_argv)
6330 *pp++ = *g_argv++;
6331 /* *pp = NULL; - is already there */
6332 pp = environ;
6333
6334 do_exec:
6335 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02006336 /* Don't propagate SIG_IGN to the child */
6337 if (SPECIAL_JOBSTOP_SIGS != 0)
6338 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006339 execve(bb_busybox_exec_path, argv, pp);
6340 /* Fallback. Useful for init=/bin/hush usage etc */
6341 if (argv[0][0] == '/')
6342 execve(argv[0], argv, pp);
6343 xfunc_error_retval = 127;
6344 bb_error_msg_and_die("can't re-execute the shell");
6345}
6346#endif /* !BB_MMU */
6347
6348
6349static int run_and_free_list(struct pipe *pi);
6350
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006351/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006352 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
6353 * end_trigger controls how often we stop parsing
6354 * NUL: parse all, execute, return
6355 * ';': parse till ';' or newline, execute, repeat till EOF
6356 */
6357static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00006358{
Denys Vlasenko00243b02009-11-16 02:00:03 +01006359 /* Why we need empty flag?
6360 * An obscure corner case "false; ``; echo $?":
6361 * empty command in `` should still set $? to 0.
6362 * But we can't just set $? to 0 at the start,
6363 * this breaks "false; echo `echo $?`" case.
6364 */
6365 bool empty = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006366 while (1) {
6367 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006368
Denys Vlasenkoa1463192011-01-18 17:55:04 +01006369#if ENABLE_HUSH_INTERACTIVE
6370 if (end_trigger == ';')
6371 inp->promptmode = 0; /* PS1 */
6372#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006373 pipe_list = parse_stream(NULL, inp, end_trigger);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02006374 if (!pipe_list || pipe_list == ERR_PTR) { /* EOF/error */
6375 /* If we are in "big" script
6376 * (not in `cmd` or something similar)...
6377 */
6378 if (pipe_list == ERR_PTR && end_trigger == ';') {
6379 /* Discard cached input (rest of line) */
6380 int ch = inp->last_char;
6381 while (ch != EOF && ch != '\n') {
6382 //bb_error_msg("Discarded:'%c'", ch);
6383 ch = i_getch(inp);
6384 }
6385 /* Force prompt */
6386 inp->p = NULL;
6387 /* This stream isn't empty */
6388 empty = 0;
6389 continue;
6390 }
6391 if (!pipe_list && empty)
Denys Vlasenko00243b02009-11-16 02:00:03 +01006392 G.last_exitcode = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006393 break;
Denys Vlasenko00243b02009-11-16 02:00:03 +01006394 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006395 debug_print_tree(pipe_list, 0);
6396 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
6397 run_and_free_list(pipe_list);
Denys Vlasenko00243b02009-11-16 02:00:03 +01006398 empty = 0;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006399 if (G_flag_return_in_progress == 1)
Denys Vlasenko68d5cb52011-03-24 02:50:03 +01006400 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006401 }
Eric Andersen25f27032001-04-26 23:22:31 +00006402}
6403
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006404static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00006405{
6406 struct in_str input;
6407 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006408 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00006409}
6410
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006411static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00006412{
Eric Andersen25f27032001-04-26 23:22:31 +00006413 struct in_str input;
6414 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006415 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00006416}
6417
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006418#if ENABLE_HUSH_TICK
6419static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
6420{
6421 pid_t pid;
6422 int channel[2];
6423# if !BB_MMU
6424 char **to_free = NULL;
6425# endif
6426
6427 xpipe(channel);
6428 pid = BB_MMU ? xfork() : xvfork();
6429 if (pid == 0) { /* child */
6430 disable_restore_tty_pgrp_on_exit();
6431 /* Process substitution is not considered to be usual
6432 * 'command execution'.
6433 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
6434 */
6435 bb_signals(0
6436 + (1 << SIGTSTP)
6437 + (1 << SIGTTIN)
6438 + (1 << SIGTTOU)
6439 , SIG_IGN);
6440 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
6441 close(channel[0]); /* NB: close _first_, then move fd! */
6442 xmove_fd(channel[1], 1);
6443 /* Prevent it from trying to handle ctrl-z etc */
6444 IF_HUSH_JOB(G.run_list_level = 1;)
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006445# if ENABLE_HUSH_TRAP
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006446 /* Awful hack for `trap` or $(trap).
6447 *
6448 * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
6449 * contains an example where "trap" is executed in a subshell:
6450 *
6451 * save_traps=$(trap)
6452 * ...
6453 * eval "$save_traps"
6454 *
6455 * Standard does not say that "trap" in subshell shall print
6456 * parent shell's traps. It only says that its output
6457 * must have suitable form, but then, in the above example
6458 * (which is not supposed to be normative), it implies that.
6459 *
6460 * bash (and probably other shell) does implement it
6461 * (traps are reset to defaults, but "trap" still shows them),
6462 * but as a result, "trap" logic is hopelessly messed up:
6463 *
6464 * # trap
6465 * trap -- 'echo Ho' SIGWINCH <--- we have a handler
6466 * # (trap) <--- trap is in subshell - no output (correct, traps are reset)
6467 * # true | trap <--- trap is in subshell - no output (ditto)
6468 * # echo `true | trap` <--- in subshell - output (but traps are reset!)
6469 * trap -- 'echo Ho' SIGWINCH
6470 * # echo `(trap)` <--- in subshell in subshell - output
6471 * trap -- 'echo Ho' SIGWINCH
6472 * # echo `true | (trap)` <--- in subshell in subshell in subshell - output!
6473 * trap -- 'echo Ho' SIGWINCH
6474 *
6475 * The rules when to forget and when to not forget traps
6476 * get really complex and nonsensical.
6477 *
6478 * Our solution: ONLY bare $(trap) or `trap` is special.
6479 */
6480 s = skip_whitespace(s);
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01006481 if (is_prefixed_with(s, "trap")
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006482 && skip_whitespace(s + 4)[0] == '\0'
6483 ) {
6484 static const char *const argv[] = { NULL, NULL };
6485 builtin_trap((char**)argv);
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02006486 fflush_all(); /* important */
6487 _exit(0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006488 }
Denys Vlasenko7a85c602017-01-08 17:40:18 +01006489# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006490# if BB_MMU
6491 reset_traps_to_defaults();
6492 parse_and_run_string(s);
6493 _exit(G.last_exitcode);
6494# else
6495 /* We re-execute after vfork on NOMMU. This makes this script safe:
6496 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
6497 * huge=`cat BIG` # was blocking here forever
6498 * echo OK
6499 */
6500 re_execute_shell(&to_free,
6501 s,
6502 G.global_argv[0],
6503 G.global_argv + 1,
6504 NULL);
6505# endif
6506 }
6507
6508 /* parent */
6509 *pid_p = pid;
6510# if ENABLE_HUSH_FAST
6511 G.count_SIGCHLD++;
6512//bb_error_msg("[%d] fork in generate_stream_from_string:"
6513// " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d",
6514// getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6515# endif
6516 enable_restore_tty_pgrp_on_exit();
6517# if !BB_MMU
6518 free(to_free);
6519# endif
6520 close(channel[1]);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006521 return remember_FILE(xfdopen_for_read(channel[0]));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006522}
6523
6524/* Return code is exit status of the process that is run. */
6525static int process_command_subs(o_string *dest, const char *s)
6526{
6527 FILE *fp;
6528 struct in_str pipe_str;
6529 pid_t pid;
6530 int status, ch, eol_cnt;
6531
6532 fp = generate_stream_from_string(s, &pid);
6533
6534 /* Now send results of command back into original context */
6535 setup_file_in_str(&pipe_str, fp);
6536 eol_cnt = 0;
6537 while ((ch = i_getch(&pipe_str)) != EOF) {
6538 if (ch == '\n') {
6539 eol_cnt++;
6540 continue;
6541 }
6542 while (eol_cnt) {
6543 o_addchr(dest, '\n');
6544 eol_cnt--;
6545 }
6546 o_addQchr(dest, ch);
6547 }
6548
6549 debug_printf("done reading from `cmd` pipe, closing it\n");
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006550 fclose_and_forget(fp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006551 /* We need to extract exitcode. Test case
6552 * "true; echo `sleep 1; false` $?"
6553 * should print 1 */
6554 safe_waitpid(pid, &status, 0);
6555 debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
6556 return WEXITSTATUS(status);
6557}
6558#endif /* ENABLE_HUSH_TICK */
6559
6560
6561static void setup_heredoc(struct redir_struct *redir)
6562{
6563 struct fd_pair pair;
6564 pid_t pid;
6565 int len, written;
6566 /* the _body_ of heredoc (misleading field name) */
6567 const char *heredoc = redir->rd_filename;
6568 char *expanded;
6569#if !BB_MMU
6570 char **to_free;
6571#endif
6572
6573 expanded = NULL;
6574 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02006575 expanded = encode_then_expand_string(heredoc, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006576 if (expanded)
6577 heredoc = expanded;
6578 }
6579 len = strlen(heredoc);
6580
6581 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
6582 xpiped_pair(pair);
6583 xmove_fd(pair.rd, redir->rd_fd);
6584
6585 /* Try writing without forking. Newer kernels have
6586 * dynamically growing pipes. Must use non-blocking write! */
6587 ndelay_on(pair.wr);
6588 while (1) {
6589 written = write(pair.wr, heredoc, len);
6590 if (written <= 0)
6591 break;
6592 len -= written;
6593 if (len == 0) {
6594 close(pair.wr);
6595 free(expanded);
6596 return;
6597 }
6598 heredoc += written;
6599 }
6600 ndelay_off(pair.wr);
6601
6602 /* Okay, pipe buffer was not big enough */
6603 /* Note: we must not create a stray child (bastard? :)
6604 * for the unsuspecting parent process. Child creates a grandchild
6605 * and exits before parent execs the process which consumes heredoc
6606 * (that exec happens after we return from this function) */
6607#if !BB_MMU
6608 to_free = NULL;
6609#endif
6610 pid = xvfork();
6611 if (pid == 0) {
6612 /* child */
6613 disable_restore_tty_pgrp_on_exit();
6614 pid = BB_MMU ? xfork() : xvfork();
6615 if (pid != 0)
6616 _exit(0);
6617 /* grandchild */
6618 close(redir->rd_fd); /* read side of the pipe */
6619#if BB_MMU
6620 full_write(pair.wr, heredoc, len); /* may loop or block */
6621 _exit(0);
6622#else
6623 /* Delegate blocking writes to another process */
6624 xmove_fd(pair.wr, STDOUT_FILENO);
6625 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
6626#endif
6627 }
6628 /* parent */
6629#if ENABLE_HUSH_FAST
6630 G.count_SIGCHLD++;
6631//bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6632#endif
6633 enable_restore_tty_pgrp_on_exit();
6634#if !BB_MMU
6635 free(to_free);
6636#endif
6637 close(pair.wr);
6638 free(expanded);
6639 wait(NULL); /* wait till child has died */
6640}
6641
Denys Vlasenko2db74612017-07-07 22:07:28 +02006642struct squirrel {
6643 int orig_fd;
6644 int moved_to;
6645 /* moved_to = n: fd was moved to n; restore back to orig_fd after redir */
6646 /* moved_to = -1: fd was opened by redirect; close orig_fd after redir */
6647};
6648
6649static struct squirrel *add_squirrel(struct squirrel *sq, int fd, int avoid_fd)
6650{
6651 int i = 0;
6652
6653 if (sq) while (sq[i].orig_fd >= 0) {
6654 /* If we collide with an already moved fd... */
6655 if (fd == sq[i].moved_to) {
6656 sq[i].moved_to = fcntl_F_DUPFD(sq[i].moved_to, avoid_fd);
6657 debug_printf_redir("redirect_fd %d: already busy, moving to %d\n", fd, sq[i].moved_to);
6658 if (sq[i].moved_to < 0) /* what? */
6659 xfunc_die();
6660 return sq;
6661 }
6662 if (fd == sq[i].orig_fd) {
6663 /* Example: echo Hello >/dev/null 1>&2 */
6664 debug_printf_redir("redirect_fd %d: already moved\n", fd);
6665 return sq;
6666 }
6667 i++;
6668 }
6669
6670 sq = xrealloc(sq, (i + 2) * sizeof(sq[0]));
6671 sq[i].orig_fd = fd;
6672 /* If this fd is open, we move and remember it; if it's closed, moved_to = -1 */
6673 sq[i].moved_to = fcntl_F_DUPFD(fd, avoid_fd);
6674 debug_printf_redir("redirect_fd %d: previous fd is moved to %d (-1 if it was closed)\n", fd, sq[i].moved_to);
6675 if (sq[i].moved_to < 0 && errno != EBADF)
6676 xfunc_die();
6677 sq[i+1].orig_fd = -1; /* end marker */
6678 return sq;
6679}
6680
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006681/* fd: redirect wants this fd to be used (e.g. 3>file).
6682 * Move all conflicting internally used fds,
6683 * and remember them so that we can restore them later.
6684 */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006685static int save_fds_on_redirect(int fd, int avoid_fd, struct squirrel **sqp)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006686{
Denys Vlasenko2db74612017-07-07 22:07:28 +02006687 if (avoid_fd < 9) /* the important case here is that it can be -1 */
6688 avoid_fd = 9;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006689
6690#if ENABLE_HUSH_INTERACTIVE
6691 if (fd != 0 && fd == G.interactive_fd) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02006692 G.interactive_fd = xdup_and_close(G.interactive_fd, F_DUPFD_CLOEXEC, avoid_fd);
6693 debug_printf_redir("redirect_fd %d: matches interactive_fd, moving it to %d\n", fd, G.interactive_fd);
6694 return 1; /* "we closed fd" */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006695 }
6696#endif
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006697 /* Are we called from setup_redirects(squirrel==NULL)? Two cases:
6698 * (1) Redirect in a forked child. No need to save FILEs' fds,
6699 * we aren't going to use them anymore, ok to trash.
Denys Vlasenko2db74612017-07-07 22:07:28 +02006700 * (2) "exec 3>FILE". Bummer. We can save script FILEs' fds,
6701 * but how are we doing to restore them?
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006702 * "fileno(fd) = new_fd" can't be done.
6703 */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006704 if (!sqp)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006705 return 0;
6706
Denys Vlasenko2db74612017-07-07 22:07:28 +02006707 /* If this one of script's fds? */
6708 if (save_FILEs_on_redirect(fd, avoid_fd))
6709 return 1; /* yes. "we closed fd" */
6710
6711 /* Check whether it collides with any open fds (e.g. stdio), save fds as needed */
6712 *sqp = add_squirrel(*sqp, fd, avoid_fd);
6713 return 0; /* "we did not close fd" */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006714}
6715
Denys Vlasenko2db74612017-07-07 22:07:28 +02006716static void restore_redirects(struct squirrel *sq)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006717{
Denys Vlasenko2db74612017-07-07 22:07:28 +02006718
6719 if (sq) {
6720 int i = 0;
6721 while (sq[i].orig_fd >= 0) {
6722 if (sq[i].moved_to >= 0) {
6723 /* We simply die on error */
6724 debug_printf_redir("restoring redirected fd from %d to %d\n", sq[i].moved_to, sq[i].orig_fd);
6725 xmove_fd(sq[i].moved_to, sq[i].orig_fd);
6726 } else {
6727 /* cmd1 9>FILE; cmd2_should_see_fd9_closed */
6728 debug_printf_redir("restoring redirected fd %d: closing it\n", sq[i].orig_fd);
6729 close(sq[i].orig_fd);
6730 }
6731 i++;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006732 }
Denys Vlasenko2db74612017-07-07 22:07:28 +02006733 free(sq);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006734 }
6735
Denys Vlasenko2db74612017-07-07 22:07:28 +02006736 /* If moved, G.interactive_fd stays on new fd, not restoring it */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006737
6738 restore_redirected_FILEs();
6739}
6740
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006741/* squirrel != NULL means we squirrel away copies of stdin, stdout,
6742 * and stderr if they are redirected. */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006743static int setup_redirects(struct command *prog, struct squirrel **sqp)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006744{
6745 int openfd, mode;
6746 struct redir_struct *redir;
6747
6748 for (redir = prog->redirects; redir; redir = redir->next) {
6749 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006750 /* "rd_fd<<HERE" case */
Denys Vlasenko2db74612017-07-07 22:07:28 +02006751 save_fds_on_redirect(redir->rd_fd, /*avoid:*/ 0, sqp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006752 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
6753 * of the heredoc */
6754 debug_printf_parse("set heredoc '%s'\n",
6755 redir->rd_filename);
6756 setup_heredoc(redir);
6757 continue;
6758 }
6759
6760 if (redir->rd_dup == REDIRFD_TO_FILE) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006761 /* "rd_fd<*>file" case (<*> is <,>,>>,<>) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006762 char *p;
6763 if (redir->rd_filename == NULL) {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02006764 /*
6765 * Examples:
6766 * "cmd >" (no filename)
6767 * "cmd > <file" (2nd redirect starts too early)
6768 */
6769 die_if_script("syntax error: %s", "invalid redirect");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006770 continue;
6771 }
6772 mode = redir_table[redir->rd_type].mode;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006773 p = expand_string_to_string(redir->rd_filename, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006774 openfd = open_or_warn(p, mode);
6775 free(p);
6776 if (openfd < 0) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006777 /* Error message from open_or_warn can be lost
6778 * if stderr has been redirected, but bash
6779 * and ash both lose it as well
6780 * (though zsh doesn't!)
6781 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006782 return 1;
6783 }
6784 } else {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006785 /* "rd_fd<*>rd_dup" or "rd_fd<*>-" cases */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006786 openfd = redir->rd_dup;
6787 }
6788
6789 if (openfd != redir->rd_fd) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02006790 int closed = save_fds_on_redirect(redir->rd_fd, /*avoid:*/ openfd, sqp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006791 if (openfd == REDIRFD_CLOSE) {
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006792 /* "rd_fd >&-" means "close me" */
6793 if (!closed) {
6794 /* ^^^ optimization: saving may already
6795 * have closed it. If not... */
6796 close(redir->rd_fd);
6797 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006798 } else {
6799 xdup2(openfd, redir->rd_fd);
6800 if (redir->rd_dup == REDIRFD_TO_FILE)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006801 /* "rd_fd > FILE" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006802 close(openfd);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006803 /* else: "rd_fd > rd_dup" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006804 }
6805 }
6806 }
6807 return 0;
6808}
6809
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006810static char *find_in_path(const char *arg)
6811{
6812 char *ret = NULL;
6813 const char *PATH = get_local_var_value("PATH");
6814
6815 if (!PATH)
6816 return NULL;
6817
6818 while (1) {
6819 const char *end = strchrnul(PATH, ':');
6820 int sz = end - PATH; /* must be int! */
6821
6822 free(ret);
6823 if (sz != 0) {
6824 ret = xasprintf("%.*s/%s", sz, PATH, arg);
6825 } else {
6826 /* We have xxx::yyyy in $PATH,
6827 * it means "use current dir" */
6828 ret = xstrdup(arg);
6829 }
6830 if (access(ret, F_OK) == 0)
6831 break;
6832
6833 if (*end == '\0') {
6834 free(ret);
6835 return NULL;
6836 }
6837 PATH = end + 1;
6838 }
6839
6840 return ret;
6841}
6842
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006843static const struct built_in_command *find_builtin_helper(const char *name,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006844 const struct built_in_command *x,
6845 const struct built_in_command *end)
6846{
6847 while (x != end) {
6848 if (strcmp(name, x->b_cmd) != 0) {
6849 x++;
6850 continue;
6851 }
6852 debug_printf_exec("found builtin '%s'\n", name);
6853 return x;
6854 }
6855 return NULL;
6856}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006857static const struct built_in_command *find_builtin1(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006858{
6859 return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
6860}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006861static const struct built_in_command *find_builtin(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006862{
6863 const struct built_in_command *x = find_builtin1(name);
6864 if (x)
6865 return x;
6866 return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
6867}
6868
6869#if ENABLE_HUSH_FUNCTIONS
6870static struct function **find_function_slot(const char *name)
6871{
6872 struct function **funcpp = &G.top_func;
6873 while (*funcpp) {
6874 if (strcmp(name, (*funcpp)->name) == 0) {
6875 break;
6876 }
6877 funcpp = &(*funcpp)->next;
6878 }
6879 return funcpp;
6880}
6881
6882static const struct function *find_function(const char *name)
6883{
6884 const struct function *funcp = *find_function_slot(name);
6885 if (funcp)
6886 debug_printf_exec("found function '%s'\n", name);
6887 return funcp;
6888}
6889
6890/* Note: takes ownership on name ptr */
6891static struct function *new_function(char *name)
6892{
6893 struct function **funcpp = find_function_slot(name);
6894 struct function *funcp = *funcpp;
6895
6896 if (funcp != NULL) {
6897 struct command *cmd = funcp->parent_cmd;
6898 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
6899 if (!cmd) {
6900 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
6901 free(funcp->name);
6902 /* Note: if !funcp->body, do not free body_as_string!
6903 * This is a special case of "-F name body" function:
6904 * body_as_string was not malloced! */
6905 if (funcp->body) {
6906 free_pipe_list(funcp->body);
6907# if !BB_MMU
6908 free(funcp->body_as_string);
6909# endif
6910 }
6911 } else {
6912 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
6913 cmd->argv[0] = funcp->name;
6914 cmd->group = funcp->body;
6915# if !BB_MMU
6916 cmd->group_as_string = funcp->body_as_string;
6917# endif
6918 }
6919 } else {
6920 debug_printf_exec("remembering new function '%s'\n", name);
6921 funcp = *funcpp = xzalloc(sizeof(*funcp));
6922 /*funcp->next = NULL;*/
6923 }
6924
6925 funcp->name = name;
6926 return funcp;
6927}
6928
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006929# if ENABLE_HUSH_UNSET
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006930static void unset_func(const char *name)
6931{
6932 struct function **funcpp = find_function_slot(name);
6933 struct function *funcp = *funcpp;
6934
6935 if (funcp != NULL) {
6936 debug_printf_exec("freeing function '%s'\n", funcp->name);
6937 *funcpp = funcp->next;
6938 /* funcp is unlinked now, deleting it.
6939 * Note: if !funcp->body, the function was created by
6940 * "-F name body", do not free ->body_as_string
6941 * and ->name as they were not malloced. */
6942 if (funcp->body) {
6943 free_pipe_list(funcp->body);
6944 free(funcp->name);
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006945# if !BB_MMU
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006946 free(funcp->body_as_string);
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006947# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006948 }
6949 free(funcp);
6950 }
6951}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01006952# endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006953
6954# if BB_MMU
6955#define exec_function(to_free, funcp, argv) \
6956 exec_function(funcp, argv)
6957# endif
6958static void exec_function(char ***to_free,
6959 const struct function *funcp,
6960 char **argv) NORETURN;
6961static void exec_function(char ***to_free,
6962 const struct function *funcp,
6963 char **argv)
6964{
6965# if BB_MMU
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02006966 int n;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006967
6968 argv[0] = G.global_argv[0];
6969 G.global_argv = argv;
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02006970 G.global_argc = n = 1 + string_array_len(argv + 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006971 /* On MMU, funcp->body is always non-NULL */
6972 n = run_list(funcp->body);
6973 fflush_all();
6974 _exit(n);
6975# else
6976 re_execute_shell(to_free,
6977 funcp->body_as_string,
6978 G.global_argv[0],
6979 argv + 1,
6980 NULL);
6981# endif
6982}
6983
6984static int run_function(const struct function *funcp, char **argv)
6985{
6986 int rc;
6987 save_arg_t sv;
6988 smallint sv_flg;
6989
6990 save_and_replace_G_args(&sv, argv);
6991
6992 /* "we are in function, ok to use return" */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006993 sv_flg = G_flag_return_in_progress;
6994 G_flag_return_in_progress = -1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006995# if ENABLE_HUSH_LOCAL
6996 G.func_nest_level++;
6997# endif
6998
6999 /* On MMU, funcp->body is always non-NULL */
7000# if !BB_MMU
7001 if (!funcp->body) {
7002 /* Function defined by -F */
7003 parse_and_run_string(funcp->body_as_string);
7004 rc = G.last_exitcode;
7005 } else
7006# endif
7007 {
7008 rc = run_list(funcp->body);
7009 }
7010
7011# if ENABLE_HUSH_LOCAL
7012 {
7013 struct variable *var;
7014 struct variable **var_pp;
7015
7016 var_pp = &G.top_var;
7017 while ((var = *var_pp) != NULL) {
7018 if (var->func_nest_level < G.func_nest_level) {
7019 var_pp = &var->next;
7020 continue;
7021 }
7022 /* Unexport */
7023 if (var->flg_export)
7024 bb_unsetenv(var->varstr);
7025 /* Remove from global list */
7026 *var_pp = var->next;
7027 /* Free */
7028 if (!var->max_len)
7029 free(var->varstr);
7030 free(var);
7031 }
7032 G.func_nest_level--;
7033 }
7034# endif
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02007035 G_flag_return_in_progress = sv_flg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007036
7037 restore_G_args(&sv, argv);
7038
7039 return rc;
7040}
7041#endif /* ENABLE_HUSH_FUNCTIONS */
7042
7043
7044#if BB_MMU
7045#define exec_builtin(to_free, x, argv) \
7046 exec_builtin(x, argv)
7047#else
7048#define exec_builtin(to_free, x, argv) \
7049 exec_builtin(to_free, argv)
7050#endif
7051static void exec_builtin(char ***to_free,
7052 const struct built_in_command *x,
7053 char **argv) NORETURN;
7054static void exec_builtin(char ***to_free,
7055 const struct built_in_command *x,
7056 char **argv)
7057{
7058#if BB_MMU
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007059 int rcode;
7060 fflush_all();
7061 rcode = x->b_function(argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007062 fflush_all();
7063 _exit(rcode);
7064#else
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007065 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007066 /* On NOMMU, we must never block!
7067 * Example: { sleep 99 | read line; } & echo Ok
7068 */
7069 re_execute_shell(to_free,
7070 argv[0],
7071 G.global_argv[0],
7072 G.global_argv + 1,
7073 argv);
7074#endif
7075}
7076
7077
7078static void execvp_or_die(char **argv) NORETURN;
7079static void execvp_or_die(char **argv)
7080{
Denys Vlasenko04465da2016-10-03 01:01:15 +02007081 int e;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007082 debug_printf_exec("execing '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02007083 /* Don't propagate SIG_IGN to the child */
7084 if (SPECIAL_JOBSTOP_SIGS != 0)
7085 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007086 execvp(argv[0], argv);
Denys Vlasenko04465da2016-10-03 01:01:15 +02007087 e = 2;
7088 if (errno == EACCES) e = 126;
7089 if (errno == ENOENT) e = 127;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007090 bb_perror_msg("can't execute '%s'", argv[0]);
Denys Vlasenko04465da2016-10-03 01:01:15 +02007091 _exit(e);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007092}
7093
7094#if ENABLE_HUSH_MODE_X
7095static void dump_cmd_in_x_mode(char **argv)
7096{
7097 if (G_x_mode && argv) {
7098 /* We want to output the line in one write op */
7099 char *buf, *p;
7100 int len;
7101 int n;
7102
7103 len = 3;
7104 n = 0;
7105 while (argv[n])
7106 len += strlen(argv[n++]) + 1;
7107 buf = xmalloc(len);
7108 buf[0] = '+';
7109 p = buf + 1;
7110 n = 0;
7111 while (argv[n])
7112 p += sprintf(p, " %s", argv[n++]);
7113 *p++ = '\n';
7114 *p = '\0';
7115 fputs(buf, stderr);
7116 free(buf);
7117 }
7118}
7119#else
7120# define dump_cmd_in_x_mode(argv) ((void)0)
7121#endif
7122
7123#if BB_MMU
7124#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
7125 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
7126#define pseudo_exec(nommu_save, command, argv_expanded) \
7127 pseudo_exec(command, argv_expanded)
7128#endif
7129
7130/* Called after [v]fork() in run_pipe, or from builtin_exec.
7131 * Never returns.
7132 * Don't exit() here. If you don't exec, use _exit instead.
7133 * The at_exit handlers apparently confuse the calling process,
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02007134 * in particular stdin handling. Not sure why? -- because of vfork! (vda)
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02007135 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007136static void pseudo_exec_argv(nommu_save_t *nommu_save,
7137 char **argv, int assignment_cnt,
7138 char **argv_expanded) NORETURN;
7139static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
7140 char **argv, int assignment_cnt,
7141 char **argv_expanded)
7142{
7143 char **new_env;
7144
7145 new_env = expand_assignments(argv, assignment_cnt);
7146 dump_cmd_in_x_mode(new_env);
7147
7148 if (!argv[assignment_cnt]) {
7149 /* Case when we are here: ... | var=val | ...
7150 * (note that we do not exit early, i.e., do not optimize out
7151 * expand_assignments(): think about ... | var=`sleep 1` | ...
7152 */
7153 free_strings(new_env);
7154 _exit(EXIT_SUCCESS);
7155 }
7156
7157#if BB_MMU
7158 set_vars_and_save_old(new_env);
7159 free(new_env); /* optional */
7160 /* we can also destroy set_vars_and_save_old's return value,
7161 * to save memory */
7162#else
7163 nommu_save->new_env = new_env;
7164 nommu_save->old_vars = set_vars_and_save_old(new_env);
7165#endif
7166
7167 if (argv_expanded) {
7168 argv = argv_expanded;
7169 } else {
7170 argv = expand_strvec_to_strvec(argv + assignment_cnt);
7171#if !BB_MMU
7172 nommu_save->argv = argv;
7173#endif
7174 }
7175 dump_cmd_in_x_mode(argv);
7176
7177#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7178 if (strchr(argv[0], '/') != NULL)
7179 goto skip;
7180#endif
7181
7182 /* Check if the command matches any of the builtins.
7183 * Depending on context, this might be redundant. But it's
7184 * easier to waste a few CPU cycles than it is to figure out
7185 * if this is one of those cases.
7186 */
7187 {
7188 /* On NOMMU, it is more expensive to re-execute shell
7189 * just in order to run echo or test builtin.
7190 * It's better to skip it here and run corresponding
7191 * non-builtin later. */
7192 const struct built_in_command *x;
7193 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
7194 if (x) {
7195 exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
7196 }
7197 }
7198#if ENABLE_HUSH_FUNCTIONS
7199 /* Check if the command matches any functions */
7200 {
7201 const struct function *funcp = find_function(argv[0]);
7202 if (funcp) {
7203 exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
7204 }
7205 }
7206#endif
7207
7208#if ENABLE_FEATURE_SH_STANDALONE
7209 /* Check if the command matches any busybox applets */
7210 {
7211 int a = find_applet_by_name(argv[0]);
7212 if (a >= 0) {
7213# if BB_MMU /* see above why on NOMMU it is not allowed */
7214 if (APPLET_IS_NOEXEC(a)) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02007215 /* Do not leak open fds from opened script files etc */
7216 close_all_FILE_list();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007217 debug_printf_exec("running applet '%s'\n", argv[0]);
Denys Vlasenko69a5ec92017-07-07 19:08:56 +02007218 run_applet_no_and_exit(a, argv[0], argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007219 }
7220# endif
7221 /* Re-exec ourselves */
7222 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02007223 /* Don't propagate SIG_IGN to the child */
7224 if (SPECIAL_JOBSTOP_SIGS != 0)
7225 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007226 execv(bb_busybox_exec_path, argv);
7227 /* If they called chroot or otherwise made the binary no longer
7228 * executable, fall through */
7229 }
7230 }
7231#endif
7232
7233#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
7234 skip:
7235#endif
7236 execvp_or_die(argv);
7237}
7238
7239/* Called after [v]fork() in run_pipe
7240 */
7241static void pseudo_exec(nommu_save_t *nommu_save,
7242 struct command *command,
7243 char **argv_expanded) NORETURN;
7244static void pseudo_exec(nommu_save_t *nommu_save,
7245 struct command *command,
7246 char **argv_expanded)
7247{
7248 if (command->argv) {
7249 pseudo_exec_argv(nommu_save, command->argv,
7250 command->assignment_cnt, argv_expanded);
7251 }
7252
7253 if (command->group) {
7254 /* Cases when we are here:
7255 * ( list )
7256 * { list } &
7257 * ... | ( list ) | ...
7258 * ... | { list } | ...
7259 */
7260#if BB_MMU
7261 int rcode;
7262 debug_printf_exec("pseudo_exec: run_list\n");
7263 reset_traps_to_defaults();
7264 rcode = run_list(command->group);
7265 /* OK to leak memory by not calling free_pipe_list,
7266 * since this process is about to exit */
7267 _exit(rcode);
7268#else
7269 re_execute_shell(&nommu_save->argv_from_re_execing,
7270 command->group_as_string,
7271 G.global_argv[0],
7272 G.global_argv + 1,
7273 NULL);
7274#endif
7275 }
7276
7277 /* Case when we are here: ... | >file */
7278 debug_printf_exec("pseudo_exec'ed null command\n");
7279 _exit(EXIT_SUCCESS);
7280}
7281
7282#if ENABLE_HUSH_JOB
7283static const char *get_cmdtext(struct pipe *pi)
7284{
7285 char **argv;
7286 char *p;
7287 int len;
7288
7289 /* This is subtle. ->cmdtext is created only on first backgrounding.
7290 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
7291 * On subsequent bg argv is trashed, but we won't use it */
7292 if (pi->cmdtext)
7293 return pi->cmdtext;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007294
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007295 argv = pi->cmds[0].argv;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007296 if (!argv) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007297 pi->cmdtext = xzalloc(1);
7298 return pi->cmdtext;
7299 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007300 len = 0;
7301 do {
7302 len += strlen(*argv) + 1;
7303 } while (*++argv);
7304 p = xmalloc(len);
7305 pi->cmdtext = p;
7306 argv = pi->cmds[0].argv;
7307 do {
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007308 p = stpcpy(p, *argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007309 *p++ = ' ';
7310 } while (*++argv);
7311 p[-1] = '\0';
7312 return pi->cmdtext;
7313}
7314
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007315static void remove_job_from_table(struct pipe *pi)
7316{
7317 struct pipe *prev_pipe;
7318
7319 if (pi == G.job_list) {
7320 G.job_list = pi->next;
7321 } else {
7322 prev_pipe = G.job_list;
7323 while (prev_pipe->next != pi)
7324 prev_pipe = prev_pipe->next;
7325 prev_pipe->next = pi->next;
7326 }
7327 G.last_jobid = 0;
7328 if (G.job_list)
7329 G.last_jobid = G.job_list->jobid;
7330}
7331
7332static void delete_finished_job(struct pipe *pi)
7333{
7334 remove_job_from_table(pi);
7335 free_pipe(pi);
7336}
7337
7338static void clean_up_last_dead_job(void)
7339{
7340 if (G.job_list && !G.job_list->alive_cmds)
7341 delete_finished_job(G.job_list);
7342}
7343
Denys Vlasenko16096292017-07-10 10:00:28 +02007344static void insert_job_into_table(struct pipe *pi)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007345{
7346 struct pipe *job, **jobp;
7347 int i;
7348
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007349 clean_up_last_dead_job();
7350
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007351 /* Find the end of the list, and find next job ID to use */
7352 i = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007353 jobp = &G.job_list;
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007354 while ((job = *jobp) != NULL) {
7355 if (job->jobid > i)
7356 i = job->jobid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007357 jobp = &job->next;
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007358 }
7359 pi->jobid = i + 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007360
Denys Vlasenko9e55a152017-07-10 10:01:12 +02007361 /* Create a new job struct at the end */
7362 job = *jobp = xmemdup(pi, sizeof(*pi));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007363 job->next = NULL;
7364 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
7365 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
7366 for (i = 0; i < pi->num_cmds; i++) {
7367 job->cmds[i].pid = pi->cmds[i].pid;
7368 /* all other fields are not used and stay zero */
7369 }
7370 job->cmdtext = xstrdup(get_cmdtext(pi));
7371
7372 if (G_interactive_fd)
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01007373 printf("[%u] %u %s\n", job->jobid, (unsigned)job->cmds[0].pid, job->cmdtext);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007374 G.last_jobid = job->jobid;
7375}
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007376#endif /* JOB */
7377
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007378static int job_exited_or_stopped(struct pipe *pi)
7379{
7380 int rcode, i;
7381
7382 if (pi->alive_cmds != pi->stopped_cmds)
7383 return -1;
7384
7385 /* All processes in fg pipe have exited or stopped */
7386 rcode = 0;
7387 i = pi->num_cmds;
7388 while (--i >= 0) {
7389 rcode = pi->cmds[i].cmd_exitcode;
7390 /* usually last process gives overall exitstatus,
7391 * but with "set -o pipefail", last *failed* process does */
7392 if (G.o_opt[OPT_O_PIPEFAIL] == 0 || rcode != 0)
7393 break;
7394 }
7395 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7396 return rcode;
7397}
7398
Denys Vlasenko7e675362016-10-28 21:57:31 +02007399static int process_wait_result(struct pipe *fg_pipe, pid_t childpid, int status)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007400{
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007401#if ENABLE_HUSH_JOB
7402 struct pipe *pi;
7403#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007404 int i, dead;
7405
7406 dead = WIFEXITED(status) || WIFSIGNALED(status);
7407
7408#if DEBUG_JOBS
7409 if (WIFSTOPPED(status))
7410 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
7411 childpid, WSTOPSIG(status), WEXITSTATUS(status));
7412 if (WIFSIGNALED(status))
7413 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
7414 childpid, WTERMSIG(status), WEXITSTATUS(status));
7415 if (WIFEXITED(status))
7416 debug_printf_jobs("pid %d exited, exitcode %d\n",
7417 childpid, WEXITSTATUS(status));
7418#endif
7419 /* Were we asked to wait for a fg pipe? */
7420 if (fg_pipe) {
7421 i = fg_pipe->num_cmds;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007422
Denys Vlasenko7e675362016-10-28 21:57:31 +02007423 while (--i >= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007424 int rcode;
7425
Denys Vlasenko7e675362016-10-28 21:57:31 +02007426 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
7427 if (fg_pipe->cmds[i].pid != childpid)
7428 continue;
7429 if (dead) {
7430 int ex;
7431 fg_pipe->cmds[i].pid = 0;
7432 fg_pipe->alive_cmds--;
7433 ex = WEXITSTATUS(status);
7434 /* bash prints killer signal's name for *last*
7435 * process in pipe (prints just newline for SIGINT/SIGPIPE).
7436 * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
7437 */
7438 if (WIFSIGNALED(status)) {
7439 int sig = WTERMSIG(status);
7440 if (i == fg_pipe->num_cmds-1)
7441 /* TODO: use strsignal() instead for bash compat? but that's bloat... */
7442 puts(sig == SIGINT || sig == SIGPIPE ? "" : get_signame(sig));
7443 /* TODO: if (WCOREDUMP(status)) + " (core dumped)"; */
7444 /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
7445 * Maybe we need to use sig | 128? */
7446 ex = sig + 128;
7447 }
7448 fg_pipe->cmds[i].cmd_exitcode = ex;
7449 } else {
7450 fg_pipe->stopped_cmds++;
7451 }
7452 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
7453 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007454 rcode = job_exited_or_stopped(fg_pipe);
7455 if (rcode >= 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007456/* Note: *non-interactive* bash does not continue if all processes in fg pipe
7457 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
7458 * and "killall -STOP cat" */
7459 if (G_interactive_fd) {
7460#if ENABLE_HUSH_JOB
7461 if (fg_pipe->alive_cmds != 0)
Denys Vlasenko16096292017-07-10 10:00:28 +02007462 insert_job_into_table(fg_pipe);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007463#endif
7464 return rcode;
7465 }
7466 if (fg_pipe->alive_cmds == 0)
7467 return rcode;
7468 }
7469 /* There are still running processes in the fg_pipe */
7470 return -1;
7471 }
Denys Vlasenko10ad6222017-04-17 16:13:32 +02007472 /* It wasn't in fg_pipe, look for process in bg pipes */
Denys Vlasenko7e675362016-10-28 21:57:31 +02007473 }
7474
7475#if ENABLE_HUSH_JOB
7476 /* We were asked to wait for bg or orphaned children */
7477 /* No need to remember exitcode in this case */
7478 for (pi = G.job_list; pi; pi = pi->next) {
7479 for (i = 0; i < pi->num_cmds; i++) {
7480 if (pi->cmds[i].pid == childpid)
7481 goto found_pi_and_prognum;
7482 }
7483 }
7484 /* Happens when shell is used as init process (init=/bin/sh) */
7485 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
7486 return -1; /* this wasn't a process from fg_pipe */
7487
7488 found_pi_and_prognum:
7489 if (dead) {
7490 /* child exited */
Denys Vlasenko840a4352017-07-07 22:56:02 +02007491 int rcode = WEXITSTATUS(status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007492 if (WIFSIGNALED(status))
Denys Vlasenko840a4352017-07-07 22:56:02 +02007493 rcode = 128 + WTERMSIG(status);
7494 pi->cmds[i].cmd_exitcode = rcode;
7495 if (G.last_bg_pid == pi->cmds[i].pid)
7496 G.last_bg_pid_exitcode = rcode;
7497 pi->cmds[i].pid = 0;
Denys Vlasenko7e675362016-10-28 21:57:31 +02007498 pi->alive_cmds--;
7499 if (!pi->alive_cmds) {
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007500 if (G_interactive_fd) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007501 printf(JOB_STATUS_FORMAT, pi->jobid,
7502 "Done", pi->cmdtext);
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02007503 delete_finished_job(pi);
7504 } else {
7505/*
7506 * bash deletes finished jobs from job table only in interactive mode,
7507 * after "jobs" cmd, or if pid of a new process matches one of the old ones
7508 * (see cleanup_dead_jobs(), delete_old_job(), J_NOTIFIED in bash source).
7509 * Testcase script: "(exit 3) & sleep 1; wait %1; echo $?" prints 3 in bash.
7510 * We only retain one "dead" job, if it's the single job on the list.
7511 * This covers most of real-world scenarios where this is useful.
7512 */
7513 if (pi != G.job_list)
7514 delete_finished_job(pi);
7515 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007516 }
7517 } else {
7518 /* child stopped */
7519 pi->stopped_cmds++;
7520 }
7521#endif
7522 return -1; /* this wasn't a process from fg_pipe */
7523}
7524
7525/* Check to see if any processes have exited -- if they have,
7526 * figure out why and see if a job has completed.
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007527 *
7528 * If non-NULL fg_pipe: wait for its completion or stop.
7529 * Return its exitcode or zero if stopped.
7530 *
7531 * Alternatively (fg_pipe == NULL, waitfor_pid != 0):
7532 * waitpid(WNOHANG), if waitfor_pid exits or stops, return exitcode+1,
7533 * else return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7534 * or 0 if no children changed status.
7535 *
7536 * Alternatively (fg_pipe == NULL, waitfor_pid == 0),
7537 * return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7538 * or 0 if no children changed status.
Denys Vlasenko7e675362016-10-28 21:57:31 +02007539 */
7540static int checkjobs(struct pipe *fg_pipe, pid_t waitfor_pid)
7541{
7542 int attributes;
7543 int status;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007544 int rcode = 0;
7545
7546 debug_printf_jobs("checkjobs %p\n", fg_pipe);
7547
7548 attributes = WUNTRACED;
7549 if (fg_pipe == NULL)
7550 attributes |= WNOHANG;
7551
7552 errno = 0;
7553#if ENABLE_HUSH_FAST
7554 if (G.handled_SIGCHLD == G.count_SIGCHLD) {
7555//bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
7556//getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
7557 /* There was neither fork nor SIGCHLD since last waitpid */
7558 /* Avoid doing waitpid syscall if possible */
7559 if (!G.we_have_children) {
7560 errno = ECHILD;
7561 return -1;
7562 }
7563 if (fg_pipe == NULL) { /* is WNOHANG set? */
7564 /* We have children, but they did not exit
7565 * or stop yet (we saw no SIGCHLD) */
7566 return 0;
7567 }
7568 /* else: !WNOHANG, waitpid will block, can't short-circuit */
7569 }
7570#endif
7571
7572/* Do we do this right?
7573 * bash-3.00# sleep 20 | false
7574 * <ctrl-Z pressed>
7575 * [3]+ Stopped sleep 20 | false
7576 * bash-3.00# echo $?
7577 * 1 <========== bg pipe is not fully done, but exitcode is already known!
7578 * [hush 1.14.0: yes we do it right]
7579 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007580 while (1) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007581 pid_t childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007582#if ENABLE_HUSH_FAST
Denys Vlasenko7e675362016-10-28 21:57:31 +02007583 int i;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007584 i = G.count_SIGCHLD;
7585#endif
7586 childpid = waitpid(-1, &status, attributes);
7587 if (childpid <= 0) {
7588 if (childpid && errno != ECHILD)
7589 bb_perror_msg("waitpid");
7590#if ENABLE_HUSH_FAST
7591 else { /* Until next SIGCHLD, waitpid's are useless */
7592 G.we_have_children = (childpid == 0);
7593 G.handled_SIGCHLD = i;
7594//bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
7595 }
7596#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007597 /* ECHILD (no children), or 0 (no change in children status) */
7598 rcode = childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007599 break;
7600 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007601 rcode = process_wait_result(fg_pipe, childpid, status);
7602 if (rcode >= 0) {
7603 /* fg_pipe exited or stopped */
7604 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007605 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007606 if (childpid == waitfor_pid) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007607 debug_printf_exec("childpid==waitfor_pid:%d status:0x%08x\n", childpid, status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007608 rcode = WEXITSTATUS(status);
7609 if (WIFSIGNALED(status))
7610 rcode = 128 + WTERMSIG(status);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007611 if (WIFSTOPPED(status))
7612 /* bash: "cmd & wait $!" and cmd stops: $? = 128 + stopsig */
7613 rcode = 128 + WSTOPSIG(status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007614 rcode++;
7615 break; /* "wait PID" called us, give it exitcode+1 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007616 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007617 /* This wasn't one of our processes, or */
7618 /* fg_pipe still has running processes, do waitpid again */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007619 } /* while (waitpid succeeds)... */
7620
7621 return rcode;
7622}
7623
7624#if ENABLE_HUSH_JOB
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02007625static int checkjobs_and_fg_shell(struct pipe *fg_pipe)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007626{
7627 pid_t p;
Denys Vlasenko7e675362016-10-28 21:57:31 +02007628 int rcode = checkjobs(fg_pipe, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007629 if (G_saved_tty_pgrp) {
7630 /* Job finished, move the shell to the foreground */
7631 p = getpgrp(); /* our process group id */
7632 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
7633 tcsetpgrp(G_interactive_fd, p);
7634 }
7635 return rcode;
7636}
7637#endif
7638
7639/* Start all the jobs, but don't wait for anything to finish.
7640 * See checkjobs().
7641 *
7642 * Return code is normally -1, when the caller has to wait for children
7643 * to finish to determine the exit status of the pipe. If the pipe
7644 * is a simple builtin command, however, the action is done by the
7645 * time run_pipe returns, and the exit code is provided as the
7646 * return value.
7647 *
7648 * Returns -1 only if started some children. IOW: we have to
7649 * mask out retvals of builtins etc with 0xff!
7650 *
7651 * The only case when we do not need to [v]fork is when the pipe
7652 * is single, non-backgrounded, non-subshell command. Examples:
7653 * cmd ; ... { list } ; ...
7654 * cmd && ... { list } && ...
7655 * cmd || ... { list } || ...
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007656 * If it is, then we can run cmd as a builtin, NOFORK,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007657 * or (if SH_STANDALONE) an applet, and we can run the { list }
7658 * with run_list. If it isn't one of these, we fork and exec cmd.
7659 *
7660 * Cases when we must fork:
7661 * non-single: cmd | cmd
7662 * backgrounded: cmd & { list } &
7663 * subshell: ( list ) [&]
7664 */
7665#if !ENABLE_HUSH_MODE_X
Denys Vlasenko26777aa2010-11-22 23:49:10 +01007666#define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, argv_expanded) \
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007667 redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel)
7668#endif
7669static int redirect_and_varexp_helper(char ***new_env_p,
7670 struct variable **old_vars_p,
7671 struct command *command,
Denys Vlasenko2db74612017-07-07 22:07:28 +02007672 struct squirrel **sqp,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007673 char **argv_expanded)
7674{
7675 /* setup_redirects acts on file descriptors, not FILEs.
7676 * This is perfect for work that comes after exec().
7677 * Is it really safe for inline use? Experimentally,
7678 * things seem to work. */
Denys Vlasenko2db74612017-07-07 22:07:28 +02007679 int rcode = setup_redirects(command, sqp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007680 if (rcode == 0) {
7681 char **new_env = expand_assignments(command->argv, command->assignment_cnt);
7682 *new_env_p = new_env;
7683 dump_cmd_in_x_mode(new_env);
7684 dump_cmd_in_x_mode(argv_expanded);
7685 if (old_vars_p)
7686 *old_vars_p = set_vars_and_save_old(new_env);
7687 }
7688 return rcode;
7689}
7690static NOINLINE int run_pipe(struct pipe *pi)
7691{
7692 static const char *const null_ptr = NULL;
7693
7694 int cmd_no;
7695 int next_infd;
7696 struct command *command;
7697 char **argv_expanded;
7698 char **argv;
Denys Vlasenko2db74612017-07-07 22:07:28 +02007699 struct squirrel *squirrel = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007700 int rcode;
7701
7702 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
7703 debug_enter();
7704
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02007705 /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*"
7706 * Result should be 3 lines: q w e, qwe, q w e
7707 */
7708 G.ifs = get_local_var_value("IFS");
7709 if (!G.ifs)
7710 G.ifs = defifs;
7711
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007712 IF_HUSH_JOB(pi->pgrp = -1;)
7713 pi->stopped_cmds = 0;
7714 command = &pi->cmds[0];
7715 argv_expanded = NULL;
7716
7717 if (pi->num_cmds != 1
7718 || pi->followup == PIPE_BG
7719 || command->cmd_type == CMD_SUBSHELL
7720 ) {
7721 goto must_fork;
7722 }
7723
7724 pi->alive_cmds = 1;
7725
7726 debug_printf_exec(": group:%p argv:'%s'\n",
7727 command->group, command->argv ? command->argv[0] : "NONE");
7728
7729 if (command->group) {
7730#if ENABLE_HUSH_FUNCTIONS
7731 if (command->cmd_type == CMD_FUNCDEF) {
7732 /* "executing" func () { list } */
7733 struct function *funcp;
7734
7735 funcp = new_function(command->argv[0]);
7736 /* funcp->name is already set to argv[0] */
7737 funcp->body = command->group;
7738# if !BB_MMU
7739 funcp->body_as_string = command->group_as_string;
7740 command->group_as_string = NULL;
7741# endif
7742 command->group = NULL;
7743 command->argv[0] = NULL;
7744 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
7745 funcp->parent_cmd = command;
7746 command->child_func = funcp;
7747
7748 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
7749 debug_leave();
7750 return EXIT_SUCCESS;
7751 }
7752#endif
7753 /* { list } */
7754 debug_printf("non-subshell group\n");
7755 rcode = 1; /* exitcode if redir failed */
Denys Vlasenko2db74612017-07-07 22:07:28 +02007756 if (setup_redirects(command, &squirrel) == 0) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007757 debug_printf_exec(": run_list\n");
7758 rcode = run_list(command->group) & 0xff;
7759 }
7760 restore_redirects(squirrel);
7761 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7762 debug_leave();
7763 debug_printf_exec("run_pipe: return %d\n", rcode);
7764 return rcode;
7765 }
7766
7767 argv = command->argv ? command->argv : (char **) &null_ptr;
7768 {
7769 const struct built_in_command *x;
7770#if ENABLE_HUSH_FUNCTIONS
7771 const struct function *funcp;
7772#else
7773 enum { funcp = 0 };
7774#endif
7775 char **new_env = NULL;
7776 struct variable *old_vars = NULL;
7777
7778 if (argv[command->assignment_cnt] == NULL) {
7779 /* Assignments, but no command */
7780 /* Ensure redirects take effect (that is, create files).
7781 * Try "a=t >file" */
7782#if 0 /* A few cases in testsuite fail with this code. FIXME */
Denys Vlasenko2db74612017-07-07 22:07:28 +02007783 rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, &squirrel, /*argv_expanded:*/ NULL);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007784 /* Set shell variables */
7785 if (new_env) {
7786 argv = new_env;
7787 while (*argv) {
Denys Vlasenko38ef39a2017-07-18 01:40:01 +02007788 if (set_local_var(*argv, /*flag:*/ 0)) {
7789 /* assignment to readonly var / putenv error? */
7790 rcode = 1;
7791 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007792 argv++;
7793 }
7794 }
7795 /* Redirect error sets $? to 1. Otherwise,
7796 * if evaluating assignment value set $?, retain it.
7797 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7798 if (rcode == 0)
7799 rcode = G.last_exitcode;
7800 /* Exit, _skipping_ variable restoring code: */
7801 goto clean_up_and_ret0;
7802
7803#else /* Older, bigger, but more correct code */
7804
Denys Vlasenko2db74612017-07-07 22:07:28 +02007805 rcode = setup_redirects(command, &squirrel);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007806 restore_redirects(squirrel);
7807 /* Set shell variables */
7808 if (G_x_mode)
7809 bb_putchar_stderr('+');
7810 while (*argv) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02007811 char *p = expand_string_to_string(*argv, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007812 if (G_x_mode)
7813 fprintf(stderr, " %s", p);
7814 debug_printf_exec("set shell var:'%s'->'%s'\n",
7815 *argv, p);
Denys Vlasenko38ef39a2017-07-18 01:40:01 +02007816 if (set_local_var(p, /*flag:*/ 0)) {
7817 /* assignment to readonly var / putenv error? */
7818 rcode = 1;
7819 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007820 argv++;
7821 }
7822 if (G_x_mode)
7823 bb_putchar_stderr('\n');
7824 /* Redirect error sets $? to 1. Otherwise,
7825 * if evaluating assignment value set $?, retain it.
7826 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7827 if (rcode == 0)
7828 rcode = G.last_exitcode;
7829 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7830 debug_leave();
7831 debug_printf_exec("run_pipe: return %d\n", rcode);
7832 return rcode;
7833#endif
7834 }
7835
7836 /* Expand the rest into (possibly) many strings each */
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01007837#if BASH_TEST2
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007838 if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007839 argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007840 } else
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007841#endif
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007842 {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007843 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
7844 }
7845
7846 /* if someone gives us an empty string: `cmd with empty output` */
7847 if (!argv_expanded[0]) {
7848 free(argv_expanded);
7849 debug_leave();
7850 return G.last_exitcode;
7851 }
7852
7853 x = find_builtin(argv_expanded[0]);
7854#if ENABLE_HUSH_FUNCTIONS
7855 funcp = NULL;
7856 if (!x)
7857 funcp = find_function(argv_expanded[0]);
7858#endif
7859 if (x || funcp) {
7860 if (!funcp) {
7861 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
7862 debug_printf("exec with redirects only\n");
7863 rcode = setup_redirects(command, NULL);
Denys Vlasenko869994c2016-08-20 15:16:00 +02007864 /* rcode=1 can be if redir file can't be opened */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007865 goto clean_up_and_ret1;
7866 }
7867 }
Denys Vlasenko2db74612017-07-07 22:07:28 +02007868 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, &squirrel, argv_expanded);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007869 if (rcode == 0) {
7870 if (!funcp) {
7871 debug_printf_exec(": builtin '%s' '%s'...\n",
7872 x->b_cmd, argv_expanded[1]);
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007873 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007874 rcode = x->b_function(argv_expanded) & 0xff;
7875 fflush_all();
7876 }
7877#if ENABLE_HUSH_FUNCTIONS
7878 else {
7879# if ENABLE_HUSH_LOCAL
7880 struct variable **sv;
7881 sv = G.shadowed_vars_pp;
7882 G.shadowed_vars_pp = &old_vars;
7883# endif
7884 debug_printf_exec(": function '%s' '%s'...\n",
7885 funcp->name, argv_expanded[1]);
7886 rcode = run_function(funcp, argv_expanded) & 0xff;
7887# if ENABLE_HUSH_LOCAL
7888 G.shadowed_vars_pp = sv;
7889# endif
7890 }
7891#endif
7892 }
7893 clean_up_and_ret:
7894 unset_vars(new_env);
7895 add_vars(old_vars);
7896/* clean_up_and_ret0: */
7897 restore_redirects(squirrel);
7898 clean_up_and_ret1:
7899 free(argv_expanded);
7900 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7901 debug_leave();
7902 debug_printf_exec("run_pipe return %d\n", rcode);
7903 return rcode;
7904 }
7905
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007906 if (ENABLE_FEATURE_SH_NOFORK) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007907 int n = find_applet_by_name(argv_expanded[0]);
7908 if (n >= 0 && APPLET_IS_NOFORK(n)) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02007909 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, &squirrel, argv_expanded);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007910 if (rcode == 0) {
7911 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
7912 argv_expanded[0], argv_expanded[1]);
7913 rcode = run_nofork_applet(n, argv_expanded);
7914 }
7915 goto clean_up_and_ret;
7916 }
7917 }
7918 /* It is neither builtin nor applet. We must fork. */
7919 }
7920
7921 must_fork:
7922 /* NB: argv_expanded may already be created, and that
7923 * might include `cmd` runs! Do not rerun it! We *must*
7924 * use argv_expanded if it's non-NULL */
7925
7926 /* Going to fork a child per each pipe member */
7927 pi->alive_cmds = 0;
7928 next_infd = 0;
7929
7930 cmd_no = 0;
7931 while (cmd_no < pi->num_cmds) {
7932 struct fd_pair pipefds;
7933#if !BB_MMU
7934 volatile nommu_save_t nommu_save;
7935 nommu_save.new_env = NULL;
7936 nommu_save.old_vars = NULL;
7937 nommu_save.argv = NULL;
7938 nommu_save.argv_from_re_execing = NULL;
7939#endif
7940 command = &pi->cmds[cmd_no];
7941 cmd_no++;
7942 if (command->argv) {
7943 debug_printf_exec(": pipe member '%s' '%s'...\n",
7944 command->argv[0], command->argv[1]);
7945 } else {
7946 debug_printf_exec(": pipe member with no argv\n");
7947 }
7948
7949 /* pipes are inserted between pairs of commands */
7950 pipefds.rd = 0;
7951 pipefds.wr = 1;
7952 if (cmd_no < pi->num_cmds)
7953 xpiped_pair(pipefds);
7954
7955 command->pid = BB_MMU ? fork() : vfork();
7956 if (!command->pid) { /* child */
7957#if ENABLE_HUSH_JOB
7958 disable_restore_tty_pgrp_on_exit();
7959 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
7960
7961 /* Every child adds itself to new process group
7962 * with pgid == pid_of_first_child_in_pipe */
7963 if (G.run_list_level == 1 && G_interactive_fd) {
7964 pid_t pgrp;
7965 pgrp = pi->pgrp;
7966 if (pgrp < 0) /* true for 1st process only */
7967 pgrp = getpid();
7968 if (setpgid(0, pgrp) == 0
7969 && pi->followup != PIPE_BG
7970 && G_saved_tty_pgrp /* we have ctty */
7971 ) {
7972 /* We do it in *every* child, not just first,
7973 * to avoid races */
7974 tcsetpgrp(G_interactive_fd, pgrp);
7975 }
7976 }
7977#endif
7978 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
7979 /* 1st cmd in backgrounded pipe
7980 * should have its stdin /dev/null'ed */
7981 close(0);
7982 if (open(bb_dev_null, O_RDONLY))
7983 xopen("/", O_RDONLY);
7984 } else {
7985 xmove_fd(next_infd, 0);
7986 }
7987 xmove_fd(pipefds.wr, 1);
7988 if (pipefds.rd > 1)
7989 close(pipefds.rd);
7990 /* Like bash, explicit redirects override pipes,
Denys Vlasenko869994c2016-08-20 15:16:00 +02007991 * and the pipe fd (fd#1) is available for dup'ing:
7992 * "cmd1 2>&1 | cmd2": fd#1 is duped to fd#2, thus stderr
7993 * of cmd1 goes into pipe.
7994 */
7995 if (setup_redirects(command, NULL)) {
7996 /* Happens when redir file can't be opened:
7997 * $ hush -c 'echo FOO >&2 | echo BAR 3>/qwe/rty; echo BAZ'
7998 * FOO
7999 * hush: can't open '/qwe/rty': No such file or directory
8000 * BAZ
8001 * (echo BAR is not executed, it hits _exit(1) below)
8002 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008003 _exit(1);
Denys Vlasenko869994c2016-08-20 15:16:00 +02008004 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008005
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008006 /* Stores to nommu_save list of env vars putenv'ed
8007 * (NOMMU, on MMU we don't need that) */
8008 /* cast away volatility... */
8009 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
8010 /* pseudo_exec() does not return */
8011 }
8012
8013 /* parent or error */
8014#if ENABLE_HUSH_FAST
8015 G.count_SIGCHLD++;
8016//bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
8017#endif
8018 enable_restore_tty_pgrp_on_exit();
8019#if !BB_MMU
8020 /* Clean up after vforked child */
8021 free(nommu_save.argv);
8022 free(nommu_save.argv_from_re_execing);
8023 unset_vars(nommu_save.new_env);
8024 add_vars(nommu_save.old_vars);
8025#endif
8026 free(argv_expanded);
8027 argv_expanded = NULL;
8028 if (command->pid < 0) { /* [v]fork failed */
8029 /* Clearly indicate, was it fork or vfork */
8030 bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
8031 } else {
8032 pi->alive_cmds++;
8033#if ENABLE_HUSH_JOB
8034 /* Second and next children need to know pid of first one */
8035 if (pi->pgrp < 0)
8036 pi->pgrp = command->pid;
8037#endif
8038 }
8039
8040 if (cmd_no > 1)
8041 close(next_infd);
8042 if (cmd_no < pi->num_cmds)
8043 close(pipefds.wr);
8044 /* Pass read (output) pipe end to next iteration */
8045 next_infd = pipefds.rd;
8046 }
8047
8048 if (!pi->alive_cmds) {
8049 debug_leave();
8050 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
8051 return 1;
8052 }
8053
8054 debug_leave();
8055 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
8056 return -1;
8057}
8058
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008059/* NB: called by pseudo_exec, and therefore must not modify any
8060 * global data until exec/_exit (we can be a child after vfork!) */
8061static int run_list(struct pipe *pi)
8062{
8063#if ENABLE_HUSH_CASE
8064 char *case_word = NULL;
8065#endif
8066#if ENABLE_HUSH_LOOPS
8067 struct pipe *loop_top = NULL;
8068 char **for_lcur = NULL;
8069 char **for_list = NULL;
8070#endif
8071 smallint last_followup;
8072 smalluint rcode;
8073#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
8074 smalluint cond_code = 0;
8075#else
8076 enum { cond_code = 0 };
8077#endif
8078#if HAS_KEYWORDS
Denys Vlasenko9b782552010-09-08 13:33:26 +02008079 smallint rword; /* RES_foo */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008080 smallint last_rword; /* ditto */
8081#endif
8082
8083 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
8084 debug_enter();
8085
8086#if ENABLE_HUSH_LOOPS
8087 /* Check syntax for "for" */
Denys Vlasenko0d6a4ec2010-12-18 01:34:49 +01008088 {
8089 struct pipe *cpipe;
8090 for (cpipe = pi; cpipe; cpipe = cpipe->next) {
8091 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
8092 continue;
8093 /* current word is FOR or IN (BOLD in comments below) */
8094 if (cpipe->next == NULL) {
8095 syntax_error("malformed for");
8096 debug_leave();
8097 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
8098 return 1;
8099 }
8100 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
8101 if (cpipe->next->res_word == RES_DO)
8102 continue;
8103 /* next word is not "do". It must be "in" then ("FOR v in ...") */
8104 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
8105 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
8106 ) {
8107 syntax_error("malformed for");
8108 debug_leave();
8109 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
8110 return 1;
8111 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008112 }
8113 }
8114#endif
8115
8116 /* Past this point, all code paths should jump to ret: label
8117 * in order to return, no direct "return" statements please.
8118 * This helps to ensure that no memory is leaked. */
8119
8120#if ENABLE_HUSH_JOB
8121 G.run_list_level++;
8122#endif
8123
8124#if HAS_KEYWORDS
8125 rword = RES_NONE;
8126 last_rword = RES_XXXX;
8127#endif
8128 last_followup = PIPE_SEQ;
8129 rcode = G.last_exitcode;
8130
8131 /* Go through list of pipes, (maybe) executing them. */
8132 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008133 int r;
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008134 int sv_errexit_depth;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008135
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008136 if (G.flag_SIGINT)
8137 break;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02008138 if (G_flag_return_in_progress == 1)
8139 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008140
8141 IF_HAS_KEYWORDS(rword = pi->res_word;)
8142 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
8143 rword, cond_code, last_rword);
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008144
8145 sv_errexit_depth = G.errexit_depth;
8146 if (IF_HAS_KEYWORDS(rword == RES_IF || rword == RES_ELIF ||)
8147 pi->followup != PIPE_SEQ
8148 ) {
8149 G.errexit_depth++;
8150 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008151#if ENABLE_HUSH_LOOPS
8152 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
8153 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
8154 ) {
8155 /* start of a loop: remember where loop starts */
8156 loop_top = pi;
8157 G.depth_of_loop++;
8158 }
8159#endif
8160 /* Still in the same "if...", "then..." or "do..." branch? */
8161 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
8162 if ((rcode == 0 && last_followup == PIPE_OR)
8163 || (rcode != 0 && last_followup == PIPE_AND)
8164 ) {
8165 /* It is "<true> || CMD" or "<false> && CMD"
8166 * and we should not execute CMD */
8167 debug_printf_exec("skipped cmd because of || or &&\n");
8168 last_followup = pi->followup;
Denys Vlasenko3beab832013-04-07 18:16:58 +02008169 goto dont_check_jobs_but_continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008170 }
8171 }
8172 last_followup = pi->followup;
8173 IF_HAS_KEYWORDS(last_rword = rword;)
8174#if ENABLE_HUSH_IF
8175 if (cond_code) {
8176 if (rword == RES_THEN) {
8177 /* if false; then ... fi has exitcode 0! */
8178 G.last_exitcode = rcode = EXIT_SUCCESS;
8179 /* "if <false> THEN cmd": skip cmd */
8180 continue;
8181 }
8182 } else {
8183 if (rword == RES_ELSE || rword == RES_ELIF) {
8184 /* "if <true> then ... ELSE/ELIF cmd":
8185 * skip cmd and all following ones */
8186 break;
8187 }
8188 }
8189#endif
8190#if ENABLE_HUSH_LOOPS
8191 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
8192 if (!for_lcur) {
8193 /* first loop through for */
8194
8195 static const char encoded_dollar_at[] ALIGN1 = {
8196 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
8197 }; /* encoded representation of "$@" */
8198 static const char *const encoded_dollar_at_argv[] = {
8199 encoded_dollar_at, NULL
8200 }; /* argv list with one element: "$@" */
8201 char **vals;
8202
8203 vals = (char**)encoded_dollar_at_argv;
8204 if (pi->next->res_word == RES_IN) {
8205 /* if no variable values after "in" we skip "for" */
8206 if (!pi->next->cmds[0].argv) {
8207 G.last_exitcode = rcode = EXIT_SUCCESS;
8208 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
8209 break;
8210 }
8211 vals = pi->next->cmds[0].argv;
8212 } /* else: "for var; do..." -> assume "$@" list */
8213 /* create list of variable values */
8214 debug_print_strings("for_list made from", vals);
8215 for_list = expand_strvec_to_strvec(vals);
8216 for_lcur = for_list;
8217 debug_print_strings("for_list", for_list);
8218 }
8219 if (!*for_lcur) {
8220 /* "for" loop is over, clean up */
8221 free(for_list);
8222 for_list = NULL;
8223 for_lcur = NULL;
8224 break;
8225 }
8226 /* Insert next value from for_lcur */
8227 /* note: *for_lcur already has quotes removed, $var expanded, etc */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02008228 set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*flag:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008229 continue;
8230 }
8231 if (rword == RES_IN) {
8232 continue; /* "for v IN list;..." - "in" has no cmds anyway */
8233 }
8234 if (rword == RES_DONE) {
8235 continue; /* "done" has no cmds too */
8236 }
8237#endif
8238#if ENABLE_HUSH_CASE
8239 if (rword == RES_CASE) {
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008240 debug_printf_exec("CASE cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008241 case_word = expand_strvec_to_string(pi->cmds->argv);
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008242 unbackslash(case_word);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008243 continue;
8244 }
8245 if (rword == RES_MATCH) {
8246 char **argv;
8247
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008248 debug_printf_exec("MATCH cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008249 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
8250 break;
8251 /* all prev words didn't match, does this one match? */
8252 argv = pi->cmds->argv;
8253 while (*argv) {
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008254 char *pattern = expand_string_to_string(*argv, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008255 /* TODO: which FNM_xxx flags to use? */
8256 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
Denys Vlasenkobd43c672017-07-05 23:12:15 +02008257 debug_printf_exec("fnmatch(pattern:'%s',str:'%s'):%d\n", pattern, case_word, cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008258 free(pattern);
8259 if (cond_code == 0) { /* match! we will execute this branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008260 free(case_word);
8261 case_word = NULL; /* make future "word)" stop */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008262 break;
8263 }
8264 argv++;
8265 }
8266 continue;
8267 }
8268 if (rword == RES_CASE_BODY) { /* inside of a case branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008269 debug_printf_exec("CASE_BODY cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008270 if (cond_code != 0)
8271 continue; /* not matched yet, skip this pipe */
8272 }
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01008273 if (rword == RES_ESAC) {
8274 debug_printf_exec("ESAC cond_code:%d\n", cond_code);
8275 if (case_word) {
8276 /* "case" did not match anything: still set $? (to 0) */
8277 G.last_exitcode = rcode = EXIT_SUCCESS;
8278 }
8279 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008280#endif
8281 /* Just pressing <enter> in shell should check for jobs.
8282 * OTOH, in non-interactive shell this is useless
8283 * and only leads to extra job checks */
8284 if (pi->num_cmds == 0) {
8285 if (G_interactive_fd)
8286 goto check_jobs_and_continue;
8287 continue;
8288 }
8289
8290 /* After analyzing all keywords and conditions, we decided
8291 * to execute this pipe. NB: have to do checkjobs(NULL)
8292 * after run_pipe to collect any background children,
8293 * even if list execution is to be stopped. */
8294 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008295#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008296 G.flag_break_continue = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008297#endif
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008298 rcode = r = run_pipe(pi); /* NB: rcode is a smalluint, r is int */
8299 if (r != -1) {
8300 /* We ran a builtin, function, or group.
8301 * rcode is already known
8302 * and we don't need to wait for anything. */
8303 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
8304 G.last_exitcode = rcode;
8305 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008306#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008307 /* Was it "break" or "continue"? */
8308 if (G.flag_break_continue) {
8309 smallint fbc = G.flag_break_continue;
8310 /* We might fall into outer *loop*,
8311 * don't want to break it too */
8312 if (loop_top) {
8313 G.depth_break_continue--;
8314 if (G.depth_break_continue == 0)
8315 G.flag_break_continue = 0;
8316 /* else: e.g. "continue 2" should *break* once, *then* continue */
8317 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
8318 if (G.depth_break_continue != 0 || fbc == BC_BREAK) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02008319 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008320 break;
8321 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008322 /* "continue": simulate end of loop */
8323 rword = RES_DONE;
8324 continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008325 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008326#endif
8327 if (G_flag_return_in_progress == 1) {
8328 checkjobs(NULL, 0 /*(no pid to wait for)*/);
8329 break;
8330 }
8331 } else if (pi->followup == PIPE_BG) {
8332 /* What does bash do with attempts to background builtins? */
8333 /* even bash 3.2 doesn't do that well with nested bg:
8334 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
8335 * I'm NOT treating inner &'s as jobs */
8336#if ENABLE_HUSH_JOB
8337 if (G.run_list_level == 1)
Denys Vlasenko16096292017-07-10 10:00:28 +02008338 insert_job_into_table(pi);
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008339#endif
8340 /* Last command's pid goes to $! */
8341 G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid;
Denys Vlasenko840a4352017-07-07 22:56:02 +02008342 G.last_bg_pid_exitcode = 0;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008343 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
8344/* Check pi->pi_inverted? "! sleep 1 & echo $?": bash says 1. dash and ash says 0 */
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008345 rcode = EXIT_SUCCESS;
8346 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008347 } else {
8348#if ENABLE_HUSH_JOB
8349 if (G.run_list_level == 1 && G_interactive_fd) {
8350 /* Waits for completion, then fg's main shell */
8351 rcode = checkjobs_and_fg_shell(pi);
8352 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008353 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008354 }
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008355#endif
8356 /* This one just waits for completion */
8357 rcode = checkjobs(pi, 0 /*(no pid to wait for)*/);
8358 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
8359 check_traps:
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008360 G.last_exitcode = rcode;
8361 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008362 }
8363
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008364 /* Handle "set -e" */
8365 if (rcode != 0 && G.o_opt[OPT_O_ERREXIT]) {
8366 debug_printf_exec("ERREXIT:1 errexit_depth:%d\n", G.errexit_depth);
8367 if (G.errexit_depth == 0)
8368 hush_exit(rcode);
8369 }
8370 G.errexit_depth = sv_errexit_depth;
8371
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008372 /* Analyze how result affects subsequent commands */
8373#if ENABLE_HUSH_IF
8374 if (rword == RES_IF || rword == RES_ELIF)
8375 cond_code = rcode;
8376#endif
Denys Vlasenko3beab832013-04-07 18:16:58 +02008377 check_jobs_and_continue:
Denys Vlasenko7e675362016-10-28 21:57:31 +02008378 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenko3beab832013-04-07 18:16:58 +02008379 dont_check_jobs_but_continue: ;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008380#if ENABLE_HUSH_LOOPS
8381 /* Beware of "while false; true; do ..."! */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008382 if (pi->next
8383 && (pi->next->res_word == RES_DO || pi->next->res_word == RES_DONE)
Denys Vlasenko56a3b822011-06-01 12:47:07 +02008384 /* check for RES_DONE is needed for "while ...; do \n done" case */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008385 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008386 if (rword == RES_WHILE) {
8387 if (rcode) {
8388 /* "while false; do...done" - exitcode 0 */
8389 G.last_exitcode = rcode = EXIT_SUCCESS;
8390 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
Denys Vlasenko3beab832013-04-07 18:16:58 +02008391 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008392 }
8393 }
8394 if (rword == RES_UNTIL) {
8395 if (!rcode) {
8396 debug_printf_exec(": until expr is true: breaking\n");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008397 break;
8398 }
8399 }
8400 }
8401#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008402 } /* for (pi) */
8403
8404#if ENABLE_HUSH_JOB
8405 G.run_list_level--;
8406#endif
8407#if ENABLE_HUSH_LOOPS
8408 if (loop_top)
8409 G.depth_of_loop--;
8410 free(for_list);
8411#endif
8412#if ENABLE_HUSH_CASE
8413 free(case_word);
8414#endif
8415 debug_leave();
8416 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
8417 return rcode;
8418}
8419
8420/* Select which version we will use */
8421static int run_and_free_list(struct pipe *pi)
8422{
8423 int rcode = 0;
8424 debug_printf_exec("run_and_free_list entered\n");
Dan Fandrich85c62472010-11-20 13:05:17 -08008425 if (!G.o_opt[OPT_O_NOEXEC]) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008426 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
8427 rcode = run_list(pi);
8428 }
8429 /* free_pipe_list has the side effect of clearing memory.
8430 * In the long run that function can be merged with run_list,
8431 * but doing that now would hobble the debugging effort. */
8432 free_pipe_list(pi);
8433 debug_printf_exec("run_and_free_list return %d\n", rcode);
8434 return rcode;
8435}
8436
8437
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008438static void install_sighandlers(unsigned mask)
Eric Andersen52a97ca2001-06-22 06:49:26 +00008439{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008440 sighandler_t old_handler;
8441 unsigned sig = 0;
8442 while ((mask >>= 1) != 0) {
8443 sig++;
8444 if (!(mask & 1))
8445 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02008446 old_handler = install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008447 /* POSIX allows shell to re-enable SIGCHLD
8448 * even if it was SIG_IGN on entry.
8449 * Therefore we skip IGN check for it:
8450 */
8451 if (sig == SIGCHLD)
8452 continue;
8453 if (old_handler == SIG_IGN) {
8454 /* oops... restore back to IGN, and record this fact */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008455 install_sighandler(sig, old_handler);
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008456#if ENABLE_HUSH_TRAP
8457 if (!G_traps)
8458 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
8459 free(G_traps[sig]);
8460 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
8461#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008462 }
8463 }
8464}
8465
8466/* Called a few times only (or even once if "sh -c") */
8467static void install_special_sighandlers(void)
8468{
Denis Vlasenkof9375282009-04-05 19:13:39 +00008469 unsigned mask;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008470
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008471 /* Which signals are shell-special? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008472 mask = (1 << SIGQUIT) | (1 << SIGCHLD);
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008473 if (G_interactive_fd) {
8474 mask |= SPECIAL_INTERACTIVE_SIGS;
8475 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008476 mask |= SPECIAL_JOBSTOP_SIGS;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008477 }
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008478 /* Careful, do not re-install handlers we already installed */
8479 if (G.special_sig_mask != mask) {
8480 unsigned diff = mask & ~G.special_sig_mask;
8481 G.special_sig_mask = mask;
8482 install_sighandlers(diff);
8483 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008484}
8485
8486#if ENABLE_HUSH_JOB
8487/* helper */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008488/* Set handlers to restore tty pgrp and exit */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008489static void install_fatal_sighandlers(void)
Denis Vlasenkof9375282009-04-05 19:13:39 +00008490{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008491 unsigned mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008492
8493 /* We will restore tty pgrp on these signals */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008494 mask = 0
Denys Vlasenko830ea352016-11-08 04:59:11 +01008495 /*+ (1 << SIGILL ) * HUSH_DEBUG*/
8496 /*+ (1 << SIGFPE ) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008497 + (1 << SIGBUS ) * HUSH_DEBUG
8498 + (1 << SIGSEGV) * HUSH_DEBUG
Denys Vlasenko830ea352016-11-08 04:59:11 +01008499 /*+ (1 << SIGTRAP) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008500 + (1 << SIGABRT)
8501 /* bash 3.2 seems to handle these just like 'fatal' ones */
8502 + (1 << SIGPIPE)
8503 + (1 << SIGALRM)
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008504 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are special sigs.
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008505 * if we aren't interactive... but in this case
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008506 * we never want to restore pgrp on exit, and this fn is not called
8507 */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008508 /*+ (1 << SIGHUP )*/
8509 /*+ (1 << SIGTERM)*/
8510 /*+ (1 << SIGINT )*/
8511 ;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008512 G_fatal_sig_mask = mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008513
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008514 install_sighandlers(mask);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008515}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00008516#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00008517
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008518static int set_mode(int state, char mode, const char *o_opt)
Denis Vlasenkod5762932009-03-31 11:22:57 +00008519{
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008520 int idx;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008521 switch (mode) {
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008522 case 'n':
Dan Fandrich85c62472010-11-20 13:05:17 -08008523 G.o_opt[OPT_O_NOEXEC] = state;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008524 break;
8525 case 'x':
8526 IF_HUSH_MODE_X(G_x_mode = state;)
8527 break;
8528 case 'o':
8529 if (!o_opt) {
8530 /* "set -+o" without parameter.
8531 * in bash, set -o produces this output:
8532 * pipefail off
8533 * and set +o:
8534 * set +o pipefail
8535 * We always use the second form.
8536 */
8537 const char *p = o_opt_strings;
8538 idx = 0;
8539 while (*p) {
8540 printf("set %co %s\n", (G.o_opt[idx] ? '-' : '+'), p);
8541 idx++;
8542 p += strlen(p) + 1;
8543 }
8544 break;
8545 }
8546 idx = index_in_strings(o_opt_strings, o_opt);
8547 if (idx >= 0) {
8548 G.o_opt[idx] = state;
8549 break;
8550 }
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008551 case 'e':
8552 G.o_opt[OPT_O_ERREXIT] = state;
8553 break;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008554 default:
8555 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008556 }
8557 return EXIT_SUCCESS;
8558}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008559
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00008560int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00008561int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00008562{
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008563 enum {
8564 OPT_login = (1 << 0),
8565 };
8566 unsigned flags;
Eric Andersen25f27032001-04-26 23:22:31 +00008567 int opt;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008568 unsigned builtin_argc;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008569 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008570 struct variable *cur_var;
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008571 struct variable *shell_ver;
Eric Andersenbc604a22001-05-16 05:24:03 +00008572
Denis Vlasenko574f2f42008-02-27 18:41:59 +00008573 INIT_G();
Denys Vlasenko10c01312011-05-11 11:49:21 +02008574 if (EXIT_SUCCESS != 0) /* if EXIT_SUCCESS == 0, it is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008575 G.last_exitcode = EXIT_SUCCESS;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008576
Denys Vlasenko10c01312011-05-11 11:49:21 +02008577#if ENABLE_HUSH_FAST
8578 G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
8579#endif
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008580#if !BB_MMU
8581 G.argv0_for_re_execing = argv[0];
8582#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008583 /* Deal with HUSH_VERSION */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008584 shell_ver = xzalloc(sizeof(*shell_ver));
8585 shell_ver->flg_export = 1;
8586 shell_ver->flg_read_only = 1;
Denys Vlasenko4f870492010-09-10 11:06:01 +02008587 /* Code which handles ${var<op>...} needs writable values for all variables,
Denys Vlasenko36f774a2010-09-05 14:45:38 +02008588 * therefore we xstrdup: */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008589 shell_ver->varstr = xstrdup(hush_version_str);
Denys Vlasenko605067b2010-09-06 12:10:51 +02008590 /* Create shell local variables from the values
8591 * currently living in the environment */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00008592 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008593 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008594 G.top_var = shell_ver;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008595 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008596 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008597 if (e) while (*e) {
8598 char *value = strchr(*e, '=');
8599 if (value) { /* paranoia */
8600 cur_var->next = xzalloc(sizeof(*cur_var));
8601 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00008602 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008603 cur_var->max_len = strlen(*e);
8604 cur_var->flg_export = 1;
8605 }
8606 e++;
8607 }
Denys Vlasenko605067b2010-09-06 12:10:51 +02008608 /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008609 debug_printf_env("putenv '%s'\n", shell_ver->varstr);
8610 putenv(shell_ver->varstr);
Denys Vlasenko6db47842009-09-05 20:15:17 +02008611
8612 /* Export PWD */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02008613 set_pwd_var(SETFLAG_EXPORT);
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008614
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01008615#if BASH_HOSTNAME_VAR
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008616 /* Set (but not export) HOSTNAME unless already set */
8617 if (!get_local_var_value("HOSTNAME")) {
8618 struct utsname uts;
8619 uname(&uts);
8620 set_local_var_from_halves("HOSTNAME", uts.nodename);
8621 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02008622 /* bash also exports SHLVL and _,
8623 * and sets (but doesn't export) the following variables:
8624 * BASH=/bin/bash
8625 * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
8626 * BASH_VERSION='3.2.0(1)-release'
8627 * HOSTTYPE=i386
8628 * MACHTYPE=i386-pc-linux-gnu
8629 * OSTYPE=linux-gnu
Denys Vlasenkodea47882009-10-09 15:40:49 +02008630 * PPID=<NNNNN> - we also do it elsewhere
Denys Vlasenko6db47842009-09-05 20:15:17 +02008631 * EUID=<NNNNN>
8632 * UID=<NNNNN>
8633 * GROUPS=()
8634 * LINES=<NNN>
8635 * COLUMNS=<NNN>
8636 * BASH_ARGC=()
8637 * BASH_ARGV=()
8638 * BASH_LINENO=()
8639 * BASH_SOURCE=()
8640 * DIRSTACK=()
8641 * PIPESTATUS=([0]="0")
8642 * HISTFILE=/<xxx>/.bash_history
8643 * HISTFILESIZE=500
8644 * HISTSIZE=500
8645 * MAILCHECK=60
8646 * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
8647 * SHELL=/bin/bash
8648 * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
8649 * TERM=dumb
8650 * OPTERR=1
8651 * OPTIND=1
8652 * IFS=$' \t\n'
8653 * PS1='\s-\v\$ '
8654 * PS2='> '
8655 * PS4='+ '
8656 */
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008657#endif
Denys Vlasenko6db47842009-09-05 20:15:17 +02008658
Denis Vlasenko38f63192007-01-22 09:03:07 +00008659#if ENABLE_FEATURE_EDITING
Denys Vlasenkoe45af7a2011-09-04 16:15:24 +02008660 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00008661#endif
Denys Vlasenko99862cb2010-09-12 17:34:13 +02008662
Eric Andersen94ac2442001-05-22 19:05:18 +00008663 /* Initialize some more globals to non-zero values */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00008664 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00008665
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008666 die_func = restore_ttypgrp_and__exit;
Denis Vlasenkoed782372009-04-10 00:45:02 +00008667
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008668 /* Shell is non-interactive at first. We need to call
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008669 * install_special_sighandlers() if we are going to execute "sh <script>",
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008670 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008671 * If we later decide that we are interactive, we run install_special_sighandlers()
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008672 * in order to intercept (more) signals.
8673 */
8674
8675 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008676 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008677 flags = (argv[0] && argv[0][0] == '-') ? OPT_login : 0;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008678 builtin_argc = 0;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008679 while (1) {
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008680 opt = getopt(argc, argv, "+c:exinsl"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008681#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00008682 "<:$:R:V:"
8683# if ENABLE_HUSH_FUNCTIONS
8684 "F:"
8685# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008686#endif
8687 );
8688 if (opt <= 0)
8689 break;
Eric Andersen25f27032001-04-26 23:22:31 +00008690 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008691 case 'c':
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008692 /* Possibilities:
8693 * sh ... -c 'script'
8694 * sh ... -c 'script' ARG0 [ARG1...]
8695 * On NOMMU, if builtin_argc != 0,
Denys Vlasenko17323a62010-01-28 01:57:05 +01008696 * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008697 * "" needs to be replaced with NULL
8698 * and BARGV vector fed to builtin function.
Denys Vlasenko17323a62010-01-28 01:57:05 +01008699 * Note: the form without ARG0 never happens:
8700 * sh ... -c 'builtin' BARGV... ""
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008701 */
Denys Vlasenkodea47882009-10-09 15:40:49 +02008702 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008703 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02008704 G.root_ppid = getppid();
8705 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008706 G.global_argv = argv + optind;
8707 G.global_argc = argc - optind;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008708 if (builtin_argc) {
8709 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
8710 const struct built_in_command *x;
8711
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008712 install_special_sighandlers();
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008713 x = find_builtin(optarg);
8714 if (x) { /* paranoia */
8715 G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
8716 G.global_argv += builtin_argc;
8717 G.global_argv[-1] = NULL; /* replace "" */
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01008718 fflush_all();
Denys Vlasenko17323a62010-01-28 01:57:05 +01008719 G.last_exitcode = x->b_function(argv + optind - 1);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008720 }
8721 goto final_return;
8722 }
8723 if (!G.global_argv[0]) {
8724 /* -c 'script' (no params): prevent empty $0 */
8725 G.global_argv--; /* points to argv[i] of 'script' */
8726 G.global_argv[0] = argv[0];
Denys Vlasenko5ae8f1c2010-05-22 06:32:11 +02008727 G.global_argc++;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008728 } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008729 install_special_sighandlers();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008730 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008731 goto final_return;
8732 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00008733 /* Well, we cannot just declare interactiveness,
8734 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008735 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008736 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008737 case 's':
8738 /* "-s" means "read from stdin", but this is how we always
8739 * operate, so simply do nothing here. */
8740 break;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008741 case 'l':
8742 flags |= OPT_login;
8743 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008744#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008745 case '<': /* "big heredoc" support */
Denys Vlasenko729ecb82010-06-07 14:14:26 +02008746 full_write1_str(optarg);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008747 _exit(0);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008748 case '$': {
8749 unsigned long long empty_trap_mask;
8750
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008751 G.root_pid = bb_strtou(optarg, &optarg, 16);
8752 optarg++;
Denys Vlasenkodea47882009-10-09 15:40:49 +02008753 G.root_ppid = bb_strtou(optarg, &optarg, 16);
8754 optarg++;
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008755 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
8756 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008757 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008758 optarg++;
8759 builtin_argc = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008760 optarg++;
8761 empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
8762 if (empty_trap_mask != 0) {
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008763 IF_HUSH_TRAP(int sig;)
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008764 install_special_sighandlers();
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008765# if ENABLE_HUSH_TRAP
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008766 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008767 for (sig = 1; sig < NSIG; sig++) {
8768 if (empty_trap_mask & (1LL << sig)) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01008769 G_traps[sig] = xzalloc(1); /* == xstrdup(""); */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008770 install_sighandler(sig, SIG_IGN);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008771 }
8772 }
Denys Vlasenko4ee824f2017-07-03 01:22:13 +02008773# endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008774 }
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008775# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008776 optarg++;
8777 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008778# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008779 break;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008780 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008781 case 'R':
8782 case 'V':
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02008783 set_local_var(xstrdup(optarg), opt == 'R' ? SETFLAG_MAKE_RO : 0);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008784 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00008785# if ENABLE_HUSH_FUNCTIONS
8786 case 'F': {
8787 struct function *funcp = new_function(optarg);
8788 /* funcp->name is already set to optarg */
8789 /* funcp->body is set to NULL. It's a special case. */
8790 funcp->body_as_string = argv[optind];
8791 optind++;
8792 break;
8793 }
8794# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008795#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008796 case 'n':
8797 case 'x':
Denys Vlasenko9fda6092017-07-14 13:36:48 +02008798 case 'e':
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008799 if (set_mode(1, opt, NULL) == 0) /* no error */
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008800 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008801 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008802#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008803 fprintf(stderr, "Usage: sh [FILE]...\n"
8804 " or: sh -c command [args]...\n\n");
8805 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008806#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008807 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008808#endif
Eric Andersen25f27032001-04-26 23:22:31 +00008809 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008810 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008811
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008812 /* Skip options. Try "hush -l": $1 should not be "-l"! */
8813 G.global_argc = argc - (optind - 1);
8814 G.global_argv = argv + (optind - 1);
8815 G.global_argv[0] = argv[0];
8816
Denys Vlasenkodea47882009-10-09 15:40:49 +02008817 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008818 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02008819 G.root_ppid = getppid();
8820 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008821
8822 /* If we are login shell... */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008823 if (flags & OPT_login) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008824 FILE *input;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008825 debug_printf("sourcing /etc/profile\n");
8826 input = fopen_for_read("/etc/profile");
8827 if (input != NULL) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008828 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008829 install_special_sighandlers();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008830 parse_and_run_file(input);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008831 fclose_and_forget(input);
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008832 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008833 /* bash: after sourcing /etc/profile,
8834 * tries to source (in the given order):
8835 * ~/.bash_profile, ~/.bash_login, ~/.profile,
Denys Vlasenko28a105d2009-06-01 11:26:30 +02008836 * stopping on first found. --noprofile turns this off.
Denis Vlasenkof9375282009-04-05 19:13:39 +00008837 * bash also sources ~/.bash_logout on exit.
8838 * If called as sh, skips .bash_XXX files.
8839 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008840 }
8841
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008842 if (G.global_argv[1]) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008843 FILE *input;
8844 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008845 * "bash <script>" (which is never interactive (unless -i?))
8846 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00008847 * If called as sh, does the same but with $ENV.
Denys Vlasenko2eb0a7e2016-10-27 11:28:59 +02008848 * Also NB, per POSIX, $ENV should undergo parameter expansion.
Denis Vlasenkof9375282009-04-05 19:13:39 +00008849 */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008850 G.global_argc--;
8851 G.global_argv++;
8852 debug_printf("running script '%s'\n", G.global_argv[0]);
Denys Vlasenkob7adf7a2016-10-25 17:00:13 +02008853 xfunc_error_retval = 127; /* for "hush /does/not/exist" case */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008854 input = xfopen_for_read(G.global_argv[0]);
Denys Vlasenkob7adf7a2016-10-25 17:00:13 +02008855 xfunc_error_retval = 1;
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008856 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008857 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008858 parse_and_run_file(input);
8859#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008860 fclose_and_forget(input);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008861#endif
8862 goto final_return;
8863 }
8864
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008865 /* Up to here, shell was non-interactive. Now it may become one.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008866 * NB: don't forget to (re)run install_special_sighandlers() as needed.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008867 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00008868
Denys Vlasenko28a105d2009-06-01 11:26:30 +02008869 /* A shell is interactive if the '-i' flag was given,
8870 * or if all of the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00008871 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00008872 * no arguments remaining or the -s flag given
8873 * standard input is a terminal
8874 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00008875 * Refer to Posix.2, the description of the 'sh' utility.
8876 */
8877#if ENABLE_HUSH_JOB
8878 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Mike Frysinger38478a62009-05-20 04:48:06 -04008879 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
8880 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
8881 if (G_saved_tty_pgrp < 0)
8882 G_saved_tty_pgrp = 0;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008883
8884 /* try to dup stdin to high fd#, >= 255 */
Denys Vlasenko2db74612017-07-07 22:07:28 +02008885 G_interactive_fd = fcntl_F_DUPFD(STDIN_FILENO, 254);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008886 if (G_interactive_fd < 0) {
8887 /* try to dup to any fd */
8888 G_interactive_fd = dup(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008889 if (G_interactive_fd < 0) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008890 /* give up */
8891 G_interactive_fd = 0;
Mike Frysinger38478a62009-05-20 04:48:06 -04008892 G_saved_tty_pgrp = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00008893 }
8894 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008895// TODO: track & disallow any attempts of user
8896// to (inadvertently) close/redirect G_interactive_fd
Eric Andersen25f27032001-04-26 23:22:31 +00008897 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008898 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008899 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008900 close_on_exec_on(G_interactive_fd);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008901
Mike Frysinger38478a62009-05-20 04:48:06 -04008902 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008903 /* If we were run as 'hush &', sleep until we are
8904 * in the foreground (tty pgrp == our pgrp).
8905 * If we get started under a job aware app (like bash),
8906 * make sure we are now in charge so we don't fight over
8907 * who gets the foreground */
8908 while (1) {
8909 pid_t shell_pgrp = getpgrp();
Mike Frysinger38478a62009-05-20 04:48:06 -04008910 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
8911 if (G_saved_tty_pgrp == shell_pgrp)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008912 break;
8913 /* send TTIN to ourself (should stop us) */
8914 kill(- shell_pgrp, SIGTTIN);
8915 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008916 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008917
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008918 /* Install more signal handlers */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008919 install_special_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008920
Mike Frysinger38478a62009-05-20 04:48:06 -04008921 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008922 /* Set other signals to restore saved_tty_pgrp */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008923 install_fatal_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008924 /* Put ourselves in our own process group
8925 * (bash, too, does this only if ctty is available) */
8926 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
8927 /* Grab control of the terminal */
8928 tcsetpgrp(G_interactive_fd, getpid());
8929 }
Denys Vlasenko550bf5b2015-10-09 16:42:57 +02008930 enable_restore_tty_pgrp_on_exit();
Denys Vlasenko4840ae82011-09-04 15:28:03 +02008931
8932# if ENABLE_HUSH_SAVEHISTORY && MAX_HISTORY > 0
8933 {
8934 const char *hp = get_local_var_value("HISTFILE");
8935 if (!hp) {
8936 hp = get_local_var_value("HOME");
8937 if (hp)
8938 hp = concat_path_file(hp, ".hush_history");
8939 } else {
8940 hp = xstrdup(hp);
8941 }
8942 if (hp) {
8943 G.line_input_state->hist_file = hp;
Denys Vlasenko4840ae82011-09-04 15:28:03 +02008944 //set_local_var(xasprintf("HISTFILE=%s", ...));
8945 }
8946# if ENABLE_FEATURE_SH_HISTFILESIZE
8947 hp = get_local_var_value("HISTFILESIZE");
8948 G.line_input_state->max_history = size_from_HISTFILESIZE(hp);
8949# endif
8950 }
8951# endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008952 } else {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008953 install_special_sighandlers();
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008954 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008955#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00008956 /* No job control compiled in, only prompt/line editing */
8957 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denys Vlasenko2db74612017-07-07 22:07:28 +02008958 G_interactive_fd = fcntl_F_DUPFD(STDIN_FILENO, 254);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008959 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008960 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008961 G_interactive_fd = dup(STDIN_FILENO);
8962 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008963 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008964 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008965 }
8966 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008967 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008968 close_on_exec_on(G_interactive_fd);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008969 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008970 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008971#else
8972 /* We have interactiveness code disabled */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008973 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008974#endif
8975 /* bash:
8976 * if interactive but not a login shell, sources ~/.bashrc
8977 * (--norc turns this off, --rcfile <file> overrides)
8978 */
8979
8980 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Denys Vlasenkoc34c0332009-09-29 12:25:30 +02008981 /* note: ash and hush share this string */
8982 printf("\n\n%s %s\n"
8983 IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
8984 "\n",
8985 bb_banner,
8986 "hush - the humble shell"
8987 );
Mike Frysingerb2705e12009-03-23 08:44:02 +00008988 }
8989
Denis Vlasenkof9375282009-04-05 19:13:39 +00008990 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00008991
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008992 final_return:
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008993 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00008994}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00008995
8996
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008997/*
8998 * Built-ins
8999 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009000static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009001{
9002 return 0;
9003}
9004
Denys Vlasenko265062d2017-01-10 15:13:30 +01009005#if ENABLE_HUSH_TEST || ENABLE_HUSH_ECHO || ENABLE_HUSH_PRINTF || ENABLE_HUSH_KILL
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02009006static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009007{
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02009008 int argc = string_array_len(argv);
9009 return applet_main_func(argc, argv);
Mike Frysingerccb19592009-10-15 03:31:15 -04009010}
Denys Vlasenko265062d2017-01-10 15:13:30 +01009011#endif
Kang-Che Sung027d3ab2017-01-11 14:18:15 +01009012#if ENABLE_HUSH_TEST || BASH_TEST2
Mike Frysingerccb19592009-10-15 03:31:15 -04009013static int FAST_FUNC builtin_test(char **argv)
9014{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009015 return run_applet_main(argv, test_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009016}
Denys Vlasenko265062d2017-01-10 15:13:30 +01009017#endif
Denys Vlasenko1cc68042017-01-09 17:10:04 +01009018#if ENABLE_HUSH_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009019static int FAST_FUNC builtin_echo(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009020{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009021 return run_applet_main(argv, echo_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009022}
Denys Vlasenko1cc68042017-01-09 17:10:04 +01009023#endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009024#if ENABLE_HUSH_PRINTF
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04009025static int FAST_FUNC builtin_printf(char **argv)
9026{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009027 return run_applet_main(argv, printf_main);
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04009028}
9029#endif
9030
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009031#if ENABLE_HUSH_HELP
9032static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
9033{
9034 const struct built_in_command *x;
9035
9036 printf(
9037 "Built-in commands:\n"
9038 "------------------\n");
9039 for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
9040 if (x->b_descr)
9041 printf("%-10s%s\n", x->b_cmd, x->b_descr);
9042 }
9043 return EXIT_SUCCESS;
9044}
9045#endif
9046
9047#if MAX_HISTORY && ENABLE_FEATURE_EDITING
9048static int FAST_FUNC builtin_history(char **argv UNUSED_PARAM)
9049{
9050 show_history(G.line_input_state);
9051 return EXIT_SUCCESS;
9052}
9053#endif
9054
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009055static char **skip_dash_dash(char **argv)
9056{
9057 argv++;
9058 if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
9059 argv++;
9060 return argv;
9061}
9062
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009063static int FAST_FUNC builtin_cd(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009064{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009065 const char *newdir;
9066
9067 argv = skip_dash_dash(argv);
9068 newdir = argv[0];
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00009069 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00009070 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009071 * bash says "bash: cd: HOME not set" and does nothing
9072 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00009073 */
Denys Vlasenko90a99042009-09-06 02:36:23 +02009074 const char *home = get_local_var_value("HOME");
9075 newdir = home ? home : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00009076 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009077 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00009078 /* Mimic bash message exactly */
9079 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009080 return EXIT_FAILURE;
9081 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02009082 /* Read current dir (get_cwd(1) is inside) and set PWD.
9083 * Note: do not enforce exporting. If PWD was unset or unexported,
9084 * set it again, but do not export. bash does the same.
9085 */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009086 set_pwd_var(/*flag:*/ 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009087 return EXIT_SUCCESS;
9088}
9089
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009090static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
9091{
9092 puts(get_cwd(0));
9093 return EXIT_SUCCESS;
9094}
9095
9096static int FAST_FUNC builtin_eval(char **argv)
9097{
9098 int rcode = EXIT_SUCCESS;
9099
9100 argv = skip_dash_dash(argv);
9101 if (*argv) {
9102 char *str = expand_strvec_to_string(argv);
9103 /* bash:
9104 * eval "echo Hi; done" ("done" is syntax error):
9105 * "echo Hi" will not execute too.
9106 */
9107 parse_and_run_string(str);
9108 free(str);
9109 rcode = G.last_exitcode;
9110 }
9111 return rcode;
9112}
9113
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009114static int FAST_FUNC builtin_exec(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009115{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009116 argv = skip_dash_dash(argv);
9117 if (argv[0] == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009118 return EXIT_SUCCESS; /* bash does this */
Denys Vlasenkof37eb392009-10-18 11:46:35 +02009119
Denys Vlasenkof37eb392009-10-18 11:46:35 +02009120 /* Careful: we can end up here after [v]fork. Do not restore
9121 * tty pgrp then, only top-level shell process does that */
9122 if (G_saved_tty_pgrp && getpid() == G.root_pid)
9123 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
9124
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02009125 /* TODO: if exec fails, bash does NOT exit! We do.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009126 * We'll need to undo trap cleanup (it's inside execvp_or_die)
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02009127 * and tcsetpgrp, and this is inherently racy.
9128 */
9129 execvp_or_die(argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009130}
9131
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009132static int FAST_FUNC builtin_exit(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009133{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00009134 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00009135
9136 /* interactive bash:
9137 * # trap "echo EEE" EXIT
9138 * # exit
9139 * exit
9140 * There are stopped jobs.
9141 * (if there are _stopped_ jobs, running ones don't count)
9142 * # exit
9143 * exit
Denys Vlasenko6830ade2013-01-15 13:58:01 +01009144 * EEE (then bash exits)
Denis Vlasenko40e84372009-04-18 11:23:38 +00009145 *
Denys Vlasenkoa110c902010-09-12 15:38:04 +02009146 * TODO: we can use G.exiting = -1 as indicator "last cmd was exit"
Denis Vlasenko40e84372009-04-18 11:23:38 +00009147 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00009148
9149 /* note: EXIT trap is run by hush_exit */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009150 argv = skip_dash_dash(argv);
9151 if (argv[0] == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00009152 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009153 /* mimic bash: exit 123abc == exit 255 + error msg */
9154 xfunc_error_retval = 255;
9155 /* bash: exit -2 == exit 254, no error msg */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009156 hush_exit(xatoi(argv[0]) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009157}
9158
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009159#if ENABLE_HUSH_TYPE
9160/* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
9161static int FAST_FUNC builtin_type(char **argv)
9162{
9163 int ret = EXIT_SUCCESS;
9164
9165 while (*++argv) {
9166 const char *type;
9167 char *path = NULL;
9168
9169 if (0) {} /* make conditional compile easier below */
9170 /*else if (find_alias(*argv))
9171 type = "an alias";*/
9172#if ENABLE_HUSH_FUNCTIONS
9173 else if (find_function(*argv))
9174 type = "a function";
9175#endif
9176 else if (find_builtin(*argv))
9177 type = "a shell builtin";
9178 else if ((path = find_in_path(*argv)) != NULL)
9179 type = path;
9180 else {
9181 bb_error_msg("type: %s: not found", *argv);
9182 ret = EXIT_FAILURE;
9183 continue;
9184 }
9185
9186 printf("%s is %s\n", *argv, type);
9187 free(path);
9188 }
9189
9190 return ret;
9191}
9192#endif
9193
9194#if ENABLE_HUSH_READ
9195/* Interruptibility of read builtin in bash
9196 * (tested on bash-4.2.8 by sending signals (not by ^C)):
9197 *
9198 * Empty trap makes read ignore corresponding signal, for any signal.
9199 *
9200 * SIGINT:
9201 * - terminates non-interactive shell;
9202 * - interrupts read in interactive shell;
9203 * if it has non-empty trap:
9204 * - executes trap and returns to command prompt in interactive shell;
9205 * - executes trap and returns to read in non-interactive shell;
9206 * SIGTERM:
9207 * - is ignored (does not interrupt) read in interactive shell;
9208 * - terminates non-interactive shell;
9209 * if it has non-empty trap:
9210 * - executes trap and returns to read;
9211 * SIGHUP:
9212 * - terminates shell (regardless of interactivity);
9213 * if it has non-empty trap:
9214 * - executes trap and returns to read;
Denys Vlasenkof5470412017-05-22 19:34:45 +02009215 * SIGCHLD from children:
9216 * - does not interrupt read regardless of interactivity:
9217 * try: sleep 1 & read x; echo $x
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009218 */
9219static int FAST_FUNC builtin_read(char **argv)
9220{
9221 const char *r;
9222 char *opt_n = NULL;
9223 char *opt_p = NULL;
9224 char *opt_t = NULL;
9225 char *opt_u = NULL;
9226 const char *ifs;
9227 int read_flags;
9228
9229 /* "!": do not abort on errors.
9230 * Option string must start with "sr" to match BUILTIN_READ_xxx
9231 */
9232 read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
9233 if (read_flags == (uint32_t)-1)
9234 return EXIT_FAILURE;
9235 argv += optind;
9236 ifs = get_local_var_value("IFS"); /* can be NULL */
9237
9238 again:
9239 r = shell_builtin_read(set_local_var_from_halves,
9240 argv,
9241 ifs,
9242 read_flags,
9243 opt_n,
9244 opt_p,
9245 opt_t,
9246 opt_u
9247 );
9248
9249 if ((uintptr_t)r == 1 && errno == EINTR) {
9250 unsigned sig = check_and_run_traps();
Denys Vlasenkof5470412017-05-22 19:34:45 +02009251 if (sig != SIGINT)
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009252 goto again;
9253 }
9254
9255 if ((uintptr_t)r > 1) {
9256 bb_error_msg("%s", r);
9257 r = (char*)(uintptr_t)1;
9258 }
9259
9260 return (uintptr_t)r;
9261}
9262#endif
9263
9264#if ENABLE_HUSH_UMASK
9265static int FAST_FUNC builtin_umask(char **argv)
9266{
9267 int rc;
9268 mode_t mask;
9269
9270 rc = 1;
9271 mask = umask(0);
9272 argv = skip_dash_dash(argv);
9273 if (argv[0]) {
9274 mode_t old_mask = mask;
9275
9276 /* numeric umasks are taken as-is */
9277 /* symbolic umasks are inverted: "umask a=rx" calls umask(222) */
9278 if (!isdigit(argv[0][0]))
9279 mask ^= 0777;
9280 mask = bb_parse_mode(argv[0], mask);
9281 if (!isdigit(argv[0][0]))
9282 mask ^= 0777;
9283 if ((unsigned)mask > 0777) {
9284 mask = old_mask;
9285 /* bash messages:
9286 * bash: umask: 'q': invalid symbolic mode operator
9287 * bash: umask: 999: octal number out of range
9288 */
9289 bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
9290 rc = 0;
9291 }
9292 } else {
9293 /* Mimic bash */
9294 printf("%04o\n", (unsigned) mask);
9295 /* fall through and restore mask which we set to 0 */
9296 }
9297 umask(mask);
9298
9299 return !rc; /* rc != 0 - success */
9300}
9301#endif
9302
Denys Vlasenko41ade052017-01-08 18:56:24 +01009303#if ENABLE_HUSH_EXPORT || ENABLE_HUSH_TRAP
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009304static void print_escaped(const char *s)
9305{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009306 if (*s == '\'')
9307 goto squote;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009308 do {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009309 const char *p = strchrnul(s, '\'');
9310 /* print 'xxxx', possibly just '' */
9311 printf("'%.*s'", (int)(p - s), s);
9312 if (*p == '\0')
9313 break;
9314 s = p;
9315 squote:
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009316 /* s points to '; print "'''...'''" */
9317 putchar('"');
9318 do putchar('\''); while (*++s == '\'');
9319 putchar('"');
9320 } while (*s);
9321}
Denys Vlasenko41ade052017-01-08 18:56:24 +01009322#endif
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009323
Denys Vlasenko1e660422017-07-17 21:10:50 +02009324#if ENABLE_HUSH_EXPORT || ENABLE_HUSH_LOCAL || ENABLE_HUSH_READONLY
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009325static int helper_export_local(char **argv, unsigned flags)
Denys Vlasenko295fef82009-06-03 12:47:26 +02009326{
9327 do {
9328 char *name = *argv;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009329 char *name_end = strchrnul(name, '=');
Denys Vlasenko295fef82009-06-03 12:47:26 +02009330
9331 /* So far we do not check that name is valid (TODO?) */
9332
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009333 if (*name_end == '\0') {
9334 struct variable *var, **vpp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02009335
Denys Vlasenko27c56f12010-09-07 09:56:34 +02009336 vpp = get_ptr_to_local_var(name, name_end - name);
9337 var = vpp ? *vpp : NULL;
9338
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009339 if (flags & SETFLAG_UNEXPORT) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02009340 /* export -n NAME (without =VALUE) */
9341 if (var) {
9342 var->flg_export = 0;
9343 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
9344 unsetenv(name);
9345 } /* else: export -n NOT_EXISTING_VAR: no-op */
9346 continue;
9347 }
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009348 if (flags & SETFLAG_EXPORT) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02009349 /* export NAME (without =VALUE) */
9350 if (var) {
9351 var->flg_export = 1;
9352 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
9353 putenv(var->varstr);
9354 continue;
9355 }
9356 }
Denys Vlasenko38ef39a2017-07-18 01:40:01 +02009357 if (flags & SETFLAG_MAKE_RO) {
9358 /* readonly NAME (without =VALUE) */
9359 if (var) {
9360 var->flg_read_only = 1;
9361 continue;
9362 }
9363 }
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009364# if ENABLE_HUSH_LOCAL
Denys Vlasenkob95ee962017-07-17 21:19:53 +02009365 /* Is this "local" bltin? */
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009366 if (!(flags & (SETFLAG_EXPORT|SETFLAG_UNEXPORT|SETFLAG_MAKE_RO))) {
9367 unsigned lvl = flags >> SETFLAG_LOCAL_SHIFT;
Denys Vlasenkob95ee962017-07-17 21:19:53 +02009368 if (var && var->func_nest_level == lvl) {
9369 /* "local x=abc; ...; local x" - ignore second local decl */
9370 continue;
9371 }
Denys Vlasenko61508d92016-10-02 21:12:02 +02009372 }
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009373# endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009374 /* Exporting non-existing variable.
9375 * bash does not put it in environment,
9376 * but remembers that it is exported,
9377 * and does put it in env when it is set later.
Denys Vlasenko1e660422017-07-17 21:10:50 +02009378 * We just set it to "" and export.
9379 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02009380 /* Or, it's "local NAME" (without =VALUE).
Denys Vlasenko1e660422017-07-17 21:10:50 +02009381 * bash sets the value to "".
9382 */
9383 /* Or, it's "readonly NAME" (without =VALUE).
9384 * bash remembers NAME and disallows its creation
9385 * in the future.
9386 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02009387 name = xasprintf("%s=", name);
9388 } else {
9389 /* (Un)exporting/making local NAME=VALUE */
9390 name = xstrdup(name);
9391 }
Denys Vlasenko38ef39a2017-07-18 01:40:01 +02009392 if (set_local_var(name, flags))
9393 return EXIT_FAILURE;
Denys Vlasenko295fef82009-06-03 12:47:26 +02009394 } while (*++argv);
Denys Vlasenko1e660422017-07-17 21:10:50 +02009395 return EXIT_SUCCESS;
Denys Vlasenko295fef82009-06-03 12:47:26 +02009396}
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009397#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02009398
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009399#if ENABLE_HUSH_EXPORT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009400static int FAST_FUNC builtin_export(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009401{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00009402 unsigned opt_unexport;
9403
Denys Vlasenkodf5131c2009-06-07 16:04:17 +02009404#if ENABLE_HUSH_EXPORT_N
9405 /* "!": do not abort on errors */
9406 opt_unexport = getopt32(argv, "!n");
9407 if (opt_unexport == (uint32_t)-1)
9408 return EXIT_FAILURE;
9409 argv += optind;
9410#else
9411 opt_unexport = 0;
9412 argv++;
9413#endif
9414
9415 if (argv[0] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009416 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009417 if (e) {
9418 while (*e) {
9419#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009420 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009421#else
9422 /* ash emits: export VAR='VAL'
9423 * bash: declare -x VAR="VAL"
9424 * we follow ash example */
9425 const char *s = *e++;
9426 const char *p = strchr(s, '=');
9427
9428 if (!p) /* wtf? take next variable */
9429 continue;
9430 /* export var= */
9431 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009432 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009433 putchar('\n');
9434#endif
9435 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009436 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00009437 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009438 return EXIT_SUCCESS;
9439 }
9440
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009441 return helper_export_local(argv, opt_unexport ? SETFLAG_UNEXPORT : SETFLAG_EXPORT);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009442}
Denys Vlasenko6ec76d82017-01-08 18:40:41 +01009443#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009444
Denys Vlasenko295fef82009-06-03 12:47:26 +02009445#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009446static int FAST_FUNC builtin_local(char **argv)
Denys Vlasenko295fef82009-06-03 12:47:26 +02009447{
9448 if (G.func_nest_level == 0) {
9449 bb_error_msg("%s: not in a function", argv[0]);
9450 return EXIT_FAILURE; /* bash compat */
9451 }
Denys Vlasenko1e660422017-07-17 21:10:50 +02009452 argv++;
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009453 return helper_export_local(argv, G.func_nest_level << SETFLAG_LOCAL_SHIFT);
Denys Vlasenko295fef82009-06-03 12:47:26 +02009454}
9455#endif
9456
Denys Vlasenko1e660422017-07-17 21:10:50 +02009457#if ENABLE_HUSH_READONLY
9458static int FAST_FUNC builtin_readonly(char **argv)
9459{
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009460 argv++;
9461 if (*argv == NULL) {
Denys Vlasenko1e660422017-07-17 21:10:50 +02009462 /* bash: readonly [-p]: list all readonly VARs
9463 * (-p has no effect in bash)
9464 */
9465 struct variable *e;
9466 for (e = G.top_var; e; e = e->next) {
9467 if (e->flg_read_only) {
9468//TODO: quote value: readonly VAR='VAL'
9469 printf("readonly %s\n", e->varstr);
9470 }
9471 }
9472 return EXIT_SUCCESS;
9473 }
Denys Vlasenko3bab36b2017-07-18 01:05:24 +02009474 return helper_export_local(argv, SETFLAG_MAKE_RO);
Denys Vlasenko1e660422017-07-17 21:10:50 +02009475}
9476#endif
9477
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009478#if ENABLE_HUSH_UNSET
Denys Vlasenko61508d92016-10-02 21:12:02 +02009479/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
9480static int FAST_FUNC builtin_unset(char **argv)
9481{
9482 int ret;
9483 unsigned opts;
9484
9485 /* "!": do not abort on errors */
9486 /* "+": stop at 1st non-option */
9487 opts = getopt32(argv, "!+vf");
9488 if (opts == (unsigned)-1)
9489 return EXIT_FAILURE;
9490 if (opts == 3) {
9491 bb_error_msg("unset: -v and -f are exclusive");
9492 return EXIT_FAILURE;
9493 }
9494 argv += optind;
9495
9496 ret = EXIT_SUCCESS;
9497 while (*argv) {
9498 if (!(opts & 2)) { /* not -f */
9499 if (unset_local_var(*argv)) {
9500 /* unset <nonexistent_var> doesn't fail.
9501 * Error is when one tries to unset RO var.
9502 * Message was printed by unset_local_var. */
9503 ret = EXIT_FAILURE;
9504 }
9505 }
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009506# if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko61508d92016-10-02 21:12:02 +02009507 else {
9508 unset_func(*argv);
9509 }
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009510# endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009511 argv++;
9512 }
9513 return ret;
9514}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009515#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009516
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009517#if ENABLE_HUSH_SET
Denys Vlasenko61508d92016-10-02 21:12:02 +02009518/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
9519 * built-in 'set' handler
9520 * SUSv3 says:
9521 * set [-abCefhmnuvx] [-o option] [argument...]
9522 * set [+abCefhmnuvx] [+o option] [argument...]
9523 * set -- [argument...]
9524 * set -o
9525 * set +o
9526 * Implementations shall support the options in both their hyphen and
9527 * plus-sign forms. These options can also be specified as options to sh.
9528 * Examples:
9529 * Write out all variables and their values: set
9530 * Set $1, $2, and $3 and set "$#" to 3: set c a b
9531 * Turn on the -x and -v options: set -xv
9532 * Unset all positional parameters: set --
9533 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
9534 * Set the positional parameters to the expansion of x, even if x expands
9535 * with a leading '-' or '+': set -- $x
9536 *
9537 * So far, we only support "set -- [argument...]" and some of the short names.
9538 */
9539static int FAST_FUNC builtin_set(char **argv)
9540{
9541 int n;
9542 char **pp, **g_argv;
9543 char *arg = *++argv;
9544
9545 if (arg == NULL) {
9546 struct variable *e;
9547 for (e = G.top_var; e; e = e->next)
9548 puts(e->varstr);
9549 return EXIT_SUCCESS;
9550 }
9551
9552 do {
9553 if (strcmp(arg, "--") == 0) {
9554 ++argv;
9555 goto set_argv;
9556 }
9557 if (arg[0] != '+' && arg[0] != '-')
9558 break;
9559 for (n = 1; arg[n]; ++n) {
9560 if (set_mode((arg[0] == '-'), arg[n], argv[1]))
9561 goto error;
9562 if (arg[n] == 'o' && argv[1])
9563 argv++;
9564 }
9565 } while ((arg = *++argv) != NULL);
9566 /* Now argv[0] is 1st argument */
9567
9568 if (arg == NULL)
9569 return EXIT_SUCCESS;
9570 set_argv:
9571
9572 /* NB: G.global_argv[0] ($0) is never freed/changed */
9573 g_argv = G.global_argv;
9574 if (G.global_args_malloced) {
9575 pp = g_argv;
9576 while (*++pp)
9577 free(*pp);
9578 g_argv[1] = NULL;
9579 } else {
9580 G.global_args_malloced = 1;
9581 pp = xzalloc(sizeof(pp[0]) * 2);
9582 pp[0] = g_argv[0]; /* retain $0 */
9583 g_argv = pp;
9584 }
9585 /* This realloc's G.global_argv */
9586 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
9587
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02009588 G.global_argc = 1 + string_array_len(pp + 1);
Denys Vlasenko61508d92016-10-02 21:12:02 +02009589
9590 return EXIT_SUCCESS;
9591
9592 /* Nothing known, so abort */
9593 error:
9594 bb_error_msg("set: %s: invalid option", arg);
9595 return EXIT_FAILURE;
9596}
Denys Vlasenko10d5ece2017-01-08 18:28:43 +01009597#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009598
9599static int FAST_FUNC builtin_shift(char **argv)
9600{
9601 int n = 1;
9602 argv = skip_dash_dash(argv);
9603 if (argv[0]) {
Denys Vlasenkoe59591a2017-07-06 20:12:44 +02009604 n = bb_strtou(argv[0], NULL, 10);
9605 if (errno || n < 0) {
9606 /* shared string with ash.c */
9607 bb_error_msg("Illegal number: %s", argv[0]);
9608 /*
9609 * ash aborts in this case.
9610 * bash prints error message and set $? to 1.
9611 * Interestingly, for "shift 99999" bash does not
9612 * print error message, but does set $? to 1
9613 * (and does no shifting at all).
9614 */
9615 }
Denys Vlasenko61508d92016-10-02 21:12:02 +02009616 }
9617 if (n >= 0 && n < G.global_argc) {
Denys Vlasenko4e4f88e2017-01-09 07:57:38 +01009618 if (G_global_args_malloced) {
Denys Vlasenko61508d92016-10-02 21:12:02 +02009619 int m = 1;
9620 while (m <= n)
9621 free(G.global_argv[m++]);
9622 }
9623 G.global_argc -= n;
9624 memmove(&G.global_argv[1], &G.global_argv[n+1],
9625 G.global_argc * sizeof(G.global_argv[0]));
9626 return EXIT_SUCCESS;
9627 }
9628 return EXIT_FAILURE;
9629}
9630
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009631static int FAST_FUNC builtin_source(char **argv)
Denys Vlasenko61508d92016-10-02 21:12:02 +02009632{
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009633 char *arg_path, *filename;
9634 FILE *input;
9635 save_arg_t sv;
9636 char *args_need_save;
9637#if ENABLE_HUSH_FUNCTIONS
9638 smallint sv_flg;
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009639#endif
Denys Vlasenko61508d92016-10-02 21:12:02 +02009640
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009641 argv = skip_dash_dash(argv);
9642 filename = argv[0];
9643 if (!filename) {
9644 /* bash says: "bash: .: filename argument required" */
9645 return 2; /* bash compat */
9646 }
9647 arg_path = NULL;
9648 if (!strchr(filename, '/')) {
9649 arg_path = find_in_path(filename);
9650 if (arg_path)
9651 filename = arg_path;
9652 }
9653 input = remember_FILE(fopen_or_warn(filename, "r"));
9654 free(arg_path);
9655 if (!input) {
9656 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
9657 /* POSIX: non-interactive shell should abort here,
9658 * not merely fail. So far no one complained :)
9659 */
9660 return EXIT_FAILURE;
9661 }
9662
9663#if ENABLE_HUSH_FUNCTIONS
9664 sv_flg = G_flag_return_in_progress;
9665 /* "we are inside sourced file, ok to use return" */
9666 G_flag_return_in_progress = -1;
9667#endif
9668 args_need_save = argv[1]; /* used as a boolean variable */
9669 if (args_need_save)
9670 save_and_replace_G_args(&sv, argv);
9671
9672 /* "false; . ./empty_line; echo Zero:$?" should print 0 */
9673 G.last_exitcode = 0;
9674 parse_and_run_file(input);
9675 fclose_and_forget(input);
9676
9677 if (args_need_save) /* can't use argv[1] instead: "shift" can mangle it */
9678 restore_G_args(&sv, argv);
9679#if ENABLE_HUSH_FUNCTIONS
9680 G_flag_return_in_progress = sv_flg;
9681#endif
9682
9683 return G.last_exitcode;
9684}
9685
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009686#if ENABLE_HUSH_TRAP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009687static int FAST_FUNC builtin_trap(char **argv)
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009688{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009689 int sig;
9690 char *new_cmd;
9691
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009692 if (!G_traps)
9693 G_traps = xzalloc(sizeof(G_traps[0]) * NSIG);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009694
9695 argv++;
9696 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00009697 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009698 /* No args: print all trapped */
9699 for (i = 0; i < NSIG; ++i) {
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009700 if (G_traps[i]) {
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009701 printf("trap -- ");
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009702 print_escaped(G_traps[i]);
Denys Vlasenkoe74aaf92009-09-27 02:05:45 +02009703 /* note: bash adds "SIG", but only if invoked
9704 * as "bash". If called as "sh", or if set -o posix,
9705 * then it prints short signal names.
9706 * We are printing short names: */
9707 printf(" %s\n", get_signame(i));
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009708 }
9709 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009710 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009711 return EXIT_SUCCESS;
9712 }
9713
9714 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009715 /* If first arg is a number: reset all specified signals */
9716 sig = bb_strtou(*argv, NULL, 10);
9717 if (errno == 0) {
9718 int ret;
9719 process_sig_list:
9720 ret = EXIT_SUCCESS;
9721 while (*argv) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009722 sighandler_t handler;
9723
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009724 sig = get_signum(*argv++);
9725 if (sig < 0 || sig >= NSIG) {
9726 ret = EXIT_FAILURE;
9727 /* Mimic bash message exactly */
Denys Vlasenko74562982017-07-06 18:40:45 +02009728 bb_error_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009729 continue;
9730 }
9731
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009732 free(G_traps[sig]);
9733 G_traps[sig] = xstrdup(new_cmd);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009734
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009735 debug_printf("trap: setting SIG%s (%i) to '%s'\n",
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009736 get_signame(sig), sig, G_traps[sig]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009737
9738 /* There is no signal for 0 (EXIT) */
9739 if (sig == 0)
9740 continue;
9741
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009742 if (new_cmd)
9743 handler = (new_cmd[0] ? record_pending_signo : SIG_IGN);
9744 else
9745 /* We are removing trap handler */
9746 handler = pick_sighandler(sig);
Denys Vlasenko0806e402011-05-12 23:06:20 +02009747 install_sighandler(sig, handler);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009748 }
9749 return ret;
9750 }
9751
9752 if (!argv[1]) { /* no second arg */
9753 bb_error_msg("trap: invalid arguments");
9754 return EXIT_FAILURE;
9755 }
9756
9757 /* First arg is "-": reset all specified to default */
9758 /* First arg is "--": skip it, the rest is "handler SIGs..." */
9759 /* Everything else: set arg as signal handler
9760 * (includes "" case, which ignores signal) */
9761 if (argv[0][0] == '-') {
9762 if (argv[0][1] == '\0') { /* "-" */
9763 /* new_cmd remains NULL: "reset these sigs" */
9764 goto reset_traps;
9765 }
9766 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
9767 argv++;
9768 }
9769 /* else: "-something", no special meaning */
9770 }
9771 new_cmd = *argv;
9772 reset_traps:
9773 argv++;
9774 goto process_sig_list;
9775}
Denys Vlasenko7a85c602017-01-08 17:40:18 +01009776#endif
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009777
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009778#if ENABLE_HUSH_JOB
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009779static struct pipe *parse_jobspec(const char *str)
9780{
9781 struct pipe *pi;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009782 unsigned jobnum;
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009783
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009784 if (sscanf(str, "%%%u", &jobnum) != 1) {
9785 if (str[0] != '%'
9786 || (str[1] != '%' && str[1] != '+' && str[1] != '\0')
9787 ) {
9788 bb_error_msg("bad argument '%s'", str);
9789 return NULL;
9790 }
9791 /* It is "%%", "%+" or "%" - current job */
9792 jobnum = G.last_jobid;
9793 if (jobnum == 0) {
9794 bb_error_msg("no current job");
9795 return NULL;
9796 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009797 }
9798 for (pi = G.job_list; pi; pi = pi->next) {
9799 if (pi->jobid == jobnum) {
9800 return pi;
9801 }
9802 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009803 bb_error_msg("%u: no such job", jobnum);
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009804 return NULL;
9805}
9806
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009807static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
9808{
9809 struct pipe *job;
9810 const char *status_string;
9811
9812 checkjobs(NULL, 0 /*(no pid to wait for)*/);
9813 for (job = G.job_list; job; job = job->next) {
9814 if (job->alive_cmds == job->stopped_cmds)
9815 status_string = "Stopped";
9816 else
9817 status_string = "Running";
9818
9819 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
9820 }
Denys Vlasenko2ed74e22017-07-14 19:58:46 +02009821
9822 clean_up_last_dead_job();
9823
Denys Vlasenkoa1184af2017-01-10 15:58:02 +01009824 return EXIT_SUCCESS;
9825}
9826
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009827/* built-in 'fg' and 'bg' handler */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009828static int FAST_FUNC builtin_fg_bg(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009829{
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009830 int i;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009831 struct pipe *pi;
9832
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009833 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009834 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009835
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009836 /* If they gave us no args, assume they want the last backgrounded task */
9837 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00009838 for (pi = G.job_list; pi; pi = pi->next) {
9839 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009840 goto found;
9841 }
9842 }
9843 bb_error_msg("%s: no current job", argv[0]);
9844 return EXIT_FAILURE;
9845 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009846
9847 pi = parse_jobspec(argv[1]);
9848 if (!pi)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009849 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009850 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00009851 /* TODO: bash prints a string representation
9852 * of job being foregrounded (like "sleep 1 | cat") */
Mike Frysinger38478a62009-05-20 04:48:06 -04009853 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009854 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009855 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009856 }
9857
9858 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009859 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
9860 for (i = 0; i < pi->num_cmds; i++) {
9861 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009862 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009863 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009864
9865 i = kill(- pi->pgrp, SIGCONT);
9866 if (i < 0) {
9867 if (errno == ESRCH) {
Denys Vlasenko16096292017-07-10 10:00:28 +02009868 delete_finished_job(pi);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009869 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009870 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009871 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009872 }
9873
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009874 if (argv[0][0] == 'f') {
Denys Vlasenko16096292017-07-10 10:00:28 +02009875 remove_job_from_table(pi); /* FG job shouldn't be in job table */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009876 return checkjobs_and_fg_shell(pi);
9877 }
9878 return EXIT_SUCCESS;
9879}
9880#endif
9881
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009882#if ENABLE_HUSH_KILL
9883static int FAST_FUNC builtin_kill(char **argv)
9884{
9885 int ret = 0;
9886
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009887# if ENABLE_HUSH_JOB
9888 if (argv[1] && strcmp(argv[1], "-l") != 0) {
9889 int i = 1;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009890
9891 do {
9892 struct pipe *pi;
9893 char *dst;
9894 int j, n;
9895
9896 if (argv[i][0] != '%')
9897 continue;
9898 /*
9899 * "kill %N" - job kill
9900 * Converting to pgrp / pid kill
9901 */
9902 pi = parse_jobspec(argv[i]);
9903 if (!pi) {
9904 /* Eat bad jobspec */
9905 j = i;
9906 do {
9907 j++;
9908 argv[j - 1] = argv[j];
9909 } while (argv[j]);
9910 ret = 1;
9911 i--;
9912 continue;
9913 }
9914 /*
9915 * In jobs started under job control, we signal
9916 * entire process group by kill -PGRP_ID.
9917 * This happens, f.e., in interactive shell.
9918 *
9919 * Otherwise, we signal each child via
9920 * kill PID1 PID2 PID3.
9921 * Testcases:
9922 * sh -c 'sleep 1|sleep 1 & kill %1'
9923 * sh -c 'true|sleep 2 & sleep 1; kill %1'
9924 * sh -c 'true|sleep 1 & sleep 2; kill %1'
9925 */
Denys Vlasenko5362cc42017-01-09 05:57:13 +01009926 n = G_interactive_fd ? 1 : pi->num_cmds;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009927 dst = alloca(n * sizeof(int)*4);
9928 argv[i] = dst;
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009929 if (G_interactive_fd)
9930 dst += sprintf(dst, " -%u", (int)pi->pgrp);
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009931 else for (j = 0; j < n; j++) {
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009932 struct command *cmd = &pi->cmds[j];
9933 /* Skip exited members of the job */
9934 if (cmd->pid == 0)
9935 continue;
9936 /*
9937 * kill_main has matching code to expect
9938 * leading space. Needed to not confuse
9939 * negative pids with "kill -SIGNAL_NO" syntax
9940 */
9941 dst += sprintf(dst, " %u", (int)cmd->pid);
9942 }
9943 *dst = '\0';
9944 } while (argv[++i]);
9945 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009946# endif
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009947
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009948 if (argv[1] || ret == 0) {
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009949 ret = run_applet_main(argv, kill_main);
9950 }
Denys Vlasenkofd68f1e2017-01-09 05:47:57 +01009951 /* else: ret = 1, "kill %bad_jobspec" case */
Denys Vlasenko1125d7d2017-01-08 17:19:38 +01009952 return ret;
9953}
9954#endif
9955
9956#if ENABLE_HUSH_WAIT
Mike Frysinger56bdea12009-03-28 20:01:58 +00009957/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009958#if !ENABLE_HUSH_JOB
9959# define wait_for_child_or_signal(pipe,pid) wait_for_child_or_signal(pid)
9960#endif
9961static int wait_for_child_or_signal(struct pipe *waitfor_pipe, pid_t waitfor_pid)
Denys Vlasenko7e675362016-10-28 21:57:31 +02009962{
9963 int ret = 0;
9964 for (;;) {
9965 int sig;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009966 sigset_t oldset;
Denys Vlasenko7e675362016-10-28 21:57:31 +02009967
Denys Vlasenko830ea352016-11-08 04:59:11 +01009968 if (!sigisemptyset(&G.pending_set))
9969 goto check_sig;
9970
Denys Vlasenko7e675362016-10-28 21:57:31 +02009971 /* waitpid is not interruptible by SA_RESTARTed
9972 * signals which we use. Thus, this ugly dance:
9973 */
9974
9975 /* Make sure possible SIGCHLD is stored in kernel's
9976 * pending signal mask before we call waitpid.
9977 * Or else we may race with SIGCHLD, lose it,
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009978 * and get stuck in sigsuspend...
Denys Vlasenko7e675362016-10-28 21:57:31 +02009979 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009980 sigfillset(&oldset); /* block all signals, remember old set */
9981 sigprocmask(SIG_SETMASK, &oldset, &oldset);
Denys Vlasenko7e675362016-10-28 21:57:31 +02009982
9983 if (!sigisemptyset(&G.pending_set)) {
9984 /* Crap! we raced with some signal! */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009985 goto restore;
9986 }
9987
9988 /*errno = 0; - checkjobs does this */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009989/* Can't pass waitfor_pipe into checkjobs(): it won't be interruptible */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009990 ret = checkjobs(NULL, waitfor_pid); /* waitpid(WNOHANG) inside */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009991 debug_printf_exec("checkjobs:%d\n", ret);
9992#if ENABLE_HUSH_JOB
9993 if (waitfor_pipe) {
9994 int rcode = job_exited_or_stopped(waitfor_pipe);
9995 debug_printf_exec("job_exited_or_stopped:%d\n", rcode);
9996 if (rcode >= 0) {
9997 ret = rcode;
9998 sigprocmask(SIG_SETMASK, &oldset, NULL);
9999 break;
10000 }
10001 }
10002#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +020010003 /* if ECHILD, there are no children (ret is -1 or 0) */
10004 /* if ret == 0, no children changed state */
10005 /* if ret != 0, it's exitcode+1 of exited waitfor_pid child */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010006 if (errno == ECHILD || ret) {
10007 ret--;
10008 if (ret < 0) /* if ECHILD, may need to fix "ret" */
Denys Vlasenko7e675362016-10-28 21:57:31 +020010009 ret = 0;
10010 sigprocmask(SIG_SETMASK, &oldset, NULL);
10011 break;
10012 }
Denys Vlasenko7e675362016-10-28 21:57:31 +020010013 /* Wait for SIGCHLD or any other signal */
Denys Vlasenko7e675362016-10-28 21:57:31 +020010014 /* It is vitally important for sigsuspend that SIGCHLD has non-DFL handler! */
10015 /* Note: sigsuspend invokes signal handler */
10016 sigsuspend(&oldset);
10017 restore:
10018 sigprocmask(SIG_SETMASK, &oldset, NULL);
Denys Vlasenko830ea352016-11-08 04:59:11 +010010019 check_sig:
Denys Vlasenko7e675362016-10-28 21:57:31 +020010020 /* So, did we get a signal? */
Denys Vlasenko7e675362016-10-28 21:57:31 +020010021 sig = check_and_run_traps();
10022 if (sig /*&& sig != SIGCHLD - always true */) {
Denys Vlasenko7e675362016-10-28 21:57:31 +020010023 ret = 128 + sig;
10024 break;
10025 }
10026 /* SIGCHLD, or no signal, or ignored one, such as SIGQUIT. Repeat */
10027 }
10028 return ret;
10029}
10030
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010031static int FAST_FUNC builtin_wait(char **argv)
Mike Frysinger56bdea12009-03-28 20:01:58 +000010032{
Denys Vlasenko7e675362016-10-28 21:57:31 +020010033 int ret;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +020010034 int status;
Mike Frysinger56bdea12009-03-28 20:01:58 +000010035
Denys Vlasenkob131cce2010-05-20 03:39:43 +020010036 argv = skip_dash_dash(argv);
10037 if (argv[0] == NULL) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +000010038 /* Don't care about wait results */
10039 /* Note 1: must wait until there are no more children */
10040 /* Note 2: must be interruptible */
10041 /* Examples:
10042 * $ sleep 3 & sleep 6 & wait
10043 * [1] 30934 sleep 3
10044 * [2] 30935 sleep 6
10045 * [1] Done sleep 3
10046 * [2] Done sleep 6
10047 * $ sleep 3 & sleep 6 & wait
10048 * [1] 30936 sleep 3
10049 * [2] 30937 sleep 6
10050 * [1] Done sleep 3
10051 * ^C <-- after ~4 sec from keyboard
10052 * $
10053 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010054 return wait_for_child_or_signal(NULL, 0 /*(no job and no pid to wait for)*/);
Denis Vlasenko7566bae2009-03-31 17:24:49 +000010055 }
Mike Frysinger56bdea12009-03-28 20:01:58 +000010056
Denys Vlasenko7e675362016-10-28 21:57:31 +020010057 do {
Denis Vlasenkod5762932009-03-31 11:22:57 +000010058 pid_t pid = bb_strtou(*argv, NULL, 10);
Denys Vlasenko7e675362016-10-28 21:57:31 +020010059 if (errno || pid <= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010060#if ENABLE_HUSH_JOB
10061 if (argv[0][0] == '%') {
Denys Vlasenko02affb42016-11-08 00:59:29 +010010062 struct pipe *wait_pipe;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +010010063 ret = 127; /* bash compat for bad jobspecs */
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010064 wait_pipe = parse_jobspec(*argv);
10065 if (wait_pipe) {
Denys Vlasenko02affb42016-11-08 00:59:29 +010010066 ret = job_exited_or_stopped(wait_pipe);
Denys Vlasenko2ed74e22017-07-14 19:58:46 +020010067 if (ret < 0) {
Denys Vlasenko02affb42016-11-08 00:59:29 +010010068 ret = wait_for_child_or_signal(wait_pipe, 0);
Denys Vlasenko2ed74e22017-07-14 19:58:46 +020010069 } else {
10070 /* waiting on "last dead job" removes it */
10071 clean_up_last_dead_job();
Denys Vlasenko13102632017-07-08 00:24:32 +020010072 }
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010073 }
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +010010074 /* else: parse_jobspec() already emitted error msg */
10075 continue;
Denys Vlasenko62b717b2016-11-07 22:12:18 +010010076 }
10077#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +000010078 /* mimic bash message */
10079 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010080 ret = EXIT_FAILURE;
10081 continue; /* bash checks all argv[] */
Denis Vlasenkod5762932009-03-31 11:22:57 +000010082 }
Denys Vlasenko02affb42016-11-08 00:59:29 +010010083
Denys Vlasenko7e675362016-10-28 21:57:31 +020010084 /* Do we have such child? */
10085 ret = waitpid(pid, &status, WNOHANG);
10086 if (ret < 0) {
10087 /* No */
Denys Vlasenko840a4352017-07-07 22:56:02 +020010088 ret = 127;
Denys Vlasenko7e675362016-10-28 21:57:31 +020010089 if (errno == ECHILD) {
Denys Vlasenko0c5657e2017-07-14 19:27:03 +020010090 if (pid == G.last_bg_pid) {
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010091 /* "wait $!" but last bg task has already exited. Try:
10092 * (sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?
10093 * In bash it prints exitcode 0, then 3.
Denys Vlasenko26ad94b2016-11-07 23:07:21 +010010094 * In dash, it is 127.
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010095 */
Denys Vlasenko840a4352017-07-07 22:56:02 +020010096 ret = G.last_bg_pid_exitcode;
Denys Vlasenko26ad94b2016-11-07 23:07:21 +010010097 } else {
10098 /* Example: "wait 1". mimic bash message */
10099 bb_error_msg("wait: pid %d is not a child of this shell", (int)pid);
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010100 }
Denys Vlasenko7e675362016-10-28 21:57:31 +020010101 } else {
10102 /* ??? */
10103 bb_perror_msg("wait %s", *argv);
10104 }
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010105 continue; /* bash checks all argv[] */
10106 }
10107 if (ret == 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +020010108 /* Yes, and it still runs */
Denys Vlasenko02affb42016-11-08 00:59:29 +010010109 ret = wait_for_child_or_signal(NULL, pid);
Denys Vlasenko7e675362016-10-28 21:57:31 +020010110 } else {
10111 /* Yes, and it just exited */
Denys Vlasenko02affb42016-11-08 00:59:29 +010010112 process_wait_result(NULL, pid, status);
Denys Vlasenko85378cd2015-10-11 21:47:11 +020010113 ret = WEXITSTATUS(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +000010114 if (WIFSIGNALED(status))
10115 ret = 128 + WTERMSIG(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +000010116 }
Denys Vlasenko9db74e42016-10-28 22:39:12 +020010117 } while (*++argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +000010118
10119 return ret;
10120}
Denys Vlasenko1125d7d2017-01-08 17:19:38 +010010121#endif
Mike Frysinger56bdea12009-03-28 20:01:58 +000010122
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010123#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
10124static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
10125{
10126 if (argv[1]) {
10127 def = bb_strtou(argv[1], NULL, 10);
10128 if (errno || def < def_min || argv[2]) {
10129 bb_error_msg("%s: bad arguments", argv[0]);
10130 def = UINT_MAX;
10131 }
10132 }
10133 return def;
10134}
10135#endif
10136
Denis Vlasenkodadfb492008-07-29 10:16:05 +000010137#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010138static int FAST_FUNC builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010139{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010140 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +000010141 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +000010142 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denys Vlasenko49117b42016-07-21 14:40:08 +020010143 /* if we came from builtin_continue(), need to undo "= 1" */
10144 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +000010145 return EXIT_SUCCESS; /* bash compat */
10146 }
Denys Vlasenko49117b42016-07-21 14:40:08 +020010147 G.flag_break_continue++; /* BC_BREAK = 1, or BC_CONTINUE = 2 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010148
10149 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
10150 if (depth == UINT_MAX)
10151 G.flag_break_continue = BC_BREAK;
10152 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +000010153 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010154
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010155 return EXIT_SUCCESS;
10156}
10157
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010158static int FAST_FUNC builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010159{
Denis Vlasenko4f504a92008-07-29 19:48:30 +000010160 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
10161 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +000010162}
Denis Vlasenkodadfb492008-07-29 10:16:05 +000010163#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010164
10165#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010166static int FAST_FUNC builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010167{
10168 int rc;
10169
Denys Vlasenko04b46bc2016-10-01 22:28:03 +020010170 if (G_flag_return_in_progress != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010171 bb_error_msg("%s: not in a function or sourced script", argv[0]);
10172 return EXIT_FAILURE; /* bash compat */
10173 }
10174
Denys Vlasenko04b46bc2016-10-01 22:28:03 +020010175 G_flag_return_in_progress = 1;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +000010176
10177 /* bash:
10178 * out of range: wraps around at 256, does not error out
10179 * non-numeric param:
10180 * f() { false; return qwe; }; f; echo $?
10181 * bash: return: qwe: numeric argument required <== we do this
10182 * 255 <== we also do this
10183 */
10184 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
10185 return rc;
10186}
10187#endif
Denys Vlasenkoa1184af2017-01-10 15:58:02 +010010188
10189#if ENABLE_HUSH_MEMLEAK
10190static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
10191{
10192 void *p;
10193 unsigned long l;
10194
10195# ifdef M_TRIM_THRESHOLD
10196 /* Optional. Reduces probability of false positives */
10197 malloc_trim(0);
10198# endif
10199 /* Crude attempt to find where "free memory" starts,
10200 * sans fragmentation. */
10201 p = malloc(240);
10202 l = (unsigned long)p;
10203 free(p);
10204 p = malloc(3400);
10205 if (l < (unsigned long)p) l = (unsigned long)p;
10206 free(p);
10207
10208
10209# if 0 /* debug */
10210 {
10211 struct mallinfo mi = mallinfo();
10212 printf("top alloc:0x%lx malloced:%d+%d=%d\n", l,
10213 mi.arena, mi.hblkhd, mi.arena + mi.hblkhd);
10214 }
10215# endif
10216
10217 if (!G.memleak_value)
10218 G.memleak_value = l;
10219
10220 l -= G.memleak_value;
10221 if ((long)l < 0)
10222 l = 0;
10223 l /= 1024;
10224 if (l > 127)
10225 l = 127;
10226
10227 /* Exitcode is "how many kilobytes we leaked since 1st call" */
10228 return l;
10229}
10230#endif