blob: 58132ef17814388706da7eeeb0d32fa42d268c22 [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)
44 * special variables (done: PWD, PPID, RANDOM)
45 * tilde expansion
Eric Andersen78a7c992001-05-15 16:30:25 +000046 * aliases
Denys Vlasenko7e675362016-10-28 21:57:31 +020047 * kill %jobspec
Denys Vlasenko349ef962010-05-21 15:46:24 +020048 * follow IFS rules more precisely, including update semantics
49 * builtins mandated by standards we don't support:
50 * [un]alias, command, fc, getopts, newgrp, readonly, times
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +020051 * make complex ${var%...} constructs support optional
52 * make here documents optional
Mike Frysinger25a6ca02009-03-28 13:59:26 +000053 *
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020054 * Bash compat TODO:
55 * redirection of stdout+stderr: &> and >&
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020056 * reserved words: function select
57 * advanced test: [[ ]]
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020058 * process substitution: <(list) and >(list)
59 * =~: regex operator
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020060 * let EXPR [EXPR...]
Denys Vlasenko349ef962010-05-21 15:46:24 +020061 * Each EXPR is an arithmetic expression (ARITHMETIC EVALUATION)
62 * If the last arg evaluates to 0, let returns 1; 0 otherwise.
63 * NB: let `echo 'a=a + 1'` - error (IOW: multi-word expansion is used)
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020064 * ((EXPR))
Denys Vlasenko349ef962010-05-21 15:46:24 +020065 * The EXPR is evaluated according to ARITHMETIC EVALUATION.
66 * This is exactly equivalent to let "EXPR".
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020067 * $[EXPR]: synonym for $((EXPR))
Denys Vlasenkobbecd742010-10-03 17:22:52 +020068 *
69 * Won't do:
70 * In bash, export builtin is special, its arguments are assignments
Denys Vlasenko08218012009-06-03 14:43:56 +020071 * and therefore expansion of them should be "one-word" expansion:
72 * $ export i=`echo 'a b'` # export has one arg: "i=a b"
73 * compare with:
74 * $ ls i=`echo 'a b'` # ls has two args: "i=a" and "b"
75 * ls: cannot access i=a: No such file or directory
76 * ls: cannot access b: No such file or directory
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020077 * Note1: same applies to local builtin.
Denys Vlasenko08218012009-06-03 14:43:56 +020078 * Note2: bash 3.2.33(1) does this only if export word itself
79 * is not quoted:
80 * $ export i=`echo 'aaa bbb'`; echo "$i"
81 * aaa bbb
82 * $ "export" i=`echo 'aaa bbb'`; echo "$i"
83 * aaa
Eric Andersen25f27032001-04-26 23:22:31 +000084 */
Denys Vlasenko202a2d12010-07-16 12:36:14 +020085//config:config HUSH
86//config: bool "hush"
87//config: default y
88//config: help
Denys Vlasenko771f1992010-07-16 14:31:34 +020089//config: hush is a small shell (25k). It handles the normal flow control
Denys Vlasenko202a2d12010-07-16 12:36:14 +020090//config: constructs such as if/then/elif/else/fi, for/in/do/done, while loops,
91//config: case/esac. Redirections, here documents, $((arithmetic))
92//config: and functions are supported.
93//config:
94//config: It will compile and work on no-mmu systems.
95//config:
Denys Vlasenkoe2069fb2010-10-04 00:01:47 +020096//config: It does not handle select, aliases, tilde expansion,
97//config: &>file and >&file redirection of stdout+stderr.
Denys Vlasenko202a2d12010-07-16 12:36:14 +020098//config:
99//config:config HUSH_BASH_COMPAT
100//config: bool "bash-compatible extensions"
101//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100102//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200103//config: help
104//config: Enable bash-compatible extensions.
105//config:
Denys Vlasenko9e800222010-10-03 14:28:04 +0200106//config:config HUSH_BRACE_EXPANSION
107//config: bool "Brace expansion"
108//config: default y
109//config: depends on HUSH_BASH_COMPAT
110//config: help
111//config: Enable {abc,def} extension.
112//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200113//config:config HUSH_HELP
114//config: bool "help builtin"
115//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100116//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200117//config: help
118//config: Enable help builtin in hush. Code size + ~1 kbyte.
119//config:
120//config:config HUSH_INTERACTIVE
121//config: bool "Interactive mode"
122//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100123//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200124//config: help
125//config: Enable interactive mode (prompt and command editing).
126//config: Without this, hush simply reads and executes commands
127//config: from stdin just like a shell script from a file.
128//config: No prompt, no PS1/PS2 magic shell variables.
129//config:
Denys Vlasenko99862cb2010-09-12 17:34:13 +0200130//config:config HUSH_SAVEHISTORY
131//config: bool "Save command history to .hush_history"
132//config: default y
133//config: depends on HUSH_INTERACTIVE && FEATURE_EDITING_SAVEHISTORY
134//config: help
135//config: Enable history saving in hush.
136//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200137//config:config HUSH_JOB
138//config: bool "Job control"
139//config: default y
140//config: depends on HUSH_INTERACTIVE
141//config: help
142//config: Enable job control: Ctrl-Z backgrounds, Ctrl-C interrupts current
143//config: command (not entire shell), fg/bg builtins work. Without this option,
144//config: "cmd &" still works by simply spawning a process and immediately
145//config: prompting for next command (or executing next command in a script),
146//config: but no separate process group is formed.
147//config:
148//config:config HUSH_TICK
149//config: bool "Process substitution"
150//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100151//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200152//config: help
153//config: Enable process substitution `command` and $(command) in hush.
154//config:
155//config:config HUSH_IF
156//config: bool "Support if/then/elif/else/fi"
157//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
160//config: Enable if/then/elif/else/fi in hush.
161//config:
162//config:config HUSH_LOOPS
163//config: bool "Support for, while and until loops"
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: help
167//config: Enable for, while and until loops in hush.
168//config:
169//config:config HUSH_CASE
170//config: bool "Support case ... esac statement"
171//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100172//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200173//config: help
174//config: Enable case ... esac statement in hush. +400 bytes.
175//config:
176//config:config HUSH_FUNCTIONS
177//config: bool "Support funcname() { commands; } syntax"
178//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100179//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200180//config: help
181//config: Enable support for shell functions in hush. +800 bytes.
182//config:
183//config:config HUSH_LOCAL
184//config: bool "Support local builtin"
185//config: default y
186//config: depends on HUSH_FUNCTIONS
187//config: help
188//config: Enable support for local variables in functions.
189//config:
190//config:config HUSH_RANDOM_SUPPORT
191//config: bool "Pseudorandom generator and $RANDOM variable"
192//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100193//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200194//config: help
195//config: Enable pseudorandom generator and dynamic variable "$RANDOM".
196//config: Each read of "$RANDOM" will generate a new pseudorandom value.
197//config:
198//config:config HUSH_EXPORT_N
199//config: bool "Support 'export -n' option"
200//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100201//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200202//config: help
203//config: export -n unexports variables. It is a bash extension.
204//config:
205//config:config HUSH_MODE_X
206//config: bool "Support 'hush -x' option and 'set -x' command"
207//config: default y
Denys Vlasenko0b883582016-12-23 16:49:07 +0100208//config: depends on HUSH || SH_IS_HUSH || BASH_IS_HUSH
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200209//config: help
Denys Vlasenko29082232010-07-16 13:52:32 +0200210//config: This instructs hush to print commands before execution.
211//config: Adds ~300 bytes.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200212//config:
Denys Vlasenko6adf2aa2010-07-16 19:26:38 +0200213//config:config MSH
214//config: bool "msh (deprecated: aliased to hush)"
215//config: default n
216//config: select HUSH
217//config: help
218//config: msh is deprecated and will be removed, please migrate to hush.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200219
Denys Vlasenko20704f02011-03-23 17:59:27 +0100220//applet:IF_HUSH(APPLET(hush, BB_DIR_BIN, BB_SUID_DROP))
Denys Vlasenko0b883582016-12-23 16:49:07 +0100221//applet:IF_MSH(APPLET_ODDNAME(msh, hush, BB_DIR_BIN, BB_SUID_DROP, hush))
222//applet:IF_SH_IS_HUSH(APPLET_ODDNAME(sh, hush, BB_DIR_BIN, BB_SUID_DROP, hush))
223//applet:IF_BASH_IS_HUSH(APPLET_ODDNAME(bash, hush, BB_DIR_BIN, BB_SUID_DROP, hush))
Denys Vlasenko20704f02011-03-23 17:59:27 +0100224
225//kbuild:lib-$(CONFIG_HUSH) += hush.o match.o shell_common.o
Denys Vlasenko0b883582016-12-23 16:49:07 +0100226//kbuild:lib-$(CONFIG_SH_IS_HUSH) += hush.o match.o shell_common.o
227//kbuild:lib-$(CONFIG_BASH_IS_HUSH) += hush.o match.o shell_common.o
Denys Vlasenko20704f02011-03-23 17:59:27 +0100228//kbuild:lib-$(CONFIG_HUSH_RANDOM_SUPPORT) += random.o
229
Dan Fandrich89ca2f92010-11-28 01:54:39 +0100230/* -i (interactive) and -s (read stdin) are also accepted,
231 * but currently do nothing, therefore aren't shown in help.
232 * NOMMU-specific options are not meant to be used by users,
233 * therefore we don't show them either.
234 */
235//usage:#define hush_trivial_usage
Denys Vlasenkof58f7052011-05-12 02:10:33 +0200236//usage: "[-nxl] [-c 'SCRIPT' [ARG0 [ARGS]] / FILE [ARGS]]"
Denys Vlasenkob0b83432011-03-07 12:34:59 +0100237//usage:#define hush_full_usage "\n\n"
238//usage: "Unix shell interpreter"
239
Denys Vlasenko67047462016-12-22 15:21:58 +0100240#if !(defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \
241 || defined(__APPLE__) \
242 )
243# include <malloc.h> /* for malloc_trim */
244#endif
245#include <glob.h>
246/* #include <dmalloc.h> */
247#if ENABLE_HUSH_CASE
248# include <fnmatch.h>
249#endif
250#include <sys/utsname.h> /* for setting $HOSTNAME */
251
252#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
253#include "unicode.h"
254#include "shell_common.h"
255#include "math.h"
256#include "match.h"
257#if ENABLE_HUSH_RANDOM_SUPPORT
258# include "random.h"
259#else
260# define CLEAR_RANDOM_T(rnd) ((void)0)
261#endif
262#ifndef F_DUPFD_CLOEXEC
263# define F_DUPFD_CLOEXEC F_DUPFD
264#endif
265#ifndef PIPE_BUF
266# define PIPE_BUF 4096 /* amount of buffering in a pipe */
267#endif
268
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000269
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200270/* Build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000271#define LEAK_HUNTING 0
272#define BUILD_AS_NOMMU 0
273/* Enable/disable sanity checks. Ok to enable in production,
274 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
275 * Keeping 1 for now even in released versions.
276 */
277#define HUSH_DEBUG 1
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200278/* Slightly bigger (+200 bytes), but faster hush.
279 * So far it only enables a trick with counting SIGCHLDs and forks,
280 * which allows us to do fewer waitpid's.
281 * (we can detect a case where neither forks were done nor SIGCHLDs happened
282 * and therefore waitpid will return the same result as last time)
283 */
284#define ENABLE_HUSH_FAST 0
Denys Vlasenko9297dbc2010-07-05 21:37:12 +0200285/* TODO: implement simplified code for users which do not need ${var%...} ops
286 * So far ${var%...} ops are always enabled:
287 */
288#define ENABLE_HUSH_DOLLAR_OPS 1
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000289
290
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000291#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000292# undef BB_MMU
293# undef USE_FOR_NOMMU
294# undef USE_FOR_MMU
295# define BB_MMU 0
296# define USE_FOR_NOMMU(...) __VA_ARGS__
297# define USE_FOR_MMU(...)
298#endif
299
Denys Vlasenko1fcbff22010-06-26 02:40:08 +0200300#include "NUM_APPLETS.h"
Denys Vlasenko14974842010-03-23 01:08:26 +0100301#if NUM_APPLETS == 1
Denis Vlasenko61befda2008-11-25 01:36:03 +0000302/* STANDALONE does not make sense, and won't compile */
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000303# undef CONFIG_FEATURE_SH_STANDALONE
304# undef ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000305# undef IF_FEATURE_SH_STANDALONE
Denys Vlasenko14974842010-03-23 01:08:26 +0100306# undef IF_NOT_FEATURE_SH_STANDALONE
307# define ENABLE_FEATURE_SH_STANDALONE 0
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000308# define IF_FEATURE_SH_STANDALONE(...)
309# define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denis Vlasenko61befda2008-11-25 01:36:03 +0000310#endif
311
Denis Vlasenko05743d72008-02-10 12:10:08 +0000312#if !ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000313# undef ENABLE_FEATURE_EDITING
314# define ENABLE_FEATURE_EDITING 0
315# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
316# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denys Vlasenko8cab6672012-04-20 14:48:00 +0200317# undef ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
318# define ENABLE_FEATURE_EDITING_SAVE_ON_EXIT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000319#endif
320
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000321/* Do we support ANY keywords? */
322#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000323# define HAS_KEYWORDS 1
324# define IF_HAS_KEYWORDS(...) __VA_ARGS__
325# define IF_HAS_NO_KEYWORDS(...)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000326#else
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000327# define HAS_KEYWORDS 0
328# define IF_HAS_KEYWORDS(...)
329# define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000330#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000331
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000332/* If you comment out one of these below, it will be #defined later
333 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000334#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000335/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000336#define debug_printf_parse(...) do {} while (0)
337#define debug_print_tree(a, b) do {} while (0)
338#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000339#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000340#define debug_printf_jobs(...) do {} while (0)
341#define debug_printf_expand(...) do {} while (0)
Denys Vlasenko1e811b12010-05-22 03:12:29 +0200342#define debug_printf_varexp(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000343#define debug_printf_glob(...) do {} while (0)
344#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000345#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000346#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000347
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000348#define ERR_PTR ((void*)(long)1)
349
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100350#define JOB_STATUS_FORMAT "[%u] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000351
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200352#define _SPECIAL_VARS_STR "_*@$!?#"
353#define SPECIAL_VARS_STR ("_*@$!?#" + 1)
354#define NUMERIC_SPECVARS_STR ("_*@$!?#" + 3)
Denys Vlasenko36f774a2010-09-05 14:45:38 +0200355#if ENABLE_HUSH_BASH_COMPAT
356/* Support / and // replace ops */
357/* Note that // is stored as \ in "encoded" string representation */
358# define VAR_ENCODED_SUBST_OPS "\\/%#:-=+?"
359# define VAR_SUBST_OPS ("\\/%#:-=+?" + 1)
360# define MINUS_PLUS_EQUAL_QUESTION ("\\/%#:-=+?" + 5)
361#else
362# define VAR_ENCODED_SUBST_OPS "%#:-=+?"
363# define VAR_SUBST_OPS "%#:-=+?"
364# define MINUS_PLUS_EQUAL_QUESTION ("%#:-=+?" + 3)
365#endif
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200366
367#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000368
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200369struct variable;
370
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000371static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
372
373/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000374 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000375 */
376#if !BB_MMU
377typedef struct nommu_save_t {
378 char **new_env;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200379 struct variable *old_vars;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000380 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000381 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000382} nommu_save_t;
383#endif
384
Denys Vlasenko9b782552010-09-08 13:33:26 +0200385enum {
Eric Andersen25f27032001-04-26 23:22:31 +0000386 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000387#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000388 RES_IF ,
389 RES_THEN ,
390 RES_ELIF ,
391 RES_ELSE ,
392 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000393#endif
394#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000395 RES_FOR ,
396 RES_WHILE ,
397 RES_UNTIL ,
398 RES_DO ,
399 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000400#endif
401#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000402 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000403#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000404#if ENABLE_HUSH_CASE
405 RES_CASE ,
Denys Vlasenkoe9bda902009-05-23 16:50:07 +0200406 /* three pseudo-keywords support contrived "case" syntax: */
407 RES_CASE_IN, /* "case ... IN", turns into RES_MATCH when IN is observed */
408 RES_MATCH , /* "word)" */
409 RES_CASE_BODY, /* "this command is inside CASE" */
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000410 RES_ESAC ,
411#endif
412 RES_XXXX ,
413 RES_SNTX
Denys Vlasenko9b782552010-09-08 13:33:26 +0200414};
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000415
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000416typedef struct o_string {
417 char *data;
418 int length; /* position where data is appended */
419 int maxlen;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +0200420 int o_expflags;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000421 /* At least some part of the string was inside '' or "",
422 * possibly empty one: word"", wo''rd etc. */
Denys Vlasenko38292b62010-09-05 14:49:40 +0200423 smallint has_quoted_part;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000424 smallint has_empty_slot;
425 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
426} o_string;
427enum {
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200428 EXP_FLAG_SINGLEWORD = 0x80, /* must be 0x80 */
429 EXP_FLAG_GLOB = 0x2,
430 /* Protect newly added chars against globbing
431 * by prepending \ to *, ?, [, \ */
432 EXP_FLAG_ESC_GLOB_CHARS = 0x1,
433};
434enum {
435 MAYBE_ASSIGNMENT = 0,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000436 DEFINITELY_ASSIGNMENT = 1,
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200437 NOT_ASSIGNMENT = 2,
Maninder Singh97c64912015-05-25 13:46:36 +0200438 /* Not an assignment, but next word may be: "if v=xyz cmd;" */
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200439 WORD_IS_KEYWORD = 3,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000440};
441/* Used for initialization: o_string foo = NULL_O_STRING; */
442#define NULL_O_STRING { NULL }
443
Denys Vlasenko29f9b722011-05-14 11:27:36 +0200444#ifndef debug_printf_parse
445static const char *const assignment_flag[] = {
446 "MAYBE_ASSIGNMENT",
447 "DEFINITELY_ASSIGNMENT",
448 "NOT_ASSIGNMENT",
449 "WORD_IS_KEYWORD",
450};
451#endif
452
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000453typedef struct in_str {
454 const char *p;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000455#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000456 smallint promptmode; /* 0: PS1, 1: PS2 */
457#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +0200458 int peek_buf[2];
Denys Vlasenkocecbc982011-03-30 18:54:52 +0200459 int last_char;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000460 FILE *file;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000461} in_str;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000462
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200463/* The descrip member of this structure is only used to make
464 * debugging output pretty */
465static const struct {
466 int mode;
467 signed char default_fd;
468 char descrip[3];
469} redir_table[] = {
470 { O_RDONLY, 0, "<" },
471 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
472 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
473 { O_CREAT|O_RDWR, 1, "<>" },
474 { O_RDONLY, 0, "<<" },
475/* Should not be needed. Bogus default_fd helps in debugging */
476/* { O_RDONLY, 77, "<<" }, */
477};
478
Eric Andersen25f27032001-04-26 23:22:31 +0000479struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000480 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000481 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000482 int rd_fd; /* fd to redirect */
483 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
484 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000485 smallint rd_type; /* (enum redir_type) */
486 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000487 * and subsequently heredoc itself; and rd_dup is a bitmask:
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200488 * bit 0: do we need to trim leading tabs?
489 * bit 1: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000490 */
Eric Andersen25f27032001-04-26 23:22:31 +0000491};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000492typedef enum redir_type {
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200493 REDIRECT_INPUT = 0,
494 REDIRECT_OVERWRITE = 1,
495 REDIRECT_APPEND = 2,
496 REDIRECT_IO = 3,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000497 REDIRECT_HEREDOC = 4,
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200498 REDIRECT_HEREDOC2 = 5, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000499
500 REDIRFD_CLOSE = -3,
501 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000502 REDIRFD_TO_FILE = -1,
503 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000504
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000505 HEREDOC_SKIPTABS = 1,
506 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000507} redir_type;
508
Eric Andersen25f27032001-04-26 23:22:31 +0000509
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000510struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000511 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000512 int assignment_cnt; /* how many argv[i] are assignments? */
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200513 smallint cmd_type; /* CMD_xxx */
514#define CMD_NORMAL 0
515#define CMD_SUBSHELL 1
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200516#if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenkod383b492010-09-06 10:22:13 +0200517/* used for "[[ EXPR ]]" */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200518# define CMD_SINGLEWORD_NOGLOB 2
Denis Vlasenkoed055212009-04-11 10:37:10 +0000519#endif
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200520#if ENABLE_HUSH_FUNCTIONS
521# define CMD_FUNCDEF 3
522#endif
523
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100524 smalluint cmd_exitcode;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200525 /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */
526 struct pipe *group;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000527#if !BB_MMU
528 char *group_as_string;
529#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000530#if ENABLE_HUSH_FUNCTIONS
531 struct function *child_func;
532/* This field is used to prevent a bug here:
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200533 * while...do f1() {a;}; f1; f1() {b;}; f1; done
Denis Vlasenkoed055212009-04-11 10:37:10 +0000534 * When we execute "f1() {a;}" cmd, we create new function and clear
535 * cmd->group, cmd->group_as_string, cmd->argv[0].
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200536 * When we execute "f1() {b;}", we notice that f1 exists,
537 * and that its "parent cmd" struct is still "alive",
Denis Vlasenkoed055212009-04-11 10:37:10 +0000538 * we put those fields back into cmd->xxx
539 * (struct function has ->parent_cmd ptr to facilitate that).
540 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
541 * Without this trick, loop would execute a;b;b;b;...
542 * instead of correct sequence a;b;a;b;...
543 * When command is freed, it severs the link
544 * (sets ->child_func->parent_cmd to NULL).
545 */
546#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000547 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000548/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
549 * and on execution these are substituted with their values.
550 * Substitution can make _several_ words out of one argv[n]!
551 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000552 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000553 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000554 struct redir_struct *redirects; /* I/O redirections */
555};
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000556/* Is there anything in this command at all? */
557#define IS_NULL_CMD(cmd) \
558 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
559
Eric Andersen25f27032001-04-26 23:22:31 +0000560struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000561 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000562 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000563 int alive_cmds; /* number of commands running (not exited) */
564 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000565#if ENABLE_HUSH_JOB
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100566 unsigned jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000567 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000568 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000569#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000570 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000571 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000572 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
573 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000574};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000575typedef enum pipe_style {
Denys Vlasenko00a06b92016-11-08 20:35:53 +0100576 PIPE_SEQ = 0,
577 PIPE_AND = 1,
578 PIPE_OR = 2,
579 PIPE_BG = 3,
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000580} pipe_style;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000581/* Is there anything in this pipe at all? */
582#define IS_NULL_PIPE(pi) \
583 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
Eric Andersen25f27032001-04-26 23:22:31 +0000584
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000585/* This holds pointers to the various results of parsing */
586struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000587 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000588 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000589 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000590 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000591 /* last command in pipe (being constructed right now) */
592 struct command *command;
593 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000594 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000595#if !BB_MMU
596 o_string as_string;
597#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000598#if HAS_KEYWORDS
599 smallint ctx_res_w;
600 smallint ctx_inverted; /* "! cmd | cmd" */
601#if ENABLE_HUSH_CASE
602 smallint ctx_dsemicolon; /* ";;" seen */
603#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000604 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
605 int old_flag;
606 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000607 * example: "if pipe1; pipe2; then pipe3; fi"
608 * when we see "if" or "then", we malloc and copy current context,
609 * and make ->stack point to it. then we parse pipeN.
610 * when closing "then" / fi" / whatever is found,
611 * we move list_head into ->stack->command->group,
612 * copy ->stack into current context, and delete ->stack.
613 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000614 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000615 struct parse_context *stack;
616#endif
617};
618
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000619/* On program start, environ points to initial environment.
620 * putenv adds new pointers into it, unsetenv removes them.
621 * Neither of these (de)allocates the strings.
622 * setenv allocates new strings in malloc space and does putenv,
623 * and thus setenv is unusable (leaky) for shell's purposes */
624#define setenv(...) setenv_is_leaky_dont_use()
625struct variable {
626 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000627 char *varstr; /* points to "name=" portion */
Denys Vlasenko295fef82009-06-03 12:47:26 +0200628#if ENABLE_HUSH_LOCAL
629 unsigned func_nest_level;
630#endif
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000631 int max_len; /* if > 0, name is part of initial env; else name is malloced */
632 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000633 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000634};
635
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000636enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000637 BC_BREAK = 1,
638 BC_CONTINUE = 2,
639};
640
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000641#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000642struct function {
643 struct function *next;
644 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000645 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000646 struct pipe *body;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200647# if !BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000648 char *body_as_string;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200649# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000650};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000651#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000652
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000653
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100654/* set -/+o OPT support. (TODO: make it optional)
655 * bash supports the following opts:
656 * allexport off
657 * braceexpand on
658 * emacs on
659 * errexit off
660 * errtrace off
661 * functrace off
662 * hashall on
663 * histexpand off
664 * history on
665 * ignoreeof off
666 * interactive-comments on
667 * keyword off
668 * monitor on
669 * noclobber off
670 * noexec off
671 * noglob off
672 * nolog off
673 * notify off
674 * nounset off
675 * onecmd off
676 * physical off
677 * pipefail off
678 * posix off
679 * privileged off
680 * verbose off
681 * vi off
682 * xtrace off
683 */
Dan Fandrich85c62472010-11-20 13:05:17 -0800684static const char o_opt_strings[] ALIGN1 =
685 "pipefail\0"
686 "noexec\0"
687#if ENABLE_HUSH_MODE_X
688 "xtrace\0"
689#endif
690 ;
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100691enum {
692 OPT_O_PIPEFAIL,
Dan Fandrich85c62472010-11-20 13:05:17 -0800693 OPT_O_NOEXEC,
694#if ENABLE_HUSH_MODE_X
695 OPT_O_XTRACE,
696#endif
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100697 NUM_OPT_O
698};
699
700
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200701struct FILE_list {
702 struct FILE_list *next;
703 FILE *fp;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +0200704 int fd;
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200705};
706
707
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000708/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000709/* Sorted roughly by size (smaller offsets == smaller code) */
710struct globals {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000711 /* interactive_fd != 0 means we are an interactive shell.
712 * If we are, then saved_tty_pgrp can also be != 0, meaning
713 * that controlling tty is available. With saved_tty_pgrp == 0,
714 * job control still works, but terminal signals
715 * (^C, ^Z, ^Y, ^\) won't work at all, and background
716 * process groups can only be created with "cmd &".
717 * With saved_tty_pgrp != 0, hush will use tcsetpgrp()
718 * to give tty to the foreground process group,
719 * and will take it back when the group is stopped (^Z)
720 * or killed (^C).
721 */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000722#if ENABLE_HUSH_INTERACTIVE
723 /* 'interactive_fd' is a fd# open to ctty, if we have one
724 * _AND_ if we decided to act interactively */
725 int interactive_fd;
726 const char *PS1;
727 const char *PS2;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000728# define G_interactive_fd (G.interactive_fd)
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000729#else
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000730# define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000731#endif
732#if ENABLE_FEATURE_EDITING
733 line_input_t *line_input_state;
734#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000735 pid_t root_pid;
Denys Vlasenkodea47882009-10-09 15:40:49 +0200736 pid_t root_ppid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000737 pid_t last_bg_pid;
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200738#if ENABLE_HUSH_RANDOM_SUPPORT
739 random_t random_gen;
740#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000741#if ENABLE_HUSH_JOB
742 int run_list_level;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +0100743 unsigned last_jobid;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000744 pid_t saved_tty_pgrp;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000745 struct pipe *job_list;
Mike Frysinger38478a62009-05-20 04:48:06 -0400746# define G_saved_tty_pgrp (G.saved_tty_pgrp)
747#else
748# define G_saved_tty_pgrp 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000749#endif
Denys Vlasenko26777aa2010-11-22 23:49:10 +0100750 char o_opt[NUM_OPT_O];
Denys Vlasenko57542eb2010-11-28 03:59:30 +0100751#if ENABLE_HUSH_MODE_X
752# define G_x_mode (G.o_opt[OPT_O_XTRACE])
753#else
754# define G_x_mode 0
755#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000756 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000757#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000758 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000759#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000760#if ENABLE_HUSH_FUNCTIONS
761 /* 0: outside of a function (or sourced file)
762 * -1: inside of a function, ok to use return builtin
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000763 * 1: return is invoked, skip all till end of func
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000764 */
765 smallint flag_return_in_progress;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +0200766# define G_flag_return_in_progress (G.flag_return_in_progress)
767#else
768# define G_flag_return_in_progress 0
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000769#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000770 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000771 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000772 smalluint last_exitcode;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000773 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000774 smalluint global_args_malloced;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000775 /* how many non-NULL argv's we have. NB: $# + 1 */
776 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000777 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000778#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000779 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000780#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000781#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000782 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000783 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000784#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000785 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000786 const char *cwd;
Denys Vlasenko52e460b2010-09-16 16:12:00 +0200787 struct variable *top_var;
Denys Vlasenko29082232010-07-16 13:52:32 +0200788 char **expanded_assignments;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000789#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000790 struct function *top_func;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200791# if ENABLE_HUSH_LOCAL
792 struct variable **shadowed_vars_pp;
793 unsigned func_nest_level;
794# endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000795#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000796 /* Signal and trap handling */
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200797#if ENABLE_HUSH_FAST
798 unsigned count_SIGCHLD;
799 unsigned handled_SIGCHLD;
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +0200800 smallint we_have_children;
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200801#endif
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +0200802 struct FILE_list *FILE_list;
Denys Vlasenko10c01312011-05-11 11:49:21 +0200803 /* Which signals have non-DFL handler (even with no traps set)?
804 * Set at the start to:
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200805 * (SIGQUIT + maybe SPECIAL_INTERACTIVE_SIGS + maybe SPECIAL_JOBSTOP_SIGS)
Denys Vlasenko10c01312011-05-11 11:49:21 +0200806 * SPECIAL_INTERACTIVE_SIGS are cleared after fork.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200807 * The rest is cleared right before execv syscalls.
Denys Vlasenko10c01312011-05-11 11:49:21 +0200808 * Other than these two times, never modified.
809 */
810 unsigned special_sig_mask;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200811#if ENABLE_HUSH_JOB
812 unsigned fatal_sig_mask;
Denys Vlasenko75e77de2011-05-12 13:12:47 +0200813# define G_fatal_sig_mask G.fatal_sig_mask
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200814#else
Denys Vlasenko75e77de2011-05-12 13:12:47 +0200815# define G_fatal_sig_mask 0
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200816#endif
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000817 char **traps; /* char *traps[NSIG] */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +0200818 sigset_t pending_set;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000819#if HUSH_DEBUG
820 unsigned long memleak_value;
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000821 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000822#endif
Denys Vlasenko0806e402011-05-12 23:06:20 +0200823 struct sigaction sa;
Denys Vlasenko0448c552016-09-29 20:25:44 +0200824#if ENABLE_FEATURE_EDITING
825 char user_input_buf[CONFIG_FEATURE_EDITING_MAX_LEN];
826#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000827};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000828#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000829/* Not #defining name to G.name - this quickly gets unwieldy
830 * (too many defines). Also, I actually prefer to see when a variable
831 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000832#define INIT_G() do { \
833 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denys Vlasenko0806e402011-05-12 23:06:20 +0200834 /* memset(&G.sa, 0, sizeof(G.sa)); */ \
835 sigfillset(&G.sa.sa_mask); \
836 G.sa.sa_flags = SA_RESTART; \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000837} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000838
839
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000840/* Function prototypes for builtins */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200841static int builtin_cd(char **argv) FAST_FUNC;
842static int builtin_echo(char **argv) FAST_FUNC;
843static int builtin_eval(char **argv) FAST_FUNC;
844static int builtin_exec(char **argv) FAST_FUNC;
845static int builtin_exit(char **argv) FAST_FUNC;
846static int builtin_export(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000847#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200848static int builtin_fg_bg(char **argv) FAST_FUNC;
849static int builtin_jobs(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000850#endif
851#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200852static int builtin_help(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000853#endif
Denys Vlasenkoff463a82013-05-12 02:45:23 +0200854#if MAX_HISTORY && ENABLE_FEATURE_EDITING
Flemming Madsend96ffda2013-04-07 18:47:24 +0200855static int builtin_history(char **argv) FAST_FUNC;
856#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200857#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200858static int builtin_local(char **argv) FAST_FUNC;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200859#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000860#if HUSH_DEBUG
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200861static int builtin_memleak(char **argv) FAST_FUNC;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000862#endif
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400863#if ENABLE_PRINTF
864static int builtin_printf(char **argv) FAST_FUNC;
865#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200866static int builtin_pwd(char **argv) FAST_FUNC;
867static int builtin_read(char **argv) FAST_FUNC;
868static int builtin_set(char **argv) FAST_FUNC;
869static int builtin_shift(char **argv) FAST_FUNC;
870static int builtin_source(char **argv) FAST_FUNC;
871static int builtin_test(char **argv) FAST_FUNC;
872static int builtin_trap(char **argv) FAST_FUNC;
873static int builtin_type(char **argv) FAST_FUNC;
874static int builtin_true(char **argv) FAST_FUNC;
875static int builtin_umask(char **argv) FAST_FUNC;
876static int builtin_unset(char **argv) FAST_FUNC;
877static int builtin_wait(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000878#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200879static int builtin_break(char **argv) FAST_FUNC;
880static int builtin_continue(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000881#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000882#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200883static int builtin_return(char **argv) FAST_FUNC;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000884#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000885
886/* Table of built-in functions. They can be forked or not, depending on
887 * context: within pipes, they fork. As simple commands, they do not.
888 * When used in non-forking context, they can change global variables
889 * in the parent shell process. If forked, of course they cannot.
890 * For example, 'unset foo | whatever' will parse and run, but foo will
891 * still be set at the end. */
892struct built_in_command {
Denys Vlasenko17323a62010-01-28 01:57:05 +0100893 const char *b_cmd;
894 int (*b_function)(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000895#if ENABLE_HUSH_HELP
Denys Vlasenko17323a62010-01-28 01:57:05 +0100896 const char *b_descr;
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200897# define BLTIN(cmd, func, help) { cmd, func, help }
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000898#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200899# define BLTIN(cmd, func, help) { cmd, func }
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000900#endif
901};
902
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200903static const struct built_in_command bltins1[] = {
904 BLTIN("." , builtin_source , "Run commands in a file"),
905 BLTIN(":" , builtin_true , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000906#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200907 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000908#endif
909#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200910 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000911#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200912 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000913#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200914 BLTIN("continue" , builtin_continue, "Start new loop iteration"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000915#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200916 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
917 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
918 BLTIN("exit" , builtin_exit , "Exit"),
919 BLTIN("export" , builtin_export , "Set environment variables"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000920#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200921 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000922#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000923#if ENABLE_HUSH_HELP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200924 BLTIN("help" , builtin_help , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000925#endif
Denys Vlasenkoff463a82013-05-12 02:45:23 +0200926#if MAX_HISTORY && ENABLE_FEATURE_EDITING
Flemming Madsend96ffda2013-04-07 18:47:24 +0200927 BLTIN("history" , builtin_history , "Show command history"),
928#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000929#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200930 BLTIN("jobs" , builtin_jobs , "List jobs"),
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000931#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200932#if ENABLE_HUSH_LOCAL
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200933 BLTIN("local" , builtin_local , "Set local variables"),
Denys Vlasenko295fef82009-06-03 12:47:26 +0200934#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000935#if HUSH_DEBUG
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200936 BLTIN("memleak" , builtin_memleak , NULL),
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000937#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200938 BLTIN("read" , builtin_read , "Input into variable"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000939#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200940 BLTIN("return" , builtin_return , "Return from a function"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000941#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200942 BLTIN("set" , builtin_set , "Set/unset positional parameters"),
943 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
Denys Vlasenko82731b42010-05-17 17:49:52 +0200944#if ENABLE_HUSH_BASH_COMPAT
945 BLTIN("source" , builtin_source , "Run commands in a file"),
946#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200947 BLTIN("trap" , builtin_trap , "Trap signals"),
Denys Vlasenko2bba5912014-03-14 12:43:57 +0100948 BLTIN("true" , builtin_true , NULL),
Denys Vlasenko651a2692010-03-23 16:25:17 +0100949 BLTIN("type" , builtin_type , "Show command type"),
Denys Vlasenkof3c742f2010-03-06 20:12:00 +0100950 BLTIN("ulimit" , shell_builtin_ulimit , "Control resource limits"),
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200951 BLTIN("umask" , builtin_umask , "Set file creation mask"),
952 BLTIN("unset" , builtin_unset , "Unset variables"),
953 BLTIN("wait" , builtin_wait , "Wait for process"),
954};
955/* For now, echo and test are unconditionally enabled.
956 * Maybe make it configurable? */
957static const struct built_in_command bltins2[] = {
958 BLTIN("[" , builtin_test , NULL),
959 BLTIN("echo" , builtin_echo , NULL),
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400960#if ENABLE_PRINTF
961 BLTIN("printf" , builtin_printf , NULL),
962#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200963 BLTIN("pwd" , builtin_pwd , NULL),
964 BLTIN("test" , builtin_test , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000965};
966
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000967
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000968/* Debug printouts.
969 */
970#if HUSH_DEBUG
971/* prevent disasters with G.debug_indent < 0 */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100972# define indent() fdprintf(2, "%*s", (G.debug_indent * 2) & 0xff, "")
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000973# define debug_enter() (G.debug_indent++)
974# define debug_leave() (G.debug_indent--)
975#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200976# define indent() ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000977# define debug_enter() ((void)0)
978# define debug_leave() ((void)0)
979#endif
980
981#ifndef debug_printf
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100982# define debug_printf(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000983#endif
984
985#ifndef debug_printf_parse
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100986# define debug_printf_parse(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000987#endif
988
989#ifndef debug_printf_exec
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100990#define debug_printf_exec(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000991#endif
992
993#ifndef debug_printf_env
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100994# define debug_printf_env(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000995#endif
996
997#ifndef debug_printf_jobs
Denys Vlasenko75eb9d22010-12-21 21:18:12 +0100998# define debug_printf_jobs(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000999# define DEBUG_JOBS 1
1000#else
1001# define DEBUG_JOBS 0
1002#endif
1003
1004#ifndef debug_printf_expand
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001005# define debug_printf_expand(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001006# define DEBUG_EXPAND 1
1007#else
1008# define DEBUG_EXPAND 0
1009#endif
1010
Denys Vlasenko1e811b12010-05-22 03:12:29 +02001011#ifndef debug_printf_varexp
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001012# define debug_printf_varexp(...) (indent(), fdprintf(2, __VA_ARGS__))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02001013#endif
1014
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001015#ifndef debug_printf_glob
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001016# define debug_printf_glob(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001017# define DEBUG_GLOB 1
1018#else
1019# define DEBUG_GLOB 0
1020#endif
1021
1022#ifndef debug_printf_list
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001023# define debug_printf_list(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001024#endif
1025
1026#ifndef debug_printf_subst
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001027# define debug_printf_subst(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001028#endif
1029
1030#ifndef debug_printf_clean
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001031# define debug_printf_clean(...) (indent(), fdprintf(2, __VA_ARGS__))
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001032# define DEBUG_CLEAN 1
1033#else
1034# define DEBUG_CLEAN 0
1035#endif
1036
1037#if DEBUG_EXPAND
1038static void debug_print_strings(const char *prefix, char **vv)
1039{
1040 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001041 fdprintf(2, "%s:\n", prefix);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001042 while (*vv)
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001043 fdprintf(2, " '%s'\n", *vv++);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001044}
1045#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001046# define debug_print_strings(prefix, vv) ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001047#endif
1048
1049
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001050/* Leak hunting. Use hush_leaktool.sh for post-processing.
1051 */
1052#if LEAK_HUNTING
1053static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001054{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001055 void *ptr = xmalloc((size + 0xff) & ~0xff);
1056 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
1057 return ptr;
1058}
1059static void *xxrealloc(int lineno, void *ptr, size_t size)
1060{
1061 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
1062 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
1063 return ptr;
1064}
1065static char *xxstrdup(int lineno, const char *str)
1066{
1067 char *ptr = xstrdup(str);
1068 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
1069 return ptr;
1070}
1071static void xxfree(void *ptr)
1072{
1073 fdprintf(2, "free %p\n", ptr);
1074 free(ptr);
1075}
Denys Vlasenko8391c482010-05-22 17:50:43 +02001076# define xmalloc(s) xxmalloc(__LINE__, s)
1077# define xrealloc(p, s) xxrealloc(__LINE__, p, s)
1078# define xstrdup(s) xxstrdup(__LINE__, s)
1079# define free(p) xxfree(p)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001080#endif
1081
1082
1083/* Syntax and runtime errors. They always abort scripts.
1084 * In interactive use they usually discard unparsed and/or unexecuted commands
1085 * and return to the prompt.
1086 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
1087 */
1088#if HUSH_DEBUG < 2
Denys Vlasenko606291b2009-09-23 23:15:43 +02001089# define die_if_script(lineno, ...) die_if_script(__VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001090# define syntax_error(lineno, msg) syntax_error(msg)
1091# define syntax_error_at(lineno, msg) syntax_error_at(msg)
1092# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
1093# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
1094# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001095#endif
1096
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001097static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001098{
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001099 va_list p;
1100
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001101#if HUSH_DEBUG >= 2
1102 bb_error_msg("hush.c:%u", lineno);
1103#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001104 va_start(p, fmt);
1105 bb_verror_msg(fmt, p, NULL);
1106 va_end(p);
1107 if (!G_interactive_fd)
1108 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +00001109}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001110
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001111static void syntax_error(unsigned lineno UNUSED_PARAM, const char *msg)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001112{
1113 if (msg)
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001114 bb_error_msg("syntax error: %s", msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001115 else
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001116 bb_error_msg("syntax error");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001117}
1118
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001119static void syntax_error_at(unsigned lineno UNUSED_PARAM, const char *msg)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001120{
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001121 bb_error_msg("syntax error at '%s'", msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001122}
1123
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001124static void syntax_error_unterm_str(unsigned lineno UNUSED_PARAM, const char *s)
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001125{
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001126 bb_error_msg("syntax error: unterminated %s", s);
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001127}
1128
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001129static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001130{
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001131 char msg[2] = { ch, '\0' };
1132 syntax_error_unterm_str(lineno, msg);
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001133}
1134
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001135static void syntax_error_unexpected_ch(unsigned lineno UNUSED_PARAM, int ch)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001136{
1137 char msg[2];
1138 msg[0] = ch;
1139 msg[1] = '\0';
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01001140#if HUSH_DEBUG >= 2
1141 bb_error_msg("hush.c:%u", lineno);
1142#endif
Denys Vlasenkocecbc982011-03-30 18:54:52 +02001143 bb_error_msg("syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001144}
1145
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001146#if HUSH_DEBUG < 2
1147# undef die_if_script
1148# undef syntax_error
1149# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001150# undef syntax_error_unterm_ch
1151# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001152# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001153#else
Denys Vlasenko606291b2009-09-23 23:15:43 +02001154# define die_if_script(...) die_if_script(__LINE__, __VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001155# define syntax_error(msg) syntax_error(__LINE__, msg)
1156# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
1157# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
1158# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
1159# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001160#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001161
Denis Vlasenko552433b2009-04-04 19:29:21 +00001162
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001163#if ENABLE_HUSH_INTERACTIVE
1164static void cmdedit_update_prompt(void);
1165#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001166# define cmdedit_update_prompt() ((void)0)
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001167#endif
1168
1169
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001170/* Utility functions
1171 */
Denis Vlasenko55789c62008-06-18 16:30:42 +00001172/* Replace each \x with x in place, return ptr past NUL. */
1173static char *unbackslash(char *src)
1174{
Denys Vlasenko71885402009-09-24 01:44:13 +02001175 char *dst = src = strchrnul(src, '\\');
Denis Vlasenko55789c62008-06-18 16:30:42 +00001176 while (1) {
1177 if (*src == '\\')
1178 src++;
1179 if ((*dst++ = *src++) == '\0')
1180 break;
1181 }
1182 return dst;
1183}
1184
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001185static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001186{
1187 int i;
1188 unsigned count1;
1189 unsigned count2;
1190 char **v;
1191
1192 v = strings;
1193 count1 = 0;
1194 if (v) {
1195 while (*v) {
1196 count1++;
1197 v++;
1198 }
1199 }
1200 count2 = 0;
1201 v = add;
1202 while (*v) {
1203 count2++;
1204 v++;
1205 }
1206 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
1207 v[count1 + count2] = NULL;
1208 i = count2;
1209 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001210 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001211 return v;
1212}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001213#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001214static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
1215{
1216 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
1217 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
1218 return ptr;
1219}
1220#define add_strings_to_strings(strings, add, need_to_dup) \
1221 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
1222#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001223
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001224/* Note: takes ownership of "add" ptr (it is not strdup'ed) */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001225static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001226{
1227 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001228 v[0] = add;
1229 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001230 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001231}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001232#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001233static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
1234{
1235 char **ptr = add_string_to_strings(strings, add);
1236 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
1237 return ptr;
1238}
1239#define add_string_to_strings(strings, add) \
1240 xx_add_string_to_strings(__LINE__, strings, add)
1241#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001242
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001243static void free_strings(char **strings)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001244{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001245 char **v;
1246
1247 if (!strings)
1248 return;
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001249 v = strings;
1250 while (*v) {
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001251 free(*v);
1252 v++;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001253 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001254 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001255}
1256
Denis Vlasenko76d50412008-06-10 16:19:39 +00001257
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001258static int xdup_and_close(int fd, int F_DUPFD_maybe_CLOEXEC)
1259{
1260 /* We avoid taking stdio fds. Mimicking ash: use fds above 9 */
1261 int newfd = fcntl(fd, F_DUPFD_maybe_CLOEXEC, 10);
1262 if (newfd < 0) {
1263 /* fd was not open? */
1264 if (errno == EBADF)
1265 return fd;
1266 xfunc_die();
1267 }
1268 close(fd);
1269 return newfd;
1270}
1271
1272
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001273/* Manipulating the list of open FILEs */
1274static FILE *remember_FILE(FILE *fp)
1275{
1276 if (fp) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001277 struct FILE_list *n = xmalloc(sizeof(*n));
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001278 n->next = G.FILE_list;
1279 G.FILE_list = n;
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001280 n->fp = fp;
1281 n->fd = fileno(fp);
1282 close_on_exec_on(n->fd);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001283 }
1284 return fp;
1285}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001286static void fclose_and_forget(FILE *fp)
1287{
1288 struct FILE_list **pp = &G.FILE_list;
1289 while (*pp) {
1290 struct FILE_list *cur = *pp;
1291 if (cur->fp == fp) {
1292 *pp = cur->next;
1293 free(cur);
1294 break;
1295 }
1296 pp = &cur->next;
1297 }
1298 fclose(fp);
1299}
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02001300static int save_FILEs_on_redirect(int fd)
1301{
1302 struct FILE_list *fl = G.FILE_list;
1303 while (fl) {
1304 if (fd == fl->fd) {
1305 /* We use it only on script files, they are all CLOEXEC */
1306 fl->fd = xdup_and_close(fd, F_DUPFD_CLOEXEC);
1307 return 1;
1308 }
1309 fl = fl->next;
1310 }
1311 return 0;
1312}
1313static void restore_redirected_FILEs(void)
1314{
1315 struct FILE_list *fl = G.FILE_list;
1316 while (fl) {
1317 int should_be = fileno(fl->fp);
1318 if (fl->fd != should_be) {
1319 xmove_fd(fl->fd, should_be);
1320 fl->fd = should_be;
1321 }
1322 fl = fl->next;
1323 }
1324}
1325#if ENABLE_FEATURE_SH_STANDALONE
1326static void close_all_FILE_list(void)
1327{
1328 struct FILE_list *fl = G.FILE_list;
1329 while (fl) {
1330 /* fclose would also free FILE object.
1331 * It is disastrous if we share memory with a vforked parent.
1332 * I'm not sure we never come here after vfork.
1333 * Therefore just close fd, nothing more.
1334 */
1335 /*fclose(fl->fp); - unsafe */
1336 close(fl->fd);
1337 fl = fl->next;
1338 }
1339}
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02001340#endif
1341
1342
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001343/* Helpers for setting new $n and restoring them back
1344 */
1345typedef struct save_arg_t {
1346 char *sv_argv0;
1347 char **sv_g_argv;
1348 int sv_g_argc;
1349 smallint sv_g_malloced;
1350} save_arg_t;
1351
1352static void save_and_replace_G_args(save_arg_t *sv, char **argv)
1353{
1354 int n;
1355
1356 sv->sv_argv0 = argv[0];
1357 sv->sv_g_argv = G.global_argv;
1358 sv->sv_g_argc = G.global_argc;
1359 sv->sv_g_malloced = G.global_args_malloced;
1360
1361 argv[0] = G.global_argv[0]; /* retain $0 */
1362 G.global_argv = argv;
1363 G.global_args_malloced = 0;
1364
1365 n = 1;
1366 while (*++argv)
1367 n++;
1368 G.global_argc = n;
1369}
1370
1371static void restore_G_args(save_arg_t *sv, char **argv)
1372{
1373 char **pp;
1374
1375 if (G.global_args_malloced) {
1376 /* someone ran "set -- arg1 arg2 ...", undo */
1377 pp = G.global_argv;
1378 while (*++pp) /* note: does not free $0 */
1379 free(*pp);
1380 free(G.global_argv);
1381 }
1382 argv[0] = sv->sv_argv0;
1383 G.global_argv = sv->sv_g_argv;
1384 G.global_argc = sv->sv_g_argc;
1385 G.global_args_malloced = sv->sv_g_malloced;
1386}
1387
1388
Denis Vlasenkod5762932009-03-31 11:22:57 +00001389/* Basic theory of signal handling in shell
1390 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001391 * This does not describe what hush does, rather, it is current understanding
1392 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001393 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1394 *
1395 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1396 * is finished or backgrounded. It is the same in interactive and
1397 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001398 * a user trap handler is installed or a shell special one is in effect.
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001399 * ^C or ^Z from keyboard seems to execute "at once" because it usually
Denis Vlasenkod5762932009-03-31 11:22:57 +00001400 * backgrounds (i.e. stops) or kills all members of currently running
1401 * pipe.
1402 *
Denys Vlasenko8bd810b2013-11-28 01:50:01 +01001403 * Wait builtin is interruptible by signals for which user trap is set
Denis Vlasenkod5762932009-03-31 11:22:57 +00001404 * or by SIGINT in interactive shell.
1405 *
1406 * Trap handlers will execute even within trap handlers. (right?)
1407 *
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001408 * User trap handlers are forgotten when subshell ("(cmd)") is entered,
1409 * except for handlers set to '' (empty string).
Denis Vlasenkod5762932009-03-31 11:22:57 +00001410 *
1411 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001412 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001413 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001414 * Commands which are run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001415 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001416 *
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001417 * Ordinary commands have signals set to SIG_IGN/DFL as inherited
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001418 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001419 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001420 * Signals which differ from SIG_DFL action
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001421 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001422 *
1423 * SIGQUIT: ignore
1424 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001425 * SIGHUP (interactive):
1426 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001427 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001428 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1429 * that all pipe members are stopped. Try this in bash:
1430 * while :; do :; done - ^Z does not background it
1431 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001432 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001433 * of the command line, show prompt. NB: ^C does not send SIGINT
1434 * to interactive shell while shell is waiting for a pipe,
1435 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001436 * Example 1: this waits 5 sec, but does not execute ls:
1437 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1438 * Example 2: this does not wait and does not execute ls:
1439 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1440 * Example 3: this does not wait 5 sec, but executes ls:
1441 * "sleep 5; ls -l" + press ^C
Denys Vlasenkob8709032011-05-08 21:20:01 +02001442 * Example 4: this does not wait and does not execute ls:
1443 * "sleep 5 & wait; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001444 *
1445 * (What happens to signals which are IGN on shell start?)
1446 * (What happens with signal mask on shell start?)
1447 *
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001448 * Old implementation
1449 * ==================
Denis Vlasenkod5762932009-03-31 11:22:57 +00001450 * We use in-kernel pending signal mask to determine which signals were sent.
1451 * We block all signals which we don't want to take action immediately,
1452 * i.e. we block all signals which need to have special handling as described
1453 * above, and all signals which have traps set.
1454 * After each pipe execution, we extract any pending signals via sigtimedwait()
1455 * and act on them.
1456 *
Denys Vlasenko10c01312011-05-11 11:49:21 +02001457 * unsigned special_sig_mask: a mask of such "special" signals
Denis Vlasenkod5762932009-03-31 11:22:57 +00001458 * sigset_t blocked_set: current blocked signal set
1459 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001460 * "trap - SIGxxx":
Denys Vlasenko10c01312011-05-11 11:49:21 +02001461 * clear bit in blocked_set unless it is also in special_sig_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001462 * "trap 'cmd' SIGxxx":
1463 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001464 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001465 * unblock signals with special interactive handling
1466 * (child shell is not interactive),
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001467 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001468 * after [v]fork, if we plan to exec:
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001469 * POSIX says fork clears pending signal mask in child - no need to clear it.
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001470 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001471 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001472 * Note: as a result, we do not use signal handlers much. The only uses
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001473 * are to count SIGCHLDs
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001474 * and to restore tty pgrp on signal-induced exit.
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001475 *
Denys Vlasenko67f71862009-09-25 14:21:06 +02001476 * Note 2 (compat):
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001477 * Standard says "When a subshell is entered, traps that are not being ignored
1478 * are set to the default actions". bash interprets it so that traps which
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001479 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001480 *
1481 * Problem: the above approach makes it unwieldy to catch signals while
Denys Vlasenkoe95738f2013-07-08 03:13:08 +02001482 * we are in read builtin, or while we read commands from stdin:
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001483 * masked signals are not visible!
1484 *
1485 * New implementation
1486 * ==================
1487 * We record each signal we are interested in by installing signal handler
1488 * for them - a bit like emulating kernel pending signal mask in userspace.
1489 * We are interested in: signals which need to have special handling
1490 * as described above, and all signals which have traps set.
Denys Vlasenko8bd810b2013-11-28 01:50:01 +01001491 * Signals are recorded in pending_set.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001492 * After each pipe execution, we extract any pending signals
1493 * and act on them.
1494 *
1495 * unsigned special_sig_mask: a mask of shell-special signals.
1496 * unsigned fatal_sig_mask: a mask of signals on which we restore tty pgrp.
1497 * char *traps[sig] if trap for sig is set (even if it's '').
1498 * sigset_t pending_set: set of sigs we received.
1499 *
1500 * "trap - SIGxxx":
1501 * if sig is in special_sig_mask, set handler back to:
1502 * record_pending_signo, or to IGN if it's a tty stop signal
1503 * if sig is in fatal_sig_mask, set handler back to sigexit.
1504 * else: set handler back to SIG_DFL
1505 * "trap 'cmd' SIGxxx":
1506 * set handler to record_pending_signo.
1507 * "trap '' SIGxxx":
1508 * set handler to SIG_IGN.
1509 * after [v]fork, if we plan to be a shell:
1510 * set signals with special interactive handling to SIG_DFL
1511 * (because child shell is not interactive),
1512 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
1513 * after [v]fork, if we plan to exec:
1514 * POSIX says fork clears pending signal mask in child - no need to clear it.
1515 *
1516 * To make wait builtin interruptible, we handle SIGCHLD as special signal,
1517 * otherwise (if we leave it SIG_DFL) sigsuspend in wait builtin will not wake up on it.
1518 *
1519 * Note (compat):
1520 * Standard says "When a subshell is entered, traps that are not being ignored
1521 * are set to the default actions". bash interprets it so that traps which
1522 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001523 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001524enum {
1525 SPECIAL_INTERACTIVE_SIGS = 0
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001526 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001527 | (1 << SIGINT)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001528 | (1 << SIGHUP)
1529 ,
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001530 SPECIAL_JOBSTOP_SIGS = 0
Mike Frysinger38478a62009-05-20 04:48:06 -04001531#if ENABLE_HUSH_JOB
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001532 | (1 << SIGTTIN)
1533 | (1 << SIGTTOU)
1534 | (1 << SIGTSTP)
1535#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001536 ,
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001537};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001538
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001539static void record_pending_signo(int sig)
Denys Vlasenko54e9e122011-05-09 00:52:15 +02001540{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001541 sigaddset(&G.pending_set, sig);
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001542#if ENABLE_HUSH_FAST
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001543 if (sig == SIGCHLD) {
1544 G.count_SIGCHLD++;
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001545//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 +02001546 }
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001547#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001548}
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001549
Denys Vlasenko0806e402011-05-12 23:06:20 +02001550static sighandler_t install_sighandler(int sig, sighandler_t handler)
1551{
1552 struct sigaction old_sa;
1553
1554 /* We could use signal() to install handlers... almost:
1555 * except that we need to mask ALL signals while handlers run.
1556 * I saw signal nesting in strace, race window isn't small.
1557 * SA_RESTART is also needed, but in Linux, signal()
1558 * sets SA_RESTART too.
1559 */
1560 /* memset(&G.sa, 0, sizeof(G.sa)); - already done */
1561 /* sigfillset(&G.sa.sa_mask); - already done */
1562 /* G.sa.sa_flags = SA_RESTART; - already done */
1563 G.sa.sa_handler = handler;
1564 sigaction(sig, &G.sa, &old_sa);
1565 return old_sa.sa_handler;
1566}
1567
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001568static void hush_exit(int exitcode) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001569
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001570static void restore_ttypgrp_and__exit(void) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001571static void restore_ttypgrp_and__exit(void)
1572{
1573 /* xfunc has failed! die die die */
1574 /* no EXIT traps, this is an escape hatch! */
1575 G.exiting = 1;
1576 hush_exit(xfunc_error_retval);
1577}
1578
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001579#if ENABLE_HUSH_JOB
1580
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001581/* Needed only on some libc:
1582 * It was observed that on exit(), fgetc'ed buffered data
1583 * gets "unwound" via lseek(fd, -NUM, SEEK_CUR).
1584 * With the net effect that even after fork(), not vfork(),
1585 * exit() in NOEXECed applet in "sh SCRIPT":
1586 * noexec_applet_here
1587 * echo END_OF_SCRIPT
1588 * lseeks fd in input FILE object from EOF to "e" in "echo END_OF_SCRIPT".
1589 * This makes "echo END_OF_SCRIPT" executed twice.
1590 * Similar problems can be seen with die_if_script() -> xfunc_die()
1591 * and in `cmd` handling.
1592 * If set as die_func(), this makes xfunc_die() exit via _exit(), not exit():
1593 */
Denys Vlasenkob6afcc72016-12-12 16:30:20 +01001594static void fflush_and__exit(void) NORETURN;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001595static void fflush_and__exit(void)
1596{
1597 fflush_all();
1598 _exit(xfunc_error_retval);
1599}
1600
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001601/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001602# define disable_restore_tty_pgrp_on_exit() (die_func = fflush_and__exit)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001603/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001604# define enable_restore_tty_pgrp_on_exit() (die_func = restore_ttypgrp_and__exit)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001605
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001606/* Restores tty foreground process group, and exits.
1607 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001608 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001609 * or called directly with -EXITCODE.
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02001610 * We also call it if xfunc is exiting.
1611 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001612static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001613static void sigexit(int sig)
1614{
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001615 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001616 * tty pgrp then, only top-level shell process does that */
Denys Vlasenkoebc1ee22011-05-12 10:59:18 +02001617 if (G_saved_tty_pgrp && getpid() == G.root_pid) {
1618 /* Disable all signals: job control, SIGPIPE, etc.
1619 * Mostly paranoid measure, to prevent infinite SIGTTOU.
1620 */
1621 sigprocmask_allsigs(SIG_BLOCK);
Mike Frysinger38478a62009-05-20 04:48:06 -04001622 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
Denys Vlasenkoebc1ee22011-05-12 10:59:18 +02001623 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001624
1625 /* Not a signal, just exit */
1626 if (sig <= 0)
1627 _exit(- sig);
1628
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001629 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001630}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001631#else
1632
Denys Vlasenko8391c482010-05-22 17:50:43 +02001633# define disable_restore_tty_pgrp_on_exit() ((void)0)
1634# define enable_restore_tty_pgrp_on_exit() ((void)0)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001635
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001636#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001637
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001638static sighandler_t pick_sighandler(unsigned sig)
1639{
1640 sighandler_t handler = SIG_DFL;
1641 if (sig < sizeof(unsigned)*8) {
1642 unsigned sigmask = (1 << sig);
1643
1644#if ENABLE_HUSH_JOB
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001645 /* is sig fatal? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001646 if (G_fatal_sig_mask & sigmask)
1647 handler = sigexit;
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001648 else
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001649#endif
1650 /* sig has special handling? */
Denys Vlasenko75e77de2011-05-12 13:12:47 +02001651 if (G.special_sig_mask & sigmask) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001652 handler = record_pending_signo;
Denys Vlasenko0c40a732011-05-12 09:50:12 +02001653 /* TTIN/TTOU/TSTP can't be set to record_pending_signo
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001654 * in order to ignore them: they will be raised
Denys Vlasenkof58f7052011-05-12 02:10:33 +02001655 * in an endless loop when we try to do some
1656 * terminal ioctls! We do have to _ignore_ these.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001657 */
1658 if (SPECIAL_JOBSTOP_SIGS & sigmask)
1659 handler = SIG_IGN;
Denys Vlasenko0c40a732011-05-12 09:50:12 +02001660 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001661 }
1662 return handler;
1663}
1664
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001665/* Restores tty foreground process group, and exits. */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001666static void hush_exit(int exitcode)
1667{
Denys Vlasenkobede2152011-09-04 16:12:33 +02001668#if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
1669 save_history(G.line_input_state);
1670#endif
1671
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01001672 fflush_all();
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001673 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001674 char *argv[3];
1675 /* argv[0] is unused */
1676 argv[1] = G.traps[0];
1677 argv[2] = NULL;
Denys Vlasenkoa110c902010-09-12 15:38:04 +02001678 G.exiting = 1; /* prevent EXIT trap recursion */
Denys Vlasenkoa110c902010-09-12 15:38:04 +02001679 /* Note: G.traps[0] is not cleared!
Denys Vlasenkode8c3f62010-09-12 16:13:44 +02001680 * "trap" will still show it, if executed
1681 * in the handler */
1682 builtin_eval(argv);
Denis Vlasenkod5762932009-03-31 11:22:57 +00001683 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001684
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01001685#if ENABLE_FEATURE_CLEAN_UP
1686 {
1687 struct variable *cur_var;
1688 if (G.cwd != bb_msg_unknown)
1689 free((char*)G.cwd);
1690 cur_var = G.top_var;
1691 while (cur_var) {
1692 struct variable *tmp = cur_var;
1693 if (!cur_var->max_len)
1694 free(cur_var->varstr);
1695 cur_var = cur_var->next;
1696 free(tmp);
1697 }
1698 }
1699#endif
1700
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001701 fflush_all();
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02001702#if ENABLE_HUSH_JOB
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001703 sigexit(- (exitcode & 0xff));
1704#else
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02001705 _exit(exitcode);
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001706#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001707}
1708
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02001709
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001710//TODO: return a mask of ALL handled sigs?
1711static int check_and_run_traps(void)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001712{
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001713 int last_sig = 0;
1714
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001715 while (1) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001716 int sig;
Denys Vlasenko80542ba2011-05-08 21:23:43 +02001717
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001718 if (sigisemptyset(&G.pending_set))
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001719 break;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001720 sig = 0;
1721 do {
1722 sig++;
1723 if (sigismember(&G.pending_set, sig)) {
1724 sigdelset(&G.pending_set, sig);
1725 goto got_sig;
1726 }
1727 } while (sig < NSIG);
1728 break;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001729 got_sig:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001730 if (G.traps && G.traps[sig]) {
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001731 debug_printf_exec("%s: sig:%d handler:'%s'\n", __func__, sig, G.traps[sig]);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001732 if (G.traps[sig][0]) {
1733 /* We have user-defined handler */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001734 smalluint save_rcode;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001735 char *argv[3];
1736 /* argv[0] is unused */
1737 argv[1] = G.traps[sig];
1738 argv[2] = NULL;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001739 save_rcode = G.last_exitcode;
1740 builtin_eval(argv);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01001741//FIXME: shouldn't it be set to 128 + sig instead?
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001742 G.last_exitcode = save_rcode;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001743 last_sig = sig;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001744 } /* else: "" trap, ignoring signal */
1745 continue;
1746 }
1747 /* not a trap: special action */
1748 switch (sig) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001749 case SIGINT:
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001750 debug_printf_exec("%s: sig:%d default SIGINT handler\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001751 G.flag_SIGINT = 1;
Denys Vlasenkob8709032011-05-08 21:20:01 +02001752 last_sig = sig;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001753 break;
1754#if ENABLE_HUSH_JOB
1755 case SIGHUP: {
1756 struct pipe *job;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001757 debug_printf_exec("%s: sig:%d default SIGHUP handler\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001758 /* bash is observed to signal whole process groups,
1759 * not individual processes */
1760 for (job = G.job_list; job; job = job->next) {
1761 if (job->pgrp <= 0)
1762 continue;
1763 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1764 if (kill(- job->pgrp, SIGHUP) == 0)
1765 kill(- job->pgrp, SIGCONT);
1766 }
1767 sigexit(SIGHUP);
1768 }
1769#endif
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001770#if ENABLE_HUSH_FAST
1771 case SIGCHLD:
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001772 debug_printf_exec("%s: sig:%d default SIGCHLD handler\n", __func__, sig);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001773 G.count_SIGCHLD++;
1774//bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1775 /* Note:
1776 * We dont do 'last_sig = sig' here -> NOT returning this sig.
1777 * This simplifies wait builtin a bit.
1778 */
1779 break;
1780#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001781 default: /* ignored: */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02001782 debug_printf_exec("%s: sig:%d default handling is to ignore\n", __func__, sig);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001783 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02001784 /* Note:
1785 * We dont do 'last_sig = sig' here -> NOT returning this sig.
1786 * Example: wait is not interrupted by TERM
Denys Vlasenkob8709032011-05-08 21:20:01 +02001787 * in interactive shell, because TERM is ignored.
1788 */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001789 break;
1790 }
1791 }
1792 return last_sig;
1793}
1794
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001795
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001796static const char *get_cwd(int force)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001797{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001798 if (force || G.cwd == NULL) {
1799 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1800 * we must not try to free(bb_msg_unknown) */
1801 if (G.cwd == bb_msg_unknown)
1802 G.cwd = NULL;
1803 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1804 if (!G.cwd)
1805 G.cwd = bb_msg_unknown;
1806 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00001807 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001808}
1809
Denis Vlasenko83506862007-11-23 13:11:42 +00001810
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001811/*
1812 * Shell and environment variable support
1813 */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001814static struct variable **get_ptr_to_local_var(const char *name, unsigned len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001815{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001816 struct variable **pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001817 struct variable *cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001818
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001819 pp = &G.top_var;
1820 while ((cur = *pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001821 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001822 return pp;
1823 pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001824 }
1825 return NULL;
1826}
1827
Denys Vlasenko03dad222010-01-12 23:29:57 +01001828static const char* FAST_FUNC get_local_var_value(const char *name)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001829{
Denys Vlasenko29082232010-07-16 13:52:32 +02001830 struct variable **vpp;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001831 unsigned len = strlen(name);
Denys Vlasenko29082232010-07-16 13:52:32 +02001832
1833 if (G.expanded_assignments) {
1834 char **cpp = G.expanded_assignments;
Denys Vlasenko29082232010-07-16 13:52:32 +02001835 while (*cpp) {
1836 char *cp = *cpp;
1837 if (strncmp(cp, name, len) == 0 && cp[len] == '=')
1838 return cp + len + 1;
1839 cpp++;
1840 }
1841 }
1842
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001843 vpp = get_ptr_to_local_var(name, len);
Denys Vlasenko29082232010-07-16 13:52:32 +02001844 if (vpp)
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001845 return (*vpp)->varstr + len + 1;
Denys Vlasenko29082232010-07-16 13:52:32 +02001846
Denys Vlasenkodea47882009-10-09 15:40:49 +02001847 if (strcmp(name, "PPID") == 0)
1848 return utoa(G.root_ppid);
1849 // bash compat: UID? EUID?
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001850#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001851 if (strcmp(name, "RANDOM") == 0)
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001852 return utoa(next_random(&G.random_gen));
1853#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001854 return NULL;
1855}
1856
1857/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001858 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001859 * flg_export:
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001860 * 0: do not change export flag
1861 * (if creating new variable, flag will be 0)
1862 * 1: set export flag and putenv the variable
1863 * -1: clear export flag and unsetenv the variable
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001864 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001865 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02001866#if !BB_MMU && ENABLE_HUSH_LOCAL
1867/* all params are used */
1868#elif BB_MMU && ENABLE_HUSH_LOCAL
1869#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1870 set_local_var(str, flg_export, local_lvl)
1871#elif BB_MMU && !ENABLE_HUSH_LOCAL
1872#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001873 set_local_var(str, flg_export)
Denys Vlasenko295fef82009-06-03 12:47:26 +02001874#elif !BB_MMU && !ENABLE_HUSH_LOCAL
1875#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1876 set_local_var(str, flg_export, flg_read_only)
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001877#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02001878static int set_local_var(char *str, int flg_export, int local_lvl, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001879{
Denys Vlasenko295fef82009-06-03 12:47:26 +02001880 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001881 struct variable *cur;
Denys Vlasenkoa7693902016-10-03 15:01:06 +02001882 char *free_me = NULL;
Denis Vlasenko950bd722009-04-21 11:23:56 +00001883 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001884 int name_len;
1885
Denis Vlasenko950bd722009-04-21 11:23:56 +00001886 eq_sign = strchr(str, '=');
1887 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001888 free(str);
1889 return -1;
1890 }
1891
Denis Vlasenko950bd722009-04-21 11:23:56 +00001892 name_len = eq_sign - str + 1; /* including '=' */
Denys Vlasenko295fef82009-06-03 12:47:26 +02001893 var_pp = &G.top_var;
1894 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001895 if (strncmp(cur->varstr, str, name_len) != 0) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02001896 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001897 continue;
1898 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02001899
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001900 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001901 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001902#if !BB_MMU
1903 if (!flg_read_only)
1904#endif
1905 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001906 free(str);
1907 return -1;
1908 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001909 if (flg_export == -1) { // "&& cur->flg_export" ?
Denis Vlasenko950bd722009-04-21 11:23:56 +00001910 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1911 *eq_sign = '\0';
1912 unsetenv(str);
1913 *eq_sign = '=';
1914 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001915#if ENABLE_HUSH_LOCAL
1916 if (cur->func_nest_level < local_lvl) {
1917 /* New variable is declared as local,
1918 * and existing one is global, or local
1919 * from enclosing function.
1920 * Remove and save old one: */
1921 *var_pp = cur->next;
1922 cur->next = *G.shadowed_vars_pp;
1923 *G.shadowed_vars_pp = cur;
1924 /* bash 3.2.33(1) and exported vars:
1925 * # export z=z
1926 * # f() { local z=a; env | grep ^z; }
1927 * # f
1928 * z=a
1929 * # env | grep ^z
1930 * z=z
1931 */
1932 if (cur->flg_export)
1933 flg_export = 1;
1934 break;
1935 }
1936#endif
Denis Vlasenko950bd722009-04-21 11:23:56 +00001937 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001938 free_and_exp:
1939 free(str);
1940 goto exp;
1941 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001942 if (cur->max_len != 0) {
1943 if (cur->max_len >= strlen(str)) {
1944 /* This one is from startup env, reuse space */
1945 strcpy(cur->varstr, str);
1946 goto free_and_exp;
1947 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02001948 /* Can't reuse */
1949 cur->max_len = 0;
1950 goto set_str_and_exp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02001951 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02001952 /* max_len == 0 signifies "malloced" var, which we can
1953 * (and have to) free. But we can't free(cur->varstr) here:
1954 * if cur->flg_export is 1, it is in the environment.
1955 * We should either unsetenv+free, or wait until putenv,
1956 * then putenv(new)+free(old).
1957 */
1958 free_me = cur->varstr;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001959 goto set_str_and_exp;
1960 }
1961
Denys Vlasenko295fef82009-06-03 12:47:26 +02001962 /* Not found - create new variable struct */
1963 cur = xzalloc(sizeof(*cur));
1964#if ENABLE_HUSH_LOCAL
1965 cur->func_nest_level = local_lvl;
1966#endif
1967 cur->next = *var_pp;
1968 *var_pp = cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001969
1970 set_str_and_exp:
1971 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001972#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001973 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001974#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001975 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001976 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001977 cur->flg_export = 1;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001978 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1979 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001980 if (cur->flg_export) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001981 if (flg_export == -1) {
1982 cur->flg_export = 0;
1983 /* unsetenv was already done */
1984 } else {
Denys Vlasenkoa7693902016-10-03 15:01:06 +02001985 int i;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001986 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
Denys Vlasenkoa7693902016-10-03 15:01:06 +02001987 i = putenv(cur->varstr);
1988 /* only now we can free old exported malloced string */
1989 free(free_me);
1990 return i;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001991 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001992 }
Denys Vlasenkoa7693902016-10-03 15:01:06 +02001993 free(free_me);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001994 return 0;
1995}
1996
Denys Vlasenko6db47842009-09-05 20:15:17 +02001997/* Used at startup and after each cd */
1998static void set_pwd_var(int exp)
1999{
2000 set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)),
2001 /*exp:*/ exp, /*lvl:*/ 0, /*ro:*/ 0);
2002}
2003
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002004static int unset_local_var_len(const char *name, int name_len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002005{
2006 struct variable *cur;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002007 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002008
2009 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00002010 return EXIT_SUCCESS;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002011 var_pp = &G.top_var;
2012 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002013 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
2014 if (cur->flg_read_only) {
2015 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00002016 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002017 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002018 *var_pp = cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002019 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
2020 bb_unsetenv(cur->varstr);
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002021 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
2022 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002023 if (!cur->max_len)
2024 free(cur->varstr);
2025 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00002026 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002027 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002028 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002029 }
Mike Frysingerd690f682009-03-30 06:50:54 +00002030 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002031}
2032
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002033static int unset_local_var(const char *name)
2034{
2035 return unset_local_var_len(name, strlen(name));
2036}
2037
2038static void unset_vars(char **strings)
2039{
2040 char **v;
2041
2042 if (!strings)
2043 return;
2044 v = strings;
2045 while (*v) {
2046 const char *eq = strchrnul(*v, '=');
2047 unset_local_var_len(*v, (int)(eq - *v));
2048 v++;
2049 }
2050 free(strings);
2051}
2052
Denys Vlasenko03dad222010-01-12 23:29:57 +01002053static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val)
Mike Frysinger98c52642009-04-02 10:02:37 +00002054{
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002055 char *var = xasprintf("%s=%s", name, val);
Denys Vlasenko03dad222010-01-12 23:29:57 +01002056 set_local_var(var, /*flags:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00002057}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002058
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002059
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002060/*
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002061 * Helpers for "var1=val1 var2=val2 cmd" feature
2062 */
2063static void add_vars(struct variable *var)
2064{
2065 struct variable *next;
2066
2067 while (var) {
2068 next = var->next;
2069 var->next = G.top_var;
2070 G.top_var = var;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002071 if (var->flg_export) {
2072 debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002073 putenv(var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002074 } else {
Denys Vlasenko295fef82009-06-03 12:47:26 +02002075 debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002076 }
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002077 var = next;
2078 }
2079}
2080
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002081static struct variable *set_vars_and_save_old(char **strings)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002082{
2083 char **s;
2084 struct variable *old = NULL;
2085
2086 if (!strings)
2087 return old;
2088 s = strings;
2089 while (*s) {
2090 struct variable *var_p;
2091 struct variable **var_pp;
2092 char *eq;
2093
2094 eq = strchr(*s, '=');
2095 if (eq) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002096 var_pp = get_ptr_to_local_var(*s, eq - *s);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002097 if (var_pp) {
2098 /* Remove variable from global linked list */
2099 var_p = *var_pp;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02002100 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002101 *var_pp = var_p->next;
2102 /* Add it to returned list */
2103 var_p->next = old;
2104 old = var_p;
2105 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02002106 set_local_var(*s, /*exp:*/ 1, /*lvl:*/ 0, /*ro:*/ 0);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002107 }
2108 s++;
2109 }
2110 return old;
2111}
2112
2113
2114/*
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002115 * Unicode helper
2116 */
2117static void reinit_unicode_for_hush(void)
2118{
2119 /* Unicode support should be activated even if LANG is set
2120 * _during_ shell execution, not only if it was set when
2121 * shell was started. Therefore, re-check LANG every time:
2122 */
Denys Vlasenko841f8332014-08-13 10:09:49 +02002123 if (ENABLE_FEATURE_CHECK_UNICODE_IN_ENV
2124 || ENABLE_UNICODE_USING_LOCALE
2125 ) {
2126 const char *s = get_local_var_value("LC_ALL");
2127 if (!s) s = get_local_var_value("LC_CTYPE");
2128 if (!s) s = get_local_var_value("LANG");
2129 reinit_unicode(s);
2130 }
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002131}
2132
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002133/*
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002134 * in_str support (strings, and "strings" read from files).
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002135 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002136
2137#if ENABLE_HUSH_INTERACTIVE
Denys Vlasenko4074d492016-09-30 01:49:53 +02002138/* To test correct lineedit/interactive behavior, type from command line:
2139 * echo $P\
2140 * \
2141 * AT\
2142 * H\
2143 * \
2144 * It excercises a lot of corner cases.
2145 */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002146static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002147{
Mike Frysingerec2c6552009-03-28 12:24:44 +00002148 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002149 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00002150 if (G.PS1 == NULL)
2151 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002152 G.PS2 = get_local_var_value("PS2");
Denys Vlasenko690ad242009-04-30 21:24:24 +02002153 } else {
Mike Frysingerec2c6552009-03-28 12:24:44 +00002154 G.PS1 = NULL;
Denys Vlasenko690ad242009-04-30 21:24:24 +02002155 }
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00002156 if (G.PS2 == NULL)
2157 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002158}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002159static const char *setup_prompt_string(int promptmode)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002160{
2161 const char *prompt_str;
2162 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00002163 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
2164 /* Set up the prompt */
2165 if (promptmode == 0) { /* PS1 */
2166 free((char*)G.PS1);
Denys Vlasenko6db47842009-09-05 20:15:17 +02002167 /* bash uses $PWD value, even if it is set by user.
2168 * It uses current dir only if PWD is unset.
2169 * We always use current dir. */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02002170 G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#');
Mike Frysingerec2c6552009-03-28 12:24:44 +00002171 prompt_str = G.PS1;
2172 } else
2173 prompt_str = G.PS2;
2174 } else
2175 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denys Vlasenko4074d492016-09-30 01:49:53 +02002176 debug_printf("prompt_str '%s'\n", prompt_str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002177 return prompt_str;
2178}
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002179static int get_user_input(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002180{
2181 int r;
2182 const char *prompt_str;
2183
2184 prompt_str = setup_prompt_string(i->promptmode);
Denys Vlasenko8391c482010-05-22 17:50:43 +02002185# if ENABLE_FEATURE_EDITING
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002186 for (;;) {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02002187 reinit_unicode_for_hush();
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002188 if (G.flag_SIGINT) {
2189 /* There was ^C'ed, make it look prettier: */
2190 bb_putchar('\n');
2191 G.flag_SIGINT = 0;
2192 }
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002193 /* buglet: SIGINT will not make new prompt to appear _at once_,
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002194 * only after <Enter>. (^C works immediately) */
Denys Vlasenko0448c552016-09-29 20:25:44 +02002195 r = read_line_input(G.line_input_state, prompt_str,
2196 G.user_input_buf, CONFIG_FEATURE_EDITING_MAX_LEN-1,
2197 /*timeout*/ -1
2198 );
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002199 /* read_line_input intercepts ^C, "convert" it to SIGINT */
2200 if (r == 0) {
2201 write(STDOUT_FILENO, "^C", 2);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002202 raise(SIGINT);
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002203 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002204 check_and_run_traps();
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002205 if (r != 0 && !G.flag_SIGINT)
2206 break;
2207 /* ^C or SIGINT: repeat */
2208 G.last_exitcode = 128 + SIGINT;
2209 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002210 if (r < 0) {
2211 /* EOF/error detected */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002212 i->p = NULL;
2213 i->peek_buf[0] = r = EOF;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002214 return r;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002215 }
Denys Vlasenko4074d492016-09-30 01:49:53 +02002216 i->p = G.user_input_buf;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002217 return (unsigned char)*i->p++;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002218# else
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002219 for (;;) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002220 G.flag_SIGINT = 0;
Denys Vlasenkob8709032011-05-08 21:20:01 +02002221 if (i->last_char == '\0' || i->last_char == '\n') {
2222 /* Why check_and_run_traps here? Try this interactively:
2223 * $ trap 'echo INT' INT; (sleep 2; kill -INT $$) &
2224 * $ <[enter], repeatedly...>
2225 * Without check_and_run_traps, handler never runs.
2226 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02002227 check_and_run_traps();
Denys Vlasenkob8709032011-05-08 21:20:01 +02002228 fputs(prompt_str, stdout);
2229 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002230 fflush_all();
Denys Vlasenko4b89d512016-11-25 03:41:03 +01002231//FIXME: here ^C or SIGINT will have effect only after <Enter>
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002232 r = fgetc(i->file);
Denys Vlasenko8660aeb2016-11-24 17:44:02 +01002233 /* In !ENABLE_FEATURE_EDITING we don't use read_line_input,
2234 * no ^C masking happens during fgetc, no special code for ^C:
2235 * it generates SIGINT as usual.
2236 */
2237 check_and_run_traps();
2238 if (G.flag_SIGINT)
2239 G.last_exitcode = 128 + SIGINT;
2240 if (r != '\0')
2241 break;
2242 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002243 return r;
Denys Vlasenko8391c482010-05-22 17:50:43 +02002244# endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002245}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002246/* This is the magic location that prints prompts
2247 * and gets data back from the user */
Denys Vlasenko4074d492016-09-30 01:49:53 +02002248static int fgetc_interactive(struct in_str *i)
2249{
2250 int ch;
2251 /* If it's interactive stdin, get new line. */
2252 if (G_interactive_fd && i->file == stdin) {
2253 /* Returns first char (or EOF), the rest is in i->p[] */
2254 ch = get_user_input(i);
2255 i->promptmode = 1; /* PS2 */
2256 } else {
2257 /* Not stdin: script file, sourced file, etc */
2258 do ch = fgetc(i->file); while (ch == '\0');
2259 }
2260 return ch;
2261}
2262#else
2263static inline int fgetc_interactive(struct in_str *i)
2264{
2265 int ch;
2266 do ch = fgetc(i->file); while (ch == '\0');
2267 return ch;
2268}
2269#endif /* INTERACTIVE */
2270
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002271static int i_getch(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002272{
2273 int ch;
2274
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002275 if (!i->file) {
2276 /* string-based in_str */
2277 ch = (unsigned char)*i->p;
2278 if (ch != '\0') {
2279 i->p++;
2280 i->last_char = ch;
2281 return ch;
2282 }
2283 return EOF;
2284 }
2285
2286 /* FILE-based in_str */
2287
Denys Vlasenko4074d492016-09-30 01:49:53 +02002288#if ENABLE_FEATURE_EDITING
2289 /* This can be stdin, check line editing char[] buffer */
2290 if (i->p && *i->p != '\0') {
2291 ch = (unsigned char)*i->p++;
2292 goto out;
2293 }
2294#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002295 /* peek_buf[] is an int array, not char. Can contain EOF. */
2296 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002297 if (ch != 0) {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002298 int ch2 = i->peek_buf[1];
2299 i->peek_buf[0] = ch2;
2300 if (ch2 == 0) /* very likely, avoid redundant write */
2301 goto out;
2302 i->peek_buf[1] = 0;
2303 goto out;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002304 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002305
Denys Vlasenko4074d492016-09-30 01:49:53 +02002306 ch = fgetc_interactive(i);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002307 out:
Denis Vlasenko913a2012009-04-05 22:17:04 +00002308 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02002309 i->last_char = ch;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002310 return ch;
2311}
2312
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002313static int i_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002314{
2315 int ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002316
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002317 if (!i->file) {
2318 /* string-based in_str */
2319 /* Doesn't report EOF on NUL. None of the callers care. */
2320 return (unsigned char)*i->p;
2321 }
2322
2323 /* FILE-based in_str */
2324
Denys Vlasenko4074d492016-09-30 01:49:53 +02002325#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002326 /* This can be stdin, check line editing char[] buffer */
2327 if (i->p && *i->p != '\0')
2328 return (unsigned char)*i->p;
2329#endif
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002330 /* peek_buf[] is an int array, not char. Can contain EOF. */
2331 ch = i->peek_buf[0];
Denys Vlasenko4074d492016-09-30 01:49:53 +02002332 if (ch != 0)
2333 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002334
Denys Vlasenko4074d492016-09-30 01:49:53 +02002335 /* Need to get a new char */
2336 ch = fgetc_interactive(i);
2337 debug_printf("file_peek: got '%c' %d\n", ch, ch);
2338
2339 /* Save it by either rolling back line editing buffer, or in i->peek_buf[0] */
2340#if ENABLE_FEATURE_EDITING && ENABLE_HUSH_INTERACTIVE
2341 if (i->p) {
2342 i->p -= 1;
2343 return ch;
2344 }
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002345#endif
Denys Vlasenko4074d492016-09-30 01:49:53 +02002346 i->peek_buf[0] = ch;
2347 /*i->peek_buf[1] = 0; - already is */
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002348 return ch;
2349}
2350
Denys Vlasenko4074d492016-09-30 01:49:53 +02002351/* Only ever called if i_peek() was called, and did not return EOF.
2352 * IOW: we know the previous peek saw an ordinary char, not EOF, not NUL,
2353 * not end-of-line. Therefore we never need to read a new editing line here.
2354 */
2355static int i_peek2(struct in_str *i)
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002356{
Denys Vlasenko4074d492016-09-30 01:49:53 +02002357 int ch;
2358
2359 /* There are two cases when i->p[] buffer exists.
2360 * (1) it's a string in_str.
Denys Vlasenko08755f92016-09-30 02:02:25 +02002361 * (2) It's a file, and we have a saved line editing buffer.
Denys Vlasenko4074d492016-09-30 01:49:53 +02002362 * In both cases, we know that i->p[0] exists and not NUL, and
2363 * the peek2 result is in i->p[1].
2364 */
2365 if (i->p)
2366 return (unsigned char)i->p[1];
2367
2368 /* Now we know it is a file-based in_str. */
2369
2370 /* peek_buf[] is an int array, not char. Can contain EOF. */
2371 /* Is there 2nd char? */
2372 ch = i->peek_buf[1];
2373 if (ch == 0) {
2374 /* We did not read it yet, get it now */
2375 do ch = fgetc(i->file); while (ch == '\0');
2376 i->peek_buf[1] = ch;
2377 }
2378
2379 debug_printf("file_peek2: got '%c' %d\n", ch, ch);
2380 return ch;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02002381}
2382
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002383static void setup_file_in_str(struct in_str *i, FILE *f)
2384{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002385 memset(i, 0, sizeof(*i));
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002386 /* i->promptmode = 0; - PS1 (memset did it) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002387 i->file = f;
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002388 /* i->p = NULL; */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002389}
2390
2391static void setup_string_in_str(struct in_str *i, const char *s)
2392{
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002393 memset(i, 0, sizeof(*i));
Denys Vlasenkoa1463192011-01-18 17:55:04 +01002394 /* i->promptmode = 0; - PS1 (memset did it) */
Denys Vlasenko87e039d2016-11-08 22:35:05 +01002395 /*i->file = NULL */;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002396 i->p = s;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002397}
2398
2399
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002400/*
2401 * o_string support
2402 */
2403#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00002404
Denis Vlasenko0b677d82009-04-10 13:49:10 +00002405static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002406{
2407 o->length = 0;
Denys Vlasenko38292b62010-09-05 14:49:40 +02002408 o->has_quoted_part = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002409 if (o->data)
2410 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002411}
2412
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002413static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002414{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00002415 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002416 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00002417}
2418
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002419static ALWAYS_INLINE void o_free_unsafe(o_string *o)
2420{
2421 free(o->data);
2422}
2423
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002424static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002425{
2426 if (o->length + len > o->maxlen) {
Denys Vlasenko46e64982016-09-29 19:50:55 +02002427 o->maxlen += (2 * len) | (B_CHUNK-1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002428 o->data = xrealloc(o->data, 1 + o->maxlen);
2429 }
2430}
2431
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002432static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002433{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002434 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002435 if (o->length < o->maxlen) {
2436 /* likely. avoid o_grow_by() call */
2437 add:
2438 o->data[o->length] = ch;
2439 o->length++;
2440 o->data[o->length] = '\0';
2441 return;
2442 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002443 o_grow_by(o, 1);
Denys Vlasenko46e64982016-09-29 19:50:55 +02002444 goto add;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002445}
2446
Denys Vlasenko657086a2016-09-29 18:07:42 +02002447#if 0
2448/* Valid only if we know o_string is not empty */
2449static void o_delchr(o_string *o)
2450{
2451 o->length--;
2452 o->data[o->length] = '\0';
2453}
2454#endif
2455
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002456static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002457{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002458 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002459 memcpy(&o->data[o->length], str, len);
2460 o->length += len;
2461 o->data[o->length] = '\0';
2462}
2463
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002464static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00002465{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002466 o_addblock(o, str, strlen(str));
2467}
Denys Vlasenko2e48d532010-05-22 17:30:39 +02002468
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002469#if !BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002470static void nommu_addchr(o_string *o, int ch)
2471{
2472 if (o)
2473 o_addchr(o, ch);
2474}
2475#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002476# define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002477#endif
2478
2479static void o_addstr_with_NUL(o_string *o, const char *str)
2480{
2481 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00002482}
2483
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002484/*
Denys Vlasenko238081f2010-10-03 14:26:26 +02002485 * HUSH_BRACE_EXPANSION code needs corresponding quoting on variable expansion side.
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002486 * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v.
2487 * Apparently, on unquoted $v bash still does globbing
2488 * ("v='*.txt'; echo $v" prints all .txt files),
2489 * but NOT brace expansion! Thus, there should be TWO independent
2490 * quoting mechanisms on $v expansion side: one protects
2491 * $v from brace expansion, and other additionally protects "$v" against globbing.
2492 * We have only second one.
2493 */
2494
Denys Vlasenko9e800222010-10-03 14:28:04 +02002495#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002496# define MAYBE_BRACES "{}"
2497#else
2498# define MAYBE_BRACES ""
2499#endif
2500
Eric Andersen25f27032001-04-26 23:22:31 +00002501/* My analysis of quoting semantics tells me that state information
2502 * is associated with a destination, not a source.
2503 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002504static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00002505{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002506 int sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002507 char *found = strchr("*?[\\" MAYBE_BRACES, ch);
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002508 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002509 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002510 o_grow_by(o, sz);
2511 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002512 o->data[o->length] = '\\';
2513 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00002514 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002515 o->data[o->length] = ch;
2516 o->length++;
2517 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002518}
2519
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002520static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002521{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002522 int sz = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002523 if ((o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)
2524 && strchr("*?[\\" MAYBE_BRACES, ch)
2525 ) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002526 sz++;
2527 o->data[o->length] = '\\';
2528 o->length++;
2529 }
2530 o_grow_by(o, sz);
2531 o->data[o->length] = ch;
2532 o->length++;
2533 o->data[o->length] = '\0';
2534}
2535
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002536static void o_addqblock(o_string *o, const char *str, int len)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002537{
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002538 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002539 char ch;
2540 int sz;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002541 int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002542 if (ordinary_cnt > len) /* paranoia */
2543 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002544 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002545 if (ordinary_cnt == len)
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002546 return; /* NUL is already added by o_addblock */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002547 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002548 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002549
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002550 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002551 sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002552 if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002553 sz++;
2554 o->data[o->length] = '\\';
2555 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002556 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002557 o_grow_by(o, sz);
2558 o->data[o->length] = ch;
2559 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002560 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002561 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002562}
2563
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002564static void o_addQblock(o_string *o, const char *str, int len)
2565{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002566 if (!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002567 o_addblock(o, str, len);
2568 return;
2569 }
2570 o_addqblock(o, str, len);
2571}
2572
Denys Vlasenko38292b62010-09-05 14:49:40 +02002573static void o_addQstr(o_string *o, const char *str)
2574{
2575 o_addQblock(o, str, strlen(str));
2576}
2577
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002578/* A special kind of o_string for $VAR and `cmd` expansion.
2579 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002580 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002581 * list[i] contains an INDEX (int!) into this string data.
2582 * It means that if list[] needs to grow, data needs to be moved higher up
2583 * but list[i]'s need not be modified.
2584 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002585 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002586 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
2587 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002588#if DEBUG_EXPAND || DEBUG_GLOB
2589static void debug_print_list(const char *prefix, o_string *o, int n)
2590{
2591 char **list = (char**)o->data;
2592 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2593 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002594
2595 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002596 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 +02002597 prefix, list, n, string_start, o->length, o->maxlen,
2598 !!(o->o_expflags & EXP_FLAG_GLOB),
2599 o->has_quoted_part,
2600 !!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002601 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002602 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002603 fdprintf(2, " list[%d]=%d '%s' %p\n", i, (int)(uintptr_t)list[i],
2604 o->data + (int)(uintptr_t)list[i] + string_start,
2605 o->data + (int)(uintptr_t)list[i] + string_start);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002606 i++;
2607 }
2608 if (n) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002609 const char *p = o->data + (int)(uintptr_t)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002610 indent();
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01002611 fdprintf(2, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002612 }
2613}
2614#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002615# define debug_print_list(prefix, o, n) ((void)0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002616#endif
2617
2618/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
2619 * in list[n] so that it points past last stored byte so far.
2620 * It returns n+1. */
2621static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002622{
2623 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00002624 int string_start;
2625 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002626
2627 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00002628 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2629 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002630 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002631 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002632 /* list[n] points to string_start, make space for 16 more pointers */
2633 o->maxlen += 0x10 * sizeof(list[0]);
2634 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00002635 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002636 memmove(list + n + 0x10, list + n, string_len);
2637 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002638 } else {
2639 debug_printf_list("list[%d]=%d string_start=%d\n",
2640 n, string_len, string_start);
2641 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002642 } else {
2643 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00002644 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
2645 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002646 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
2647 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002648 o->has_empty_slot = 0;
2649 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02002650 o->has_quoted_part = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002651 list[n] = (char*)(uintptr_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002652 return n + 1;
2653}
2654
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002655/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002656static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002657{
2658 char **list = (char**)o->data;
2659 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2660
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002661 return ((int)(uintptr_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002662}
2663
Denys Vlasenko9e800222010-10-03 14:28:04 +02002664#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002665/* There in a GNU extension, GLOB_BRACE, but it is not usable:
2666 * first, it processes even {a} (no commas), second,
2667 * I didn't manage to make it return strings when they don't match
Denys Vlasenko160746b2009-11-16 05:51:18 +01002668 * existing files. Need to re-implement it.
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002669 */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002670
2671/* Helper */
2672static int glob_needed(const char *s)
2673{
2674 while (*s) {
2675 if (*s == '\\') {
2676 if (!s[1])
2677 return 0;
2678 s += 2;
2679 continue;
2680 }
2681 if (*s == '*' || *s == '[' || *s == '?' || *s == '{')
2682 return 1;
2683 s++;
2684 }
2685 return 0;
2686}
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002687/* Return pointer to next closing brace or to comma */
2688static const char *next_brace_sub(const char *cp)
2689{
2690 unsigned depth = 0;
2691 cp++;
2692 while (*cp != '\0') {
2693 if (*cp == '\\') {
2694 if (*++cp == '\0')
2695 break;
2696 cp++;
2697 continue;
Denys Vlasenko3581c622010-01-25 13:39:24 +01002698 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002699 if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002700 break;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002701 if (*cp++ == '{')
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002702 depth++;
2703 }
2704
2705 return *cp != '\0' ? cp : NULL;
2706}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002707/* Recursive brace globber. Note: may garble pattern[]. */
2708static int glob_brace(char *pattern, o_string *o, int n)
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002709{
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002710 char *new_pattern_buf;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002711 const char *begin;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002712 const char *next;
2713 const char *rest;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002714 const char *p;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002715 size_t rest_len;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002716
2717 debug_printf_glob("glob_brace('%s')\n", pattern);
2718
2719 begin = pattern;
2720 while (1) {
2721 if (*begin == '\0')
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002722 goto simple_glob;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002723 if (*begin == '{') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002724 /* Find the first sub-pattern and at the same time
2725 * find the rest after the closing brace */
2726 next = next_brace_sub(begin);
2727 if (next == NULL) {
2728 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002729 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002730 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002731 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002732 /* "{abc}" with no commas - illegal
2733 * brace expr, disregard and skip it */
2734 begin = next + 1;
2735 continue;
2736 }
2737 break;
2738 }
2739 if (*begin == '\\' && begin[1] != '\0')
2740 begin++;
2741 begin++;
2742 }
2743 debug_printf_glob("begin:%s\n", begin);
2744 debug_printf_glob("next:%s\n", next);
2745
2746 /* Now find the end of the whole brace expression */
2747 rest = next;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002748 while (*rest != '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002749 rest = next_brace_sub(rest);
2750 if (rest == NULL) {
2751 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002752 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002753 }
2754 debug_printf_glob("rest:%s\n", rest);
2755 }
2756 rest_len = strlen(++rest) + 1;
2757
2758 /* We are sure the brace expression is well-formed */
2759
2760 /* Allocate working buffer large enough for our work */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002761 new_pattern_buf = xmalloc(strlen(pattern));
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002762
2763 /* We have a brace expression. BEGIN points to the opening {,
2764 * NEXT points past the terminator of the first element, and REST
2765 * points past the final }. We will accumulate result names from
2766 * recursive runs for each brace alternative in the buffer using
2767 * GLOB_APPEND. */
2768
2769 p = begin + 1;
2770 while (1) {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002771 /* Construct the new glob expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002772 memcpy(
2773 mempcpy(
2774 mempcpy(new_pattern_buf,
2775 /* We know the prefix for all sub-patterns */
2776 pattern, begin - pattern),
2777 p, next - p),
2778 rest, rest_len);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002779
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002780 /* Note: glob_brace() may garble new_pattern_buf[].
2781 * That's why we re-copy prefix every time (1st memcpy above).
2782 */
2783 n = glob_brace(new_pattern_buf, o, n);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002784 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002785 /* We saw the last entry */
2786 break;
2787 }
2788 p = next + 1;
2789 next = next_brace_sub(next);
2790 }
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002791 free(new_pattern_buf);
2792 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002793
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002794 simple_glob:
2795 {
2796 int gr;
2797 glob_t globdata;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002798
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002799 memset(&globdata, 0, sizeof(globdata));
2800 gr = glob(pattern, 0, NULL, &globdata);
2801 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
2802 if (gr != 0) {
2803 if (gr == GLOB_NOMATCH) {
2804 globfree(&globdata);
2805 /* NB: garbles parameter */
2806 unbackslash(pattern);
2807 o_addstr_with_NUL(o, pattern);
2808 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2809 return o_save_ptr_helper(o, n);
2810 }
2811 if (gr == GLOB_NOSPACE)
2812 bb_error_msg_and_die(bb_msg_memory_exhausted);
2813 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2814 * but we didn't specify it. Paranoia again. */
2815 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
2816 }
2817 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2818 char **argv = globdata.gl_pathv;
2819 while (1) {
2820 o_addstr_with_NUL(o, *argv);
2821 n = o_save_ptr_helper(o, n);
2822 argv++;
2823 if (!*argv)
2824 break;
2825 }
2826 }
2827 globfree(&globdata);
2828 }
2829 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002830}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002831/* Performs globbing on last list[],
2832 * saving each result as a new list[].
2833 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002834static int perform_glob(o_string *o, int n)
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002835{
2836 char *pattern, *copy;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002837
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002838 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002839 if (!o->data)
2840 return o_save_ptr_helper(o, n);
2841 pattern = o->data + o_get_last_ptr(o, n);
2842 debug_printf_glob("glob pattern '%s'\n", pattern);
2843 if (!glob_needed(pattern)) {
2844 /* unbackslash last string in o in place, fix length */
2845 o->length = unbackslash(pattern) - o->data;
2846 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2847 return o_save_ptr_helper(o, n);
2848 }
2849
2850 copy = xstrdup(pattern);
2851 /* "forget" pattern in o */
2852 o->length = pattern - o->data;
2853 n = glob_brace(copy, o, n);
2854 free(copy);
2855 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002856 debug_print_list("perform_glob returning", o, n);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002857 return n;
2858}
2859
Denys Vlasenko238081f2010-10-03 14:26:26 +02002860#else /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002861
2862/* Helper */
2863static int glob_needed(const char *s)
2864{
2865 while (*s) {
2866 if (*s == '\\') {
2867 if (!s[1])
2868 return 0;
2869 s += 2;
2870 continue;
2871 }
2872 if (*s == '*' || *s == '[' || *s == '?')
2873 return 1;
2874 s++;
2875 }
2876 return 0;
2877}
2878/* Performs globbing on last list[],
2879 * saving each result as a new list[].
2880 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002881static int perform_glob(o_string *o, int n)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002882{
2883 glob_t globdata;
2884 int gr;
2885 char *pattern;
2886
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002887 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002888 if (!o->data)
2889 return o_save_ptr_helper(o, n);
2890 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002891 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002892 if (!glob_needed(pattern)) {
2893 literal:
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002894 /* unbackslash last string in o in place, fix length */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002895 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002896 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002897 return o_save_ptr_helper(o, n);
2898 }
2899
2900 memset(&globdata, 0, sizeof(globdata));
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002901 /* Can't use GLOB_NOCHECK: it does not unescape the string.
2902 * If we glob "*.\*" and don't find anything, we need
2903 * to fall back to using literal "*.*", but GLOB_NOCHECK
2904 * will return "*.\*"!
2905 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002906 gr = glob(pattern, 0, NULL, &globdata);
2907 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002908 if (gr != 0) {
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002909 if (gr == GLOB_NOMATCH) {
2910 globfree(&globdata);
2911 goto literal;
2912 }
2913 if (gr == GLOB_NOSPACE)
2914 bb_error_msg_and_die(bb_msg_memory_exhausted);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002915 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2916 * but we didn't specify it. Paranoia again. */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002917 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002918 }
2919 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2920 char **argv = globdata.gl_pathv;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002921 /* "forget" pattern in o */
2922 o->length = pattern - o->data;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002923 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002924 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002925 n = o_save_ptr_helper(o, n);
2926 argv++;
2927 if (!*argv)
2928 break;
2929 }
2930 }
2931 globfree(&globdata);
2932 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002933 debug_print_list("perform_glob returning", o, n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002934 return n;
2935}
2936
Denys Vlasenko238081f2010-10-03 14:26:26 +02002937#endif /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002938
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002939/* If o->o_expflags & EXP_FLAG_GLOB, glob the string so far remembered.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002940 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002941static int o_save_ptr(o_string *o, int n)
2942{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002943 if (o->o_expflags & EXP_FLAG_GLOB) {
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00002944 /* If o->has_empty_slot, list[n] was already globbed
2945 * (if it was requested back then when it was filled)
2946 * so don't do that again! */
2947 if (!o->has_empty_slot)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002948 return perform_glob(o, n); /* o_save_ptr_helper is inside */
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00002949 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002950 return o_save_ptr_helper(o, n);
2951}
2952
2953/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002954static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002955{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002956 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002957 int string_start;
2958
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002959 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
2960 if (DEBUG_EXPAND)
2961 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002962 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002963 list = (char**)o->data;
2964 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2965 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002966 while (n) {
2967 n--;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002968 list[n] = o->data + (int)(uintptr_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002969 }
2970 return list;
2971}
2972
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002973static void free_pipe_list(struct pipe *pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002974
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002975/* Returns pi->next - next pipe in the list */
2976static struct pipe *free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002977{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002978 struct pipe *next;
2979 int i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002980
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002981 debug_printf_clean("free_pipe (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002982 for (i = 0; i < pi->num_cmds; i++) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002983 struct command *command;
2984 struct redir_struct *r, *rnext;
2985
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002986 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002987 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002988 if (command->argv) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002989 if (DEBUG_CLEAN) {
2990 int a;
2991 char **p;
2992 for (a = 0, p = command->argv; *p; a++, p++) {
2993 debug_printf_clean(" argv[%d] = %s\n", a, *p);
2994 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002995 }
2996 free_strings(command->argv);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002997 //command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002998 }
2999 /* not "else if": on syntax error, we may have both! */
3000 if (command->group) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003001 debug_printf_clean(" begin group (cmd_type:%d)\n",
3002 command->cmd_type);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003003 free_pipe_list(command->group);
3004 debug_printf_clean(" end group\n");
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003005 //command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003006 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00003007 /* else is crucial here.
3008 * If group != NULL, child_func is meaningless */
3009#if ENABLE_HUSH_FUNCTIONS
3010 else if (command->child_func) {
3011 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
3012 command->child_func->parent_cmd = NULL;
3013 }
3014#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003015#if !BB_MMU
3016 free(command->group_as_string);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003017 //command->group_as_string = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003018#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003019 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003020 debug_printf_clean(" redirect %d%s",
3021 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003022 /* guard against the case >$FOO, where foo is unset or blank */
3023 if (r->rd_filename) {
3024 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
3025 free(r->rd_filename);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003026 //r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003027 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003028 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003029 rnext = r->next;
3030 free(r);
3031 }
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003032 //command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003033 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003034 free(pi->cmds); /* children are an array, they get freed all at once */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003035 //pi->cmds = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003036#if ENABLE_HUSH_JOB
3037 free(pi->cmdtext);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003038 //pi->cmdtext = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003039#endif
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003040
3041 next = pi->next;
3042 free(pi);
3043 return next;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003044}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003045
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003046static void free_pipe_list(struct pipe *pi)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003047{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003048 while (pi) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003049#if HAS_KEYWORDS
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003050 debug_printf_clean("pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003051#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003052 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02003053 pi = free_pipe(pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003054 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003055}
3056
3057
Denys Vlasenkob36abf22010-09-05 14:50:59 +02003058/*** Parsing routines ***/
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003059
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003060#ifndef debug_print_tree
3061static void debug_print_tree(struct pipe *pi, int lvl)
3062{
3063 static const char *const PIPE[] = {
3064 [PIPE_SEQ] = "SEQ",
3065 [PIPE_AND] = "AND",
3066 [PIPE_OR ] = "OR" ,
3067 [PIPE_BG ] = "BG" ,
3068 };
3069 static const char *RES[] = {
3070 [RES_NONE ] = "NONE" ,
3071# if ENABLE_HUSH_IF
3072 [RES_IF ] = "IF" ,
3073 [RES_THEN ] = "THEN" ,
3074 [RES_ELIF ] = "ELIF" ,
3075 [RES_ELSE ] = "ELSE" ,
3076 [RES_FI ] = "FI" ,
3077# endif
3078# if ENABLE_HUSH_LOOPS
3079 [RES_FOR ] = "FOR" ,
3080 [RES_WHILE] = "WHILE",
3081 [RES_UNTIL] = "UNTIL",
3082 [RES_DO ] = "DO" ,
3083 [RES_DONE ] = "DONE" ,
3084# endif
3085# if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
3086 [RES_IN ] = "IN" ,
3087# endif
3088# if ENABLE_HUSH_CASE
3089 [RES_CASE ] = "CASE" ,
3090 [RES_CASE_IN ] = "CASE_IN" ,
3091 [RES_MATCH] = "MATCH",
3092 [RES_CASE_BODY] = "CASE_BODY",
3093 [RES_ESAC ] = "ESAC" ,
3094# endif
3095 [RES_XXXX ] = "XXXX" ,
3096 [RES_SNTX ] = "SNTX" ,
3097 };
3098 static const char *const CMDTYPE[] = {
3099 "{}",
3100 "()",
3101 "[noglob]",
3102# if ENABLE_HUSH_FUNCTIONS
3103 "func()",
3104# endif
3105 };
3106
3107 int pin, prn;
3108
3109 pin = 0;
3110 while (pi) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003111 fdprintf(2, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003112 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
3113 prn = 0;
3114 while (prn < pi->num_cmds) {
3115 struct command *command = &pi->cmds[prn];
3116 char **argv = command->argv;
3117
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003118 fdprintf(2, "%*s cmd %d assignment_cnt:%d",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003119 lvl*2, "", prn,
3120 command->assignment_cnt);
3121 if (command->group) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003122 fdprintf(2, " group %s: (argv=%p)%s%s\n",
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003123 CMDTYPE[command->cmd_type],
3124 argv
3125# if !BB_MMU
3126 , " group_as_string:", command->group_as_string
3127# else
3128 , "", ""
3129# endif
3130 );
3131 debug_print_tree(command->group, lvl+1);
3132 prn++;
3133 continue;
3134 }
3135 if (argv) while (*argv) {
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003136 fdprintf(2, " '%s'", *argv);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003137 argv++;
3138 }
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01003139 fdprintf(2, "\n");
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01003140 prn++;
3141 }
3142 pi = pi->next;
3143 pin++;
3144 }
3145}
3146#endif /* debug_print_tree */
3147
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003148static struct pipe *new_pipe(void)
3149{
Eric Andersen25f27032001-04-26 23:22:31 +00003150 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003151 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003152 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003153 return pi;
3154}
3155
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003156/* Command (member of a pipe) is complete, or we start a new pipe
3157 * if ctx->command is NULL.
3158 * No errors possible here.
3159 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003160static int done_command(struct parse_context *ctx)
3161{
3162 /* The command is really already in the pipe structure, so
3163 * advance the pipe counter and make a new, null command. */
3164 struct pipe *pi = ctx->pipe;
3165 struct command *command = ctx->command;
3166
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003167#if 0 /* Instead we emit error message at run time */
3168 if (ctx->pending_redirect) {
3169 /* For example, "cmd >" (no filename to redirect to) */
3170 die_if_script("syntax error: %s", "invalid redirect");
3171 ctx->pending_redirect = NULL;
3172 }
3173#endif
3174
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003175 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003176 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003177 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003178 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003179 }
3180 pi->num_cmds++;
3181 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003182 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003183 } else {
3184 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3185 }
3186
3187 /* Only real trickiness here is that the uncommitted
3188 * command structure is not counted in pi->num_cmds. */
3189 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003190 ctx->command = command = &pi->cmds[pi->num_cmds];
3191 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003192 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003193 return pi->num_cmds; /* used only for 0/nonzero check */
3194}
3195
3196static void done_pipe(struct parse_context *ctx, pipe_style type)
3197{
3198 int not_null;
3199
3200 debug_printf_parse("done_pipe entered, followup %d\n", type);
3201 /* Close previous command */
3202 not_null = done_command(ctx);
3203 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003204#if HAS_KEYWORDS
3205 ctx->pipe->pi_inverted = ctx->ctx_inverted;
3206 ctx->ctx_inverted = 0;
3207 ctx->pipe->res_word = ctx->ctx_res_w;
3208#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003209
3210 /* Without this check, even just <enter> on command line generates
3211 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003212 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003213 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00003214#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003215 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00003216#endif
3217#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003218 || ctx->ctx_res_w == RES_DONE
3219 || ctx->ctx_res_w == RES_FOR
3220 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00003221#endif
3222#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003223 || ctx->ctx_res_w == RES_ESAC
3224#endif
3225 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003226 struct pipe *new_p;
3227 debug_printf_parse("done_pipe: adding new pipe: "
3228 "not_null:%d ctx->ctx_res_w:%d\n",
3229 not_null, ctx->ctx_res_w);
3230 new_p = new_pipe();
3231 ctx->pipe->next = new_p;
3232 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003233 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003234 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003235 * This is used to control execution.
3236 * RES_FOR and RES_IN are NOT sticky (needed to support
3237 * cases where variable or value happens to match a keyword):
3238 */
3239#if ENABLE_HUSH_LOOPS
3240 if (ctx->ctx_res_w == RES_FOR
3241 || ctx->ctx_res_w == RES_IN)
3242 ctx->ctx_res_w = RES_NONE;
3243#endif
3244#if ENABLE_HUSH_CASE
3245 if (ctx->ctx_res_w == RES_MATCH)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003246 ctx->ctx_res_w = RES_CASE_BODY;
3247 if (ctx->ctx_res_w == RES_CASE)
3248 ctx->ctx_res_w = RES_CASE_IN;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003249#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003250 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003251 /* Create the memory for command, roughly:
3252 * ctx->pipe->cmds = new struct command;
3253 * ctx->command = &ctx->pipe->cmds[0];
3254 */
3255 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003256 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003257 }
3258 debug_printf_parse("done_pipe return\n");
3259}
3260
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003261static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003262{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003263 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003264 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003265 /* Create the memory for command, roughly:
3266 * ctx->pipe->cmds = new struct command;
3267 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003268 */
3269 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003270}
3271
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003272/* If a reserved word is found and processed, parse context is modified
3273 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003274 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003275#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003276struct reserved_combo {
3277 char literal[6];
3278 unsigned char res;
3279 unsigned char assignment_flag;
3280 int flag;
3281};
3282enum {
3283 FLAG_END = (1 << RES_NONE ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003284# if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003285 FLAG_IF = (1 << RES_IF ),
3286 FLAG_THEN = (1 << RES_THEN ),
3287 FLAG_ELIF = (1 << RES_ELIF ),
3288 FLAG_ELSE = (1 << RES_ELSE ),
3289 FLAG_FI = (1 << RES_FI ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003290# endif
3291# if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003292 FLAG_FOR = (1 << RES_FOR ),
3293 FLAG_WHILE = (1 << RES_WHILE),
3294 FLAG_UNTIL = (1 << RES_UNTIL),
3295 FLAG_DO = (1 << RES_DO ),
3296 FLAG_DONE = (1 << RES_DONE ),
3297 FLAG_IN = (1 << RES_IN ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003298# endif
3299# if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003300 FLAG_MATCH = (1 << RES_MATCH),
3301 FLAG_ESAC = (1 << RES_ESAC ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003302# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003303 FLAG_START = (1 << RES_XXXX ),
3304};
3305
3306static const struct reserved_combo* match_reserved_word(o_string *word)
3307{
Eric Andersen25f27032001-04-26 23:22:31 +00003308 /* Mostly a list of accepted follow-up reserved words.
3309 * FLAG_END means we are done with the sequence, and are ready
3310 * to turn the compound list into a command.
3311 * FLAG_START means the word must start a new compound list.
3312 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003313 static const struct reserved_combo reserved_list[] = {
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003314# if ENABLE_HUSH_IF
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003315 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3316 { "if", RES_IF, MAYBE_ASSIGNMENT, FLAG_THEN | FLAG_START },
3317 { "then", RES_THEN, MAYBE_ASSIGNMENT, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3318 { "elif", RES_ELIF, MAYBE_ASSIGNMENT, FLAG_THEN },
3319 { "else", RES_ELSE, MAYBE_ASSIGNMENT, FLAG_FI },
3320 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003321# endif
3322# if ENABLE_HUSH_LOOPS
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003323 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3324 { "while", RES_WHILE, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3325 { "until", RES_UNTIL, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START },
3326 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3327 { "do", RES_DO, MAYBE_ASSIGNMENT, FLAG_DONE },
3328 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003329# endif
3330# if ENABLE_HUSH_CASE
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003331 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3332 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003333# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003334 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003335 const struct reserved_combo *r;
3336
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02003337 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003338 if (strcmp(word->data, r->literal) == 0)
3339 return r;
3340 }
3341 return NULL;
3342}
Denis Vlasenkobb929512009-04-16 10:59:40 +00003343/* Return 0: not a keyword, 1: keyword
3344 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003345static int reserved_word(o_string *word, struct parse_context *ctx)
3346{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003347# if ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003348 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003349 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003350 };
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003351# endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003352 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003353
Denys Vlasenko38292b62010-09-05 14:49:40 +02003354 if (word->has_quoted_part)
Denis Vlasenkobb929512009-04-16 10:59:40 +00003355 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003356 r = match_reserved_word(word);
3357 if (!r)
3358 return 0;
3359
3360 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003361# if ENABLE_HUSH_CASE
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003362 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
3363 /* "case word IN ..." - IN part starts first MATCH part */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003364 r = &reserved_match;
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003365 } else
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003366# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003367 if (r->flag == 0) { /* '!' */
3368 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003369 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00003370 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00003371 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003372 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003373 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003374 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003375 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003376 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003377
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003378 old = xmalloc(sizeof(*old));
3379 debug_printf_parse("push stack %p\n", old);
3380 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003381 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003382 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003383 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003384 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003385 ctx->ctx_res_w = RES_SNTX;
3386 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003387 } else {
3388 /* "{...} fi" is ok. "{...} if" is not
3389 * Example:
3390 * if { echo foo; } then { echo bar; } fi */
3391 if (ctx->command->group)
3392 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003393 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00003394
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003395 ctx->ctx_res_w = r->res;
3396 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003397 word->o_assignment = r->assignment_flag;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003398 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
Denis Vlasenkobb929512009-04-16 10:59:40 +00003399
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003400 if (ctx->old_flag & FLAG_END) {
3401 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00003402
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003403 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003404 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003405 old = ctx->stack;
3406 old->command->group = ctx->list_head;
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003407 old->command->cmd_type = CMD_NORMAL;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003408# if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02003409 /* At this point, the compound command's string is in
3410 * ctx->as_string... except for the leading keyword!
3411 * Consider this example: "echo a | if true; then echo a; fi"
3412 * ctx->as_string will contain "true; then echo a; fi",
3413 * with "if " remaining in old->as_string!
3414 */
3415 {
3416 char *str;
3417 int len = old->as_string.length;
3418 /* Concatenate halves */
3419 o_addstr(&old->as_string, ctx->as_string.data);
3420 o_free_unsafe(&ctx->as_string);
3421 /* Find where leading keyword starts in first half */
3422 str = old->as_string.data + len;
3423 if (str > old->as_string.data)
3424 str--; /* skip whitespace after keyword */
3425 while (str > old->as_string.data && isalpha(str[-1]))
3426 str--;
3427 /* Ugh, we're done with this horrid hack */
3428 old->command->group_as_string = xstrdup(str);
3429 debug_printf_parse("pop, remembering as:'%s'\n",
3430 old->command->group_as_string);
3431 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003432# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003433 *ctx = *old; /* physical copy */
3434 free(old);
3435 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003436 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003437}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003438#endif /* HAS_KEYWORDS */
Eric Andersen25f27032001-04-26 23:22:31 +00003439
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003440/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003441 * Normal return is 0. Syntax errors return 1.
3442 * Note: on return, word is reset, but not o_free'd!
3443 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003444static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003445{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003446 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003447
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003448 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denys Vlasenko38292b62010-09-05 14:49:40 +02003449 if (word->length == 0 && !word->has_quoted_part) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003450 debug_printf_parse("done_word return 0: true null, ignored\n");
3451 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003452 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003453
Eric Andersen25f27032001-04-26 23:22:31 +00003454 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003455 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3456 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003457 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3458 * "2.7 Redirection
3459 * ...the word that follows the redirection operator
3460 * shall be subjected to tilde expansion, parameter expansion,
3461 * command substitution, arithmetic expansion, and quote
3462 * removal. Pathname expansion shall not be performed
3463 * on the word by a non-interactive shell; an interactive
3464 * shell may perform it, but shall do so only when
3465 * the expansion would result in one word."
3466 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003467 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003468 /* Cater for >\file case:
3469 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
3470 * Same with heredocs:
3471 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
3472 */
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003473 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
3474 unbackslash(ctx->pending_redirect->rd_filename);
3475 /* Is it <<"HEREDOC"? */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003476 if (word->has_quoted_part) {
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003477 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
3478 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003479 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003480 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003481 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003482 } else {
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003483#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003484# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003485 if (ctx->ctx_dsemicolon
3486 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3487 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003488 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003489 /* ctx->ctx_res_w = RES_MATCH; */
3490 ctx->ctx_dsemicolon = 0;
3491 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003492# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003493 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003494# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003495 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3496 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003497# endif
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003498# if ENABLE_HUSH_CASE
3499 && ctx->ctx_res_w != RES_CASE
3500# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003501 ) {
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003502 int reserved = reserved_word(word, ctx);
3503 debug_printf_parse("checking for reserved-ness: %d\n", reserved);
3504 if (reserved) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003505 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003506 debug_printf_parse("done_word return %d\n",
3507 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003508 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003509 }
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02003510# if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003511 if (strcmp(word->data, "[[") == 0) {
3512 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
3513 }
3514 /* fall through */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02003515# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003516 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003517#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00003518 if (command->group) {
3519 /* "{ echo foo; } echo bar" - bad */
3520 syntax_error_at(word->data);
3521 debug_printf_parse("done_word return 1: syntax error, "
3522 "groups and arglists don't mix\n");
3523 return 1;
3524 }
Denys Vlasenko29f9b722011-05-14 11:27:36 +02003525
3526 /* If this word wasn't an assignment, next ones definitely
3527 * can't be assignments. Even if they look like ones. */
3528 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3529 && word->o_assignment != WORD_IS_KEYWORD
3530 ) {
3531 word->o_assignment = NOT_ASSIGNMENT;
3532 } else {
3533 if (word->o_assignment == DEFINITELY_ASSIGNMENT) {
3534 command->assignment_cnt++;
3535 debug_printf_parse("++assignment_cnt=%d\n", command->assignment_cnt);
3536 }
3537 debug_printf_parse("word->o_assignment was:'%s'\n", assignment_flag[word->o_assignment]);
3538 word->o_assignment = MAYBE_ASSIGNMENT;
3539 }
3540 debug_printf_parse("word->o_assignment='%s'\n", assignment_flag[word->o_assignment]);
3541
Denys Vlasenko38292b62010-09-05 14:49:40 +02003542 if (word->has_quoted_part
Denis Vlasenko55789c62008-06-18 16:30:42 +00003543 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3544 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003545 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003546 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003547 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003548 char *p = word->data;
3549 while (p[0] == SPECIAL_VAR_SYMBOL
3550 && (p[1] & 0x7f) == '@'
3551 && p[2] == SPECIAL_VAR_SYMBOL
3552 ) {
3553 p += 3;
3554 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003555 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003556 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003557 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003558 }
Eric Andersen25f27032001-04-26 23:22:31 +00003559
Denis Vlasenko06810332007-05-21 23:30:54 +00003560#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003561 if (ctx->ctx_res_w == RES_FOR) {
Denys Vlasenko38292b62010-09-05 14:49:40 +02003562 if (word->has_quoted_part
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003563 || !is_well_formed_var_name(command->argv[0], '\0')
3564 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003565 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003566 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003567 return 1;
3568 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003569 /* Force FOR to have just one word (variable name) */
3570 /* NB: basically, this makes hush see "for v in ..."
3571 * syntax as if it is "for v; in ...". FOR and IN become
3572 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003573 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003574 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003575#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003576#if ENABLE_HUSH_CASE
3577 /* Force CASE to have just one word */
3578 if (ctx->ctx_res_w == RES_CASE) {
3579 done_pipe(ctx, PIPE_SEQ);
3580 }
3581#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003582
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003583 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003584
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003585 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003586 return 0;
3587}
3588
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003589
3590/* Peek ahead in the input to find out if we have a "&n" construct,
3591 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003592 * Return:
3593 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
3594 * REDIRFD_SYNTAX_ERR if syntax error,
3595 * REDIRFD_TO_FILE if no & was seen,
3596 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003597 */
3598#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003599#define parse_redir_right_fd(as_string, input) \
3600 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003601#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003602static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003603{
3604 int ch, d, ok;
3605
3606 ch = i_peek(input);
3607 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003608 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003609
3610 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003611 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003612 ch = i_peek(input);
3613 if (ch == '-') {
3614 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003615 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003616 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003617 }
3618 d = 0;
3619 ok = 0;
3620 while (ch != EOF && isdigit(ch)) {
3621 d = d*10 + (ch-'0');
3622 ok = 1;
3623 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003624 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003625 ch = i_peek(input);
3626 }
3627 if (ok) return d;
3628
3629//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
3630
3631 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003632 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003633}
3634
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003635/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003636 */
3637static int parse_redirect(struct parse_context *ctx,
3638 int fd,
3639 redir_type style,
3640 struct in_str *input)
3641{
3642 struct command *command = ctx->command;
3643 struct redir_struct *redir;
3644 struct redir_struct **redirp;
3645 int dup_num;
3646
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003647 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003648 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003649 /* Check for a '>&1' type redirect */
3650 dup_num = parse_redir_right_fd(&ctx->as_string, input);
3651 if (dup_num == REDIRFD_SYNTAX_ERR)
3652 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003653 } else {
3654 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003655 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003656 if (dup_num) { /* <<-... */
3657 ch = i_getch(input);
3658 nommu_addchr(&ctx->as_string, ch);
3659 ch = i_peek(input);
3660 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003661 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003662
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003663 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003664 int ch = i_peek(input);
3665 if (ch == '|') {
3666 /* >|FILE redirect ("clobbering" >).
3667 * Since we do not support "set -o noclobber" yet,
3668 * >| and > are the same for now. Just eat |.
3669 */
3670 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003671 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003672 }
3673 }
3674
3675 /* Create a new redir_struct and append it to the linked list */
3676 redirp = &command->redirects;
3677 while ((redir = *redirp) != NULL) {
3678 redirp = &(redir->next);
3679 }
3680 *redirp = redir = xzalloc(sizeof(*redir));
3681 /* redir->next = NULL; */
3682 /* redir->rd_filename = NULL; */
3683 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003684 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003685
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003686 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
3687 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003688
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003689 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003690 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003691 /* Erik had a check here that the file descriptor in question
3692 * is legit; I postpone that to "run time"
3693 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003694 debug_printf_parse("duplicating redirect '%d>&%d'\n",
3695 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003696 } else {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02003697#if 0 /* Instead we emit error message at run time */
3698 if (ctx->pending_redirect) {
3699 /* For example, "cmd > <file" */
3700 die_if_script("syntax error: %s", "invalid redirect");
3701 }
3702#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003703 /* Set ctx->pending_redirect, so we know what to do at the
3704 * end of the next parsed word. */
3705 ctx->pending_redirect = redir;
3706 }
3707 return 0;
3708}
3709
Eric Andersen25f27032001-04-26 23:22:31 +00003710/* If a redirect is immediately preceded by a number, that number is
3711 * supposed to tell which file descriptor to redirect. This routine
3712 * looks for such preceding numbers. In an ideal world this routine
3713 * needs to handle all the following classes of redirects...
3714 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3715 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3716 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3717 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003718 *
3719 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3720 * "2.7 Redirection
3721 * ... If n is quoted, the number shall not be recognized as part of
3722 * the redirection expression. For example:
3723 * echo \2>a
3724 * writes the character 2 into file a"
Denys Vlasenko38292b62010-09-05 14:49:40 +02003725 * We are getting it right by setting ->has_quoted_part on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003726 *
3727 * A -1 return means no valid number was found,
3728 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00003729 */
3730static int redirect_opt_num(o_string *o)
3731{
3732 int num;
3733
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003734 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003735 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003736 num = bb_strtou(o->data, NULL, 10);
3737 if (errno || num < 0)
3738 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003739 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00003740 return num;
3741}
3742
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003743#if BB_MMU
3744#define fetch_till_str(as_string, input, word, skip_tabs) \
3745 fetch_till_str(input, word, skip_tabs)
3746#endif
3747static char *fetch_till_str(o_string *as_string,
3748 struct in_str *input,
3749 const char *word,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003750 int heredoc_flags)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003751{
3752 o_string heredoc = NULL_O_STRING;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003753 unsigned past_EOL;
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003754 int prev = 0; /* not \ */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003755 int ch;
3756
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003757 goto jump_in;
Denys Vlasenkob8709032011-05-08 21:20:01 +02003758
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003759 while (1) {
3760 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003761 if (ch != EOF)
3762 nommu_addchr(as_string, ch);
3763 if ((ch == '\n' || ch == EOF)
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003764 && ((heredoc_flags & HEREDOC_QUOTED) || prev != '\\')
3765 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003766 if (strcmp(heredoc.data + past_EOL, word) == 0) {
3767 heredoc.data[past_EOL] = '\0';
3768 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
3769 return heredoc.data;
3770 }
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003771 while (ch == '\n') {
3772 o_addchr(&heredoc, ch);
3773 prev = ch;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003774 jump_in:
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003775 past_EOL = heredoc.length;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003776 do {
3777 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003778 if (ch != EOF)
3779 nommu_addchr(as_string, ch);
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003780 } while ((heredoc_flags & HEREDOC_SKIPTABS) && ch == '\t');
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003781 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003782 }
3783 if (ch == EOF) {
3784 o_free_unsafe(&heredoc);
3785 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003786 }
3787 o_addchr(&heredoc, ch);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003788 nommu_addchr(as_string, ch);
Denys Vlasenkoc3adfac2010-09-06 11:46:03 +02003789 if (prev == '\\' && ch == '\\')
3790 /* Correctly handle foo\\<eol> (not a line cont.) */
3791 prev = 0; /* not \ */
3792 else
3793 prev = ch;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003794 }
3795}
3796
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003797/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
3798 * and load them all. There should be exactly heredoc_cnt of them.
3799 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003800static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
3801{
3802 struct pipe *pi = ctx->list_head;
3803
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003804 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003805 int i;
3806 struct command *cmd = pi->cmds;
3807
3808 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
3809 pi->num_cmds,
3810 cmd->argv ? cmd->argv[0] : "NONE");
3811 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003812 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003813
3814 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
3815 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003816 while (redir) {
3817 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003818 char *p;
3819
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003820 redir->rd_type = REDIRECT_HEREDOC2;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003821 /* redir->rd_dup is (ab)used to indicate <<- */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003822 p = fetch_till_str(&ctx->as_string, input,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003823 redir->rd_filename, redir->rd_dup);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003824 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003825 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003826 return 1;
3827 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003828 free(redir->rd_filename);
3829 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003830 heredoc_cnt--;
3831 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003832 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003833 }
3834 cmd++;
3835 }
3836 pi = pi->next;
3837 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003838#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003839 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003840 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003841 bb_error_msg_and_die("heredoc BUG 2");
3842#endif
3843 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003844}
3845
3846
Denys Vlasenkob36abf22010-09-05 14:50:59 +02003847static int run_list(struct pipe *pi);
3848#if BB_MMU
3849#define parse_stream(pstring, input, end_trigger) \
3850 parse_stream(input, end_trigger)
3851#endif
3852static struct pipe *parse_stream(char **pstring,
3853 struct in_str *input,
3854 int end_trigger);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003855
Eric Andersen25f27032001-04-26 23:22:31 +00003856
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003857#if !ENABLE_HUSH_FUNCTIONS
3858#define parse_group(dest, ctx, input, ch) \
3859 parse_group(ctx, input, ch)
3860#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003861static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00003862 struct in_str *input, int ch)
3863{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003864 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00003865 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003866 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003867 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00003868 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003869 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003870
3871 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003872#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko38292b62010-09-05 14:49:40 +02003873 if (ch == '(' && !dest->has_quoted_part) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003874 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00003875 if (done_word(dest, ctx))
3876 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003877 if (!command->argv)
3878 goto skip; /* (... */
3879 if (command->argv[1]) { /* word word ... (... */
3880 syntax_error_unexpected_ch('(');
3881 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003882 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003883 /* it is "word(..." or "word (..." */
3884 do
3885 ch = i_getch(input);
3886 while (ch == ' ' || ch == '\t');
3887 if (ch != ')') {
3888 syntax_error_unexpected_ch(ch);
3889 return 1;
3890 }
3891 nommu_addchr(&ctx->as_string, ch);
3892 do
3893 ch = i_getch(input);
3894 while (ch == ' ' || ch == '\t' || ch == '\n');
3895 if (ch != '{') {
3896 syntax_error_unexpected_ch(ch);
3897 return 1;
3898 }
3899 nommu_addchr(&ctx->as_string, ch);
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003900 command->cmd_type = CMD_FUNCDEF;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003901 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003902 }
3903#endif
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01003904
3905#if 0 /* Prevented by caller */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003906 if (command->argv /* word [word]{... */
3907 || dest->length /* word{... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003908 || dest->has_quoted_part /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003909 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003910 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003911 debug_printf_parse("parse_group return 1: "
3912 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003913 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003914 }
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01003915#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003916
3917#if ENABLE_HUSH_FUNCTIONS
3918 skip:
3919#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00003920 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003921 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00003922 endch = ')';
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003923 command->cmd_type = CMD_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003924 } else {
3925 /* bash does not allow "{echo...", requires whitespace */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01003926 ch = i_peek(input);
3927 if (ch != ' ' && ch != '\t' && ch != '\n'
3928 && ch != '(' /* but "{(..." is allowed (without whitespace) */
3929 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003930 syntax_error_unexpected_ch(ch);
3931 return 1;
3932 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01003933 if (ch != '(') {
3934 ch = i_getch(input);
3935 nommu_addchr(&ctx->as_string, ch);
3936 }
Eric Andersen25f27032001-04-26 23:22:31 +00003937 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003938
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003939 {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003940#if BB_MMU
3941# define as_string NULL
3942#else
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003943 char *as_string = NULL;
3944#endif
3945 pipe_list = parse_stream(&as_string, input, endch);
3946#if !BB_MMU
3947 if (as_string)
3948 o_addstr(&ctx->as_string, as_string);
3949#endif
3950 /* empty ()/{} or parse error? */
3951 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00003952 /* parse_stream already emitted error msg */
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003953 if (!BB_MMU)
3954 free(as_string);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003955 debug_printf_parse("parse_group return 1: "
3956 "parse_stream returned %p\n", pipe_list);
3957 return 1;
3958 }
3959 command->group = pipe_list;
3960#if !BB_MMU
3961 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
3962 command->group_as_string = as_string;
3963 debug_printf_parse("end of group, remembering as:'%s'\n",
3964 command->group_as_string);
3965#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003966#undef as_string
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003967 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003968 debug_printf_parse("parse_group return 0\n");
3969 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003970 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00003971}
3972
Denys Vlasenko46e64982016-09-29 19:50:55 +02003973static int i_getch_and_eat_bkslash_nl(struct in_str *input)
3974{
3975 for (;;) {
3976 int ch, ch2;
3977
3978 ch = i_getch(input);
3979 if (ch != '\\')
3980 return ch;
3981 ch2 = i_peek(input);
3982 if (ch2 != '\n')
3983 return ch;
3984 /* backslash+newline, skip it */
3985 i_getch(input);
3986 }
3987}
3988
Denys Vlasenko657086a2016-09-29 18:07:42 +02003989static int i_peek_and_eat_bkslash_nl(struct in_str *input)
3990{
3991 for (;;) {
3992 int ch, ch2;
3993
3994 ch = i_peek(input);
3995 if (ch != '\\')
3996 return ch;
3997 ch2 = i_peek2(input);
3998 if (ch2 != '\n')
3999 return ch;
4000 /* backslash+newline, skip it */
4001 i_getch(input);
4002 i_getch(input);
4003 }
4004}
4005
Denys Vlasenko0b883582016-12-23 16:49:07 +01004006#if ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004007/* Subroutines for copying $(...) and `...` things */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004008static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004009/* '...' */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004010static int add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004011{
4012 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004013 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004014 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004015 syntax_error_unterm_ch('\'');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004016 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004017 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004018 if (ch == '\'')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004019 return 1;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004020 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004021 }
4022}
4023/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004024static int add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004025{
4026 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004027 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004028 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004029 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004030 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004031 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004032 if (ch == '"')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004033 return 1;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004034 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004035 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004036 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004037 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004038 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004039 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004040 if (!add_till_backquote(dest, input, /*in_dquote:*/ 1))
4041 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004042 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004043 continue;
4044 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004045 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004046 }
4047}
4048/* Process `cmd` - copy contents until "`" is seen. Complicated by
4049 * \` quoting.
4050 * "Within the backquoted style of command substitution, backslash
4051 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4052 * The search for the matching backquote shall be satisfied by the first
4053 * backquote found without a preceding backslash; during this search,
4054 * if a non-escaped backquote is encountered within a shell comment,
4055 * a here-document, an embedded command substitution of the $(command)
4056 * form, or a quoted string, undefined results occur. A single-quoted
4057 * or double-quoted string that begins, but does not end, within the
4058 * "`...`" sequence produces undefined results."
4059 * Example Output
4060 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4061 */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004062static int add_till_backquote(o_string *dest, struct in_str *input, int in_dquote)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004063{
4064 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004065 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004066 if (ch == '`')
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004067 return 1;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004068 if (ch == '\\') {
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004069 /* \x. Copy both unless it is \`, \$, \\ and maybe \" */
4070 ch = i_getch(input);
4071 if (ch != '`'
4072 && ch != '$'
4073 && ch != '\\'
4074 && (!in_dquote || ch != '"')
4075 ) {
4076 o_addchr(dest, '\\');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004077 }
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004078 }
4079 if (ch == EOF) {
4080 syntax_error_unterm_ch('`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004081 return 0;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004082 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004083 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004084 }
4085}
4086/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4087 * quoting and nested ()s.
4088 * "With the $(command) style of command substitution, all characters
4089 * following the open parenthesis to the matching closing parenthesis
4090 * constitute the command. Any valid shell script can be used for command,
4091 * except a script consisting solely of redirections which produces
4092 * unspecified results."
4093 * Example Output
4094 * echo $(echo '(TEST)' BEST) (TEST) BEST
4095 * echo $(echo 'TEST)' BEST) TEST) BEST
4096 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
Denys Vlasenko74369502010-05-21 19:52:01 +02004097 *
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004098 * Also adapted to eat ${var%...} and $((...)) constructs, since ... part
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004099 * can contain arbitrary constructs, just like $(cmd).
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004100 * In bash compat mode, it needs to also be able to stop on ':' or '/'
4101 * for ${var:N[:M]} and ${var/P[/R]} parsing.
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004102 */
Denys Vlasenko74369502010-05-21 19:52:01 +02004103#define DOUBLE_CLOSE_CHAR_FLAG 0x80
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004104static int add_till_closing_bracket(o_string *dest, struct in_str *input, unsigned end_ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004105{
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004106 int ch;
Denys Vlasenko74369502010-05-21 19:52:01 +02004107 char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004108# if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004109 char end_char2 = end_ch >> 8;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004110# endif
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004111 end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1);
4112
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004113 while (1) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004114 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004115 if (ch == EOF) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004116 syntax_error_unterm_ch(end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004117 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004118 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004119 if (ch == end_ch IF_HUSH_BASH_COMPAT( || ch == end_char2)) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004120 if (!dbl)
4121 break;
4122 /* we look for closing )) of $((EXPR)) */
Denys Vlasenko657086a2016-09-29 18:07:42 +02004123 if (i_peek_and_eat_bkslash_nl(input) == end_ch) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004124 i_getch(input); /* eat second ')' */
4125 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004126 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004127 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004128 o_addchr(dest, ch);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004129 if (ch == '(' || ch == '{') {
4130 ch = (ch == '(' ? ')' : '}');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004131 if (!add_till_closing_bracket(dest, input, ch))
4132 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004133 o_addchr(dest, ch);
4134 continue;
4135 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004136 if (ch == '\'') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004137 if (!add_till_single_quote(dest, input))
4138 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004139 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004140 continue;
4141 }
4142 if (ch == '"') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004143 if (!add_till_double_quote(dest, input))
4144 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004145 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004146 continue;
4147 }
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004148 if (ch == '`') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004149 if (!add_till_backquote(dest, input, /*in_dquote:*/ 0))
4150 return 0;
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02004151 o_addchr(dest, ch);
4152 continue;
4153 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004154 if (ch == '\\') {
4155 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004156 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004157 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004158 syntax_error_unterm_ch(')');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004159 return 0;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004160 }
Denys Vlasenko657086a2016-09-29 18:07:42 +02004161#if 0
4162 if (ch == '\n') {
4163 /* "backslash+newline", ignore both */
4164 o_delchr(dest); /* undo insertion of '\' */
4165 continue;
4166 }
4167#endif
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004168 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004169 continue;
4170 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004171 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004172 return ch;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004173}
Denys Vlasenko0b883582016-12-23 16:49:07 +01004174#endif /* ENABLE_HUSH_TICK || ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_DOLLAR_OPS */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004175
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004176/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004177#if BB_MMU
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004178#define parse_dollar(as_string, dest, input, quote_mask) \
4179 parse_dollar(dest, input, quote_mask)
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004180#define as_string NULL
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004181#endif
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004182static int parse_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004183 o_string *dest,
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004184 struct in_str *input, unsigned char quote_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00004185{
Denys Vlasenko657086a2016-09-29 18:07:42 +02004186 int ch = i_peek_and_eat_bkslash_nl(input); /* first character after the $ */
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004187
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004188 debug_printf_parse("parse_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004189 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004190 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004191 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00004192 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004193 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004194 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004195 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004196 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004197 quote_mask = 0;
Denys Vlasenko657086a2016-09-29 18:07:42 +02004198 ch = i_peek_and_eat_bkslash_nl(input);
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004199 if (!isalnum(ch) && ch != '_') {
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004200 /* End of variable name reached */
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004201 break;
Denys Vlasenkod17a91d2016-09-29 18:02:37 +02004202 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004203 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004204 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004205 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004206 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004207 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004208 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004209 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004210 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004211 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004212 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004213 o_addchr(dest, ch | quote_mask);
4214 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004215 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004216 case '$': /* pid */
4217 case '!': /* last bg pid */
4218 case '?': /* last exit code */
4219 case '#': /* number of args */
4220 case '*': /* args */
4221 case '@': /* args */
4222 goto make_one_char_var;
4223 case '{': {
Mike Frysingeref3e7fd2009-06-01 14:13:39 -04004224 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4225
Denys Vlasenko74369502010-05-21 19:52:01 +02004226 ch = i_getch(input); /* eat '{' */
4227 nommu_addchr(as_string, ch);
4228
Denys Vlasenko46e64982016-09-29 19:50:55 +02004229 ch = i_getch_and_eat_bkslash_nl(input); /* first char after '{' */
Denys Vlasenko74369502010-05-21 19:52:01 +02004230 /* It should be ${?}, or ${#var},
4231 * or even ${?+subst} - operator acting on a special variable,
4232 * or the beginning of variable name.
4233 */
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004234 if (ch == EOF
4235 || (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) /* not one of those */
4236 ) {
Denys Vlasenko74369502010-05-21 19:52:01 +02004237 bad_dollar_syntax:
4238 syntax_error_unterm_str("${name}");
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004239 debug_printf_parse("parse_dollar return 0: unterminated ${name}\n");
4240 return 0;
Denys Vlasenko74369502010-05-21 19:52:01 +02004241 }
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004242 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02004243 ch |= quote_mask;
4244
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004245 /* It's possible to just call add_till_closing_bracket() at this point.
Denys Vlasenko74369502010-05-21 19:52:01 +02004246 * However, this regresses some of our testsuite cases
4247 * which check invalid constructs like ${%}.
4248 * Oh well... let's check that the var name part is fine... */
4249
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004250 while (1) {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004251 unsigned pos;
4252
Denys Vlasenko74369502010-05-21 19:52:01 +02004253 o_addchr(dest, ch);
4254 debug_printf_parse(": '%c'\n", ch);
4255
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004256 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004257 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02004258 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004259 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004260
Denys Vlasenko74369502010-05-21 19:52:01 +02004261 if (!isalnum(ch) && ch != '_') {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004262 unsigned end_ch;
4263 unsigned char last_ch;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004264 /* handle parameter expansions
4265 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4266 */
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004267 if (!strchr(VAR_SUBST_OPS, ch)) /* ${var<bad_char>... */
Denys Vlasenko74369502010-05-21 19:52:01 +02004268 goto bad_dollar_syntax;
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004269
4270 /* Eat everything until closing '}' (or ':') */
4271 end_ch = '}';
4272 if (ENABLE_HUSH_BASH_COMPAT
4273 && ch == ':'
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004274 && !strchr(MINUS_PLUS_EQUAL_QUESTION, i_peek(input))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004275 ) {
4276 /* It's ${var:N[:M]} thing */
4277 end_ch = '}' * 0x100 + ':';
4278 }
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004279 if (ENABLE_HUSH_BASH_COMPAT
4280 && ch == '/'
4281 ) {
4282 /* It's ${var/[/]pattern[/repl]} thing */
4283 if (i_peek(input) == '/') { /* ${var//pattern[/repl]}? */
4284 i_getch(input);
4285 nommu_addchr(as_string, '/');
4286 ch = '\\';
4287 }
4288 end_ch = '}' * 0x100 + '/';
4289 }
4290 o_addchr(dest, ch);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004291 again:
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004292 if (!BB_MMU)
4293 pos = dest->length;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004294#if ENABLE_HUSH_DOLLAR_OPS
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004295 last_ch = add_till_closing_bracket(dest, input, end_ch);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004296 if (last_ch == 0) /* error? */
4297 return 0;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02004298#else
4299#error Simple code to only allow ${var} is not implemented
4300#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004301 if (as_string) {
4302 o_addstr(as_string, dest->data + pos);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004303 o_addchr(as_string, last_ch);
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004304 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004305
4306 if (ENABLE_HUSH_BASH_COMPAT && (end_ch & 0xff00)) {
4307 /* close the first block: */
4308 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004309 /* while parsing N from ${var:N[:M]}
4310 * or pattern from ${var/[/]pattern[/repl]} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004311 if ((end_ch & 0xff) == last_ch) {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004312 /* got ':' or '/'- parse the rest */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004313 end_ch = '}';
4314 goto again;
4315 }
Denys Vlasenko36f774a2010-09-05 14:45:38 +02004316 /* got '}' */
4317 if (end_ch == '}' * 0x100 + ':') {
4318 /* it's ${var:N} - emulate :999999999 */
4319 o_addstr(dest, "999999999");
4320 } /* else: it's ${var/[/]pattern} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02004321 }
Denys Vlasenko74369502010-05-21 19:52:01 +02004322 break;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004323 }
Denys Vlasenko74369502010-05-21 19:52:01 +02004324 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004325 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4326 break;
4327 }
Denys Vlasenko0b883582016-12-23 16:49:07 +01004328#if ENABLE_FEATURE_SH_MATH || ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004329 case '(': {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004330 unsigned pos;
4331
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004332 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004333 nommu_addchr(as_string, ch);
Denys Vlasenko0b883582016-12-23 16:49:07 +01004334# if ENABLE_FEATURE_SH_MATH
Denys Vlasenko657086a2016-09-29 18:07:42 +02004335 if (i_peek_and_eat_bkslash_nl(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004336 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004337 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004338 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4339 o_addchr(dest, /*quote_mask |*/ '+');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004340 if (!BB_MMU)
4341 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004342 if (!add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG))
4343 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004344 if (as_string) {
4345 o_addstr(as_string, dest->data + pos);
4346 o_addchr(as_string, ')');
4347 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004348 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004349 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004350 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004351 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004352# endif
4353# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004354 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4355 o_addchr(dest, quote_mask | '`');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004356 if (!BB_MMU)
4357 pos = dest->length;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004358 if (!add_till_closing_bracket(dest, input, ')'))
4359 return 0; /* error */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004360 if (as_string) {
4361 o_addstr(as_string, dest->data + pos);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004362 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004363 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004364 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004365# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004366 break;
4367 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004368#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004369 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004370 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004371 nommu_addchr(as_string, ch);
Denys Vlasenko657086a2016-09-29 18:07:42 +02004372 ch = i_peek_and_eat_bkslash_nl(input);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004373 if (isalnum(ch)) { /* it's $_name or $_123 */
4374 ch = '_';
4375 goto make_var;
4376 }
4377 /* else: it's $_ */
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02004378 /* TODO: $_ and $-: */
4379 /* $_ Shell or shell script name; or last argument of last command
4380 * (if last command wasn't a pipe; if it was, bash sets $_ to "");
4381 * but in command's env, set to full pathname used to invoke it */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004382 /* $- Option flags set by set builtin or shell options (-i etc) */
4383 default:
4384 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004385 }
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004386 debug_printf_parse("parse_dollar return 1 (ok)\n");
4387 return 1;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004388#undef as_string
Eric Andersen25f27032001-04-26 23:22:31 +00004389}
4390
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004391#if BB_MMU
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004392# if ENABLE_HUSH_BASH_COMPAT
4393#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4394 encode_string(dest, input, dquote_end, process_bkslash)
4395# else
4396/* only ${var/pattern/repl} (its pattern part) needs additional mode */
4397#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4398 encode_string(dest, input, dquote_end)
4399# endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004400#define as_string NULL
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004401
4402#else /* !MMU */
4403
4404# if ENABLE_HUSH_BASH_COMPAT
4405/* all parameters are needed, no macro tricks */
4406# else
4407#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
4408 encode_string(as_string, dest, input, dquote_end)
4409# endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004410#endif
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004411static int encode_string(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004412 o_string *dest,
4413 struct in_str *input,
Denys Vlasenko14e289b2010-09-10 10:15:18 +02004414 int dquote_end,
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004415 int process_bkslash)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004416{
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004417#if !ENABLE_HUSH_BASH_COMPAT
4418 const int process_bkslash = 1;
4419#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004420 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004421 int next;
4422
4423 again:
4424 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004425 if (ch != EOF)
4426 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004427 if (ch == dquote_end) { /* may be only '"' or EOF */
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004428 debug_printf_parse("encode_string return 1 (ok)\n");
4429 return 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004430 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004431 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004432 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004433 syntax_error_unterm_ch('"');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004434 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004435 }
4436 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004437 if (ch != '\n') {
4438 next = i_peek(input);
4439 }
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004440 debug_printf_parse("\" ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004441 ch, ch, !!(dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004442 if (process_bkslash && ch == '\\') {
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004443 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004444 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004445 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004446 }
4447 /* bash:
4448 * "The backslash retains its special meaning [in "..."]
4449 * only when followed by one of the following characters:
4450 * $, `, ", \, or <newline>. A double quote may be quoted
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02004451 * within double quotes by preceding it with a backslash."
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004452 * NB: in (unquoted) heredoc, above does not apply to ",
4453 * therefore we check for it by "next == dquote_end" cond.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004454 */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004455 if (next == dquote_end || strchr("$`\\\n", next)) {
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004456 ch = i_getch(input); /* eat next */
4457 if (ch == '\n')
4458 goto again; /* skip \<newline> */
Denys Vlasenko4f870492010-09-10 11:06:01 +02004459 } /* else: ch remains == '\\', and we double it below: */
4460 o_addqchr(dest, ch); /* \c if c is a glob char, else just c */
Denys Vlasenko850b15b2010-09-09 12:58:19 +02004461 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004462 goto again;
4463 }
4464 if (ch == '$') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004465 if (!parse_dollar(as_string, dest, input, /*quote_mask:*/ 0x80)) {
4466 debug_printf_parse("encode_string return 0: "
4467 "parse_dollar returned 0 (error)\n");
4468 return 0;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004469 }
4470 goto again;
4471 }
4472#if ENABLE_HUSH_TICK
4473 if (ch == '`') {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004474 //unsigned pos = dest->length;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004475 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4476 o_addchr(dest, 0x80 | '`');
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004477 if (!add_till_backquote(dest, input, /*in_dquote:*/ dquote_end == '"'))
4478 return 0; /* error */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004479 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4480 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004481 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004482 }
4483#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004484 o_addQchr(dest, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004485 goto again;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02004486#undef as_string
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004487}
4488
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004489/*
4490 * Scan input until EOF or end_trigger char.
4491 * Return a list of pipes to execute, or NULL on EOF
4492 * or if end_trigger character is met.
Denys Vlasenkocecbc982011-03-30 18:54:52 +02004493 * On syntax error, exit if shell is not interactive,
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004494 * reset parsing machinery and start parsing anew,
4495 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004496 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004497static struct pipe *parse_stream(char **pstring,
4498 struct in_str *input,
4499 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004500{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004501 struct parse_context ctx;
4502 o_string dest = NULL_O_STRING;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004503 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00004504
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004505 /* Single-quote triggers a bypass of the main loop until its mate is
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004506 * found. When recursing, quote state is passed in via dest->o_expflags.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004507 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004508 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
Denys Vlasenko90a99042009-09-06 02:36:23 +02004509 end_trigger ? end_trigger : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004510 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004511
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004512 /* If very first arg is "" or '', dest.data may end up NULL.
4513 * Preventing this: */
4514 o_addchr(&dest, '\0');
4515 dest.length = 0;
4516
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004517 /* We used to separate words on $IFS here. This was wrong.
4518 * $IFS is used only for word splitting when $var is expanded,
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004519 * here we should use blank chars as separators, not $IFS
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004520 */
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004521
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004522 if (MAYBE_ASSIGNMENT != 0)
4523 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004524 initialize_context(&ctx);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004525 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004526 while (1) {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004527 const char *is_blank;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004528 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004529 int ch;
4530 int next;
4531 int redir_fd;
4532 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004533
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004534 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004535 debug_printf_parse(": ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004536 ch, ch, !!(dest.o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004537 if (ch == EOF) {
4538 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004539
4540 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004541 syntax_error_unterm_str("here document");
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004542 goto parse_error;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004543 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004544 if (end_trigger == ')') {
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004545 syntax_error_unterm_ch('(');
4546 goto parse_error;
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004547 }
Denys Vlasenko42246472016-11-07 16:22:35 +01004548 if (end_trigger == '}') {
4549 syntax_error_unterm_ch('{');
4550 goto parse_error;
4551 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004552
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004553 if (done_word(&dest, &ctx)) {
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004554 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004555 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004556 o_free(&dest);
4557 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004558 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004559 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004560 /* (this makes bare "&" cmd a no-op.
4561 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004562 if (pi->num_cmds == 0
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01004563 IF_HAS_KEYWORDS(&& pi->res_word == RES_NONE)
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004564 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004565 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004566 pi = NULL;
4567 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004568#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02004569 debug_printf_parse("as_string1 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004570 if (pstring)
4571 *pstring = ctx.as_string.data;
4572 else
4573 o_free_unsafe(&ctx.as_string);
4574#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004575 debug_leave();
4576 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004577 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004578 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004579 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004580
4581 next = '\0';
4582 if (ch != '\n')
4583 next = i_peek(input);
4584
4585 is_special = "{}<>;&|()#'" /* special outside of "str" */
4586 "\\$\"" IF_HUSH_TICK("`"); /* always special */
4587 /* Are { and } special here? */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004588 if (ctx.command->argv /* word [word]{... - non-special */
4589 || dest.length /* word{... - non-special */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004590 || dest.has_quoted_part /* ""{... - non-special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004591 || (next != ';' /* }; - special */
4592 && next != ')' /* }) - special */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004593 && next != '(' /* {( - special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004594 && next != '&' /* }& and }&& ... - special */
4595 && next != '|' /* }|| ... - special */
4596 && !strchr(defifs, next) /* {word - non-special */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004597 )
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004598 ) {
4599 /* They are not special, skip "{}" */
4600 is_special += 2;
4601 }
4602 is_special = strchr(is_special, ch);
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004603 is_blank = strchr(defifs, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004604
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004605 if (!is_special && !is_blank) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00004606 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004607 o_addQchr(&dest, ch);
4608 if ((dest.o_assignment == MAYBE_ASSIGNMENT
4609 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004610 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004611 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00004612 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004613 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004614 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko55789c62008-06-18 16:30:42 +00004615 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004616 continue;
4617 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004618
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004619 if (is_blank) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004620 if (done_word(&dest, &ctx)) {
4621 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00004622 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004623 if (ch == '\n') {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004624 /* Is this a case when newline is simply ignored?
4625 * Some examples:
4626 * "cmd | <newline> cmd ..."
4627 * "case ... in <newline> word) ..."
4628 */
4629 if (IS_NULL_CMD(ctx.command)
4630 && dest.length == 0 && !dest.has_quoted_part
Denis Vlasenkof1736072008-07-31 10:09:26 +00004631 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004632 /* This newline can be ignored. But...
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004633 * Without check #1, interactive shell
4634 * ignores even bare <newline>,
4635 * and shows the continuation prompt:
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004636 * ps1_prompt$ <enter>
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004637 * ps2> _ <=== wrong, should be ps1
4638 * Without check #2, "cmd & <newline>"
4639 * is similarly mistreated.
4640 * (BTW, this makes "cmd & cmd"
4641 * and "cmd && cmd" non-orthogonal.
4642 * Really, ask yourself, why
4643 * "cmd && <newline>" doesn't start
4644 * cmd but waits for more input?
4645 * No reason...)
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004646 */
4647 struct pipe *pi = ctx.list_head;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004648 if (pi->num_cmds != 0 /* check #1 */
4649 && pi->followup != PIPE_BG /* check #2 */
4650 ) {
Denys Vlasenko642e71a2011-01-07 15:16:05 +01004651 continue;
Denys Vlasenko98c46d12011-01-18 17:30:07 +01004652 }
Denis Vlasenkof1736072008-07-31 10:09:26 +00004653 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004654 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004655 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004656 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
4657 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004658 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004659 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004660 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004661 heredoc_cnt = 0;
4662 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004663 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004664 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00004665 ch = ';';
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004666 /* note: if (is_blank) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004667 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004668 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004669 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004670
4671 /* "cmd}" or "cmd }..." without semicolon or &:
4672 * } is an ordinary char in this case, even inside { cmd; }
4673 * Pathological example: { ""}; } should exec "}" cmd
4674 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004675 if (ch == '}') {
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004676 if (dest.length != 0 /* word} */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004677 || dest.has_quoted_part /* ""} */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004678 ) {
4679 goto ordinary_char;
4680 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004681 if (!IS_NULL_CMD(ctx.command)) { /* cmd } */
4682 /* Generally, there should be semicolon: "cmd; }"
4683 * However, bash allows to omit it if "cmd" is
4684 * a group. Examples:
4685 * { { echo 1; } }
4686 * {(echo 1)}
4687 * { echo 0 >&2 | { echo 1; } }
4688 * { while false; do :; done }
4689 * { case a in b) ;; esac }
4690 */
4691 if (ctx.command->group)
4692 goto term_group;
4693 goto ordinary_char;
4694 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004695 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004696 /* Can't be an end of {cmd}, skip the check */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004697 goto skip_end_trigger;
4698 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004699 }
Denys Vlasenko672a55e2016-11-04 18:46:14 +01004700 term_group:
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004701 if (end_trigger && end_trigger == ch
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004702 && (ch != ';' || heredoc_cnt == 0)
4703#if ENABLE_HUSH_CASE
4704 && (ch != ')'
4705 || ctx.ctx_res_w != RES_MATCH
Denys Vlasenko38292b62010-09-05 14:49:40 +02004706 || (!dest.has_quoted_part && strcmp(dest.data, "esac") == 0)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004707 )
4708#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004709 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004710 if (heredoc_cnt) {
4711 /* This is technically valid:
4712 * { cat <<HERE; }; echo Ok
4713 * heredoc
4714 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004715 * HERE
4716 * but we don't support this.
4717 * We require heredoc to be in enclosing {}/(),
4718 * if any.
4719 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004720 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004721 goto parse_error;
4722 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004723 if (done_word(&dest, &ctx)) {
4724 goto parse_error;
4725 }
4726 done_pipe(&ctx, PIPE_SEQ);
4727 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004728 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenko240c2552009-04-03 03:45:05 +00004729 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00004730 if (!HAS_KEYWORDS
Denys Vlasenko60cb48c2013-01-14 15:57:44 +01004731 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00004732 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004733 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004734#if !BB_MMU
Denys Vlasenkob5be13c2015-09-04 06:22:10 +02004735 debug_printf_parse("as_string2 '%s'\n", ctx.as_string.data);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004736 if (pstring)
4737 *pstring = ctx.as_string.data;
4738 else
4739 o_free_unsafe(&ctx.as_string);
4740#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004741 debug_leave();
4742 debug_printf_parse("parse_stream return %p: "
4743 "end_trigger char found\n",
4744 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004745 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004746 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004747 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004748 skip_end_trigger:
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004749 if (is_blank)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004750 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004751
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004752 /* Catch <, > before deciding whether this word is
4753 * an assignment. a=1 2>z b=2: b=2 is still assignment */
4754 switch (ch) {
4755 case '>':
4756 redir_fd = redirect_opt_num(&dest);
4757 if (done_word(&dest, &ctx)) {
4758 goto parse_error;
4759 }
4760 redir_style = REDIRECT_OVERWRITE;
4761 if (next == '>') {
4762 redir_style = REDIRECT_APPEND;
4763 ch = i_getch(input);
4764 nommu_addchr(&ctx.as_string, ch);
4765 }
4766#if 0
4767 else if (next == '(') {
4768 syntax_error(">(process) not supported");
4769 goto parse_error;
4770 }
4771#endif
4772 if (parse_redirect(&ctx, redir_fd, redir_style, input))
4773 goto parse_error;
4774 continue; /* back to top of while (1) */
4775 case '<':
4776 redir_fd = redirect_opt_num(&dest);
4777 if (done_word(&dest, &ctx)) {
4778 goto parse_error;
4779 }
4780 redir_style = REDIRECT_INPUT;
4781 if (next == '<') {
4782 redir_style = REDIRECT_HEREDOC;
4783 heredoc_cnt++;
4784 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
4785 ch = i_getch(input);
4786 nommu_addchr(&ctx.as_string, ch);
4787 } else if (next == '>') {
4788 redir_style = REDIRECT_IO;
4789 ch = i_getch(input);
4790 nommu_addchr(&ctx.as_string, ch);
4791 }
4792#if 0
4793 else if (next == '(') {
4794 syntax_error("<(process) not supported");
4795 goto parse_error;
4796 }
4797#endif
4798 if (parse_redirect(&ctx, redir_fd, redir_style, input))
4799 goto parse_error;
4800 continue; /* back to top of while (1) */
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004801 case '#':
4802 if (dest.length == 0 && !dest.has_quoted_part) {
4803 /* skip "#comment" */
4804 while (1) {
4805 ch = i_peek(input);
4806 if (ch == EOF || ch == '\n')
4807 break;
4808 i_getch(input);
4809 /* note: we do not add it to &ctx.as_string */
4810 }
4811 nommu_addchr(&ctx.as_string, '\n');
4812 continue; /* back to top of while (1) */
4813 }
4814 break;
4815 case '\\':
4816 if (next == '\n') {
4817 /* It's "\<newline>" */
4818#if !BB_MMU
4819 /* Remove trailing '\' from ctx.as_string */
4820 ctx.as_string.data[--ctx.as_string.length] = '\0';
4821#endif
4822 ch = i_getch(input); /* eat it */
4823 continue; /* back to top of while (1) */
4824 }
4825 break;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004826 }
4827
4828 if (dest.o_assignment == MAYBE_ASSIGNMENT
4829 /* check that we are not in word in "a=1 2>word b=1": */
4830 && !ctx.pending_redirect
4831 ) {
4832 /* ch is a special char and thus this word
4833 * cannot be an assignment */
4834 dest.o_assignment = NOT_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004835 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004836 }
4837
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02004838 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
4839
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004840 switch (ch) {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004841 case '#': /* non-comment #: "echo a#b" etc */
4842 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004843 break;
4844 case '\\':
4845 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004846 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004847 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00004848 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004849 ch = i_getch(input);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004850 /* note: ch != '\n' (that case does not reach this place) */
4851 o_addchr(&dest, '\\');
4852 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
4853 o_addchr(&dest, ch);
4854 nommu_addchr(&ctx.as_string, ch);
4855 /* Example: echo Hello \2>file
4856 * we need to know that word 2 is quoted */
4857 dest.has_quoted_part = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004858 break;
4859 case '$':
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004860 if (!parse_dollar(&ctx.as_string, &dest, input, /*quote_mask:*/ 0)) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004861 debug_printf_parse("parse_stream parse error: "
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004862 "parse_dollar returned 0 (error)\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004863 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004864 }
Eric Andersen25f27032001-04-26 23:22:31 +00004865 break;
4866 case '\'':
Denys Vlasenko38292b62010-09-05 14:49:40 +02004867 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02004868 if (next == '\'' && !ctx.pending_redirect) {
4869 insert_empty_quoted_str_marker:
4870 nommu_addchr(&ctx.as_string, next);
4871 i_getch(input); /* eat second ' */
4872 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4873 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4874 } else {
4875 while (1) {
4876 ch = i_getch(input);
4877 if (ch == EOF) {
4878 syntax_error_unterm_ch('\'');
4879 goto parse_error;
4880 }
4881 nommu_addchr(&ctx.as_string, ch);
4882 if (ch == '\'')
4883 break;
4884 o_addqchr(&dest, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004885 }
Eric Andersen25f27032001-04-26 23:22:31 +00004886 }
Eric Andersen25f27032001-04-26 23:22:31 +00004887 break;
4888 case '"':
Denys Vlasenko38292b62010-09-05 14:49:40 +02004889 dest.has_quoted_part = 1;
Denys Vlasenko6e42b892011-08-01 18:16:43 +02004890 if (next == '"' && !ctx.pending_redirect)
4891 goto insert_empty_quoted_str_marker;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004892 if (dest.o_assignment == NOT_ASSIGNMENT)
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004893 dest.o_expflags |= EXP_FLAG_ESC_GLOB_CHARS;
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004894 if (!encode_string(&ctx.as_string, &dest, input, '"', /*process_bkslash:*/ 1))
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004895 goto parse_error;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004896 dest.o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS;
Eric Andersen25f27032001-04-26 23:22:31 +00004897 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004898#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004899 case '`': {
Denys Vlasenko60a94142011-05-13 20:57:01 +02004900 USE_FOR_NOMMU(unsigned pos;)
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004901
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004902 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4903 o_addchr(&dest, '`');
Denys Vlasenko60a94142011-05-13 20:57:01 +02004904 USE_FOR_NOMMU(pos = dest.length;)
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01004905 if (!add_till_backquote(&dest, input, /*in_dquote:*/ 0))
4906 goto parse_error;
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004907# if !BB_MMU
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004908 o_addstr(&ctx.as_string, dest.data + pos);
4909 o_addchr(&ctx.as_string, '`');
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004910# endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004911 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4912 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00004913 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004914 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004915#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004916 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004917#if ENABLE_HUSH_CASE
4918 case_semi:
4919#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004920 if (done_word(&dest, &ctx)) {
4921 goto parse_error;
4922 }
4923 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004924#if ENABLE_HUSH_CASE
4925 /* Eat multiple semicolons, detect
4926 * whether it means something special */
4927 while (1) {
4928 ch = i_peek(input);
4929 if (ch != ';')
4930 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004931 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004932 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004933 if (ctx.ctx_res_w == RES_CASE_BODY) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004934 ctx.ctx_dsemicolon = 1;
4935 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004936 break;
4937 }
4938 }
4939#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004940 new_cmd:
4941 /* We just finished a cmd. New one may start
4942 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004943 dest.o_assignment = MAYBE_ASSIGNMENT;
Denys Vlasenko29f9b722011-05-14 11:27:36 +02004944 debug_printf_parse("dest.o_assignment='%s'\n", assignment_flag[dest.o_assignment]);
Eric Andersen25f27032001-04-26 23:22:31 +00004945 break;
4946 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004947 if (done_word(&dest, &ctx)) {
4948 goto parse_error;
4949 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004950 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004951 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004952 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004953 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00004954 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004955 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00004956 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004957 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004958 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004959 if (done_word(&dest, &ctx)) {
4960 goto parse_error;
4961 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004962#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004963 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00004964 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004965#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004966 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004967 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004968 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004969 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00004970 } else {
4971 /* we could pick up a file descriptor choice here
4972 * with redirect_opt_num(), but bash doesn't do it.
4973 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004974 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00004975 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004976 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004977 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004978#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00004979 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004980 if (ctx.ctx_res_w == RES_MATCH
4981 && ctx.command->argv == NULL /* not (word|(... */
4982 && dest.length == 0 /* not word(... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004983 && dest.has_quoted_part == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004984 ) {
4985 continue;
4986 }
4987#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004988 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004989 if (parse_group(&dest, &ctx, input, ch) != 0) {
4990 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004991 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004992 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004993 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004994#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004995 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004996 goto case_semi;
4997#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004998 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004999 /* proper use of this character is caught by end_trigger:
5000 * if we see {, we call parse_group(..., end_trigger='}')
5001 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005002 syntax_error_unexpected_ch(ch);
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01005003 G.last_exitcode = 2;
5004 goto parse_error1;
Eric Andersen25f27032001-04-26 23:22:31 +00005005 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005006 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005007 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005008 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005009 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005010
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005011 parse_error:
Denys Vlasenkob05bcaf2017-01-03 11:47:50 +01005012 G.last_exitcode = 1;
5013 parse_error1:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005014 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005015 struct parse_context *pctx;
5016 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005017
5018 /* Clean up allocated tree.
Denys Vlasenko764b2f02009-06-07 16:05:04 +02005019 * Sample for finding leaks on syntax error recovery path.
5020 * Run it from interactive shell, watch pmap `pidof hush`.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005021 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005022 * Samples to catch leaks at execution:
Denys Vlasenko5d5a6112016-11-07 19:36:50 +01005023 * while if (true | { true;}); then echo ok; fi; do break; done
5024 * 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 +00005025 */
5026 pctx = &ctx;
5027 do {
5028 /* Update pipe/command counts,
5029 * otherwise freeing may miss some */
5030 done_pipe(pctx, PIPE_SEQ);
5031 debug_printf_clean("freeing list %p from ctx %p\n",
5032 pctx->list_head, pctx);
5033 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005034 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005035 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005036#if !BB_MMU
5037 o_free_unsafe(&pctx->as_string);
5038#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005039 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005040 if (pctx != &ctx) {
5041 free(pctx);
5042 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005043 IF_HAS_KEYWORDS(pctx = p2;)
5044 } while (HAS_KEYWORDS && pctx);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005045
Denys Vlasenkoa439fa92011-03-30 19:11:46 +02005046 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005047#if !BB_MMU
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005048 if (pstring)
5049 *pstring = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005050#endif
Denys Vlasenkocecbc982011-03-30 18:54:52 +02005051 debug_leave();
5052 return ERR_PTR;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005053 }
Eric Andersen25f27032001-04-26 23:22:31 +00005054}
5055
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005056
5057/*** Execution routines ***/
5058
5059/* Expansion can recurse, need forward decls: */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005060#if !ENABLE_HUSH_BASH_COMPAT
5061/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5062#define expand_string_to_string(str, do_unbackslash) \
5063 expand_string_to_string(str)
5064#endif
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005065static char *expand_string_to_string(const char *str, int do_unbackslash);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005066#if ENABLE_HUSH_TICK
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005067static int process_command_subs(o_string *dest, const char *s);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01005068#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005069
5070/* expand_strvec_to_strvec() takes a list of strings, expands
5071 * all variable references within and returns a pointer to
5072 * a list of expanded strings, possibly with larger number
5073 * of strings. (Think VAR="a b"; echo $VAR).
5074 * This new list is allocated as a single malloc block.
5075 * NULL-terminated list of char* pointers is at the beginning of it,
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005076 * followed by strings themselves.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005077 * Caller can deallocate entire list by single free(list). */
5078
Denys Vlasenko238081f2010-10-03 14:26:26 +02005079/* A horde of its helpers come first: */
5080
5081static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
5082{
5083 while (--len >= 0) {
Denys Vlasenko9e800222010-10-03 14:28:04 +02005084 char c = *str++;
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005085
Denys Vlasenko9e800222010-10-03 14:28:04 +02005086#if ENABLE_HUSH_BRACE_EXPANSION
5087 if (c == '{' || c == '}') {
5088 /* { -> \{, } -> \} */
5089 o_addchr(o, '\\');
Denys Vlasenko957f79f2010-10-03 17:15:50 +02005090 /* And now we want to add { or } and continue:
5091 * o_addchr(o, c);
5092 * continue;
5093 * luckily, just falling throught achieves this.
5094 */
Denys Vlasenko9e800222010-10-03 14:28:04 +02005095 }
5096#endif
5097 o_addchr(o, c);
5098 if (c == '\\') {
Denys Vlasenko238081f2010-10-03 14:26:26 +02005099 /* \z -> \\\z; \<eol> -> \\<eol> */
5100 o_addchr(o, '\\');
5101 if (len) {
5102 len--;
5103 o_addchr(o, '\\');
5104 o_addchr(o, *str++);
5105 }
5106 }
5107 }
5108}
5109
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005110/* Store given string, finalizing the word and starting new one whenever
5111 * we encounter IFS char(s). This is used for expanding variable values.
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005112 * End-of-string does NOT finalize word: think about 'echo -$VAR-'.
5113 * Return in *ended_with_ifs:
5114 * 1 - ended with IFS char, else 0 (this includes case of empty str).
5115 */
5116static int expand_on_ifs(int *ended_with_ifs, o_string *output, int n, const char *str)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005117{
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005118 int last_is_ifs = 0;
5119
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005120 while (1) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005121 int word_len;
5122
5123 if (!*str) /* EOL - do not finalize word */
5124 break;
5125 word_len = strcspn(str, G.ifs);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005126 if (word_len) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005127 /* We have WORD_LEN leading non-IFS chars */
Denys Vlasenko238081f2010-10-03 14:26:26 +02005128 if (!(output->o_expflags & EXP_FLAG_GLOB)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005129 o_addblock(output, str, word_len);
Denys Vlasenko238081f2010-10-03 14:26:26 +02005130 } else {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005131 /* Protect backslashes against globbing up :)
Denys Vlasenkoa769e022010-09-10 10:12:34 +02005132 * Example: "v='\*'; echo b$v" prints "b\*"
5133 * (and does not try to glob on "*")
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005134 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005135 o_addblock_duplicate_backslash(output, str, word_len);
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005136 /*/ Why can't we do it easier? */
5137 /*o_addblock(output, str, word_len); - WRONG: "v='\*'; echo Z$v" prints "Z*" instead of "Z\*" */
5138 /*o_addqblock(output, str, word_len); - WRONG: "v='*'; echo Z$v" prints "Z*" instead of Z* files */
5139 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005140 last_is_ifs = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005141 str += word_len;
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005142 if (!*str) /* EOL - do not finalize word */
5143 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005144 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005145
5146 /* We know str here points to at least one IFS char */
5147 last_is_ifs = 1;
5148 str += strspn(str, G.ifs); /* skip IFS chars */
5149 if (!*str) /* EOL - do not finalize word */
5150 break;
5151
5152 /* Start new word... but not always! */
5153 /* Case "v=' a'; echo ''$v": we do need to finalize empty word: */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005154 if (output->has_quoted_part
5155 /* Case "v=' a'; echo $v":
5156 * here nothing precedes the space in $v expansion,
5157 * therefore we should not finish the word
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005158 * (IOW: if there *is* word to finalize, only then do it):
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005159 */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005160 || (n > 0 && output->data[output->length - 1])
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005161 ) {
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005162 o_addchr(output, '\0');
5163 debug_print_list("expand_on_ifs", output, n);
5164 n = o_save_ptr(output, n);
5165 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005166 }
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005167
5168 if (ended_with_ifs)
5169 *ended_with_ifs = last_is_ifs;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005170 debug_print_list("expand_on_ifs[1]", output, n);
5171 return n;
5172}
5173
5174/* Helper to expand $((...)) and heredoc body. These act as if
5175 * they are in double quotes, with the exception that they are not :).
5176 * Just the rules are similar: "expand only $var and `cmd`"
5177 *
5178 * Returns malloced string.
5179 * As an optimization, we return NULL if expansion is not needed.
5180 */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005181#if !ENABLE_HUSH_BASH_COMPAT
5182/* only ${var/pattern/repl} (its pattern part) needs additional mode */
5183#define encode_then_expand_string(str, process_bkslash, do_unbackslash) \
5184 encode_then_expand_string(str)
5185#endif
5186static char *encode_then_expand_string(const char *str, int process_bkslash, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005187{
5188 char *exp_str;
5189 struct in_str input;
5190 o_string dest = NULL_O_STRING;
5191
5192 if (!strchr(str, '$')
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02005193 && !strchr(str, '\\')
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005194#if ENABLE_HUSH_TICK
5195 && !strchr(str, '`')
5196#endif
5197 ) {
5198 return NULL;
5199 }
5200
5201 /* We need to expand. Example:
5202 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
5203 */
5204 setup_string_in_str(&input, str);
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005205 encode_string(NULL, &dest, &input, EOF, process_bkslash);
Denys Vlasenko3eab24e2011-03-24 05:25:59 +01005206//TODO: error check (encode_string returns 0 on error)?
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005207 //bb_error_msg("'%s' -> '%s'", str, dest.data);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005208 exp_str = expand_string_to_string(dest.data, /*unbackslash:*/ do_unbackslash);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005209 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
5210 o_free_unsafe(&dest);
5211 return exp_str;
5212}
5213
Denys Vlasenko0b883582016-12-23 16:49:07 +01005214#if ENABLE_FEATURE_SH_MATH
Denys Vlasenko063847d2010-09-15 13:33:02 +02005215static arith_t expand_and_evaluate_arith(const char *arg, const char **errmsg_p)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005216{
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005217 arith_state_t math_state;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005218 arith_t res;
5219 char *exp_str;
5220
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005221 math_state.lookupvar = get_local_var_value;
5222 math_state.setvar = set_local_var_from_halves;
5223 //math_state.endofname = endofname;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005224 exp_str = encode_then_expand_string(arg, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenko06d44d72010-09-13 12:49:03 +02005225 res = arith(&math_state, exp_str ? exp_str : arg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005226 free(exp_str);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005227 if (errmsg_p)
5228 *errmsg_p = math_state.errmsg;
5229 if (math_state.errmsg)
5230 die_if_script(math_state.errmsg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005231 return res;
5232}
5233#endif
5234
5235#if ENABLE_HUSH_BASH_COMPAT
5236/* ${var/[/]pattern[/repl]} helpers */
5237static char *strstr_pattern(char *val, const char *pattern, int *size)
5238{
5239 while (1) {
5240 char *end = scan_and_match(val, pattern, SCAN_MOVE_FROM_RIGHT + SCAN_MATCH_LEFT_HALF);
5241 debug_printf_varexp("val:'%s' pattern:'%s' end:'%s'\n", val, pattern, end);
5242 if (end) {
5243 *size = end - val;
5244 return val;
5245 }
5246 if (*val == '\0')
5247 return NULL;
5248 /* Optimization: if "*pat" did not match the start of "string",
5249 * we know that "tring", "ring" etc will not match too:
5250 */
5251 if (pattern[0] == '*')
5252 return NULL;
5253 val++;
5254 }
5255}
5256static char *replace_pattern(char *val, const char *pattern, const char *repl, char exp_op)
5257{
5258 char *result = NULL;
5259 unsigned res_len = 0;
5260 unsigned repl_len = strlen(repl);
5261
5262 while (1) {
5263 int size;
5264 char *s = strstr_pattern(val, pattern, &size);
5265 if (!s)
5266 break;
5267
5268 result = xrealloc(result, res_len + (s - val) + repl_len + 1);
5269 memcpy(result + res_len, val, s - val);
5270 res_len += s - val;
5271 strcpy(result + res_len, repl);
5272 res_len += repl_len;
5273 debug_printf_varexp("val:'%s' s:'%s' result:'%s'\n", val, s, result);
5274
5275 val = s + size;
5276 if (exp_op == '/')
5277 break;
5278 }
5279 if (val[0] && result) {
5280 result = xrealloc(result, res_len + strlen(val) + 1);
5281 strcpy(result + res_len, val);
5282 debug_printf_varexp("val:'%s' result:'%s'\n", val, result);
5283 }
5284 debug_printf_varexp("result:'%s'\n", result);
5285 return result;
5286}
5287#endif
5288
5289/* Helper:
5290 * Handles <SPECIAL_VAR_SYMBOL>varname...<SPECIAL_VAR_SYMBOL> construct.
5291 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005292static NOINLINE const char *expand_one_var(char **to_be_freed_pp, char *arg, char **pp)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005293{
5294 const char *val = NULL;
5295 char *to_be_freed = NULL;
5296 char *p = *pp;
5297 char *var;
5298 char first_char;
5299 char exp_op;
5300 char exp_save = exp_save; /* for compiler */
5301 char *exp_saveptr; /* points to expansion operator */
5302 char *exp_word = exp_word; /* for compiler */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005303 char arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005304
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005305 *p = '\0'; /* replace trailing SPECIAL_VAR_SYMBOL */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005306 var = arg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005307 exp_saveptr = arg[1] ? strchr(VAR_ENCODED_SUBST_OPS, arg[1]) : NULL;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005308 arg0 = arg[0];
5309 first_char = arg[0] = arg0 & 0x7f;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005310 exp_op = 0;
5311
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005312 if (first_char == '#' /* ${#... */
5313 && arg[1] && !exp_saveptr /* not ${#} and not ${#<op_char>...} */
5314 ) {
5315 /* It must be length operator: ${#var} */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005316 var++;
5317 exp_op = 'L';
5318 } else {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005319 /* Maybe handle parameter expansion */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005320 if (exp_saveptr /* if 2nd char is one of expansion operators */
5321 && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */
5322 ) {
5323 /* ${?:0}, ${#[:]%0} etc */
5324 exp_saveptr = var + 1;
5325 } else {
5326 /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */
5327 exp_saveptr = var+1 + strcspn(var+1, VAR_ENCODED_SUBST_OPS);
5328 }
5329 exp_op = exp_save = *exp_saveptr;
5330 if (exp_op) {
5331 exp_word = exp_saveptr + 1;
5332 if (exp_op == ':') {
5333 exp_op = *exp_word++;
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005334//TODO: try ${var:} and ${var:bogus} in non-bash config
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005335 if (ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005336 && (!exp_op || !strchr(MINUS_PLUS_EQUAL_QUESTION, exp_op))
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005337 ) {
5338 /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */
5339 exp_op = ':';
5340 exp_word--;
5341 }
5342 }
5343 *exp_saveptr = '\0';
5344 } /* else: it's not an expansion op, but bare ${var} */
5345 }
5346
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005347 /* Look up the variable in question */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005348 if (isdigit(var[0])) {
Denys Vlasenko77a7b552010-09-09 12:40:03 +02005349 /* parse_dollar should have vetted var for us */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005350 int n = xatoi_positive(var);
5351 if (n < G.global_argc)
5352 val = G.global_argv[n];
5353 /* else val remains NULL: $N with too big N */
5354 } else {
5355 switch (var[0]) {
5356 case '$': /* pid */
5357 val = utoa(G.root_pid);
5358 break;
5359 case '!': /* bg pid */
5360 val = G.last_bg_pid ? utoa(G.last_bg_pid) : "";
5361 break;
5362 case '?': /* exitcode */
5363 val = utoa(G.last_exitcode);
5364 break;
5365 case '#': /* argc */
5366 val = utoa(G.global_argc ? G.global_argc-1 : 0);
5367 break;
5368 default:
5369 val = get_local_var_value(var);
5370 }
5371 }
5372
5373 /* Handle any expansions */
5374 if (exp_op == 'L') {
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005375 reinit_unicode_for_hush();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005376 debug_printf_expand("expand: length(%s)=", val);
Denys Vlasenkoc538d5b2014-08-13 09:57:44 +02005377 val = utoa(val ? unicode_strlen(val) : 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005378 debug_printf_expand("%s\n", val);
5379 } else if (exp_op) {
5380 if (exp_op == '%' || exp_op == '#') {
5381 /* Standard-mandated substring removal ops:
5382 * ${parameter%word} - remove smallest suffix pattern
5383 * ${parameter%%word} - remove largest suffix pattern
5384 * ${parameter#word} - remove smallest prefix pattern
5385 * ${parameter##word} - remove largest prefix pattern
5386 *
5387 * Word is expanded to produce a glob pattern.
5388 * Then var's value is matched to it and matching part removed.
5389 */
5390 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005391 char *t;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005392 char *exp_exp_word;
5393 char *loc;
5394 unsigned scan_flags = pick_scan(exp_op, *exp_word);
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02005395 if (exp_op == *exp_word) /* ## or %% */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005396 exp_word++;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005397 exp_exp_word = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005398 if (exp_exp_word)
5399 exp_word = exp_exp_word;
Denys Vlasenko4f870492010-09-10 11:06:01 +02005400 /* HACK ALERT. We depend here on the fact that
5401 * G.global_argv and results of utoa and get_local_var_value
5402 * are actually in writable memory:
5403 * scan_and_match momentarily stores NULs there. */
5404 t = (char*)val;
5405 loc = scan_and_match(t, exp_word, scan_flags);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005406 //bb_error_msg("op:%c str:'%s' pat:'%s' res:'%s'",
Denys Vlasenko4f870492010-09-10 11:06:01 +02005407 // exp_op, t, exp_word, loc);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005408 free(exp_exp_word);
5409 if (loc) { /* match was found */
5410 if (scan_flags & SCAN_MATCH_LEFT_HALF) /* #[#] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005411 val = loc; /* take right part */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005412 else /* %[%] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02005413 val = to_be_freed = xstrndup(val, loc - val); /* left */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005414 }
5415 }
5416 }
5417#if ENABLE_HUSH_BASH_COMPAT
5418 else if (exp_op == '/' || exp_op == '\\') {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005419 /* It's ${var/[/]pattern[/repl]} thing.
5420 * Note that in encoded form it has TWO parts:
5421 * var/pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenko4f870492010-09-10 11:06:01 +02005422 * and if // is used, it is encoded as \:
5423 * var\pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005424 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005425 /* Empty variable always gives nothing: */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005426 // "v=''; echo ${v/*/w}" prints "", not "w"
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005427 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02005428 /* pattern uses non-standard expansion.
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005429 * repl should be unbackslashed and globbed
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005430 * by the usual expansion rules:
5431 * >az; >bz;
5432 * v='a bz'; echo "${v/a*z/a*z}" prints "a*z"
5433 * v='a bz'; echo "${v/a*z/\z}" prints "\z"
5434 * v='a bz'; echo ${v/a*z/a*z} prints "az"
5435 * v='a bz'; echo ${v/a*z/\z} prints "z"
5436 * (note that a*z _pattern_ is never globbed!)
5437 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005438 char *pattern, *repl, *t;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005439 pattern = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005440 if (!pattern)
5441 pattern = xstrdup(exp_word);
5442 debug_printf_varexp("pattern:'%s'->'%s'\n", exp_word, pattern);
5443 *p++ = SPECIAL_VAR_SYMBOL;
5444 exp_word = p;
5445 p = strchr(p, SPECIAL_VAR_SYMBOL);
5446 *p = '\0';
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005447 repl = encode_then_expand_string(exp_word, /*process_bkslash:*/ arg0 & 0x80, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005448 debug_printf_varexp("repl:'%s'->'%s'\n", exp_word, repl);
5449 /* HACK ALERT. We depend here on the fact that
5450 * G.global_argv and results of utoa and get_local_var_value
5451 * are actually in writable memory:
5452 * replace_pattern momentarily stores NULs there. */
5453 t = (char*)val;
5454 to_be_freed = replace_pattern(t,
5455 pattern,
5456 (repl ? repl : exp_word),
5457 exp_op);
5458 if (to_be_freed) /* at least one replace happened */
5459 val = to_be_freed;
5460 free(pattern);
5461 free(repl);
5462 }
5463 }
5464#endif
5465 else if (exp_op == ':') {
Denys Vlasenko0b883582016-12-23 16:49:07 +01005466#if ENABLE_HUSH_BASH_COMPAT && ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005467 /* It's ${var:N[:M]} bashism.
5468 * Note that in encoded form it has TWO parts:
5469 * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL>
5470 */
5471 arith_t beg, len;
Denys Vlasenko063847d2010-09-15 13:33:02 +02005472 const char *errmsg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005473
Denys Vlasenko063847d2010-09-15 13:33:02 +02005474 beg = expand_and_evaluate_arith(exp_word, &errmsg);
5475 if (errmsg)
5476 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005477 debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg);
5478 *p++ = SPECIAL_VAR_SYMBOL;
5479 exp_word = p;
5480 p = strchr(p, SPECIAL_VAR_SYMBOL);
5481 *p = '\0';
Denys Vlasenko063847d2010-09-15 13:33:02 +02005482 len = expand_and_evaluate_arith(exp_word, &errmsg);
5483 if (errmsg)
5484 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005485 debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005486 if (len >= 0) { /* bash compat: len < 0 is illegal */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005487 if (beg < 0) /* bash compat */
5488 beg = 0;
5489 debug_printf_varexp("from val:'%s'\n", val);
Denys Vlasenkob771c652010-09-13 00:34:26 +02005490 if (len == 0 || !val || beg >= strlen(val)) {
Denys Vlasenko063847d2010-09-15 13:33:02 +02005491 arith_err:
Denys Vlasenkob771c652010-09-13 00:34:26 +02005492 val = NULL;
5493 } else {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005494 /* Paranoia. What if user entered 9999999999999
5495 * which fits in arith_t but not int? */
5496 if (len >= INT_MAX)
5497 len = INT_MAX;
5498 val = to_be_freed = xstrndup(val + beg, len);
5499 }
5500 debug_printf_varexp("val:'%s'\n", val);
5501 } else
5502#endif
5503 {
5504 die_if_script("malformed ${%s:...}", var);
Denys Vlasenkob771c652010-09-13 00:34:26 +02005505 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005506 }
5507 } else { /* one of "-=+?" */
5508 /* Standard-mandated substitution ops:
5509 * ${var?word} - indicate error if unset
5510 * If var is unset, word (or a message indicating it is unset
5511 * if word is null) is written to standard error
5512 * and the shell exits with a non-zero exit status.
5513 * Otherwise, the value of var is substituted.
5514 * ${var-word} - use default value
5515 * If var is unset, word is substituted.
5516 * ${var=word} - assign and use default value
5517 * If var is unset, word is assigned to var.
5518 * In all cases, final value of var is substituted.
5519 * ${var+word} - use alternative value
5520 * If var is unset, null is substituted.
5521 * Otherwise, word is substituted.
5522 *
5523 * Word is subjected to tilde expansion, parameter expansion,
5524 * command substitution, and arithmetic expansion.
5525 * If word is not needed, it is not expanded.
5526 *
5527 * Colon forms (${var:-word}, ${var:=word} etc) do the same,
5528 * but also treat null var as if it is unset.
5529 */
5530 int use_word = (!val || ((exp_save == ':') && !val[0]));
5531 if (exp_op == '+')
5532 use_word = !use_word;
5533 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
5534 (exp_save == ':') ? "true" : "false", use_word);
5535 if (use_word) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005536 to_be_freed = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005537 if (to_be_freed)
5538 exp_word = to_be_freed;
5539 if (exp_op == '?') {
5540 /* mimic bash message */
5541 die_if_script("%s: %s",
5542 var,
5543 exp_word[0] ? exp_word : "parameter null or not set"
5544 );
5545//TODO: how interactive bash aborts expansion mid-command?
5546 } else {
5547 val = exp_word;
5548 }
5549
5550 if (exp_op == '=') {
5551 /* ${var=[word]} or ${var:=[word]} */
5552 if (isdigit(var[0]) || var[0] == '#') {
5553 /* mimic bash message */
5554 die_if_script("$%s: cannot assign in this way", var);
5555 val = NULL;
5556 } else {
5557 char *new_var = xasprintf("%s=%s", var, val);
5558 set_local_var(new_var, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
5559 }
5560 }
5561 }
5562 } /* one of "-=+?" */
5563
5564 *exp_saveptr = exp_save;
5565 } /* if (exp_op) */
5566
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005567 arg[0] = arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005568
5569 *pp = p;
5570 *to_be_freed_pp = to_be_freed;
5571 return val;
5572}
5573
5574/* Expand all variable references in given string, adding words to list[]
5575 * at n, n+1,... positions. Return updated n (so that list[n] is next one
5576 * to be filled). This routine is extremely tricky: has to deal with
5577 * variables/parameters with whitespace, $* and $@, and constructs like
5578 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005579static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005580{
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005581 /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005582 * expansion of right-hand side of assignment == 1-element expand.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005583 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005584 char cant_be_null = 0; /* only bit 0x80 matters */
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005585 int ended_in_ifs = 0; /* did last unquoted expansion end with IFS chars? */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005586 char *p;
5587
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005588 debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg,
5589 !!(output->o_expflags & EXP_FLAG_SINGLEWORD));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005590 debug_print_list("expand_vars_to_list", output, n);
5591 n = o_save_ptr(output, n);
5592 debug_print_list("expand_vars_to_list[0]", output, n);
5593
5594 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
5595 char first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005596 char *to_be_freed = NULL;
5597 const char *val = NULL;
5598#if ENABLE_HUSH_TICK
5599 o_string subst_result = NULL_O_STRING;
5600#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01005601#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005602 char arith_buf[sizeof(arith_t)*3 + 2];
5603#endif
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005604
5605 if (ended_in_ifs) {
5606 o_addchr(output, '\0');
5607 n = o_save_ptr(output, n);
5608 ended_in_ifs = 0;
5609 }
5610
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005611 o_addblock(output, arg, p - arg);
5612 debug_print_list("expand_vars_to_list[1]", output, n);
5613 arg = ++p;
5614 p = strchr(p, SPECIAL_VAR_SYMBOL);
5615
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005616 /* Fetch special var name (if it is indeed one of them)
5617 * and quote bit, force the bit on if singleword expansion -
5618 * important for not getting v=$@ expand to many words. */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005619 first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005620
5621 /* Is this variable quoted and thus expansion can't be null?
5622 * "$@" is special. Even if quoted, it can still
5623 * expand to nothing (not even an empty string),
5624 * thus it is excluded. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005625 if ((first_ch & 0x7f) != '@')
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005626 cant_be_null |= first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005627
5628 switch (first_ch & 0x7f) {
5629 /* Highest bit in first_ch indicates that var is double-quoted */
5630 case '*':
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005631 case '@': {
5632 int i;
5633 if (!G.global_argv[1])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005634 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005635 i = 1;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005636 cant_be_null |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005637 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005638 while (G.global_argv[i]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005639 n = expand_on_ifs(NULL, output, n, G.global_argv[i]);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005640 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
5641 if (G.global_argv[i++][0] && G.global_argv[i]) {
5642 /* this argv[] is not empty and not last:
5643 * put terminating NUL, start new word */
5644 o_addchr(output, '\0');
5645 debug_print_list("expand_vars_to_list[2]", output, n);
5646 n = o_save_ptr(output, n);
5647 debug_print_list("expand_vars_to_list[3]", output, n);
5648 }
5649 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005650 } else
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005651 /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....'
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005652 * and in this case should treat it like '$*' - see 'else...' below */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005653 if (first_ch == ('@'|0x80) /* quoted $@ */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005654 && !(output->o_expflags & EXP_FLAG_SINGLEWORD) /* not v="$@" case */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005655 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005656 while (1) {
5657 o_addQstr(output, G.global_argv[i]);
5658 if (++i >= G.global_argc)
5659 break;
5660 o_addchr(output, '\0');
5661 debug_print_list("expand_vars_to_list[4]", output, n);
5662 n = o_save_ptr(output, n);
5663 }
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005664 } else { /* quoted $* (or v="$@" case): add as one word */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005665 while (1) {
5666 o_addQstr(output, G.global_argv[i]);
5667 if (!G.global_argv[++i])
5668 break;
5669 if (G.ifs[0])
5670 o_addchr(output, G.ifs[0]);
5671 }
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005672 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005673 }
5674 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005675 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005676 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
5677 /* "Empty variable", used to make "" etc to not disappear */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005678 output->has_quoted_part = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005679 arg++;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005680 cant_be_null = 0x80;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005681 break;
5682#if ENABLE_HUSH_TICK
5683 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005684 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005685 arg++;
5686 /* Can't just stuff it into output o_string,
5687 * expanded result may need to be globbed
5688 * and $IFS-splitted */
5689 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
5690 G.last_exitcode = process_command_subs(&subst_result, arg);
5691 debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
5692 val = subst_result.data;
5693 goto store_val;
5694#endif
Denys Vlasenko0b883582016-12-23 16:49:07 +01005695#if ENABLE_FEATURE_SH_MATH
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005696 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
5697 arith_t res;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005698
5699 arg++; /* skip '+' */
5700 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
5701 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005702 res = expand_and_evaluate_arith(arg, NULL);
Denys Vlasenkobed7c812010-09-16 11:50:46 +02005703 debug_printf_subst("ARITH RES '"ARITH_FMT"'\n", res);
5704 sprintf(arith_buf, ARITH_FMT, res);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005705 val = arith_buf;
5706 break;
5707 }
5708#endif
5709 default:
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005710 val = expand_one_var(&to_be_freed, arg, &p);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005711 IF_HUSH_TICK(store_val:)
5712 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005713 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val,
5714 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005715 if (val && val[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005716 n = expand_on_ifs(&ended_in_ifs, output, n, val);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005717 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005718 }
5719 } else { /* quoted $VAR, val will be appended below */
Denys Vlasenko4fb53fb2011-08-01 14:06:20 +02005720 output->has_quoted_part = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005721 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val,
5722 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005723 }
5724 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005725 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
5726
5727 if (val && val[0]) {
5728 o_addQstr(output, val);
5729 }
5730 free(to_be_freed);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005731
5732 /* Restore NULL'ed SPECIAL_VAR_SYMBOL.
5733 * Do the check to avoid writing to a const string. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005734 if (*p != SPECIAL_VAR_SYMBOL)
5735 *p = SPECIAL_VAR_SYMBOL;
5736
5737#if ENABLE_HUSH_TICK
5738 o_free(&subst_result);
5739#endif
5740 arg = ++p;
5741 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
5742
5743 if (arg[0]) {
Denys Vlasenko6e42b892011-08-01 18:16:43 +02005744 if (ended_in_ifs) {
5745 o_addchr(output, '\0');
5746 n = o_save_ptr(output, n);
5747 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005748 debug_print_list("expand_vars_to_list[a]", output, n);
5749 /* this part is literal, and it was already pre-quoted
5750 * if needed (much earlier), do not use o_addQstr here! */
5751 o_addstr_with_NUL(output, arg);
5752 debug_print_list("expand_vars_to_list[b]", output, n);
5753 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005754 && !(cant_be_null & 0x80) /* and all vars were not quoted. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005755 ) {
5756 n--;
5757 /* allow to reuse list[n] later without re-growth */
5758 output->has_empty_slot = 1;
5759 } else {
5760 o_addchr(output, '\0');
5761 }
5762
5763 return n;
5764}
5765
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005766static char **expand_variables(char **argv, unsigned expflags)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005767{
5768 int n;
5769 char **list;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005770 o_string output = NULL_O_STRING;
5771
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005772 output.o_expflags = expflags;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005773
5774 n = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005775 while (*argv) {
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005776 n = expand_vars_to_list(&output, n, *argv);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005777 argv++;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005778 }
5779 debug_print_list("expand_variables", &output, n);
5780
5781 /* output.data (malloced in one block) gets returned in "list" */
5782 list = o_finalize_list(&output, n);
5783 debug_print_strings("expand_variables[1]", list);
5784 return list;
5785}
5786
5787static char **expand_strvec_to_strvec(char **argv)
5788{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005789 return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005790}
5791
5792#if ENABLE_HUSH_BASH_COMPAT
5793static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
5794{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005795 return expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005796}
5797#endif
5798
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005799/* Used for expansion of right hand of assignments,
5800 * $((...)), heredocs, variable espansion parts.
5801 *
5802 * NB: should NOT do globbing!
5803 * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*"
5804 */
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005805static char *expand_string_to_string(const char *str, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005806{
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005807#if !ENABLE_HUSH_BASH_COMPAT
5808 const int do_unbackslash = 1;
5809#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005810 char *argv[2], **list;
5811
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005812 debug_printf_expand("string_to_string<='%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005813 /* This is generally an optimization, but it also
5814 * handles "", which otherwise trips over !list[0] check below.
5815 * (is this ever happens that we actually get str="" here?)
5816 */
5817 if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) {
5818 //TODO: Can use on strings with \ too, just unbackslash() them?
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005819 debug_printf_expand("string_to_string(fast)=>'%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005820 return xstrdup(str);
5821 }
5822
5823 argv[0] = (char*)str;
5824 argv[1] = NULL;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005825 list = expand_variables(argv, do_unbackslash
5826 ? EXP_FLAG_ESC_GLOB_CHARS | EXP_FLAG_SINGLEWORD
5827 : EXP_FLAG_SINGLEWORD
5828 );
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005829 if (HUSH_DEBUG)
5830 if (!list[0] || list[1])
5831 bb_error_msg_and_die("BUG in varexp2");
5832 /* actually, just move string 2*sizeof(char*) bytes back */
5833 overlapping_strcpy((char*)list, list[0]);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005834 if (do_unbackslash)
5835 unbackslash((char*)list);
5836 debug_printf_expand("string_to_string=>'%s'\n", (char*)list);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005837 return (char*)list;
5838}
5839
5840/* Used for "eval" builtin */
5841static char* expand_strvec_to_string(char **argv)
5842{
5843 char **list;
5844
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005845 list = expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005846 /* Convert all NULs to spaces */
5847 if (list[0]) {
5848 int n = 1;
5849 while (list[n]) {
5850 if (HUSH_DEBUG)
5851 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
5852 bb_error_msg_and_die("BUG in varexp3");
5853 /* bash uses ' ' regardless of $IFS contents */
5854 list[n][-1] = ' ';
5855 n++;
5856 }
5857 }
Denys Vlasenko78c9c732016-09-29 01:44:17 +02005858 overlapping_strcpy((char*)list, list[0] ? list[0] : "");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005859 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
5860 return (char*)list;
5861}
5862
5863static char **expand_assignments(char **argv, int count)
5864{
5865 int i;
5866 char **p;
5867
5868 G.expanded_assignments = p = NULL;
5869 /* Expand assignments into one string each */
5870 for (i = 0; i < count; i++) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005871 G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i], /*unbackslash:*/ 1));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005872 }
5873 G.expanded_assignments = NULL;
5874 return p;
5875}
5876
5877
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02005878static void switch_off_special_sigs(unsigned mask)
5879{
5880 unsigned sig = 0;
5881 while ((mask >>= 1) != 0) {
5882 sig++;
5883 if (!(mask & 1))
5884 continue;
5885 if (G.traps) {
5886 if (G.traps[sig] && !G.traps[sig][0])
5887 /* trap is '', has to remain SIG_IGN */
5888 continue;
5889 free(G.traps[sig]);
5890 G.traps[sig] = NULL;
5891 }
5892 /* We are here only if no trap or trap was not '' */
Denys Vlasenko0806e402011-05-12 23:06:20 +02005893 install_sighandler(sig, SIG_DFL);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02005894 }
5895}
5896
Denys Vlasenkob347df92011-08-09 22:49:15 +02005897#if BB_MMU
5898/* never called */
5899void re_execute_shell(char ***to_free, const char *s,
5900 char *g_argv0, char **g_argv,
5901 char **builtin_argv) NORETURN;
5902
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005903static void reset_traps_to_defaults(void)
5904{
5905 /* This function is always called in a child shell
5906 * after fork (not vfork, NOMMU doesn't use this function).
5907 */
5908 unsigned sig;
5909 unsigned mask;
5910
5911 /* Child shells are not interactive.
5912 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
5913 * Testcase: (while :; do :; done) + ^Z should background.
5914 * Same goes for SIGTERM, SIGHUP, SIGINT.
5915 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02005916 mask = (G.special_sig_mask & SPECIAL_INTERACTIVE_SIGS) | G_fatal_sig_mask;
5917 if (!G.traps && !mask)
5918 return; /* already no traps and no special sigs */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005919
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02005920 /* Switch off special sigs */
5921 switch_off_special_sigs(mask);
5922#if ENABLE_HUSH_JOB
5923 G_fatal_sig_mask = 0;
5924#endif
Denys Vlasenko10c01312011-05-11 11:49:21 +02005925 G.special_sig_mask &= ~SPECIAL_INTERACTIVE_SIGS;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02005926 /* SIGQUIT,SIGCHLD and maybe SPECIAL_JOBSTOP_SIGS
5927 * remain set in G.special_sig_mask */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005928
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02005929 if (!G.traps)
5930 return;
5931
5932 /* Reset all sigs to default except ones with empty traps */
5933 for (sig = 0; sig < NSIG; sig++) {
5934 if (!G.traps[sig])
5935 continue; /* no trap: nothing to do */
5936 if (!G.traps[sig][0])
5937 continue; /* empty trap: has to remain SIG_IGN */
5938 /* sig has non-empty trap, reset it: */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005939 free(G.traps[sig]);
5940 G.traps[sig] = NULL;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02005941 /* There is no signal for trap 0 (EXIT) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005942 if (sig == 0)
5943 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02005944 install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005945 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005946}
5947
5948#else /* !BB_MMU */
5949
5950static void re_execute_shell(char ***to_free, const char *s,
5951 char *g_argv0, char **g_argv,
5952 char **builtin_argv) NORETURN;
5953static void re_execute_shell(char ***to_free, const char *s,
5954 char *g_argv0, char **g_argv,
5955 char **builtin_argv)
5956{
5957# define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
5958 /* delims + 2 * (number of bytes in printed hex numbers) */
5959 char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
5960 char *heredoc_argv[4];
5961 struct variable *cur;
5962# if ENABLE_HUSH_FUNCTIONS
5963 struct function *funcp;
5964# endif
5965 char **argv, **pp;
5966 unsigned cnt;
5967 unsigned long long empty_trap_mask;
5968
5969 if (!g_argv0) { /* heredoc */
5970 argv = heredoc_argv;
5971 argv[0] = (char *) G.argv0_for_re_execing;
5972 argv[1] = (char *) "-<";
5973 argv[2] = (char *) s;
5974 argv[3] = NULL;
5975 pp = &argv[3]; /* used as pointer to empty environment */
5976 goto do_exec;
5977 }
5978
5979 cnt = 0;
5980 pp = builtin_argv;
5981 if (pp) while (*pp++)
5982 cnt++;
5983
5984 empty_trap_mask = 0;
5985 if (G.traps) {
5986 int sig;
5987 for (sig = 1; sig < NSIG; sig++) {
5988 if (G.traps[sig] && !G.traps[sig][0])
5989 empty_trap_mask |= 1LL << sig;
5990 }
5991 }
5992
5993 sprintf(param_buf, NOMMU_HACK_FMT
5994 , (unsigned) G.root_pid
5995 , (unsigned) G.root_ppid
5996 , (unsigned) G.last_bg_pid
5997 , (unsigned) G.last_exitcode
5998 , cnt
5999 , empty_trap_mask
6000 IF_HUSH_LOOPS(, G.depth_of_loop)
6001 );
6002# undef NOMMU_HACK_FMT
6003 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
6004 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
6005 */
6006 cnt += 6;
6007 for (cur = G.top_var; cur; cur = cur->next) {
6008 if (!cur->flg_export || cur->flg_read_only)
6009 cnt += 2;
6010 }
6011# if ENABLE_HUSH_FUNCTIONS
6012 for (funcp = G.top_func; funcp; funcp = funcp->next)
6013 cnt += 3;
6014# endif
6015 pp = g_argv;
6016 while (*pp++)
6017 cnt++;
6018 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
6019 *pp++ = (char *) G.argv0_for_re_execing;
6020 *pp++ = param_buf;
6021 for (cur = G.top_var; cur; cur = cur->next) {
6022 if (strcmp(cur->varstr, hush_version_str) == 0)
6023 continue;
6024 if (cur->flg_read_only) {
6025 *pp++ = (char *) "-R";
6026 *pp++ = cur->varstr;
6027 } else if (!cur->flg_export) {
6028 *pp++ = (char *) "-V";
6029 *pp++ = cur->varstr;
6030 }
6031 }
6032# if ENABLE_HUSH_FUNCTIONS
6033 for (funcp = G.top_func; funcp; funcp = funcp->next) {
6034 *pp++ = (char *) "-F";
6035 *pp++ = funcp->name;
6036 *pp++ = funcp->body_as_string;
6037 }
6038# endif
6039 /* We can pass activated traps here. Say, -Tnn:trap_string
6040 *
6041 * However, POSIX says that subshells reset signals with traps
6042 * to SIG_DFL.
6043 * I tested bash-3.2 and it not only does that with true subshells
6044 * of the form ( list ), but with any forked children shells.
6045 * I set trap "echo W" WINCH; and then tried:
6046 *
6047 * { echo 1; sleep 20; echo 2; } &
6048 * while true; do echo 1; sleep 20; echo 2; break; done &
6049 * true | { echo 1; sleep 20; echo 2; } | cat
6050 *
6051 * In all these cases sending SIGWINCH to the child shell
6052 * did not run the trap. If I add trap "echo V" WINCH;
6053 * _inside_ group (just before echo 1), it works.
6054 *
6055 * I conclude it means we don't need to pass active traps here.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006056 */
6057 *pp++ = (char *) "-c";
6058 *pp++ = (char *) s;
6059 if (builtin_argv) {
6060 while (*++builtin_argv)
6061 *pp++ = *builtin_argv;
6062 *pp++ = (char *) "";
6063 }
6064 *pp++ = g_argv0;
6065 while (*g_argv)
6066 *pp++ = *g_argv++;
6067 /* *pp = NULL; - is already there */
6068 pp = environ;
6069
6070 do_exec:
6071 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02006072 /* Don't propagate SIG_IGN to the child */
6073 if (SPECIAL_JOBSTOP_SIGS != 0)
6074 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006075 execve(bb_busybox_exec_path, argv, pp);
6076 /* Fallback. Useful for init=/bin/hush usage etc */
6077 if (argv[0][0] == '/')
6078 execve(argv[0], argv, pp);
6079 xfunc_error_retval = 127;
6080 bb_error_msg_and_die("can't re-execute the shell");
6081}
6082#endif /* !BB_MMU */
6083
6084
6085static int run_and_free_list(struct pipe *pi);
6086
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006087/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006088 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
6089 * end_trigger controls how often we stop parsing
6090 * NUL: parse all, execute, return
6091 * ';': parse till ';' or newline, execute, repeat till EOF
6092 */
6093static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00006094{
Denys Vlasenko00243b02009-11-16 02:00:03 +01006095 /* Why we need empty flag?
6096 * An obscure corner case "false; ``; echo $?":
6097 * empty command in `` should still set $? to 0.
6098 * But we can't just set $? to 0 at the start,
6099 * this breaks "false; echo `echo $?`" case.
6100 */
6101 bool empty = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006102 while (1) {
6103 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00006104
Denys Vlasenkoa1463192011-01-18 17:55:04 +01006105#if ENABLE_HUSH_INTERACTIVE
6106 if (end_trigger == ';')
6107 inp->promptmode = 0; /* PS1 */
6108#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00006109 pipe_list = parse_stream(NULL, inp, end_trigger);
Denys Vlasenkocecbc982011-03-30 18:54:52 +02006110 if (!pipe_list || pipe_list == ERR_PTR) { /* EOF/error */
6111 /* If we are in "big" script
6112 * (not in `cmd` or something similar)...
6113 */
6114 if (pipe_list == ERR_PTR && end_trigger == ';') {
6115 /* Discard cached input (rest of line) */
6116 int ch = inp->last_char;
6117 while (ch != EOF && ch != '\n') {
6118 //bb_error_msg("Discarded:'%c'", ch);
6119 ch = i_getch(inp);
6120 }
6121 /* Force prompt */
6122 inp->p = NULL;
6123 /* This stream isn't empty */
6124 empty = 0;
6125 continue;
6126 }
6127 if (!pipe_list && empty)
Denys Vlasenko00243b02009-11-16 02:00:03 +01006128 G.last_exitcode = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006129 break;
Denys Vlasenko00243b02009-11-16 02:00:03 +01006130 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006131 debug_print_tree(pipe_list, 0);
6132 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
6133 run_and_free_list(pipe_list);
Denys Vlasenko00243b02009-11-16 02:00:03 +01006134 empty = 0;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006135 if (G_flag_return_in_progress == 1)
Denys Vlasenko68d5cb52011-03-24 02:50:03 +01006136 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006137 }
Eric Andersen25f27032001-04-26 23:22:31 +00006138}
6139
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006140static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00006141{
6142 struct in_str input;
6143 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006144 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00006145}
6146
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006147static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00006148{
Eric Andersen25f27032001-04-26 23:22:31 +00006149 struct in_str input;
6150 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006151 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00006152}
6153
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006154#if ENABLE_HUSH_TICK
6155static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
6156{
6157 pid_t pid;
6158 int channel[2];
6159# if !BB_MMU
6160 char **to_free = NULL;
6161# endif
6162
6163 xpipe(channel);
6164 pid = BB_MMU ? xfork() : xvfork();
6165 if (pid == 0) { /* child */
6166 disable_restore_tty_pgrp_on_exit();
6167 /* Process substitution is not considered to be usual
6168 * 'command execution'.
6169 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
6170 */
6171 bb_signals(0
6172 + (1 << SIGTSTP)
6173 + (1 << SIGTTIN)
6174 + (1 << SIGTTOU)
6175 , SIG_IGN);
6176 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
6177 close(channel[0]); /* NB: close _first_, then move fd! */
6178 xmove_fd(channel[1], 1);
6179 /* Prevent it from trying to handle ctrl-z etc */
6180 IF_HUSH_JOB(G.run_list_level = 1;)
6181 /* Awful hack for `trap` or $(trap).
6182 *
6183 * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
6184 * contains an example where "trap" is executed in a subshell:
6185 *
6186 * save_traps=$(trap)
6187 * ...
6188 * eval "$save_traps"
6189 *
6190 * Standard does not say that "trap" in subshell shall print
6191 * parent shell's traps. It only says that its output
6192 * must have suitable form, but then, in the above example
6193 * (which is not supposed to be normative), it implies that.
6194 *
6195 * bash (and probably other shell) does implement it
6196 * (traps are reset to defaults, but "trap" still shows them),
6197 * but as a result, "trap" logic is hopelessly messed up:
6198 *
6199 * # trap
6200 * trap -- 'echo Ho' SIGWINCH <--- we have a handler
6201 * # (trap) <--- trap is in subshell - no output (correct, traps are reset)
6202 * # true | trap <--- trap is in subshell - no output (ditto)
6203 * # echo `true | trap` <--- in subshell - output (but traps are reset!)
6204 * trap -- 'echo Ho' SIGWINCH
6205 * # echo `(trap)` <--- in subshell in subshell - output
6206 * trap -- 'echo Ho' SIGWINCH
6207 * # echo `true | (trap)` <--- in subshell in subshell in subshell - output!
6208 * trap -- 'echo Ho' SIGWINCH
6209 *
6210 * The rules when to forget and when to not forget traps
6211 * get really complex and nonsensical.
6212 *
6213 * Our solution: ONLY bare $(trap) or `trap` is special.
6214 */
6215 s = skip_whitespace(s);
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01006216 if (is_prefixed_with(s, "trap")
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006217 && skip_whitespace(s + 4)[0] == '\0'
6218 ) {
6219 static const char *const argv[] = { NULL, NULL };
6220 builtin_trap((char**)argv);
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02006221 fflush_all(); /* important */
6222 _exit(0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006223 }
6224# if BB_MMU
6225 reset_traps_to_defaults();
6226 parse_and_run_string(s);
6227 _exit(G.last_exitcode);
6228# else
6229 /* We re-execute after vfork on NOMMU. This makes this script safe:
6230 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
6231 * huge=`cat BIG` # was blocking here forever
6232 * echo OK
6233 */
6234 re_execute_shell(&to_free,
6235 s,
6236 G.global_argv[0],
6237 G.global_argv + 1,
6238 NULL);
6239# endif
6240 }
6241
6242 /* parent */
6243 *pid_p = pid;
6244# if ENABLE_HUSH_FAST
6245 G.count_SIGCHLD++;
6246//bb_error_msg("[%d] fork in generate_stream_from_string:"
6247// " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d",
6248// getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6249# endif
6250 enable_restore_tty_pgrp_on_exit();
6251# if !BB_MMU
6252 free(to_free);
6253# endif
6254 close(channel[1]);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006255 return remember_FILE(xfdopen_for_read(channel[0]));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006256}
6257
6258/* Return code is exit status of the process that is run. */
6259static int process_command_subs(o_string *dest, const char *s)
6260{
6261 FILE *fp;
6262 struct in_str pipe_str;
6263 pid_t pid;
6264 int status, ch, eol_cnt;
6265
6266 fp = generate_stream_from_string(s, &pid);
6267
6268 /* Now send results of command back into original context */
6269 setup_file_in_str(&pipe_str, fp);
6270 eol_cnt = 0;
6271 while ((ch = i_getch(&pipe_str)) != EOF) {
6272 if (ch == '\n') {
6273 eol_cnt++;
6274 continue;
6275 }
6276 while (eol_cnt) {
6277 o_addchr(dest, '\n');
6278 eol_cnt--;
6279 }
6280 o_addQchr(dest, ch);
6281 }
6282
6283 debug_printf("done reading from `cmd` pipe, closing it\n");
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006284 fclose_and_forget(fp);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006285 /* We need to extract exitcode. Test case
6286 * "true; echo `sleep 1; false` $?"
6287 * should print 1 */
6288 safe_waitpid(pid, &status, 0);
6289 debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
6290 return WEXITSTATUS(status);
6291}
6292#endif /* ENABLE_HUSH_TICK */
6293
6294
6295static void setup_heredoc(struct redir_struct *redir)
6296{
6297 struct fd_pair pair;
6298 pid_t pid;
6299 int len, written;
6300 /* the _body_ of heredoc (misleading field name) */
6301 const char *heredoc = redir->rd_filename;
6302 char *expanded;
6303#if !BB_MMU
6304 char **to_free;
6305#endif
6306
6307 expanded = NULL;
6308 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02006309 expanded = encode_then_expand_string(heredoc, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006310 if (expanded)
6311 heredoc = expanded;
6312 }
6313 len = strlen(heredoc);
6314
6315 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
6316 xpiped_pair(pair);
6317 xmove_fd(pair.rd, redir->rd_fd);
6318
6319 /* Try writing without forking. Newer kernels have
6320 * dynamically growing pipes. Must use non-blocking write! */
6321 ndelay_on(pair.wr);
6322 while (1) {
6323 written = write(pair.wr, heredoc, len);
6324 if (written <= 0)
6325 break;
6326 len -= written;
6327 if (len == 0) {
6328 close(pair.wr);
6329 free(expanded);
6330 return;
6331 }
6332 heredoc += written;
6333 }
6334 ndelay_off(pair.wr);
6335
6336 /* Okay, pipe buffer was not big enough */
6337 /* Note: we must not create a stray child (bastard? :)
6338 * for the unsuspecting parent process. Child creates a grandchild
6339 * and exits before parent execs the process which consumes heredoc
6340 * (that exec happens after we return from this function) */
6341#if !BB_MMU
6342 to_free = NULL;
6343#endif
6344 pid = xvfork();
6345 if (pid == 0) {
6346 /* child */
6347 disable_restore_tty_pgrp_on_exit();
6348 pid = BB_MMU ? xfork() : xvfork();
6349 if (pid != 0)
6350 _exit(0);
6351 /* grandchild */
6352 close(redir->rd_fd); /* read side of the pipe */
6353#if BB_MMU
6354 full_write(pair.wr, heredoc, len); /* may loop or block */
6355 _exit(0);
6356#else
6357 /* Delegate blocking writes to another process */
6358 xmove_fd(pair.wr, STDOUT_FILENO);
6359 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
6360#endif
6361 }
6362 /* parent */
6363#if ENABLE_HUSH_FAST
6364 G.count_SIGCHLD++;
6365//bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6366#endif
6367 enable_restore_tty_pgrp_on_exit();
6368#if !BB_MMU
6369 free(to_free);
6370#endif
6371 close(pair.wr);
6372 free(expanded);
6373 wait(NULL); /* wait till child has died */
6374}
6375
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006376/* fd: redirect wants this fd to be used (e.g. 3>file).
6377 * Move all conflicting internally used fds,
6378 * and remember them so that we can restore them later.
6379 */
6380static int save_fds_on_redirect(int fd, int squirrel[3])
6381{
6382 if (squirrel) {
6383 /* Handle redirects of fds 0,1,2 */
6384
6385 /* If we collide with an already moved stdio fd... */
6386 if (fd == squirrel[0]) {
6387 squirrel[0] = xdup_and_close(squirrel[0], F_DUPFD);
6388 return 1;
6389 }
6390 if (fd == squirrel[1]) {
6391 squirrel[1] = xdup_and_close(squirrel[1], F_DUPFD);
6392 return 1;
6393 }
6394 if (fd == squirrel[2]) {
6395 squirrel[2] = xdup_and_close(squirrel[2], F_DUPFD);
6396 return 1;
6397 }
6398 /* If we are about to redirect stdio fd, and did not yet move it... */
6399 if (fd <= 2 && squirrel[fd] < 0) {
6400 /* We avoid taking stdio fds */
6401 squirrel[fd] = fcntl(fd, F_DUPFD, 10);
6402 if (squirrel[fd] < 0 && errno != EBADF)
6403 xfunc_die();
6404 return 0; /* "we did not close fd" */
6405 }
6406 }
6407
6408#if ENABLE_HUSH_INTERACTIVE
6409 if (fd != 0 && fd == G.interactive_fd) {
6410 G.interactive_fd = xdup_and_close(G.interactive_fd, F_DUPFD_CLOEXEC);
6411 return 1;
6412 }
6413#endif
6414
6415 /* Are we called from setup_redirects(squirrel==NULL)? Two cases:
6416 * (1) Redirect in a forked child. No need to save FILEs' fds,
6417 * we aren't going to use them anymore, ok to trash.
6418 * (2) "exec 3>FILE". Bummer. We can save FILEs' fds,
6419 * but how are we doing to use them?
6420 * "fileno(fd) = new_fd" can't be done.
6421 */
6422 if (!squirrel)
6423 return 0;
6424
6425 return save_FILEs_on_redirect(fd);
6426}
6427
6428static void restore_redirects(int squirrel[3])
6429{
6430 int i, fd;
6431 for (i = 0; i <= 2; i++) {
6432 fd = squirrel[i];
6433 if (fd != -1) {
6434 /* We simply die on error */
6435 xmove_fd(fd, i);
6436 }
6437 }
6438
6439 /* Moved G.interactive_fd stays on new fd, not doing anything for it */
6440
6441 restore_redirected_FILEs();
6442}
6443
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006444/* squirrel != NULL means we squirrel away copies of stdin, stdout,
6445 * and stderr if they are redirected. */
6446static int setup_redirects(struct command *prog, int squirrel[])
6447{
6448 int openfd, mode;
6449 struct redir_struct *redir;
6450
6451 for (redir = prog->redirects; redir; redir = redir->next) {
6452 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006453 /* "rd_fd<<HERE" case */
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006454 save_fds_on_redirect(redir->rd_fd, squirrel);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006455 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
6456 * of the heredoc */
6457 debug_printf_parse("set heredoc '%s'\n",
6458 redir->rd_filename);
6459 setup_heredoc(redir);
6460 continue;
6461 }
6462
6463 if (redir->rd_dup == REDIRFD_TO_FILE) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006464 /* "rd_fd<*>file" case (<*> is <,>,>>,<>) */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006465 char *p;
6466 if (redir->rd_filename == NULL) {
Denys Vlasenkod6a37d82016-09-20 16:22:24 +02006467 /*
6468 * Examples:
6469 * "cmd >" (no filename)
6470 * "cmd > <file" (2nd redirect starts too early)
6471 */
6472 die_if_script("syntax error: %s", "invalid redirect");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006473 continue;
6474 }
6475 mode = redir_table[redir->rd_type].mode;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006476 p = expand_string_to_string(redir->rd_filename, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006477 openfd = open_or_warn(p, mode);
6478 free(p);
6479 if (openfd < 0) {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006480 /* Error message from open_or_warn can be lost
6481 * if stderr has been redirected, but bash
6482 * and ash both lose it as well
6483 * (though zsh doesn't!)
6484 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006485 return 1;
6486 }
6487 } else {
Denys Vlasenko869994c2016-08-20 15:16:00 +02006488 /* "rd_fd<*>rd_dup" or "rd_fd<*>-" cases */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006489 openfd = redir->rd_dup;
6490 }
6491
6492 if (openfd != redir->rd_fd) {
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006493 int closed = save_fds_on_redirect(redir->rd_fd, squirrel);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006494 if (openfd == REDIRFD_CLOSE) {
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006495 /* "rd_fd >&-" means "close me" */
6496 if (!closed) {
6497 /* ^^^ optimization: saving may already
6498 * have closed it. If not... */
6499 close(redir->rd_fd);
6500 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006501 } else {
6502 xdup2(openfd, redir->rd_fd);
6503 if (redir->rd_dup == REDIRFD_TO_FILE)
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006504 /* "rd_fd > FILE" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006505 close(openfd);
Denys Vlasenkoaa3576a2016-08-22 19:54:12 +02006506 /* else: "rd_fd > rd_dup" */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006507 }
6508 }
6509 }
6510 return 0;
6511}
6512
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006513static char *find_in_path(const char *arg)
6514{
6515 char *ret = NULL;
6516 const char *PATH = get_local_var_value("PATH");
6517
6518 if (!PATH)
6519 return NULL;
6520
6521 while (1) {
6522 const char *end = strchrnul(PATH, ':');
6523 int sz = end - PATH; /* must be int! */
6524
6525 free(ret);
6526 if (sz != 0) {
6527 ret = xasprintf("%.*s/%s", sz, PATH, arg);
6528 } else {
6529 /* We have xxx::yyyy in $PATH,
6530 * it means "use current dir" */
6531 ret = xstrdup(arg);
6532 }
6533 if (access(ret, F_OK) == 0)
6534 break;
6535
6536 if (*end == '\0') {
6537 free(ret);
6538 return NULL;
6539 }
6540 PATH = end + 1;
6541 }
6542
6543 return ret;
6544}
6545
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006546static const struct built_in_command *find_builtin_helper(const char *name,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006547 const struct built_in_command *x,
6548 const struct built_in_command *end)
6549{
6550 while (x != end) {
6551 if (strcmp(name, x->b_cmd) != 0) {
6552 x++;
6553 continue;
6554 }
6555 debug_printf_exec("found builtin '%s'\n", name);
6556 return x;
6557 }
6558 return NULL;
6559}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006560static const struct built_in_command *find_builtin1(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006561{
6562 return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
6563}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006564static const struct built_in_command *find_builtin(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006565{
6566 const struct built_in_command *x = find_builtin1(name);
6567 if (x)
6568 return x;
6569 return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
6570}
6571
6572#if ENABLE_HUSH_FUNCTIONS
6573static struct function **find_function_slot(const char *name)
6574{
6575 struct function **funcpp = &G.top_func;
6576 while (*funcpp) {
6577 if (strcmp(name, (*funcpp)->name) == 0) {
6578 break;
6579 }
6580 funcpp = &(*funcpp)->next;
6581 }
6582 return funcpp;
6583}
6584
6585static const struct function *find_function(const char *name)
6586{
6587 const struct function *funcp = *find_function_slot(name);
6588 if (funcp)
6589 debug_printf_exec("found function '%s'\n", name);
6590 return funcp;
6591}
6592
6593/* Note: takes ownership on name ptr */
6594static struct function *new_function(char *name)
6595{
6596 struct function **funcpp = find_function_slot(name);
6597 struct function *funcp = *funcpp;
6598
6599 if (funcp != NULL) {
6600 struct command *cmd = funcp->parent_cmd;
6601 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
6602 if (!cmd) {
6603 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
6604 free(funcp->name);
6605 /* Note: if !funcp->body, do not free body_as_string!
6606 * This is a special case of "-F name body" function:
6607 * body_as_string was not malloced! */
6608 if (funcp->body) {
6609 free_pipe_list(funcp->body);
6610# if !BB_MMU
6611 free(funcp->body_as_string);
6612# endif
6613 }
6614 } else {
6615 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
6616 cmd->argv[0] = funcp->name;
6617 cmd->group = funcp->body;
6618# if !BB_MMU
6619 cmd->group_as_string = funcp->body_as_string;
6620# endif
6621 }
6622 } else {
6623 debug_printf_exec("remembering new function '%s'\n", name);
6624 funcp = *funcpp = xzalloc(sizeof(*funcp));
6625 /*funcp->next = NULL;*/
6626 }
6627
6628 funcp->name = name;
6629 return funcp;
6630}
6631
6632static void unset_func(const char *name)
6633{
6634 struct function **funcpp = find_function_slot(name);
6635 struct function *funcp = *funcpp;
6636
6637 if (funcp != NULL) {
6638 debug_printf_exec("freeing function '%s'\n", funcp->name);
6639 *funcpp = funcp->next;
6640 /* funcp is unlinked now, deleting it.
6641 * Note: if !funcp->body, the function was created by
6642 * "-F name body", do not free ->body_as_string
6643 * and ->name as they were not malloced. */
6644 if (funcp->body) {
6645 free_pipe_list(funcp->body);
6646 free(funcp->name);
6647# if !BB_MMU
6648 free(funcp->body_as_string);
6649# endif
6650 }
6651 free(funcp);
6652 }
6653}
6654
6655# if BB_MMU
6656#define exec_function(to_free, funcp, argv) \
6657 exec_function(funcp, argv)
6658# endif
6659static void exec_function(char ***to_free,
6660 const struct function *funcp,
6661 char **argv) NORETURN;
6662static void exec_function(char ***to_free,
6663 const struct function *funcp,
6664 char **argv)
6665{
6666# if BB_MMU
6667 int n = 1;
6668
6669 argv[0] = G.global_argv[0];
6670 G.global_argv = argv;
6671 while (*++argv)
6672 n++;
6673 G.global_argc = n;
6674 /* On MMU, funcp->body is always non-NULL */
6675 n = run_list(funcp->body);
6676 fflush_all();
6677 _exit(n);
6678# else
6679 re_execute_shell(to_free,
6680 funcp->body_as_string,
6681 G.global_argv[0],
6682 argv + 1,
6683 NULL);
6684# endif
6685}
6686
6687static int run_function(const struct function *funcp, char **argv)
6688{
6689 int rc;
6690 save_arg_t sv;
6691 smallint sv_flg;
6692
6693 save_and_replace_G_args(&sv, argv);
6694
6695 /* "we are in function, ok to use return" */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006696 sv_flg = G_flag_return_in_progress;
6697 G_flag_return_in_progress = -1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006698# if ENABLE_HUSH_LOCAL
6699 G.func_nest_level++;
6700# endif
6701
6702 /* On MMU, funcp->body is always non-NULL */
6703# if !BB_MMU
6704 if (!funcp->body) {
6705 /* Function defined by -F */
6706 parse_and_run_string(funcp->body_as_string);
6707 rc = G.last_exitcode;
6708 } else
6709# endif
6710 {
6711 rc = run_list(funcp->body);
6712 }
6713
6714# if ENABLE_HUSH_LOCAL
6715 {
6716 struct variable *var;
6717 struct variable **var_pp;
6718
6719 var_pp = &G.top_var;
6720 while ((var = *var_pp) != NULL) {
6721 if (var->func_nest_level < G.func_nest_level) {
6722 var_pp = &var->next;
6723 continue;
6724 }
6725 /* Unexport */
6726 if (var->flg_export)
6727 bb_unsetenv(var->varstr);
6728 /* Remove from global list */
6729 *var_pp = var->next;
6730 /* Free */
6731 if (!var->max_len)
6732 free(var->varstr);
6733 free(var);
6734 }
6735 G.func_nest_level--;
6736 }
6737# endif
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02006738 G_flag_return_in_progress = sv_flg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006739
6740 restore_G_args(&sv, argv);
6741
6742 return rc;
6743}
6744#endif /* ENABLE_HUSH_FUNCTIONS */
6745
6746
6747#if BB_MMU
6748#define exec_builtin(to_free, x, argv) \
6749 exec_builtin(x, argv)
6750#else
6751#define exec_builtin(to_free, x, argv) \
6752 exec_builtin(to_free, argv)
6753#endif
6754static void exec_builtin(char ***to_free,
6755 const struct built_in_command *x,
6756 char **argv) NORETURN;
6757static void exec_builtin(char ***to_free,
6758 const struct built_in_command *x,
6759 char **argv)
6760{
6761#if BB_MMU
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01006762 int rcode;
6763 fflush_all();
6764 rcode = x->b_function(argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006765 fflush_all();
6766 _exit(rcode);
6767#else
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01006768 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006769 /* On NOMMU, we must never block!
6770 * Example: { sleep 99 | read line; } & echo Ok
6771 */
6772 re_execute_shell(to_free,
6773 argv[0],
6774 G.global_argv[0],
6775 G.global_argv + 1,
6776 argv);
6777#endif
6778}
6779
6780
6781static void execvp_or_die(char **argv) NORETURN;
6782static void execvp_or_die(char **argv)
6783{
Denys Vlasenko04465da2016-10-03 01:01:15 +02006784 int e;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006785 debug_printf_exec("execing '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02006786 /* Don't propagate SIG_IGN to the child */
6787 if (SPECIAL_JOBSTOP_SIGS != 0)
6788 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006789 execvp(argv[0], argv);
Denys Vlasenko04465da2016-10-03 01:01:15 +02006790 e = 2;
6791 if (errno == EACCES) e = 126;
6792 if (errno == ENOENT) e = 127;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006793 bb_perror_msg("can't execute '%s'", argv[0]);
Denys Vlasenko04465da2016-10-03 01:01:15 +02006794 _exit(e);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006795}
6796
6797#if ENABLE_HUSH_MODE_X
6798static void dump_cmd_in_x_mode(char **argv)
6799{
6800 if (G_x_mode && argv) {
6801 /* We want to output the line in one write op */
6802 char *buf, *p;
6803 int len;
6804 int n;
6805
6806 len = 3;
6807 n = 0;
6808 while (argv[n])
6809 len += strlen(argv[n++]) + 1;
6810 buf = xmalloc(len);
6811 buf[0] = '+';
6812 p = buf + 1;
6813 n = 0;
6814 while (argv[n])
6815 p += sprintf(p, " %s", argv[n++]);
6816 *p++ = '\n';
6817 *p = '\0';
6818 fputs(buf, stderr);
6819 free(buf);
6820 }
6821}
6822#else
6823# define dump_cmd_in_x_mode(argv) ((void)0)
6824#endif
6825
6826#if BB_MMU
6827#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
6828 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
6829#define pseudo_exec(nommu_save, command, argv_expanded) \
6830 pseudo_exec(command, argv_expanded)
6831#endif
6832
6833/* Called after [v]fork() in run_pipe, or from builtin_exec.
6834 * Never returns.
6835 * Don't exit() here. If you don't exec, use _exit instead.
6836 * The at_exit handlers apparently confuse the calling process,
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02006837 * in particular stdin handling. Not sure why? -- because of vfork! (vda)
Denys Vlasenko215b0ca2016-08-19 18:23:56 +02006838 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006839static void pseudo_exec_argv(nommu_save_t *nommu_save,
6840 char **argv, int assignment_cnt,
6841 char **argv_expanded) NORETURN;
6842static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
6843 char **argv, int assignment_cnt,
6844 char **argv_expanded)
6845{
6846 char **new_env;
6847
6848 new_env = expand_assignments(argv, assignment_cnt);
6849 dump_cmd_in_x_mode(new_env);
6850
6851 if (!argv[assignment_cnt]) {
6852 /* Case when we are here: ... | var=val | ...
6853 * (note that we do not exit early, i.e., do not optimize out
6854 * expand_assignments(): think about ... | var=`sleep 1` | ...
6855 */
6856 free_strings(new_env);
6857 _exit(EXIT_SUCCESS);
6858 }
6859
6860#if BB_MMU
6861 set_vars_and_save_old(new_env);
6862 free(new_env); /* optional */
6863 /* we can also destroy set_vars_and_save_old's return value,
6864 * to save memory */
6865#else
6866 nommu_save->new_env = new_env;
6867 nommu_save->old_vars = set_vars_and_save_old(new_env);
6868#endif
6869
6870 if (argv_expanded) {
6871 argv = argv_expanded;
6872 } else {
6873 argv = expand_strvec_to_strvec(argv + assignment_cnt);
6874#if !BB_MMU
6875 nommu_save->argv = argv;
6876#endif
6877 }
6878 dump_cmd_in_x_mode(argv);
6879
6880#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
6881 if (strchr(argv[0], '/') != NULL)
6882 goto skip;
6883#endif
6884
6885 /* Check if the command matches any of the builtins.
6886 * Depending on context, this might be redundant. But it's
6887 * easier to waste a few CPU cycles than it is to figure out
6888 * if this is one of those cases.
6889 */
6890 {
6891 /* On NOMMU, it is more expensive to re-execute shell
6892 * just in order to run echo or test builtin.
6893 * It's better to skip it here and run corresponding
6894 * non-builtin later. */
6895 const struct built_in_command *x;
6896 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
6897 if (x) {
6898 exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
6899 }
6900 }
6901#if ENABLE_HUSH_FUNCTIONS
6902 /* Check if the command matches any functions */
6903 {
6904 const struct function *funcp = find_function(argv[0]);
6905 if (funcp) {
6906 exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
6907 }
6908 }
6909#endif
6910
6911#if ENABLE_FEATURE_SH_STANDALONE
6912 /* Check if the command matches any busybox applets */
6913 {
6914 int a = find_applet_by_name(argv[0]);
6915 if (a >= 0) {
6916# if BB_MMU /* see above why on NOMMU it is not allowed */
6917 if (APPLET_IS_NOEXEC(a)) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02006918 /* Do not leak open fds from opened script files etc */
6919 close_all_FILE_list();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006920 debug_printf_exec("running applet '%s'\n", argv[0]);
6921 run_applet_no_and_exit(a, argv);
6922 }
6923# endif
6924 /* Re-exec ourselves */
6925 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denys Vlasenko75e77de2011-05-12 13:12:47 +02006926 /* Don't propagate SIG_IGN to the child */
6927 if (SPECIAL_JOBSTOP_SIGS != 0)
6928 switch_off_special_sigs(G.special_sig_mask & SPECIAL_JOBSTOP_SIGS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006929 execv(bb_busybox_exec_path, argv);
6930 /* If they called chroot or otherwise made the binary no longer
6931 * executable, fall through */
6932 }
6933 }
6934#endif
6935
6936#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
6937 skip:
6938#endif
6939 execvp_or_die(argv);
6940}
6941
6942/* Called after [v]fork() in run_pipe
6943 */
6944static void pseudo_exec(nommu_save_t *nommu_save,
6945 struct command *command,
6946 char **argv_expanded) NORETURN;
6947static void pseudo_exec(nommu_save_t *nommu_save,
6948 struct command *command,
6949 char **argv_expanded)
6950{
6951 if (command->argv) {
6952 pseudo_exec_argv(nommu_save, command->argv,
6953 command->assignment_cnt, argv_expanded);
6954 }
6955
6956 if (command->group) {
6957 /* Cases when we are here:
6958 * ( list )
6959 * { list } &
6960 * ... | ( list ) | ...
6961 * ... | { list } | ...
6962 */
6963#if BB_MMU
6964 int rcode;
6965 debug_printf_exec("pseudo_exec: run_list\n");
6966 reset_traps_to_defaults();
6967 rcode = run_list(command->group);
6968 /* OK to leak memory by not calling free_pipe_list,
6969 * since this process is about to exit */
6970 _exit(rcode);
6971#else
6972 re_execute_shell(&nommu_save->argv_from_re_execing,
6973 command->group_as_string,
6974 G.global_argv[0],
6975 G.global_argv + 1,
6976 NULL);
6977#endif
6978 }
6979
6980 /* Case when we are here: ... | >file */
6981 debug_printf_exec("pseudo_exec'ed null command\n");
6982 _exit(EXIT_SUCCESS);
6983}
6984
6985#if ENABLE_HUSH_JOB
6986static const char *get_cmdtext(struct pipe *pi)
6987{
6988 char **argv;
6989 char *p;
6990 int len;
6991
6992 /* This is subtle. ->cmdtext is created only on first backgrounding.
6993 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
6994 * On subsequent bg argv is trashed, but we won't use it */
6995 if (pi->cmdtext)
6996 return pi->cmdtext;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01006997
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006998 argv = pi->cmds[0].argv;
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01006999 if (!argv) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007000 pi->cmdtext = xzalloc(1);
7001 return pi->cmdtext;
7002 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007003 len = 0;
7004 do {
7005 len += strlen(*argv) + 1;
7006 } while (*++argv);
7007 p = xmalloc(len);
7008 pi->cmdtext = p;
7009 argv = pi->cmds[0].argv;
7010 do {
Denys Vlasenko1eada9a2016-11-08 17:28:45 +01007011 p = stpcpy(p, *argv);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007012 *p++ = ' ';
7013 } while (*++argv);
7014 p[-1] = '\0';
7015 return pi->cmdtext;
7016}
7017
7018static void insert_bg_job(struct pipe *pi)
7019{
7020 struct pipe *job, **jobp;
7021 int i;
7022
7023 /* Linear search for the ID of the job to use */
7024 pi->jobid = 1;
7025 for (job = G.job_list; job; job = job->next)
7026 if (job->jobid >= pi->jobid)
7027 pi->jobid = job->jobid + 1;
7028
7029 /* Add job to the list of running jobs */
7030 jobp = &G.job_list;
7031 while ((job = *jobp) != NULL)
7032 jobp = &job->next;
7033 job = *jobp = xmalloc(sizeof(*job));
7034
7035 *job = *pi; /* physical copy */
7036 job->next = NULL;
7037 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
7038 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
7039 for (i = 0; i < pi->num_cmds; i++) {
7040 job->cmds[i].pid = pi->cmds[i].pid;
7041 /* all other fields are not used and stay zero */
7042 }
7043 job->cmdtext = xstrdup(get_cmdtext(pi));
7044
7045 if (G_interactive_fd)
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01007046 printf("[%u] %u %s\n", job->jobid, (unsigned)job->cmds[0].pid, job->cmdtext);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007047 G.last_jobid = job->jobid;
7048}
7049
7050static void remove_bg_job(struct pipe *pi)
7051{
7052 struct pipe *prev_pipe;
7053
7054 if (pi == G.job_list) {
7055 G.job_list = pi->next;
7056 } else {
7057 prev_pipe = G.job_list;
7058 while (prev_pipe->next != pi)
7059 prev_pipe = prev_pipe->next;
7060 prev_pipe->next = pi->next;
7061 }
7062 if (G.job_list)
7063 G.last_jobid = G.job_list->jobid;
7064 else
7065 G.last_jobid = 0;
7066}
7067
7068/* Remove a backgrounded job */
7069static void delete_finished_bg_job(struct pipe *pi)
7070{
7071 remove_bg_job(pi);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007072 free_pipe(pi);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007073}
7074#endif /* JOB */
7075
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007076static int job_exited_or_stopped(struct pipe *pi)
7077{
7078 int rcode, i;
7079
7080 if (pi->alive_cmds != pi->stopped_cmds)
7081 return -1;
7082
7083 /* All processes in fg pipe have exited or stopped */
7084 rcode = 0;
7085 i = pi->num_cmds;
7086 while (--i >= 0) {
7087 rcode = pi->cmds[i].cmd_exitcode;
7088 /* usually last process gives overall exitstatus,
7089 * but with "set -o pipefail", last *failed* process does */
7090 if (G.o_opt[OPT_O_PIPEFAIL] == 0 || rcode != 0)
7091 break;
7092 }
7093 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7094 return rcode;
7095}
7096
Denys Vlasenko7e675362016-10-28 21:57:31 +02007097static int process_wait_result(struct pipe *fg_pipe, pid_t childpid, int status)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007098{
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007099#if ENABLE_HUSH_JOB
7100 struct pipe *pi;
7101#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007102 int i, dead;
7103
7104 dead = WIFEXITED(status) || WIFSIGNALED(status);
7105
7106#if DEBUG_JOBS
7107 if (WIFSTOPPED(status))
7108 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
7109 childpid, WSTOPSIG(status), WEXITSTATUS(status));
7110 if (WIFSIGNALED(status))
7111 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
7112 childpid, WTERMSIG(status), WEXITSTATUS(status));
7113 if (WIFEXITED(status))
7114 debug_printf_jobs("pid %d exited, exitcode %d\n",
7115 childpid, WEXITSTATUS(status));
7116#endif
7117 /* Were we asked to wait for a fg pipe? */
7118 if (fg_pipe) {
7119 i = fg_pipe->num_cmds;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007120
Denys Vlasenko7e675362016-10-28 21:57:31 +02007121 while (--i >= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007122 int rcode;
7123
Denys Vlasenko7e675362016-10-28 21:57:31 +02007124 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
7125 if (fg_pipe->cmds[i].pid != childpid)
7126 continue;
7127 if (dead) {
7128 int ex;
7129 fg_pipe->cmds[i].pid = 0;
7130 fg_pipe->alive_cmds--;
7131 ex = WEXITSTATUS(status);
7132 /* bash prints killer signal's name for *last*
7133 * process in pipe (prints just newline for SIGINT/SIGPIPE).
7134 * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
7135 */
7136 if (WIFSIGNALED(status)) {
7137 int sig = WTERMSIG(status);
7138 if (i == fg_pipe->num_cmds-1)
7139 /* TODO: use strsignal() instead for bash compat? but that's bloat... */
7140 puts(sig == SIGINT || sig == SIGPIPE ? "" : get_signame(sig));
7141 /* TODO: if (WCOREDUMP(status)) + " (core dumped)"; */
7142 /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
7143 * Maybe we need to use sig | 128? */
7144 ex = sig + 128;
7145 }
7146 fg_pipe->cmds[i].cmd_exitcode = ex;
7147 } else {
7148 fg_pipe->stopped_cmds++;
7149 }
7150 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
7151 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007152 rcode = job_exited_or_stopped(fg_pipe);
7153 if (rcode >= 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007154/* Note: *non-interactive* bash does not continue if all processes in fg pipe
7155 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
7156 * and "killall -STOP cat" */
7157 if (G_interactive_fd) {
7158#if ENABLE_HUSH_JOB
7159 if (fg_pipe->alive_cmds != 0)
7160 insert_bg_job(fg_pipe);
7161#endif
7162 return rcode;
7163 }
7164 if (fg_pipe->alive_cmds == 0)
7165 return rcode;
7166 }
7167 /* There are still running processes in the fg_pipe */
7168 return -1;
7169 }
7170 /* It wasnt in fg_pipe, look for process in bg pipes */
7171 }
7172
7173#if ENABLE_HUSH_JOB
7174 /* We were asked to wait for bg or orphaned children */
7175 /* No need to remember exitcode in this case */
7176 for (pi = G.job_list; pi; pi = pi->next) {
7177 for (i = 0; i < pi->num_cmds; i++) {
7178 if (pi->cmds[i].pid == childpid)
7179 goto found_pi_and_prognum;
7180 }
7181 }
7182 /* Happens when shell is used as init process (init=/bin/sh) */
7183 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
7184 return -1; /* this wasn't a process from fg_pipe */
7185
7186 found_pi_and_prognum:
7187 if (dead) {
7188 /* child exited */
7189 pi->cmds[i].pid = 0;
7190 pi->cmds[i].cmd_exitcode = WEXITSTATUS(status);
7191 if (WIFSIGNALED(status))
7192 pi->cmds[i].cmd_exitcode = 128 + WTERMSIG(status);
7193 pi->alive_cmds--;
7194 if (!pi->alive_cmds) {
7195 if (G_interactive_fd)
7196 printf(JOB_STATUS_FORMAT, pi->jobid,
7197 "Done", pi->cmdtext);
7198 delete_finished_bg_job(pi);
7199 }
7200 } else {
7201 /* child stopped */
7202 pi->stopped_cmds++;
7203 }
7204#endif
7205 return -1; /* this wasn't a process from fg_pipe */
7206}
7207
7208/* Check to see if any processes have exited -- if they have,
7209 * figure out why and see if a job has completed.
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007210 *
7211 * If non-NULL fg_pipe: wait for its completion or stop.
7212 * Return its exitcode or zero if stopped.
7213 *
7214 * Alternatively (fg_pipe == NULL, waitfor_pid != 0):
7215 * waitpid(WNOHANG), if waitfor_pid exits or stops, return exitcode+1,
7216 * else return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7217 * or 0 if no children changed status.
7218 *
7219 * Alternatively (fg_pipe == NULL, waitfor_pid == 0),
7220 * return <0 if waitpid errors out (e.g. ECHILD: nothing to wait for)
7221 * or 0 if no children changed status.
Denys Vlasenko7e675362016-10-28 21:57:31 +02007222 */
7223static int checkjobs(struct pipe *fg_pipe, pid_t waitfor_pid)
7224{
7225 int attributes;
7226 int status;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007227 int rcode = 0;
7228
7229 debug_printf_jobs("checkjobs %p\n", fg_pipe);
7230
7231 attributes = WUNTRACED;
7232 if (fg_pipe == NULL)
7233 attributes |= WNOHANG;
7234
7235 errno = 0;
7236#if ENABLE_HUSH_FAST
7237 if (G.handled_SIGCHLD == G.count_SIGCHLD) {
7238//bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
7239//getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
7240 /* There was neither fork nor SIGCHLD since last waitpid */
7241 /* Avoid doing waitpid syscall if possible */
7242 if (!G.we_have_children) {
7243 errno = ECHILD;
7244 return -1;
7245 }
7246 if (fg_pipe == NULL) { /* is WNOHANG set? */
7247 /* We have children, but they did not exit
7248 * or stop yet (we saw no SIGCHLD) */
7249 return 0;
7250 }
7251 /* else: !WNOHANG, waitpid will block, can't short-circuit */
7252 }
7253#endif
7254
7255/* Do we do this right?
7256 * bash-3.00# sleep 20 | false
7257 * <ctrl-Z pressed>
7258 * [3]+ Stopped sleep 20 | false
7259 * bash-3.00# echo $?
7260 * 1 <========== bg pipe is not fully done, but exitcode is already known!
7261 * [hush 1.14.0: yes we do it right]
7262 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007263 while (1) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007264 pid_t childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007265#if ENABLE_HUSH_FAST
Denys Vlasenko7e675362016-10-28 21:57:31 +02007266 int i;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007267 i = G.count_SIGCHLD;
7268#endif
7269 childpid = waitpid(-1, &status, attributes);
7270 if (childpid <= 0) {
7271 if (childpid && errno != ECHILD)
7272 bb_perror_msg("waitpid");
7273#if ENABLE_HUSH_FAST
7274 else { /* Until next SIGCHLD, waitpid's are useless */
7275 G.we_have_children = (childpid == 0);
7276 G.handled_SIGCHLD = i;
7277//bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
7278 }
7279#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02007280 /* ECHILD (no children), or 0 (no change in children status) */
7281 rcode = childpid;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007282 break;
7283 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007284 rcode = process_wait_result(fg_pipe, childpid, status);
7285 if (rcode >= 0) {
7286 /* fg_pipe exited or stopped */
7287 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007288 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007289 if (childpid == waitfor_pid) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007290 debug_printf_exec("childpid==waitfor_pid:%d status:0x%08x\n", childpid, status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007291 rcode = WEXITSTATUS(status);
7292 if (WIFSIGNALED(status))
7293 rcode = 128 + WTERMSIG(status);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01007294 if (WIFSTOPPED(status))
7295 /* bash: "cmd & wait $!" and cmd stops: $? = 128 + stopsig */
7296 rcode = 128 + WSTOPSIG(status);
Denys Vlasenko7e675362016-10-28 21:57:31 +02007297 rcode++;
7298 break; /* "wait PID" called us, give it exitcode+1 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007299 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02007300 /* This wasn't one of our processes, or */
7301 /* fg_pipe still has running processes, do waitpid again */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007302 } /* while (waitpid succeeds)... */
7303
7304 return rcode;
7305}
7306
7307#if ENABLE_HUSH_JOB
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02007308static int checkjobs_and_fg_shell(struct pipe *fg_pipe)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007309{
7310 pid_t p;
Denys Vlasenko7e675362016-10-28 21:57:31 +02007311 int rcode = checkjobs(fg_pipe, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007312 if (G_saved_tty_pgrp) {
7313 /* Job finished, move the shell to the foreground */
7314 p = getpgrp(); /* our process group id */
7315 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
7316 tcsetpgrp(G_interactive_fd, p);
7317 }
7318 return rcode;
7319}
7320#endif
7321
7322/* Start all the jobs, but don't wait for anything to finish.
7323 * See checkjobs().
7324 *
7325 * Return code is normally -1, when the caller has to wait for children
7326 * to finish to determine the exit status of the pipe. If the pipe
7327 * is a simple builtin command, however, the action is done by the
7328 * time run_pipe returns, and the exit code is provided as the
7329 * return value.
7330 *
7331 * Returns -1 only if started some children. IOW: we have to
7332 * mask out retvals of builtins etc with 0xff!
7333 *
7334 * The only case when we do not need to [v]fork is when the pipe
7335 * is single, non-backgrounded, non-subshell command. Examples:
7336 * cmd ; ... { list } ; ...
7337 * cmd && ... { list } && ...
7338 * cmd || ... { list } || ...
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007339 * If it is, then we can run cmd as a builtin, NOFORK,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007340 * or (if SH_STANDALONE) an applet, and we can run the { list }
7341 * with run_list. If it isn't one of these, we fork and exec cmd.
7342 *
7343 * Cases when we must fork:
7344 * non-single: cmd | cmd
7345 * backgrounded: cmd & { list } &
7346 * subshell: ( list ) [&]
7347 */
7348#if !ENABLE_HUSH_MODE_X
Denys Vlasenko26777aa2010-11-22 23:49:10 +01007349#define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, argv_expanded) \
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007350 redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel)
7351#endif
7352static int redirect_and_varexp_helper(char ***new_env_p,
7353 struct variable **old_vars_p,
7354 struct command *command,
7355 int squirrel[3],
7356 char **argv_expanded)
7357{
7358 /* setup_redirects acts on file descriptors, not FILEs.
7359 * This is perfect for work that comes after exec().
7360 * Is it really safe for inline use? Experimentally,
7361 * things seem to work. */
7362 int rcode = setup_redirects(command, squirrel);
7363 if (rcode == 0) {
7364 char **new_env = expand_assignments(command->argv, command->assignment_cnt);
7365 *new_env_p = new_env;
7366 dump_cmd_in_x_mode(new_env);
7367 dump_cmd_in_x_mode(argv_expanded);
7368 if (old_vars_p)
7369 *old_vars_p = set_vars_and_save_old(new_env);
7370 }
7371 return rcode;
7372}
7373static NOINLINE int run_pipe(struct pipe *pi)
7374{
7375 static const char *const null_ptr = NULL;
7376
7377 int cmd_no;
7378 int next_infd;
7379 struct command *command;
7380 char **argv_expanded;
7381 char **argv;
7382 /* it is not always needed, but we aim to smaller code */
7383 int squirrel[] = { -1, -1, -1 };
7384 int rcode;
7385
7386 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
7387 debug_enter();
7388
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02007389 /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*"
7390 * Result should be 3 lines: q w e, qwe, q w e
7391 */
7392 G.ifs = get_local_var_value("IFS");
7393 if (!G.ifs)
7394 G.ifs = defifs;
7395
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007396 IF_HUSH_JOB(pi->pgrp = -1;)
7397 pi->stopped_cmds = 0;
7398 command = &pi->cmds[0];
7399 argv_expanded = NULL;
7400
7401 if (pi->num_cmds != 1
7402 || pi->followup == PIPE_BG
7403 || command->cmd_type == CMD_SUBSHELL
7404 ) {
7405 goto must_fork;
7406 }
7407
7408 pi->alive_cmds = 1;
7409
7410 debug_printf_exec(": group:%p argv:'%s'\n",
7411 command->group, command->argv ? command->argv[0] : "NONE");
7412
7413 if (command->group) {
7414#if ENABLE_HUSH_FUNCTIONS
7415 if (command->cmd_type == CMD_FUNCDEF) {
7416 /* "executing" func () { list } */
7417 struct function *funcp;
7418
7419 funcp = new_function(command->argv[0]);
7420 /* funcp->name is already set to argv[0] */
7421 funcp->body = command->group;
7422# if !BB_MMU
7423 funcp->body_as_string = command->group_as_string;
7424 command->group_as_string = NULL;
7425# endif
7426 command->group = NULL;
7427 command->argv[0] = NULL;
7428 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
7429 funcp->parent_cmd = command;
7430 command->child_func = funcp;
7431
7432 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
7433 debug_leave();
7434 return EXIT_SUCCESS;
7435 }
7436#endif
7437 /* { list } */
7438 debug_printf("non-subshell group\n");
7439 rcode = 1; /* exitcode if redir failed */
7440 if (setup_redirects(command, squirrel) == 0) {
7441 debug_printf_exec(": run_list\n");
7442 rcode = run_list(command->group) & 0xff;
7443 }
7444 restore_redirects(squirrel);
7445 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7446 debug_leave();
7447 debug_printf_exec("run_pipe: return %d\n", rcode);
7448 return rcode;
7449 }
7450
7451 argv = command->argv ? command->argv : (char **) &null_ptr;
7452 {
7453 const struct built_in_command *x;
7454#if ENABLE_HUSH_FUNCTIONS
7455 const struct function *funcp;
7456#else
7457 enum { funcp = 0 };
7458#endif
7459 char **new_env = NULL;
7460 struct variable *old_vars = NULL;
7461
7462 if (argv[command->assignment_cnt] == NULL) {
7463 /* Assignments, but no command */
7464 /* Ensure redirects take effect (that is, create files).
7465 * Try "a=t >file" */
7466#if 0 /* A few cases in testsuite fail with this code. FIXME */
7467 rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, squirrel, /*argv_expanded:*/ NULL);
7468 /* Set shell variables */
7469 if (new_env) {
7470 argv = new_env;
7471 while (*argv) {
7472 set_local_var(*argv, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7473 /* Do we need to flag set_local_var() errors?
7474 * "assignment to readonly var" and "putenv error"
7475 */
7476 argv++;
7477 }
7478 }
7479 /* Redirect error sets $? to 1. Otherwise,
7480 * if evaluating assignment value set $?, retain it.
7481 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7482 if (rcode == 0)
7483 rcode = G.last_exitcode;
7484 /* Exit, _skipping_ variable restoring code: */
7485 goto clean_up_and_ret0;
7486
7487#else /* Older, bigger, but more correct code */
7488
7489 rcode = setup_redirects(command, squirrel);
7490 restore_redirects(squirrel);
7491 /* Set shell variables */
7492 if (G_x_mode)
7493 bb_putchar_stderr('+');
7494 while (*argv) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02007495 char *p = expand_string_to_string(*argv, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007496 if (G_x_mode)
7497 fprintf(stderr, " %s", p);
7498 debug_printf_exec("set shell var:'%s'->'%s'\n",
7499 *argv, p);
7500 set_local_var(p, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7501 /* Do we need to flag set_local_var() errors?
7502 * "assignment to readonly var" and "putenv error"
7503 */
7504 argv++;
7505 }
7506 if (G_x_mode)
7507 bb_putchar_stderr('\n');
7508 /* Redirect error sets $? to 1. Otherwise,
7509 * if evaluating assignment value set $?, retain it.
7510 * Try "false; q=`exit 2`; echo $?" - should print 2: */
7511 if (rcode == 0)
7512 rcode = G.last_exitcode;
7513 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7514 debug_leave();
7515 debug_printf_exec("run_pipe: return %d\n", rcode);
7516 return rcode;
7517#endif
7518 }
7519
7520 /* Expand the rest into (possibly) many strings each */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007521#if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007522 if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007523 argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007524 } else
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007525#endif
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007526 {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007527 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
7528 }
7529
7530 /* if someone gives us an empty string: `cmd with empty output` */
7531 if (!argv_expanded[0]) {
7532 free(argv_expanded);
7533 debug_leave();
7534 return G.last_exitcode;
7535 }
7536
7537 x = find_builtin(argv_expanded[0]);
7538#if ENABLE_HUSH_FUNCTIONS
7539 funcp = NULL;
7540 if (!x)
7541 funcp = find_function(argv_expanded[0]);
7542#endif
7543 if (x || funcp) {
7544 if (!funcp) {
7545 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
7546 debug_printf("exec with redirects only\n");
7547 rcode = setup_redirects(command, NULL);
Denys Vlasenko869994c2016-08-20 15:16:00 +02007548 /* rcode=1 can be if redir file can't be opened */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007549 goto clean_up_and_ret1;
7550 }
7551 }
7552 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
7553 if (rcode == 0) {
7554 if (!funcp) {
7555 debug_printf_exec(": builtin '%s' '%s'...\n",
7556 x->b_cmd, argv_expanded[1]);
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01007557 fflush_all();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007558 rcode = x->b_function(argv_expanded) & 0xff;
7559 fflush_all();
7560 }
7561#if ENABLE_HUSH_FUNCTIONS
7562 else {
7563# if ENABLE_HUSH_LOCAL
7564 struct variable **sv;
7565 sv = G.shadowed_vars_pp;
7566 G.shadowed_vars_pp = &old_vars;
7567# endif
7568 debug_printf_exec(": function '%s' '%s'...\n",
7569 funcp->name, argv_expanded[1]);
7570 rcode = run_function(funcp, argv_expanded) & 0xff;
7571# if ENABLE_HUSH_LOCAL
7572 G.shadowed_vars_pp = sv;
7573# endif
7574 }
7575#endif
7576 }
7577 clean_up_and_ret:
7578 unset_vars(new_env);
7579 add_vars(old_vars);
7580/* clean_up_and_ret0: */
7581 restore_redirects(squirrel);
7582 clean_up_and_ret1:
7583 free(argv_expanded);
7584 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
7585 debug_leave();
7586 debug_printf_exec("run_pipe return %d\n", rcode);
7587 return rcode;
7588 }
7589
Denys Vlasenkob72baeb2011-02-02 18:38:57 +01007590 if (ENABLE_FEATURE_SH_NOFORK) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007591 int n = find_applet_by_name(argv_expanded[0]);
7592 if (n >= 0 && APPLET_IS_NOFORK(n)) {
7593 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
7594 if (rcode == 0) {
7595 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
7596 argv_expanded[0], argv_expanded[1]);
7597 rcode = run_nofork_applet(n, argv_expanded);
7598 }
7599 goto clean_up_and_ret;
7600 }
7601 }
7602 /* It is neither builtin nor applet. We must fork. */
7603 }
7604
7605 must_fork:
7606 /* NB: argv_expanded may already be created, and that
7607 * might include `cmd` runs! Do not rerun it! We *must*
7608 * use argv_expanded if it's non-NULL */
7609
7610 /* Going to fork a child per each pipe member */
7611 pi->alive_cmds = 0;
7612 next_infd = 0;
7613
7614 cmd_no = 0;
7615 while (cmd_no < pi->num_cmds) {
7616 struct fd_pair pipefds;
7617#if !BB_MMU
7618 volatile nommu_save_t nommu_save;
7619 nommu_save.new_env = NULL;
7620 nommu_save.old_vars = NULL;
7621 nommu_save.argv = NULL;
7622 nommu_save.argv_from_re_execing = NULL;
7623#endif
7624 command = &pi->cmds[cmd_no];
7625 cmd_no++;
7626 if (command->argv) {
7627 debug_printf_exec(": pipe member '%s' '%s'...\n",
7628 command->argv[0], command->argv[1]);
7629 } else {
7630 debug_printf_exec(": pipe member with no argv\n");
7631 }
7632
7633 /* pipes are inserted between pairs of commands */
7634 pipefds.rd = 0;
7635 pipefds.wr = 1;
7636 if (cmd_no < pi->num_cmds)
7637 xpiped_pair(pipefds);
7638
7639 command->pid = BB_MMU ? fork() : vfork();
7640 if (!command->pid) { /* child */
7641#if ENABLE_HUSH_JOB
7642 disable_restore_tty_pgrp_on_exit();
7643 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
7644
7645 /* Every child adds itself to new process group
7646 * with pgid == pid_of_first_child_in_pipe */
7647 if (G.run_list_level == 1 && G_interactive_fd) {
7648 pid_t pgrp;
7649 pgrp = pi->pgrp;
7650 if (pgrp < 0) /* true for 1st process only */
7651 pgrp = getpid();
7652 if (setpgid(0, pgrp) == 0
7653 && pi->followup != PIPE_BG
7654 && G_saved_tty_pgrp /* we have ctty */
7655 ) {
7656 /* We do it in *every* child, not just first,
7657 * to avoid races */
7658 tcsetpgrp(G_interactive_fd, pgrp);
7659 }
7660 }
7661#endif
7662 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
7663 /* 1st cmd in backgrounded pipe
7664 * should have its stdin /dev/null'ed */
7665 close(0);
7666 if (open(bb_dev_null, O_RDONLY))
7667 xopen("/", O_RDONLY);
7668 } else {
7669 xmove_fd(next_infd, 0);
7670 }
7671 xmove_fd(pipefds.wr, 1);
7672 if (pipefds.rd > 1)
7673 close(pipefds.rd);
7674 /* Like bash, explicit redirects override pipes,
Denys Vlasenko869994c2016-08-20 15:16:00 +02007675 * and the pipe fd (fd#1) is available for dup'ing:
7676 * "cmd1 2>&1 | cmd2": fd#1 is duped to fd#2, thus stderr
7677 * of cmd1 goes into pipe.
7678 */
7679 if (setup_redirects(command, NULL)) {
7680 /* Happens when redir file can't be opened:
7681 * $ hush -c 'echo FOO >&2 | echo BAR 3>/qwe/rty; echo BAZ'
7682 * FOO
7683 * hush: can't open '/qwe/rty': No such file or directory
7684 * BAZ
7685 * (echo BAR is not executed, it hits _exit(1) below)
7686 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007687 _exit(1);
Denys Vlasenko869994c2016-08-20 15:16:00 +02007688 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007689
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007690 /* Stores to nommu_save list of env vars putenv'ed
7691 * (NOMMU, on MMU we don't need that) */
7692 /* cast away volatility... */
7693 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
7694 /* pseudo_exec() does not return */
7695 }
7696
7697 /* parent or error */
7698#if ENABLE_HUSH_FAST
7699 G.count_SIGCHLD++;
7700//bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
7701#endif
7702 enable_restore_tty_pgrp_on_exit();
7703#if !BB_MMU
7704 /* Clean up after vforked child */
7705 free(nommu_save.argv);
7706 free(nommu_save.argv_from_re_execing);
7707 unset_vars(nommu_save.new_env);
7708 add_vars(nommu_save.old_vars);
7709#endif
7710 free(argv_expanded);
7711 argv_expanded = NULL;
7712 if (command->pid < 0) { /* [v]fork failed */
7713 /* Clearly indicate, was it fork or vfork */
7714 bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
7715 } else {
7716 pi->alive_cmds++;
7717#if ENABLE_HUSH_JOB
7718 /* Second and next children need to know pid of first one */
7719 if (pi->pgrp < 0)
7720 pi->pgrp = command->pid;
7721#endif
7722 }
7723
7724 if (cmd_no > 1)
7725 close(next_infd);
7726 if (cmd_no < pi->num_cmds)
7727 close(pipefds.wr);
7728 /* Pass read (output) pipe end to next iteration */
7729 next_infd = pipefds.rd;
7730 }
7731
7732 if (!pi->alive_cmds) {
7733 debug_leave();
7734 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
7735 return 1;
7736 }
7737
7738 debug_leave();
7739 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
7740 return -1;
7741}
7742
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007743/* NB: called by pseudo_exec, and therefore must not modify any
7744 * global data until exec/_exit (we can be a child after vfork!) */
7745static int run_list(struct pipe *pi)
7746{
7747#if ENABLE_HUSH_CASE
7748 char *case_word = NULL;
7749#endif
7750#if ENABLE_HUSH_LOOPS
7751 struct pipe *loop_top = NULL;
7752 char **for_lcur = NULL;
7753 char **for_list = NULL;
7754#endif
7755 smallint last_followup;
7756 smalluint rcode;
7757#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
7758 smalluint cond_code = 0;
7759#else
7760 enum { cond_code = 0 };
7761#endif
7762#if HAS_KEYWORDS
Denys Vlasenko9b782552010-09-08 13:33:26 +02007763 smallint rword; /* RES_foo */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007764 smallint last_rword; /* ditto */
7765#endif
7766
7767 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
7768 debug_enter();
7769
7770#if ENABLE_HUSH_LOOPS
7771 /* Check syntax for "for" */
Denys Vlasenko0d6a4ec2010-12-18 01:34:49 +01007772 {
7773 struct pipe *cpipe;
7774 for (cpipe = pi; cpipe; cpipe = cpipe->next) {
7775 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
7776 continue;
7777 /* current word is FOR or IN (BOLD in comments below) */
7778 if (cpipe->next == NULL) {
7779 syntax_error("malformed for");
7780 debug_leave();
7781 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
7782 return 1;
7783 }
7784 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
7785 if (cpipe->next->res_word == RES_DO)
7786 continue;
7787 /* next word is not "do". It must be "in" then ("FOR v in ...") */
7788 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
7789 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
7790 ) {
7791 syntax_error("malformed for");
7792 debug_leave();
7793 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
7794 return 1;
7795 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007796 }
7797 }
7798#endif
7799
7800 /* Past this point, all code paths should jump to ret: label
7801 * in order to return, no direct "return" statements please.
7802 * This helps to ensure that no memory is leaked. */
7803
7804#if ENABLE_HUSH_JOB
7805 G.run_list_level++;
7806#endif
7807
7808#if HAS_KEYWORDS
7809 rword = RES_NONE;
7810 last_rword = RES_XXXX;
7811#endif
7812 last_followup = PIPE_SEQ;
7813 rcode = G.last_exitcode;
7814
7815 /* Go through list of pipes, (maybe) executing them. */
7816 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01007817 int r;
7818
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007819 if (G.flag_SIGINT)
7820 break;
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02007821 if (G_flag_return_in_progress == 1)
7822 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007823
7824 IF_HAS_KEYWORDS(rword = pi->res_word;)
7825 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
7826 rword, cond_code, last_rword);
7827#if ENABLE_HUSH_LOOPS
7828 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
7829 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
7830 ) {
7831 /* start of a loop: remember where loop starts */
7832 loop_top = pi;
7833 G.depth_of_loop++;
7834 }
7835#endif
7836 /* Still in the same "if...", "then..." or "do..." branch? */
7837 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
7838 if ((rcode == 0 && last_followup == PIPE_OR)
7839 || (rcode != 0 && last_followup == PIPE_AND)
7840 ) {
7841 /* It is "<true> || CMD" or "<false> && CMD"
7842 * and we should not execute CMD */
7843 debug_printf_exec("skipped cmd because of || or &&\n");
7844 last_followup = pi->followup;
Denys Vlasenko3beab832013-04-07 18:16:58 +02007845 goto dont_check_jobs_but_continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007846 }
7847 }
7848 last_followup = pi->followup;
7849 IF_HAS_KEYWORDS(last_rword = rword;)
7850#if ENABLE_HUSH_IF
7851 if (cond_code) {
7852 if (rword == RES_THEN) {
7853 /* if false; then ... fi has exitcode 0! */
7854 G.last_exitcode = rcode = EXIT_SUCCESS;
7855 /* "if <false> THEN cmd": skip cmd */
7856 continue;
7857 }
7858 } else {
7859 if (rword == RES_ELSE || rword == RES_ELIF) {
7860 /* "if <true> then ... ELSE/ELIF cmd":
7861 * skip cmd and all following ones */
7862 break;
7863 }
7864 }
7865#endif
7866#if ENABLE_HUSH_LOOPS
7867 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
7868 if (!for_lcur) {
7869 /* first loop through for */
7870
7871 static const char encoded_dollar_at[] ALIGN1 = {
7872 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
7873 }; /* encoded representation of "$@" */
7874 static const char *const encoded_dollar_at_argv[] = {
7875 encoded_dollar_at, NULL
7876 }; /* argv list with one element: "$@" */
7877 char **vals;
7878
7879 vals = (char**)encoded_dollar_at_argv;
7880 if (pi->next->res_word == RES_IN) {
7881 /* if no variable values after "in" we skip "for" */
7882 if (!pi->next->cmds[0].argv) {
7883 G.last_exitcode = rcode = EXIT_SUCCESS;
7884 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
7885 break;
7886 }
7887 vals = pi->next->cmds[0].argv;
7888 } /* else: "for var; do..." -> assume "$@" list */
7889 /* create list of variable values */
7890 debug_print_strings("for_list made from", vals);
7891 for_list = expand_strvec_to_strvec(vals);
7892 for_lcur = for_list;
7893 debug_print_strings("for_list", for_list);
7894 }
7895 if (!*for_lcur) {
7896 /* "for" loop is over, clean up */
7897 free(for_list);
7898 for_list = NULL;
7899 for_lcur = NULL;
7900 break;
7901 }
7902 /* Insert next value from for_lcur */
7903 /* note: *for_lcur already has quotes removed, $var expanded, etc */
7904 set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7905 continue;
7906 }
7907 if (rword == RES_IN) {
7908 continue; /* "for v IN list;..." - "in" has no cmds anyway */
7909 }
7910 if (rword == RES_DONE) {
7911 continue; /* "done" has no cmds too */
7912 }
7913#endif
7914#if ENABLE_HUSH_CASE
7915 if (rword == RES_CASE) {
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01007916 debug_printf_exec("CASE cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007917 case_word = expand_strvec_to_string(pi->cmds->argv);
7918 continue;
7919 }
7920 if (rword == RES_MATCH) {
7921 char **argv;
7922
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01007923 debug_printf_exec("MATCH cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007924 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
7925 break;
7926 /* all prev words didn't match, does this one match? */
7927 argv = pi->cmds->argv;
7928 while (*argv) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02007929 char *pattern = expand_string_to_string(*argv, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007930 /* TODO: which FNM_xxx flags to use? */
7931 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
7932 free(pattern);
7933 if (cond_code == 0) { /* match! we will execute this branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01007934 free(case_word);
7935 case_word = NULL; /* make future "word)" stop */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007936 break;
7937 }
7938 argv++;
7939 }
7940 continue;
7941 }
7942 if (rword == RES_CASE_BODY) { /* inside of a case branch */
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01007943 debug_printf_exec("CASE_BODY cond_code:%d\n", cond_code);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007944 if (cond_code != 0)
7945 continue; /* not matched yet, skip this pipe */
7946 }
Denys Vlasenkoaeaee432016-11-04 20:14:04 +01007947 if (rword == RES_ESAC) {
7948 debug_printf_exec("ESAC cond_code:%d\n", cond_code);
7949 if (case_word) {
7950 /* "case" did not match anything: still set $? (to 0) */
7951 G.last_exitcode = rcode = EXIT_SUCCESS;
7952 }
7953 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007954#endif
7955 /* Just pressing <enter> in shell should check for jobs.
7956 * OTOH, in non-interactive shell this is useless
7957 * and only leads to extra job checks */
7958 if (pi->num_cmds == 0) {
7959 if (G_interactive_fd)
7960 goto check_jobs_and_continue;
7961 continue;
7962 }
7963
7964 /* After analyzing all keywords and conditions, we decided
7965 * to execute this pipe. NB: have to do checkjobs(NULL)
7966 * after run_pipe to collect any background children,
7967 * even if list execution is to be stopped. */
7968 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007969#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01007970 G.flag_break_continue = 0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007971#endif
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01007972 rcode = r = run_pipe(pi); /* NB: rcode is a smalluint, r is int */
7973 if (r != -1) {
7974 /* We ran a builtin, function, or group.
7975 * rcode is already known
7976 * and we don't need to wait for anything. */
7977 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
7978 G.last_exitcode = rcode;
7979 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007980#if ENABLE_HUSH_LOOPS
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01007981 /* Was it "break" or "continue"? */
7982 if (G.flag_break_continue) {
7983 smallint fbc = G.flag_break_continue;
7984 /* We might fall into outer *loop*,
7985 * don't want to break it too */
7986 if (loop_top) {
7987 G.depth_break_continue--;
7988 if (G.depth_break_continue == 0)
7989 G.flag_break_continue = 0;
7990 /* else: e.g. "continue 2" should *break* once, *then* continue */
7991 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
7992 if (G.depth_break_continue != 0 || fbc == BC_BREAK) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02007993 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007994 break;
7995 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01007996 /* "continue": simulate end of loop */
7997 rword = RES_DONE;
7998 continue;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007999 }
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008000#endif
8001 if (G_flag_return_in_progress == 1) {
8002 checkjobs(NULL, 0 /*(no pid to wait for)*/);
8003 break;
8004 }
8005 } else if (pi->followup == PIPE_BG) {
8006 /* What does bash do with attempts to background builtins? */
8007 /* even bash 3.2 doesn't do that well with nested bg:
8008 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
8009 * I'm NOT treating inner &'s as jobs */
8010#if ENABLE_HUSH_JOB
8011 if (G.run_list_level == 1)
8012 insert_bg_job(pi);
8013#endif
8014 /* Last command's pid goes to $! */
8015 G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid;
8016 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
8017/* Check pi->pi_inverted? "! sleep 1 & echo $?": bash says 1. dash and ash says 0 */
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008018 rcode = EXIT_SUCCESS;
8019 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008020 } else {
8021#if ENABLE_HUSH_JOB
8022 if (G.run_list_level == 1 && G_interactive_fd) {
8023 /* Waits for completion, then fg's main shell */
8024 rcode = checkjobs_and_fg_shell(pi);
8025 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008026 goto check_traps;
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008027 }
Denys Vlasenko6c635d62016-11-08 20:26:11 +01008028#endif
8029 /* This one just waits for completion */
8030 rcode = checkjobs(pi, 0 /*(no pid to wait for)*/);
8031 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
8032 check_traps:
Denys Vlasenko5cc9bf62016-11-08 17:34:44 +01008033 G.last_exitcode = rcode;
8034 check_and_run_traps();
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008035 }
8036
8037 /* Analyze how result affects subsequent commands */
8038#if ENABLE_HUSH_IF
8039 if (rword == RES_IF || rword == RES_ELIF)
8040 cond_code = rcode;
8041#endif
Denys Vlasenko3beab832013-04-07 18:16:58 +02008042 check_jobs_and_continue:
Denys Vlasenko7e675362016-10-28 21:57:31 +02008043 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denys Vlasenko3beab832013-04-07 18:16:58 +02008044 dont_check_jobs_but_continue: ;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008045#if ENABLE_HUSH_LOOPS
8046 /* Beware of "while false; true; do ..."! */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008047 if (pi->next
8048 && (pi->next->res_word == RES_DO || pi->next->res_word == RES_DONE)
Denys Vlasenko56a3b822011-06-01 12:47:07 +02008049 /* check for RES_DONE is needed for "while ...; do \n done" case */
Denys Vlasenko00ae9892011-05-31 17:35:45 +02008050 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008051 if (rword == RES_WHILE) {
8052 if (rcode) {
8053 /* "while false; do...done" - exitcode 0 */
8054 G.last_exitcode = rcode = EXIT_SUCCESS;
8055 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
Denys Vlasenko3beab832013-04-07 18:16:58 +02008056 break;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008057 }
8058 }
8059 if (rword == RES_UNTIL) {
8060 if (!rcode) {
8061 debug_printf_exec(": until expr is true: breaking\n");
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008062 break;
8063 }
8064 }
8065 }
8066#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008067 } /* for (pi) */
8068
8069#if ENABLE_HUSH_JOB
8070 G.run_list_level--;
8071#endif
8072#if ENABLE_HUSH_LOOPS
8073 if (loop_top)
8074 G.depth_of_loop--;
8075 free(for_list);
8076#endif
8077#if ENABLE_HUSH_CASE
8078 free(case_word);
8079#endif
8080 debug_leave();
8081 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
8082 return rcode;
8083}
8084
8085/* Select which version we will use */
8086static int run_and_free_list(struct pipe *pi)
8087{
8088 int rcode = 0;
8089 debug_printf_exec("run_and_free_list entered\n");
Dan Fandrich85c62472010-11-20 13:05:17 -08008090 if (!G.o_opt[OPT_O_NOEXEC]) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02008091 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
8092 rcode = run_list(pi);
8093 }
8094 /* free_pipe_list has the side effect of clearing memory.
8095 * In the long run that function can be merged with run_list,
8096 * but doing that now would hobble the debugging effort. */
8097 free_pipe_list(pi);
8098 debug_printf_exec("run_and_free_list return %d\n", rcode);
8099 return rcode;
8100}
8101
8102
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008103static void install_sighandlers(unsigned mask)
Eric Andersen52a97ca2001-06-22 06:49:26 +00008104{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008105 sighandler_t old_handler;
8106 unsigned sig = 0;
8107 while ((mask >>= 1) != 0) {
8108 sig++;
8109 if (!(mask & 1))
8110 continue;
Denys Vlasenko0806e402011-05-12 23:06:20 +02008111 old_handler = install_sighandler(sig, pick_sighandler(sig));
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008112 /* POSIX allows shell to re-enable SIGCHLD
8113 * even if it was SIG_IGN on entry.
8114 * Therefore we skip IGN check for it:
8115 */
8116 if (sig == SIGCHLD)
8117 continue;
8118 if (old_handler == SIG_IGN) {
8119 /* oops... restore back to IGN, and record this fact */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008120 install_sighandler(sig, old_handler);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008121 if (!G.traps)
8122 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
8123 free(G.traps[sig]);
8124 G.traps[sig] = xzalloc(1); /* == xstrdup(""); */
8125 }
8126 }
8127}
8128
8129/* Called a few times only (or even once if "sh -c") */
8130static void install_special_sighandlers(void)
8131{
Denis Vlasenkof9375282009-04-05 19:13:39 +00008132 unsigned mask;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008133
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008134 /* Which signals are shell-special? */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008135 mask = (1 << SIGQUIT) | (1 << SIGCHLD);
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008136 if (G_interactive_fd) {
8137 mask |= SPECIAL_INTERACTIVE_SIGS;
8138 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008139 mask |= SPECIAL_JOBSTOP_SIGS;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008140 }
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008141 /* Careful, do not re-install handlers we already installed */
8142 if (G.special_sig_mask != mask) {
8143 unsigned diff = mask & ~G.special_sig_mask;
8144 G.special_sig_mask = mask;
8145 install_sighandlers(diff);
8146 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008147}
8148
8149#if ENABLE_HUSH_JOB
8150/* helper */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008151/* Set handlers to restore tty pgrp and exit */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008152static void install_fatal_sighandlers(void)
Denis Vlasenkof9375282009-04-05 19:13:39 +00008153{
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008154 unsigned mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008155
8156 /* We will restore tty pgrp on these signals */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008157 mask = 0
Denys Vlasenko830ea352016-11-08 04:59:11 +01008158 /*+ (1 << SIGILL ) * HUSH_DEBUG*/
8159 /*+ (1 << SIGFPE ) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008160 + (1 << SIGBUS ) * HUSH_DEBUG
8161 + (1 << SIGSEGV) * HUSH_DEBUG
Denys Vlasenko830ea352016-11-08 04:59:11 +01008162 /*+ (1 << SIGTRAP) * HUSH_DEBUG*/
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008163 + (1 << SIGABRT)
8164 /* bash 3.2 seems to handle these just like 'fatal' ones */
8165 + (1 << SIGPIPE)
8166 + (1 << SIGALRM)
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008167 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are special sigs.
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008168 * if we aren't interactive... but in this case
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008169 * we never want to restore pgrp on exit, and this fn is not called
8170 */
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008171 /*+ (1 << SIGHUP )*/
8172 /*+ (1 << SIGTERM)*/
8173 /*+ (1 << SIGINT )*/
8174 ;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008175 G_fatal_sig_mask = mask;
Denys Vlasenko54e9e122011-05-09 00:52:15 +02008176
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008177 install_sighandlers(mask);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008178}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00008179#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00008180
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008181static int set_mode(int state, char mode, const char *o_opt)
Denis Vlasenkod5762932009-03-31 11:22:57 +00008182{
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008183 int idx;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008184 switch (mode) {
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008185 case 'n':
Dan Fandrich85c62472010-11-20 13:05:17 -08008186 G.o_opt[OPT_O_NOEXEC] = state;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008187 break;
8188 case 'x':
8189 IF_HUSH_MODE_X(G_x_mode = state;)
8190 break;
8191 case 'o':
8192 if (!o_opt) {
8193 /* "set -+o" without parameter.
8194 * in bash, set -o produces this output:
8195 * pipefail off
8196 * and set +o:
8197 * set +o pipefail
8198 * We always use the second form.
8199 */
8200 const char *p = o_opt_strings;
8201 idx = 0;
8202 while (*p) {
8203 printf("set %co %s\n", (G.o_opt[idx] ? '-' : '+'), p);
8204 idx++;
8205 p += strlen(p) + 1;
8206 }
8207 break;
8208 }
8209 idx = index_in_strings(o_opt_strings, o_opt);
8210 if (idx >= 0) {
8211 G.o_opt[idx] = state;
8212 break;
8213 }
8214 default:
8215 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008216 }
8217 return EXIT_SUCCESS;
8218}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008219
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00008220int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00008221int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00008222{
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008223 enum {
8224 OPT_login = (1 << 0),
8225 };
8226 unsigned flags;
Eric Andersen25f27032001-04-26 23:22:31 +00008227 int opt;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008228 unsigned builtin_argc;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008229 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008230 struct variable *cur_var;
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008231 struct variable *shell_ver;
Eric Andersenbc604a22001-05-16 05:24:03 +00008232
Denis Vlasenko574f2f42008-02-27 18:41:59 +00008233 INIT_G();
Denys Vlasenko10c01312011-05-11 11:49:21 +02008234 if (EXIT_SUCCESS != 0) /* if EXIT_SUCCESS == 0, it is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008235 G.last_exitcode = EXIT_SUCCESS;
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008236
Denys Vlasenko10c01312011-05-11 11:49:21 +02008237#if ENABLE_HUSH_FAST
8238 G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
8239#endif
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008240#if !BB_MMU
8241 G.argv0_for_re_execing = argv[0];
8242#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008243 /* Deal with HUSH_VERSION */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008244 shell_ver = xzalloc(sizeof(*shell_ver));
8245 shell_ver->flg_export = 1;
8246 shell_ver->flg_read_only = 1;
Denys Vlasenko4f870492010-09-10 11:06:01 +02008247 /* Code which handles ${var<op>...} needs writable values for all variables,
Denys Vlasenko36f774a2010-09-05 14:45:38 +02008248 * therefore we xstrdup: */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008249 shell_ver->varstr = xstrdup(hush_version_str);
Denys Vlasenko605067b2010-09-06 12:10:51 +02008250 /* Create shell local variables from the values
8251 * currently living in the environment */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00008252 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008253 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008254 G.top_var = shell_ver;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008255 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00008256 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008257 if (e) while (*e) {
8258 char *value = strchr(*e, '=');
8259 if (value) { /* paranoia */
8260 cur_var->next = xzalloc(sizeof(*cur_var));
8261 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00008262 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008263 cur_var->max_len = strlen(*e);
8264 cur_var->flg_export = 1;
8265 }
8266 e++;
8267 }
Denys Vlasenko605067b2010-09-06 12:10:51 +02008268 /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */
Denys Vlasenko75eb9d22010-12-21 21:18:12 +01008269 debug_printf_env("putenv '%s'\n", shell_ver->varstr);
8270 putenv(shell_ver->varstr);
Denys Vlasenko6db47842009-09-05 20:15:17 +02008271
8272 /* Export PWD */
8273 set_pwd_var(/*exp:*/ 1);
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008274
8275#if ENABLE_HUSH_BASH_COMPAT
8276 /* Set (but not export) HOSTNAME unless already set */
8277 if (!get_local_var_value("HOSTNAME")) {
8278 struct utsname uts;
8279 uname(&uts);
8280 set_local_var_from_halves("HOSTNAME", uts.nodename);
8281 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02008282 /* bash also exports SHLVL and _,
8283 * and sets (but doesn't export) the following variables:
8284 * BASH=/bin/bash
8285 * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
8286 * BASH_VERSION='3.2.0(1)-release'
8287 * HOSTTYPE=i386
8288 * MACHTYPE=i386-pc-linux-gnu
8289 * OSTYPE=linux-gnu
Denys Vlasenkodea47882009-10-09 15:40:49 +02008290 * PPID=<NNNNN> - we also do it elsewhere
Denys Vlasenko6db47842009-09-05 20:15:17 +02008291 * EUID=<NNNNN>
8292 * UID=<NNNNN>
8293 * GROUPS=()
8294 * LINES=<NNN>
8295 * COLUMNS=<NNN>
8296 * BASH_ARGC=()
8297 * BASH_ARGV=()
8298 * BASH_LINENO=()
8299 * BASH_SOURCE=()
8300 * DIRSTACK=()
8301 * PIPESTATUS=([0]="0")
8302 * HISTFILE=/<xxx>/.bash_history
8303 * HISTFILESIZE=500
8304 * HISTSIZE=500
8305 * MAILCHECK=60
8306 * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
8307 * SHELL=/bin/bash
8308 * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
8309 * TERM=dumb
8310 * OPTERR=1
8311 * OPTIND=1
8312 * IFS=$' \t\n'
8313 * PS1='\s-\v\$ '
8314 * PS2='> '
8315 * PS4='+ '
8316 */
Denys Vlasenko3fa97af2014-04-15 11:43:29 +02008317#endif
Denys Vlasenko6db47842009-09-05 20:15:17 +02008318
Denis Vlasenko38f63192007-01-22 09:03:07 +00008319#if ENABLE_FEATURE_EDITING
Denys Vlasenkoe45af7a2011-09-04 16:15:24 +02008320 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00008321#endif
Denys Vlasenko99862cb2010-09-12 17:34:13 +02008322
Eric Andersen94ac2442001-05-22 19:05:18 +00008323 /* Initialize some more globals to non-zero values */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00008324 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00008325
Denys Vlasenkoe9abe752016-08-19 20:15:26 +02008326 die_func = restore_ttypgrp_and__exit;
Denis Vlasenkoed782372009-04-10 00:45:02 +00008327
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008328 /* Shell is non-interactive at first. We need to call
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008329 * install_special_sighandlers() if we are going to execute "sh <script>",
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008330 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008331 * If we later decide that we are interactive, we run install_special_sighandlers()
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008332 * in order to intercept (more) signals.
8333 */
8334
8335 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008336 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008337 flags = (argv[0] && argv[0][0] == '-') ? OPT_login : 0;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008338 builtin_argc = 0;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008339 while (1) {
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008340 opt = getopt(argc, argv, "+c:xinsl"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008341#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00008342 "<:$:R:V:"
8343# if ENABLE_HUSH_FUNCTIONS
8344 "F:"
8345# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008346#endif
8347 );
8348 if (opt <= 0)
8349 break;
Eric Andersen25f27032001-04-26 23:22:31 +00008350 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008351 case 'c':
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008352 /* Possibilities:
8353 * sh ... -c 'script'
8354 * sh ... -c 'script' ARG0 [ARG1...]
8355 * On NOMMU, if builtin_argc != 0,
Denys Vlasenko17323a62010-01-28 01:57:05 +01008356 * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008357 * "" needs to be replaced with NULL
8358 * and BARGV vector fed to builtin function.
Denys Vlasenko17323a62010-01-28 01:57:05 +01008359 * Note: the form without ARG0 never happens:
8360 * sh ... -c 'builtin' BARGV... ""
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008361 */
Denys Vlasenkodea47882009-10-09 15:40:49 +02008362 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008363 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02008364 G.root_ppid = getppid();
8365 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008366 G.global_argv = argv + optind;
8367 G.global_argc = argc - optind;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008368 if (builtin_argc) {
8369 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
8370 const struct built_in_command *x;
8371
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008372 install_special_sighandlers();
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008373 x = find_builtin(optarg);
8374 if (x) { /* paranoia */
8375 G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
8376 G.global_argv += builtin_argc;
8377 G.global_argv[-1] = NULL; /* replace "" */
Denys Vlasenko8ee2ada2011-02-07 02:03:51 +01008378 fflush_all();
Denys Vlasenko17323a62010-01-28 01:57:05 +01008379 G.last_exitcode = x->b_function(argv + optind - 1);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008380 }
8381 goto final_return;
8382 }
8383 if (!G.global_argv[0]) {
8384 /* -c 'script' (no params): prevent empty $0 */
8385 G.global_argv--; /* points to argv[i] of 'script' */
8386 G.global_argv[0] = argv[0];
Denys Vlasenko5ae8f1c2010-05-22 06:32:11 +02008387 G.global_argc++;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008388 } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008389 install_special_sighandlers();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008390 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008391 goto final_return;
8392 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00008393 /* Well, we cannot just declare interactiveness,
8394 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008395 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008396 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00008397 case 's':
8398 /* "-s" means "read from stdin", but this is how we always
8399 * operate, so simply do nothing here. */
8400 break;
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008401 case 'l':
8402 flags |= OPT_login;
8403 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008404#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008405 case '<': /* "big heredoc" support */
Denys Vlasenko729ecb82010-06-07 14:14:26 +02008406 full_write1_str(optarg);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00008407 _exit(0);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008408 case '$': {
8409 unsigned long long empty_trap_mask;
8410
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008411 G.root_pid = bb_strtou(optarg, &optarg, 16);
8412 optarg++;
Denys Vlasenkodea47882009-10-09 15:40:49 +02008413 G.root_ppid = bb_strtou(optarg, &optarg, 16);
8414 optarg++;
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008415 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
8416 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008417 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008418 optarg++;
8419 builtin_argc = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008420 optarg++;
8421 empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
8422 if (empty_trap_mask != 0) {
8423 int sig;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008424 install_special_sighandlers();
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008425 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
8426 for (sig = 1; sig < NSIG; sig++) {
8427 if (empty_trap_mask & (1LL << sig)) {
8428 G.traps[sig] = xzalloc(1); /* == xstrdup(""); */
Denys Vlasenko0806e402011-05-12 23:06:20 +02008429 install_sighandler(sig, SIG_IGN);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008430 }
8431 }
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008432 }
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008433# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008434 optarg++;
8435 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008436# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00008437 break;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008438 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008439 case 'R':
8440 case 'V':
Denys Vlasenko295fef82009-06-03 12:47:26 +02008441 set_local_var(xstrdup(optarg), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ opt == 'R');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008442 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00008443# if ENABLE_HUSH_FUNCTIONS
8444 case 'F': {
8445 struct function *funcp = new_function(optarg);
8446 /* funcp->name is already set to optarg */
8447 /* funcp->body is set to NULL. It's a special case. */
8448 funcp->body_as_string = argv[optind];
8449 optind++;
8450 break;
8451 }
8452# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00008453#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008454 case 'n':
8455 case 'x':
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008456 if (set_mode(1, opt, NULL) == 0) /* no error */
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008457 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008458 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008459#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008460 fprintf(stderr, "Usage: sh [FILE]...\n"
8461 " or: sh -c command [args]...\n\n");
8462 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008463#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00008464 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00008465#endif
Eric Andersen25f27032001-04-26 23:22:31 +00008466 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008467 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008468
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008469 /* Skip options. Try "hush -l": $1 should not be "-l"! */
8470 G.global_argc = argc - (optind - 1);
8471 G.global_argv = argv + (optind - 1);
8472 G.global_argv[0] = argv[0];
8473
Denys Vlasenkodea47882009-10-09 15:40:49 +02008474 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008475 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02008476 G.root_ppid = getppid();
8477 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008478
8479 /* If we are login shell... */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008480 if (flags & OPT_login) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008481 FILE *input;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008482 debug_printf("sourcing /etc/profile\n");
8483 input = fopen_for_read("/etc/profile");
8484 if (input != NULL) {
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008485 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008486 install_special_sighandlers();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008487 parse_and_run_file(input);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008488 fclose_and_forget(input);
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008489 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008490 /* bash: after sourcing /etc/profile,
8491 * tries to source (in the given order):
8492 * ~/.bash_profile, ~/.bash_login, ~/.profile,
Denys Vlasenko28a105d2009-06-01 11:26:30 +02008493 * stopping on first found. --noprofile turns this off.
Denis Vlasenkof9375282009-04-05 19:13:39 +00008494 * bash also sources ~/.bash_logout on exit.
8495 * If called as sh, skips .bash_XXX files.
8496 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00008497 }
8498
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008499 if (G.global_argv[1]) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008500 FILE *input;
8501 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00008502 * "bash <script>" (which is never interactive (unless -i?))
8503 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00008504 * If called as sh, does the same but with $ENV.
Denys Vlasenko2eb0a7e2016-10-27 11:28:59 +02008505 * Also NB, per POSIX, $ENV should undergo parameter expansion.
Denis Vlasenkof9375282009-04-05 19:13:39 +00008506 */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008507 G.global_argc--;
8508 G.global_argv++;
8509 debug_printf("running script '%s'\n", G.global_argv[0]);
Denys Vlasenkob7adf7a2016-10-25 17:00:13 +02008510 xfunc_error_retval = 127; /* for "hush /does/not/exist" case */
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008511 input = xfopen_for_read(G.global_argv[0]);
Denys Vlasenkob7adf7a2016-10-25 17:00:13 +02008512 xfunc_error_retval = 1;
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008513 remember_FILE(input);
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008514 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008515 parse_and_run_file(input);
8516#if ENABLE_FEATURE_CLEAN_UP
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02008517 fclose_and_forget(input);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008518#endif
8519 goto final_return;
8520 }
8521
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008522 /* Up to here, shell was non-interactive. Now it may become one.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008523 * NB: don't forget to (re)run install_special_sighandlers() as needed.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00008524 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00008525
Denys Vlasenko28a105d2009-06-01 11:26:30 +02008526 /* A shell is interactive if the '-i' flag was given,
8527 * or if all of the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00008528 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00008529 * no arguments remaining or the -s flag given
8530 * standard input is a terminal
8531 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00008532 * Refer to Posix.2, the description of the 'sh' utility.
8533 */
8534#if ENABLE_HUSH_JOB
8535 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Mike Frysinger38478a62009-05-20 04:48:06 -04008536 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
8537 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
8538 if (G_saved_tty_pgrp < 0)
8539 G_saved_tty_pgrp = 0;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008540
8541 /* try to dup stdin to high fd#, >= 255 */
8542 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
8543 if (G_interactive_fd < 0) {
8544 /* try to dup to any fd */
8545 G_interactive_fd = dup(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008546 if (G_interactive_fd < 0) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008547 /* give up */
8548 G_interactive_fd = 0;
Mike Frysinger38478a62009-05-20 04:48:06 -04008549 G_saved_tty_pgrp = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00008550 }
8551 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008552// TODO: track & disallow any attempts of user
8553// to (inadvertently) close/redirect G_interactive_fd
Eric Andersen25f27032001-04-26 23:22:31 +00008554 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008555 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008556 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008557 close_on_exec_on(G_interactive_fd);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008558
Mike Frysinger38478a62009-05-20 04:48:06 -04008559 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008560 /* If we were run as 'hush &', sleep until we are
8561 * in the foreground (tty pgrp == our pgrp).
8562 * If we get started under a job aware app (like bash),
8563 * make sure we are now in charge so we don't fight over
8564 * who gets the foreground */
8565 while (1) {
8566 pid_t shell_pgrp = getpgrp();
Mike Frysinger38478a62009-05-20 04:48:06 -04008567 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
8568 if (G_saved_tty_pgrp == shell_pgrp)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008569 break;
8570 /* send TTIN to ourself (should stop us) */
8571 kill(- shell_pgrp, SIGTTIN);
8572 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00008573 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008574
Denys Vlasenkof58f7052011-05-12 02:10:33 +02008575 /* Install more signal handlers */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008576 install_special_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008577
Mike Frysinger38478a62009-05-20 04:48:06 -04008578 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008579 /* Set other signals to restore saved_tty_pgrp */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008580 install_fatal_sighandlers();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008581 /* Put ourselves in our own process group
8582 * (bash, too, does this only if ctty is available) */
8583 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
8584 /* Grab control of the terminal */
8585 tcsetpgrp(G_interactive_fd, getpid());
8586 }
Denys Vlasenko550bf5b2015-10-09 16:42:57 +02008587 enable_restore_tty_pgrp_on_exit();
Denys Vlasenko4840ae82011-09-04 15:28:03 +02008588
8589# if ENABLE_HUSH_SAVEHISTORY && MAX_HISTORY > 0
8590 {
8591 const char *hp = get_local_var_value("HISTFILE");
8592 if (!hp) {
8593 hp = get_local_var_value("HOME");
8594 if (hp)
8595 hp = concat_path_file(hp, ".hush_history");
8596 } else {
8597 hp = xstrdup(hp);
8598 }
8599 if (hp) {
8600 G.line_input_state->hist_file = hp;
Denys Vlasenko4840ae82011-09-04 15:28:03 +02008601 //set_local_var(xasprintf("HISTFILE=%s", ...));
8602 }
8603# if ENABLE_FEATURE_SH_HISTFILESIZE
8604 hp = get_local_var_value("HISTFILESIZE");
8605 G.line_input_state->max_history = size_from_HISTFILESIZE(hp);
8606# endif
8607 }
8608# endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008609 } else {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008610 install_special_sighandlers();
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008611 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008612#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00008613 /* No job control compiled in, only prompt/line editing */
8614 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008615 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
8616 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008617 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008618 G_interactive_fd = dup(STDIN_FILENO);
8619 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008620 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008621 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00008622 }
8623 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008624 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00008625 close_on_exec_on(G_interactive_fd);
Denis Vlasenkof9375282009-04-05 19:13:39 +00008626 }
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008627 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008628#else
8629 /* We have interactiveness code disabled */
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008630 install_special_sighandlers();
Denis Vlasenkof9375282009-04-05 19:13:39 +00008631#endif
8632 /* bash:
8633 * if interactive but not a login shell, sources ~/.bashrc
8634 * (--norc turns this off, --rcfile <file> overrides)
8635 */
8636
8637 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Denys Vlasenkoc34c0332009-09-29 12:25:30 +02008638 /* note: ash and hush share this string */
8639 printf("\n\n%s %s\n"
8640 IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
8641 "\n",
8642 bb_banner,
8643 "hush - the humble shell"
8644 );
Mike Frysingerb2705e12009-03-23 08:44:02 +00008645 }
8646
Denis Vlasenkof9375282009-04-05 19:13:39 +00008647 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00008648
Denis Vlasenkod76c0492007-05-25 02:16:25 +00008649 final_return:
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008650 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00008651}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00008652
8653
Denys Vlasenko1cc4b132009-08-21 00:05:51 +02008654#if ENABLE_MSH
8655int msh_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
8656int msh_main(int argc, char **argv)
8657{
Denys Vlasenkoed6ff5e2016-09-30 12:28:37 +02008658 bb_error_msg("msh is deprecated, please use hush instead");
Denys Vlasenko1cc4b132009-08-21 00:05:51 +02008659 return hush_main(argc, argv);
8660}
8661#endif
8662
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008663
8664/*
8665 * Built-ins
8666 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008667static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008668{
8669 return 0;
8670}
8671
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02008672static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008673{
8674 int argc = 0;
8675 while (*argv) {
8676 argc++;
8677 argv++;
8678 }
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02008679 return applet_main_func(argc, argv - argc);
Mike Frysingerccb19592009-10-15 03:31:15 -04008680}
8681
8682static int FAST_FUNC builtin_test(char **argv)
8683{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008684 return run_applet_main(argv, test_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008685}
8686
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008687static int FAST_FUNC builtin_echo(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008688{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008689 return run_applet_main(argv, echo_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008690}
8691
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04008692#if ENABLE_PRINTF
8693static int FAST_FUNC builtin_printf(char **argv)
8694{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008695 return run_applet_main(argv, printf_main);
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04008696}
8697#endif
8698
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008699static char **skip_dash_dash(char **argv)
8700{
8701 argv++;
8702 if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
8703 argv++;
8704 return argv;
8705}
8706
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008707static int FAST_FUNC builtin_eval(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008708{
8709 int rcode = EXIT_SUCCESS;
8710
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008711 argv = skip_dash_dash(argv);
8712 if (*argv) {
Denis Vlasenkob0a64782009-04-06 11:33:07 +00008713 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008714 /* bash:
8715 * eval "echo Hi; done" ("done" is syntax error):
8716 * "echo Hi" will not execute too.
8717 */
8718 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008719 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008720 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008721 }
8722 return rcode;
8723}
8724
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008725static int FAST_FUNC builtin_cd(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008726{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008727 const char *newdir;
8728
8729 argv = skip_dash_dash(argv);
8730 newdir = argv[0];
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008731 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008732 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008733 * bash says "bash: cd: HOME not set" and does nothing
8734 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008735 */
Denys Vlasenko90a99042009-09-06 02:36:23 +02008736 const char *home = get_local_var_value("HOME");
8737 newdir = home ? home : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00008738 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008739 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008740 /* Mimic bash message exactly */
8741 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008742 return EXIT_FAILURE;
8743 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02008744 /* Read current dir (get_cwd(1) is inside) and set PWD.
8745 * Note: do not enforce exporting. If PWD was unset or unexported,
8746 * set it again, but do not export. bash does the same.
8747 */
8748 set_pwd_var(/*exp:*/ 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008749 return EXIT_SUCCESS;
8750}
8751
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008752static int FAST_FUNC builtin_exec(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008753{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008754 argv = skip_dash_dash(argv);
8755 if (argv[0] == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008756 return EXIT_SUCCESS; /* bash does this */
Denys Vlasenkof37eb392009-10-18 11:46:35 +02008757
Denys Vlasenkof37eb392009-10-18 11:46:35 +02008758 /* Careful: we can end up here after [v]fork. Do not restore
8759 * tty pgrp then, only top-level shell process does that */
8760 if (G_saved_tty_pgrp && getpid() == G.root_pid)
8761 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
8762
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02008763 /* TODO: if exec fails, bash does NOT exit! We do.
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02008764 * We'll need to undo trap cleanup (it's inside execvp_or_die)
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02008765 * and tcsetpgrp, and this is inherently racy.
8766 */
8767 execvp_or_die(argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008768}
8769
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008770static int FAST_FUNC builtin_exit(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008771{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00008772 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00008773
8774 /* interactive bash:
8775 * # trap "echo EEE" EXIT
8776 * # exit
8777 * exit
8778 * There are stopped jobs.
8779 * (if there are _stopped_ jobs, running ones don't count)
8780 * # exit
8781 * exit
Denys Vlasenko6830ade2013-01-15 13:58:01 +01008782 * EEE (then bash exits)
Denis Vlasenko40e84372009-04-18 11:23:38 +00008783 *
Denys Vlasenkoa110c902010-09-12 15:38:04 +02008784 * TODO: we can use G.exiting = -1 as indicator "last cmd was exit"
Denis Vlasenko40e84372009-04-18 11:23:38 +00008785 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00008786
8787 /* note: EXIT trap is run by hush_exit */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008788 argv = skip_dash_dash(argv);
8789 if (argv[0] == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008790 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008791 /* mimic bash: exit 123abc == exit 255 + error msg */
8792 xfunc_error_retval = 255;
8793 /* bash: exit -2 == exit 254, no error msg */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008794 hush_exit(xatoi(argv[0]) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008795}
8796
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008797static void print_escaped(const char *s)
8798{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008799 if (*s == '\'')
8800 goto squote;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008801 do {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008802 const char *p = strchrnul(s, '\'');
8803 /* print 'xxxx', possibly just '' */
8804 printf("'%.*s'", (int)(p - s), s);
8805 if (*p == '\0')
8806 break;
8807 s = p;
8808 squote:
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008809 /* s points to '; print "'''...'''" */
8810 putchar('"');
8811 do putchar('\''); while (*++s == '\'');
8812 putchar('"');
8813 } while (*s);
8814}
8815
Denys Vlasenko295fef82009-06-03 12:47:26 +02008816#if !ENABLE_HUSH_LOCAL
8817#define helper_export_local(argv, exp, lvl) \
8818 helper_export_local(argv, exp)
8819#endif
8820static void helper_export_local(char **argv, int exp, int lvl)
8821{
8822 do {
8823 char *name = *argv;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02008824 char *name_end = strchrnul(name, '=');
Denys Vlasenko295fef82009-06-03 12:47:26 +02008825
8826 /* So far we do not check that name is valid (TODO?) */
8827
Denys Vlasenko27c56f12010-09-07 09:56:34 +02008828 if (*name_end == '\0') {
8829 struct variable *var, **vpp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02008830
Denys Vlasenko27c56f12010-09-07 09:56:34 +02008831 vpp = get_ptr_to_local_var(name, name_end - name);
8832 var = vpp ? *vpp : NULL;
8833
Denys Vlasenko295fef82009-06-03 12:47:26 +02008834 if (exp == -1) { /* unexporting? */
8835 /* export -n NAME (without =VALUE) */
8836 if (var) {
8837 var->flg_export = 0;
8838 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
8839 unsetenv(name);
8840 } /* else: export -n NOT_EXISTING_VAR: no-op */
8841 continue;
8842 }
8843 if (exp == 1) { /* exporting? */
8844 /* export NAME (without =VALUE) */
8845 if (var) {
8846 var->flg_export = 1;
8847 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
8848 putenv(var->varstr);
8849 continue;
8850 }
8851 }
Denys Vlasenko61508d92016-10-02 21:12:02 +02008852#if ENABLE_HUSH_LOCAL
8853 if (exp == 0 /* local? */
8854 && var && var->func_nest_level == lvl
8855 ) {
8856 /* "local x=abc; ...; local x" - ignore second local decl */
Denys Vlasenko80729a42016-10-02 22:33:15 +02008857 continue;
Denys Vlasenko61508d92016-10-02 21:12:02 +02008858 }
8859#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02008860 /* Exporting non-existing variable.
8861 * bash does not put it in environment,
8862 * but remembers that it is exported,
8863 * and does put it in env when it is set later.
8864 * We just set it to "" and export. */
8865 /* Or, it's "local NAME" (without =VALUE).
8866 * bash sets the value to "". */
8867 name = xasprintf("%s=", name);
8868 } else {
8869 /* (Un)exporting/making local NAME=VALUE */
8870 name = xstrdup(name);
8871 }
8872 set_local_var(name, /*exp:*/ exp, /*lvl:*/ lvl, /*ro:*/ 0);
8873 } while (*++argv);
8874}
8875
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008876static int FAST_FUNC builtin_export(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008877{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00008878 unsigned opt_unexport;
8879
Denys Vlasenkodf5131c2009-06-07 16:04:17 +02008880#if ENABLE_HUSH_EXPORT_N
8881 /* "!": do not abort on errors */
8882 opt_unexport = getopt32(argv, "!n");
8883 if (opt_unexport == (uint32_t)-1)
8884 return EXIT_FAILURE;
8885 argv += optind;
8886#else
8887 opt_unexport = 0;
8888 argv++;
8889#endif
8890
8891 if (argv[0] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008892 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008893 if (e) {
8894 while (*e) {
8895#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008896 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008897#else
8898 /* ash emits: export VAR='VAL'
8899 * bash: declare -x VAR="VAL"
8900 * we follow ash example */
8901 const char *s = *e++;
8902 const char *p = strchr(s, '=');
8903
8904 if (!p) /* wtf? take next variable */
8905 continue;
8906 /* export var= */
8907 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008908 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008909 putchar('\n');
8910#endif
8911 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01008912 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008913 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008914 return EXIT_SUCCESS;
8915 }
8916
Denys Vlasenko295fef82009-06-03 12:47:26 +02008917 helper_export_local(argv, (opt_unexport ? -1 : 1), 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008918
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008919 return EXIT_SUCCESS;
8920}
8921
Denys Vlasenko295fef82009-06-03 12:47:26 +02008922#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008923static int FAST_FUNC builtin_local(char **argv)
Denys Vlasenko295fef82009-06-03 12:47:26 +02008924{
8925 if (G.func_nest_level == 0) {
8926 bb_error_msg("%s: not in a function", argv[0]);
8927 return EXIT_FAILURE; /* bash compat */
8928 }
8929 helper_export_local(argv, 0, G.func_nest_level);
8930 return EXIT_SUCCESS;
8931}
8932#endif
8933
Denys Vlasenko61508d92016-10-02 21:12:02 +02008934/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
8935static int FAST_FUNC builtin_unset(char **argv)
8936{
8937 int ret;
8938 unsigned opts;
8939
8940 /* "!": do not abort on errors */
8941 /* "+": stop at 1st non-option */
8942 opts = getopt32(argv, "!+vf");
8943 if (opts == (unsigned)-1)
8944 return EXIT_FAILURE;
8945 if (opts == 3) {
8946 bb_error_msg("unset: -v and -f are exclusive");
8947 return EXIT_FAILURE;
8948 }
8949 argv += optind;
8950
8951 ret = EXIT_SUCCESS;
8952 while (*argv) {
8953 if (!(opts & 2)) { /* not -f */
8954 if (unset_local_var(*argv)) {
8955 /* unset <nonexistent_var> doesn't fail.
8956 * Error is when one tries to unset RO var.
8957 * Message was printed by unset_local_var. */
8958 ret = EXIT_FAILURE;
8959 }
8960 }
8961#if ENABLE_HUSH_FUNCTIONS
8962 else {
8963 unset_func(*argv);
8964 }
8965#endif
8966 argv++;
8967 }
8968 return ret;
8969}
8970
8971/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
8972 * built-in 'set' handler
8973 * SUSv3 says:
8974 * set [-abCefhmnuvx] [-o option] [argument...]
8975 * set [+abCefhmnuvx] [+o option] [argument...]
8976 * set -- [argument...]
8977 * set -o
8978 * set +o
8979 * Implementations shall support the options in both their hyphen and
8980 * plus-sign forms. These options can also be specified as options to sh.
8981 * Examples:
8982 * Write out all variables and their values: set
8983 * Set $1, $2, and $3 and set "$#" to 3: set c a b
8984 * Turn on the -x and -v options: set -xv
8985 * Unset all positional parameters: set --
8986 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
8987 * Set the positional parameters to the expansion of x, even if x expands
8988 * with a leading '-' or '+': set -- $x
8989 *
8990 * So far, we only support "set -- [argument...]" and some of the short names.
8991 */
8992static int FAST_FUNC builtin_set(char **argv)
8993{
8994 int n;
8995 char **pp, **g_argv;
8996 char *arg = *++argv;
8997
8998 if (arg == NULL) {
8999 struct variable *e;
9000 for (e = G.top_var; e; e = e->next)
9001 puts(e->varstr);
9002 return EXIT_SUCCESS;
9003 }
9004
9005 do {
9006 if (strcmp(arg, "--") == 0) {
9007 ++argv;
9008 goto set_argv;
9009 }
9010 if (arg[0] != '+' && arg[0] != '-')
9011 break;
9012 for (n = 1; arg[n]; ++n) {
9013 if (set_mode((arg[0] == '-'), arg[n], argv[1]))
9014 goto error;
9015 if (arg[n] == 'o' && argv[1])
9016 argv++;
9017 }
9018 } while ((arg = *++argv) != NULL);
9019 /* Now argv[0] is 1st argument */
9020
9021 if (arg == NULL)
9022 return EXIT_SUCCESS;
9023 set_argv:
9024
9025 /* NB: G.global_argv[0] ($0) is never freed/changed */
9026 g_argv = G.global_argv;
9027 if (G.global_args_malloced) {
9028 pp = g_argv;
9029 while (*++pp)
9030 free(*pp);
9031 g_argv[1] = NULL;
9032 } else {
9033 G.global_args_malloced = 1;
9034 pp = xzalloc(sizeof(pp[0]) * 2);
9035 pp[0] = g_argv[0]; /* retain $0 */
9036 g_argv = pp;
9037 }
9038 /* This realloc's G.global_argv */
9039 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
9040
9041 n = 1;
9042 while (*++pp)
9043 n++;
9044 G.global_argc = n;
9045
9046 return EXIT_SUCCESS;
9047
9048 /* Nothing known, so abort */
9049 error:
9050 bb_error_msg("set: %s: invalid option", arg);
9051 return EXIT_FAILURE;
9052}
9053
9054static int FAST_FUNC builtin_shift(char **argv)
9055{
9056 int n = 1;
9057 argv = skip_dash_dash(argv);
9058 if (argv[0]) {
9059 n = atoi(argv[0]);
9060 }
9061 if (n >= 0 && n < G.global_argc) {
9062 if (G.global_args_malloced) {
9063 int m = 1;
9064 while (m <= n)
9065 free(G.global_argv[m++]);
9066 }
9067 G.global_argc -= n;
9068 memmove(&G.global_argv[1], &G.global_argv[n+1],
9069 G.global_argc * sizeof(G.global_argv[0]));
9070 return EXIT_SUCCESS;
9071 }
9072 return EXIT_FAILURE;
9073}
9074
9075/* Interruptibility of read builtin in bash
9076 * (tested on bash-4.2.8 by sending signals (not by ^C)):
9077 *
9078 * Empty trap makes read ignore corresponding signal, for any signal.
9079 *
9080 * SIGINT:
9081 * - terminates non-interactive shell;
9082 * - interrupts read in interactive shell;
9083 * if it has non-empty trap:
9084 * - executes trap and returns to command prompt in interactive shell;
9085 * - executes trap and returns to read in non-interactive shell;
9086 * SIGTERM:
9087 * - is ignored (does not interrupt) read in interactive shell;
9088 * - terminates non-interactive shell;
9089 * if it has non-empty trap:
9090 * - executes trap and returns to read;
9091 * SIGHUP:
9092 * - terminates shell (regardless of interactivity);
9093 * if it has non-empty trap:
9094 * - executes trap and returns to read;
9095 */
9096static int FAST_FUNC builtin_read(char **argv)
9097{
9098 const char *r;
9099 char *opt_n = NULL;
9100 char *opt_p = NULL;
9101 char *opt_t = NULL;
9102 char *opt_u = NULL;
9103 const char *ifs;
9104 int read_flags;
9105
9106 /* "!": do not abort on errors.
9107 * Option string must start with "sr" to match BUILTIN_READ_xxx
9108 */
9109 read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
9110 if (read_flags == (uint32_t)-1)
9111 return EXIT_FAILURE;
9112 argv += optind;
9113 ifs = get_local_var_value("IFS"); /* can be NULL */
9114
9115 again:
9116 r = shell_builtin_read(set_local_var_from_halves,
9117 argv,
9118 ifs,
9119 read_flags,
9120 opt_n,
9121 opt_p,
9122 opt_t,
9123 opt_u
9124 );
9125
9126 if ((uintptr_t)r == 1 && errno == EINTR) {
9127 unsigned sig = check_and_run_traps();
9128 if (sig && sig != SIGINT)
9129 goto again;
9130 }
9131
9132 if ((uintptr_t)r > 1) {
9133 bb_error_msg("%s", r);
9134 r = (char*)(uintptr_t)1;
9135 }
9136
9137 return (uintptr_t)r;
9138}
9139
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009140static int FAST_FUNC builtin_trap(char **argv)
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009141{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009142 int sig;
9143 char *new_cmd;
9144
9145 if (!G.traps)
9146 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
9147
9148 argv++;
9149 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00009150 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009151 /* No args: print all trapped */
9152 for (i = 0; i < NSIG; ++i) {
9153 if (G.traps[i]) {
9154 printf("trap -- ");
9155 print_escaped(G.traps[i]);
Denys Vlasenkoe74aaf92009-09-27 02:05:45 +02009156 /* note: bash adds "SIG", but only if invoked
9157 * as "bash". If called as "sh", or if set -o posix,
9158 * then it prints short signal names.
9159 * We are printing short names: */
9160 printf(" %s\n", get_signame(i));
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009161 }
9162 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009163 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009164 return EXIT_SUCCESS;
9165 }
9166
9167 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009168 /* If first arg is a number: reset all specified signals */
9169 sig = bb_strtou(*argv, NULL, 10);
9170 if (errno == 0) {
9171 int ret;
9172 process_sig_list:
9173 ret = EXIT_SUCCESS;
9174 while (*argv) {
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009175 sighandler_t handler;
9176
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009177 sig = get_signum(*argv++);
9178 if (sig < 0 || sig >= NSIG) {
9179 ret = EXIT_FAILURE;
9180 /* Mimic bash message exactly */
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00009181 bb_perror_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009182 continue;
9183 }
9184
9185 free(G.traps[sig]);
9186 G.traps[sig] = xstrdup(new_cmd);
9187
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01009188 debug_printf("trap: setting SIG%s (%i) to '%s'\n",
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009189 get_signame(sig), sig, G.traps[sig]);
9190
9191 /* There is no signal for 0 (EXIT) */
9192 if (sig == 0)
9193 continue;
9194
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009195 if (new_cmd)
9196 handler = (new_cmd[0] ? record_pending_signo : SIG_IGN);
9197 else
9198 /* We are removing trap handler */
9199 handler = pick_sighandler(sig);
Denys Vlasenko0806e402011-05-12 23:06:20 +02009200 install_sighandler(sig, handler);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00009201 }
9202 return ret;
9203 }
9204
9205 if (!argv[1]) { /* no second arg */
9206 bb_error_msg("trap: invalid arguments");
9207 return EXIT_FAILURE;
9208 }
9209
9210 /* First arg is "-": reset all specified to default */
9211 /* First arg is "--": skip it, the rest is "handler SIGs..." */
9212 /* Everything else: set arg as signal handler
9213 * (includes "" case, which ignores signal) */
9214 if (argv[0][0] == '-') {
9215 if (argv[0][1] == '\0') { /* "-" */
9216 /* new_cmd remains NULL: "reset these sigs" */
9217 goto reset_traps;
9218 }
9219 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
9220 argv++;
9221 }
9222 /* else: "-something", no special meaning */
9223 }
9224 new_cmd = *argv;
9225 reset_traps:
9226 argv++;
9227 goto process_sig_list;
9228}
9229
Mike Frysinger93cadc22009-05-27 17:06:25 -04009230/* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009231static int FAST_FUNC builtin_type(char **argv)
Mike Frysinger93cadc22009-05-27 17:06:25 -04009232{
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02009233 int ret = EXIT_SUCCESS;
Mike Frysinger93cadc22009-05-27 17:06:25 -04009234
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02009235 while (*++argv) {
Mike Frysinger93cadc22009-05-27 17:06:25 -04009236 const char *type;
Denys Vlasenko171932d2009-05-28 17:07:22 +02009237 char *path = NULL;
Mike Frysinger93cadc22009-05-27 17:06:25 -04009238
9239 if (0) {} /* make conditional compile easier below */
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02009240 /*else if (find_alias(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04009241 type = "an alias";*/
9242#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02009243 else if (find_function(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04009244 type = "a function";
9245#endif
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02009246 else if (find_builtin(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04009247 type = "a shell builtin";
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02009248 else if ((path = find_in_path(*argv)) != NULL)
9249 type = path;
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02009250 else {
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02009251 bb_error_msg("type: %s: not found", *argv);
Mike Frysinger93cadc22009-05-27 17:06:25 -04009252 ret = EXIT_FAILURE;
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02009253 continue;
9254 }
Mike Frysinger93cadc22009-05-27 17:06:25 -04009255
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02009256 printf("%s is %s\n", *argv, type);
9257 free(path);
Mike Frysinger93cadc22009-05-27 17:06:25 -04009258 }
9259
9260 return ret;
9261}
9262
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009263#if ENABLE_HUSH_JOB
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009264static struct pipe *parse_jobspec(const char *str)
9265{
9266 struct pipe *pi;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009267 unsigned jobnum;
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009268
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009269 if (sscanf(str, "%%%u", &jobnum) != 1) {
9270 if (str[0] != '%'
9271 || (str[1] != '%' && str[1] != '+' && str[1] != '\0')
9272 ) {
9273 bb_error_msg("bad argument '%s'", str);
9274 return NULL;
9275 }
9276 /* It is "%%", "%+" or "%" - current job */
9277 jobnum = G.last_jobid;
9278 if (jobnum == 0) {
9279 bb_error_msg("no current job");
9280 return NULL;
9281 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009282 }
9283 for (pi = G.job_list; pi; pi = pi->next) {
9284 if (pi->jobid == jobnum) {
9285 return pi;
9286 }
9287 }
9288 bb_error_msg("%d: no such job", jobnum);
9289 return NULL;
9290}
9291
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009292/* built-in 'fg' and 'bg' handler */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009293static int FAST_FUNC builtin_fg_bg(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009294{
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009295 int i;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009296 struct pipe *pi;
9297
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009298 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009299 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00009300
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009301 /* If they gave us no args, assume they want the last backgrounded task */
9302 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00009303 for (pi = G.job_list; pi; pi = pi->next) {
9304 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009305 goto found;
9306 }
9307 }
9308 bb_error_msg("%s: no current job", argv[0]);
9309 return EXIT_FAILURE;
9310 }
Denys Vlasenko4e1c8b42016-11-07 20:06:40 +01009311
9312 pi = parse_jobspec(argv[1]);
9313 if (!pi)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009314 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009315 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00009316 /* TODO: bash prints a string representation
9317 * of job being foregrounded (like "sleep 1 | cat") */
Mike Frysinger38478a62009-05-20 04:48:06 -04009318 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009319 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00009320 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009321 }
9322
9323 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009324 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
9325 for (i = 0; i < pi->num_cmds; i++) {
9326 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009327 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009328 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009329
9330 i = kill(- pi->pgrp, SIGCONT);
9331 if (i < 0) {
9332 if (errno == ESRCH) {
9333 delete_finished_bg_job(pi);
9334 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009335 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009336 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009337 }
9338
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009339 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009340 remove_bg_job(pi);
9341 return checkjobs_and_fg_shell(pi);
9342 }
9343 return EXIT_SUCCESS;
9344}
9345#endif
9346
9347#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009348static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009349{
9350 const struct built_in_command *x;
9351
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009352 printf(
Denis Vlasenko34d4d892009-04-04 20:24:37 +00009353 "Built-in commands:\n"
9354 "------------------\n");
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009355 for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
Denys Vlasenko17323a62010-01-28 01:57:05 +01009356 if (x->b_descr)
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009357 printf("%-10s%s\n", x->b_cmd, x->b_descr);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009358 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009359 return EXIT_SUCCESS;
9360}
9361#endif
9362
Denys Vlasenkoff463a82013-05-12 02:45:23 +02009363#if MAX_HISTORY && ENABLE_FEATURE_EDITING
Flemming Madsend96ffda2013-04-07 18:47:24 +02009364static int FAST_FUNC builtin_history(char **argv UNUSED_PARAM)
9365{
9366 show_history(G.line_input_state);
9367 return EXIT_SUCCESS;
9368}
9369#endif
9370
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009371#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009372static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009373{
9374 struct pipe *job;
9375 const char *status_string;
9376
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009377 checkjobs(NULL, 0 /*(no pid to wait for)*/);
Denis Vlasenko87a86552008-07-29 19:43:10 +00009378 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00009379 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009380 status_string = "Stopped";
9381 else
9382 status_string = "Running";
9383
9384 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
9385 }
9386 return EXIT_SUCCESS;
9387}
9388#endif
9389
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00009390#if HUSH_DEBUG
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009391static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00009392{
9393 void *p;
9394 unsigned long l;
9395
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009396# ifdef M_TRIM_THRESHOLD
Denys Vlasenko27726cb2009-09-12 14:48:33 +02009397 /* Optional. Reduces probability of false positives */
9398 malloc_trim(0);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02009399# endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00009400 /* Crude attempt to find where "free memory" starts,
9401 * sans fragmentation. */
9402 p = malloc(240);
9403 l = (unsigned long)p;
9404 free(p);
9405 p = malloc(3400);
9406 if (l < (unsigned long)p) l = (unsigned long)p;
9407 free(p);
9408
Denys Vlasenko7f0ebbc2016-10-03 17:42:53 +02009409
9410# if 0 /* debug */
9411 {
9412 struct mallinfo mi = mallinfo();
9413 printf("top alloc:0x%lx malloced:%d+%d=%d\n", l,
9414 mi.arena, mi.hblkhd, mi.arena + mi.hblkhd);
9415 }
9416# endif
9417
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00009418 if (!G.memleak_value)
9419 G.memleak_value = l;
Denys Vlasenko9038d6f2009-07-15 20:02:19 +02009420
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00009421 l -= G.memleak_value;
9422 if ((long)l < 0)
9423 l = 0;
9424 l /= 1024;
9425 if (l > 127)
9426 l = 127;
9427
9428 /* Exitcode is "how many kilobytes we leaked since 1st call" */
9429 return l;
9430}
9431#endif
9432
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009433static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009434{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02009435 puts(get_cwd(0));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009436 return EXIT_SUCCESS;
9437}
9438
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009439static int FAST_FUNC builtin_source(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009440{
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02009441 char *arg_path, *filename;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009442 FILE *input;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00009443 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00009444#if ENABLE_HUSH_FUNCTIONS
9445 smallint sv_flg;
9446#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009447
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009448 argv = skip_dash_dash(argv);
9449 filename = argv[0];
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02009450 if (!filename) {
9451 /* bash says: "bash: .: filename argument required" */
9452 return 2; /* bash compat */
9453 }
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009454 arg_path = NULL;
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02009455 if (!strchr(filename, '/')) {
9456 arg_path = find_in_path(filename);
9457 if (arg_path)
9458 filename = arg_path;
9459 }
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02009460 input = remember_FILE(fopen_or_warn(filename, "r"));
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02009461 free(arg_path);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009462 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00009463 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denys Vlasenko88b532d2013-03-17 14:11:04 +01009464 /* POSIX: non-interactive shell should abort here,
9465 * not merely fail. So far no one complained :)
9466 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009467 return EXIT_FAILURE;
9468 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009469
Mike Frysinger885b6f22009-04-18 21:04:25 +00009470#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02009471 sv_flg = G_flag_return_in_progress;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009472 /* "we are inside sourced file, ok to use return" */
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02009473 G_flag_return_in_progress = -1;
Mike Frysinger885b6f22009-04-18 21:04:25 +00009474#endif
Denys Vlasenko88b532d2013-03-17 14:11:04 +01009475 if (argv[1])
9476 save_and_replace_G_args(&sv, argv);
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009477
Denys Vlasenko992e0ff2016-09-29 01:27:09 +02009478 /* "false; . ./empty_line; echo Zero:$?" should print 0 */
9479 G.last_exitcode = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00009480 parse_and_run_file(input);
Denys Vlasenko7b25b1c2016-08-20 15:58:34 +02009481 fclose_and_forget(input);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00009482
Denys Vlasenko88b532d2013-03-17 14:11:04 +01009483 if (argv[1])
9484 restore_G_args(&sv, argv);
Mike Frysinger885b6f22009-04-18 21:04:25 +00009485#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02009486 G_flag_return_in_progress = sv_flg;
Mike Frysinger885b6f22009-04-18 21:04:25 +00009487#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009488
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00009489 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009490}
9491
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009492static int FAST_FUNC builtin_umask(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009493{
Denis Vlasenkoeb858492009-04-18 02:06:54 +00009494 int rc;
9495 mode_t mask;
9496
Denys Vlasenko5711a2a2015-10-07 17:55:33 +02009497 rc = 1;
Denis Vlasenkoeb858492009-04-18 02:06:54 +00009498 mask = umask(0);
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009499 argv = skip_dash_dash(argv);
9500 if (argv[0]) {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00009501 mode_t old_mask = mask;
9502
Denys Vlasenko6283f982015-10-07 16:56:20 +02009503 /* numeric umasks are taken as-is */
9504 /* symbolic umasks are inverted: "umask a=rx" calls umask(222) */
9505 if (!isdigit(argv[0][0]))
9506 mask ^= 0777;
Denys Vlasenko5711a2a2015-10-07 17:55:33 +02009507 mask = bb_parse_mode(argv[0], mask);
Denys Vlasenko6283f982015-10-07 16:56:20 +02009508 if (!isdigit(argv[0][0]))
9509 mask ^= 0777;
Denys Vlasenko5711a2a2015-10-07 17:55:33 +02009510 if ((unsigned)mask > 0777) {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00009511 mask = old_mask;
9512 /* bash messages:
9513 * bash: umask: 'q': invalid symbolic mode operator
9514 * bash: umask: 999: octal number out of range
9515 */
Denys Vlasenko44c86ce2010-05-20 04:22:55 +02009516 bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
Denys Vlasenko5711a2a2015-10-07 17:55:33 +02009517 rc = 0;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00009518 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009519 } else {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00009520 /* Mimic bash */
9521 printf("%04o\n", (unsigned) mask);
9522 /* fall through and restore mask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009523 }
Denis Vlasenkoeb858492009-04-18 02:06:54 +00009524 umask(mask);
9525
9526 return !rc; /* rc != 0 - success */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00009527}
9528
Mike Frysinger56bdea12009-03-28 20:01:58 +00009529/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009530#if !ENABLE_HUSH_JOB
9531# define wait_for_child_or_signal(pipe,pid) wait_for_child_or_signal(pid)
9532#endif
9533static int wait_for_child_or_signal(struct pipe *waitfor_pipe, pid_t waitfor_pid)
Denys Vlasenko7e675362016-10-28 21:57:31 +02009534{
9535 int ret = 0;
9536 for (;;) {
9537 int sig;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009538 sigset_t oldset;
Denys Vlasenko7e675362016-10-28 21:57:31 +02009539
Denys Vlasenko830ea352016-11-08 04:59:11 +01009540 if (!sigisemptyset(&G.pending_set))
9541 goto check_sig;
9542
Denys Vlasenko7e675362016-10-28 21:57:31 +02009543 /* waitpid is not interruptible by SA_RESTARTed
9544 * signals which we use. Thus, this ugly dance:
9545 */
9546
9547 /* Make sure possible SIGCHLD is stored in kernel's
9548 * pending signal mask before we call waitpid.
9549 * Or else we may race with SIGCHLD, lose it,
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009550 * and get stuck in sigsuspend...
Denys Vlasenko7e675362016-10-28 21:57:31 +02009551 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009552 sigfillset(&oldset); /* block all signals, remember old set */
9553 sigprocmask(SIG_SETMASK, &oldset, &oldset);
Denys Vlasenko7e675362016-10-28 21:57:31 +02009554
9555 if (!sigisemptyset(&G.pending_set)) {
9556 /* Crap! we raced with some signal! */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009557 goto restore;
9558 }
9559
9560 /*errno = 0; - checkjobs does this */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009561/* Can't pass waitfor_pipe into checkjobs(): it won't be interruptible */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009562 ret = checkjobs(NULL, waitfor_pid); /* waitpid(WNOHANG) inside */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009563 debug_printf_exec("checkjobs:%d\n", ret);
9564#if ENABLE_HUSH_JOB
9565 if (waitfor_pipe) {
9566 int rcode = job_exited_or_stopped(waitfor_pipe);
9567 debug_printf_exec("job_exited_or_stopped:%d\n", rcode);
9568 if (rcode >= 0) {
9569 ret = rcode;
9570 sigprocmask(SIG_SETMASK, &oldset, NULL);
9571 break;
9572 }
9573 }
9574#endif
Denys Vlasenko7e675362016-10-28 21:57:31 +02009575 /* if ECHILD, there are no children (ret is -1 or 0) */
9576 /* if ret == 0, no children changed state */
9577 /* if ret != 0, it's exitcode+1 of exited waitfor_pid child */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009578 if (errno == ECHILD || ret) {
9579 ret--;
9580 if (ret < 0) /* if ECHILD, may need to fix "ret" */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009581 ret = 0;
9582 sigprocmask(SIG_SETMASK, &oldset, NULL);
9583 break;
9584 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02009585 /* Wait for SIGCHLD or any other signal */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009586 /* It is vitally important for sigsuspend that SIGCHLD has non-DFL handler! */
9587 /* Note: sigsuspend invokes signal handler */
9588 sigsuspend(&oldset);
9589 restore:
9590 sigprocmask(SIG_SETMASK, &oldset, NULL);
Denys Vlasenko830ea352016-11-08 04:59:11 +01009591 check_sig:
Denys Vlasenko7e675362016-10-28 21:57:31 +02009592 /* So, did we get a signal? */
Denys Vlasenko7e675362016-10-28 21:57:31 +02009593 sig = check_and_run_traps();
9594 if (sig /*&& sig != SIGCHLD - always true */) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02009595 ret = 128 + sig;
9596 break;
9597 }
9598 /* SIGCHLD, or no signal, or ignored one, such as SIGQUIT. Repeat */
9599 }
9600 return ret;
9601}
9602
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009603static int FAST_FUNC builtin_wait(char **argv)
Mike Frysinger56bdea12009-03-28 20:01:58 +00009604{
Denys Vlasenko7e675362016-10-28 21:57:31 +02009605 int ret;
Denys Vlasenko9d6cbaf2011-05-11 23:56:11 +02009606 int status;
Mike Frysinger56bdea12009-03-28 20:01:58 +00009607
Denys Vlasenkob131cce2010-05-20 03:39:43 +02009608 argv = skip_dash_dash(argv);
9609 if (argv[0] == NULL) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00009610 /* Don't care about wait results */
9611 /* Note 1: must wait until there are no more children */
9612 /* Note 2: must be interruptible */
9613 /* Examples:
9614 * $ sleep 3 & sleep 6 & wait
9615 * [1] 30934 sleep 3
9616 * [2] 30935 sleep 6
9617 * [1] Done sleep 3
9618 * [2] Done sleep 6
9619 * $ sleep 3 & sleep 6 & wait
9620 * [1] 30936 sleep 3
9621 * [2] 30937 sleep 6
9622 * [1] Done sleep 3
9623 * ^C <-- after ~4 sec from keyboard
9624 * $
9625 */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009626 return wait_for_child_or_signal(NULL, 0 /*(no job and no pid to wait for)*/);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00009627 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00009628
Denys Vlasenko7e675362016-10-28 21:57:31 +02009629 do {
Denis Vlasenkod5762932009-03-31 11:22:57 +00009630 pid_t pid = bb_strtou(*argv, NULL, 10);
Denys Vlasenko7e675362016-10-28 21:57:31 +02009631 if (errno || pid <= 0) {
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009632#if ENABLE_HUSH_JOB
9633 if (argv[0][0] == '%') {
Denys Vlasenko02affb42016-11-08 00:59:29 +01009634 struct pipe *wait_pipe;
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009635 ret = 127; /* bash compat for bad jobspecs */
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009636 wait_pipe = parse_jobspec(*argv);
9637 if (wait_pipe) {
Denys Vlasenko02affb42016-11-08 00:59:29 +01009638 ret = job_exited_or_stopped(wait_pipe);
9639 if (ret < 0)
9640 ret = wait_for_child_or_signal(wait_pipe, 0);
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009641 }
Denys Vlasenkod5b5c2f2017-01-08 15:46:04 +01009642 /* else: parse_jobspec() already emitted error msg */
9643 continue;
Denys Vlasenko62b717b2016-11-07 22:12:18 +01009644 }
9645#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00009646 /* mimic bash message */
9647 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009648 ret = EXIT_FAILURE;
9649 continue; /* bash checks all argv[] */
Denis Vlasenkod5762932009-03-31 11:22:57 +00009650 }
Denys Vlasenko02affb42016-11-08 00:59:29 +01009651
Denys Vlasenko7e675362016-10-28 21:57:31 +02009652 /* Do we have such child? */
9653 ret = waitpid(pid, &status, WNOHANG);
9654 if (ret < 0) {
9655 /* No */
9656 if (errno == ECHILD) {
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009657 if (G.last_bg_pid > 0 && pid == G.last_bg_pid) {
9658 /* "wait $!" but last bg task has already exited. Try:
9659 * (sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?
9660 * In bash it prints exitcode 0, then 3.
Denys Vlasenko26ad94b2016-11-07 23:07:21 +01009661 * In dash, it is 127.
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009662 */
Denys Vlasenko26ad94b2016-11-07 23:07:21 +01009663 /* ret = G.last_bg_pid_exitstatus - FIXME */
9664 } else {
9665 /* Example: "wait 1". mimic bash message */
9666 bb_error_msg("wait: pid %d is not a child of this shell", (int)pid);
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009667 }
Denys Vlasenko7e675362016-10-28 21:57:31 +02009668 } else {
9669 /* ??? */
9670 bb_perror_msg("wait %s", *argv);
9671 }
9672 ret = 127;
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009673 continue; /* bash checks all argv[] */
9674 }
9675 if (ret == 0) {
Denys Vlasenko7e675362016-10-28 21:57:31 +02009676 /* Yes, and it still runs */
Denys Vlasenko02affb42016-11-08 00:59:29 +01009677 ret = wait_for_child_or_signal(NULL, pid);
Denys Vlasenko7e675362016-10-28 21:57:31 +02009678 } else {
9679 /* Yes, and it just exited */
Denys Vlasenko02affb42016-11-08 00:59:29 +01009680 process_wait_result(NULL, pid, status);
Denys Vlasenko85378cd2015-10-11 21:47:11 +02009681 ret = WEXITSTATUS(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009682 if (WIFSIGNALED(status))
9683 ret = 128 + WTERMSIG(status);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009684 }
Denys Vlasenko9db74e42016-10-28 22:39:12 +02009685 } while (*++argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00009686
9687 return ret;
9688}
9689
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009690#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
9691static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
9692{
9693 if (argv[1]) {
9694 def = bb_strtou(argv[1], NULL, 10);
9695 if (errno || def < def_min || argv[2]) {
9696 bb_error_msg("%s: bad arguments", argv[0]);
9697 def = UINT_MAX;
9698 }
9699 }
9700 return def;
9701}
9702#endif
9703
Denis Vlasenkodadfb492008-07-29 10:16:05 +00009704#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009705static int FAST_FUNC builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009706{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009707 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +00009708 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00009709 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denys Vlasenko49117b42016-07-21 14:40:08 +02009710 /* if we came from builtin_continue(), need to undo "= 1" */
9711 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00009712 return EXIT_SUCCESS; /* bash compat */
9713 }
Denys Vlasenko49117b42016-07-21 14:40:08 +02009714 G.flag_break_continue++; /* BC_BREAK = 1, or BC_CONTINUE = 2 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009715
9716 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
9717 if (depth == UINT_MAX)
9718 G.flag_break_continue = BC_BREAK;
9719 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +00009720 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009721
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009722 return EXIT_SUCCESS;
9723}
9724
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009725static int FAST_FUNC builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009726{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00009727 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
9728 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00009729}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00009730#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009731
9732#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009733static int FAST_FUNC builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009734{
9735 int rc;
9736
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02009737 if (G_flag_return_in_progress != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009738 bb_error_msg("%s: not in a function or sourced script", argv[0]);
9739 return EXIT_FAILURE; /* bash compat */
9740 }
9741
Denys Vlasenko04b46bc2016-10-01 22:28:03 +02009742 G_flag_return_in_progress = 1;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00009743
9744 /* bash:
9745 * out of range: wraps around at 256, does not error out
9746 * non-numeric param:
9747 * f() { false; return qwe; }; f; echo $?
9748 * bash: return: qwe: numeric argument required <== we do this
9749 * 255 <== we also do this
9750 */
9751 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
9752 return rc;
9753}
9754#endif