blob: 087636b6d5deeeeb33ff8d31722f71d97282d5c2 [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 Vlasenko349ef962010-05-21 15:46:24 +020047 * follow IFS rules more precisely, including update semantics
48 * builtins mandated by standards we don't support:
49 * [un]alias, command, fc, getopts, newgrp, readonly, times
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +020050 * make complex ${var%...} constructs support optional
51 * make here documents optional
Mike Frysinger25a6ca02009-03-28 13:59:26 +000052 *
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020053 * Bash compat TODO:
54 * redirection of stdout+stderr: &> and >&
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020055 * reserved words: function select
56 * advanced test: [[ ]]
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020057 * process substitution: <(list) and >(list)
58 * =~: regex operator
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020059 * let EXPR [EXPR...]
Denys Vlasenko349ef962010-05-21 15:46:24 +020060 * Each EXPR is an arithmetic expression (ARITHMETIC EVALUATION)
61 * If the last arg evaluates to 0, let returns 1; 0 otherwise.
62 * NB: let `echo 'a=a + 1'` - error (IOW: multi-word expansion is used)
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020063 * ((EXPR))
Denys Vlasenko349ef962010-05-21 15:46:24 +020064 * The EXPR is evaluated according to ARITHMETIC EVALUATION.
65 * This is exactly equivalent to let "EXPR".
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020066 * $[EXPR]: synonym for $((EXPR))
Denys Vlasenkobbecd742010-10-03 17:22:52 +020067 *
68 * Won't do:
69 * In bash, export builtin is special, its arguments are assignments
Denys Vlasenko08218012009-06-03 14:43:56 +020070 * and therefore expansion of them should be "one-word" expansion:
71 * $ export i=`echo 'a b'` # export has one arg: "i=a b"
72 * compare with:
73 * $ ls i=`echo 'a b'` # ls has two args: "i=a" and "b"
74 * ls: cannot access i=a: No such file or directory
75 * ls: cannot access b: No such file or directory
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020076 * Note1: same applies to local builtin.
Denys Vlasenko08218012009-06-03 14:43:56 +020077 * Note2: bash 3.2.33(1) does this only if export word itself
78 * is not quoted:
79 * $ export i=`echo 'aaa bbb'`; echo "$i"
80 * aaa bbb
81 * $ "export" i=`echo 'aaa bbb'`; echo "$i"
82 * aaa
Eric Andersen25f27032001-04-26 23:22:31 +000083 */
Denys Vlasenkocb6ff252009-05-04 00:14:30 +020084#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denys Vlasenko8da415e2010-12-05 01:30:14 +010085#if !(defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \
86 || defined(__APPLE__) \
87 )
88# include <malloc.h> /* for malloc_trim */
89#endif
Denis Vlasenkobe709c22008-07-28 00:01:16 +000090#include <glob.h>
91/* #include <dmalloc.h> */
92#if ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +000093# include <fnmatch.h>
Denis Vlasenkobe709c22008-07-28 00:01:16 +000094#endif
Denys Vlasenko03dad222010-01-12 23:29:57 +010095
96#include "shell_common.h"
Mike Frysinger98c52642009-04-02 10:02:37 +000097#include "math.h"
Mike Frysingera4f331d2009-04-07 06:03:22 +000098#include "match.h"
Denys Vlasenkocbe0b7f2009-10-09 22:00:58 +020099#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200100# include "random.h"
Denys Vlasenko76ace252009-10-12 15:25:01 +0200101#else
102# define CLEAR_RANDOM_T(rnd) ((void)0)
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200103#endif
Denis Vlasenko50f3aa42009-04-07 10:52:40 +0000104#ifndef PIPE_BUF
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200105# define PIPE_BUF 4096 /* amount of buffering in a pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +0000106#endif
Mike Frysinger98c52642009-04-02 10:02:37 +0000107
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200108//applet:IF_HUSH(APPLET(hush, _BB_DIR_BIN, _BB_SUID_DROP))
109//applet:IF_MSH(APPLET(msh, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200110//applet:IF_FEATURE_SH_IS_HUSH(APPLET_ODDNAME(sh, hush, _BB_DIR_BIN, _BB_SUID_DROP, sh))
111//applet:IF_FEATURE_BASH_IS_HUSH(APPLET_ODDNAME(bash, hush, _BB_DIR_BIN, _BB_SUID_DROP, bash))
112
113//kbuild:lib-$(CONFIG_HUSH) += hush.o match.o shell_common.o
114//kbuild:lib-$(CONFIG_HUSH_RANDOM_SUPPORT) += random.o
115
116//config:config HUSH
117//config: bool "hush"
118//config: default y
119//config: help
Denys Vlasenko771f1992010-07-16 14:31:34 +0200120//config: hush is a small shell (25k). It handles the normal flow control
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200121//config: constructs such as if/then/elif/else/fi, for/in/do/done, while loops,
122//config: case/esac. Redirections, here documents, $((arithmetic))
123//config: and functions are supported.
124//config:
125//config: It will compile and work on no-mmu systems.
126//config:
Denys Vlasenkoe2069fb2010-10-04 00:01:47 +0200127//config: It does not handle select, aliases, tilde expansion,
128//config: &>file and >&file redirection of stdout+stderr.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200129//config:
130//config:config HUSH_BASH_COMPAT
131//config: bool "bash-compatible extensions"
132//config: default y
133//config: depends on HUSH
134//config: help
135//config: Enable bash-compatible extensions.
136//config:
Denys Vlasenko9e800222010-10-03 14:28:04 +0200137//config:config HUSH_BRACE_EXPANSION
138//config: bool "Brace expansion"
139//config: default y
140//config: depends on HUSH_BASH_COMPAT
141//config: help
142//config: Enable {abc,def} extension.
143//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200144//config:config HUSH_HELP
145//config: bool "help builtin"
146//config: default y
147//config: depends on HUSH
148//config: help
149//config: Enable help builtin in hush. Code size + ~1 kbyte.
150//config:
151//config:config HUSH_INTERACTIVE
152//config: bool "Interactive mode"
153//config: default y
154//config: depends on HUSH
155//config: help
156//config: Enable interactive mode (prompt and command editing).
157//config: Without this, hush simply reads and executes commands
158//config: from stdin just like a shell script from a file.
159//config: No prompt, no PS1/PS2 magic shell variables.
160//config:
Denys Vlasenko99862cb2010-09-12 17:34:13 +0200161//config:config HUSH_SAVEHISTORY
162//config: bool "Save command history to .hush_history"
163//config: default y
164//config: depends on HUSH_INTERACTIVE && FEATURE_EDITING_SAVEHISTORY
165//config: help
166//config: Enable history saving in hush.
167//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200168//config:config HUSH_JOB
169//config: bool "Job control"
170//config: default y
171//config: depends on HUSH_INTERACTIVE
172//config: help
173//config: Enable job control: Ctrl-Z backgrounds, Ctrl-C interrupts current
174//config: command (not entire shell), fg/bg builtins work. Without this option,
175//config: "cmd &" still works by simply spawning a process and immediately
176//config: prompting for next command (or executing next command in a script),
177//config: but no separate process group is formed.
178//config:
179//config:config HUSH_TICK
180//config: bool "Process substitution"
181//config: default y
182//config: depends on HUSH
183//config: help
184//config: Enable process substitution `command` and $(command) in hush.
185//config:
186//config:config HUSH_IF
187//config: bool "Support if/then/elif/else/fi"
188//config: default y
189//config: depends on HUSH
190//config: help
191//config: Enable if/then/elif/else/fi in hush.
192//config:
193//config:config HUSH_LOOPS
194//config: bool "Support for, while and until loops"
195//config: default y
196//config: depends on HUSH
197//config: help
198//config: Enable for, while and until loops in hush.
199//config:
200//config:config HUSH_CASE
201//config: bool "Support case ... esac statement"
202//config: default y
203//config: depends on HUSH
204//config: help
205//config: Enable case ... esac statement in hush. +400 bytes.
206//config:
207//config:config HUSH_FUNCTIONS
208//config: bool "Support funcname() { commands; } syntax"
209//config: default y
210//config: depends on HUSH
211//config: help
212//config: Enable support for shell functions in hush. +800 bytes.
213//config:
214//config:config HUSH_LOCAL
215//config: bool "Support local builtin"
216//config: default y
217//config: depends on HUSH_FUNCTIONS
218//config: help
219//config: Enable support for local variables in functions.
220//config:
221//config:config HUSH_RANDOM_SUPPORT
222//config: bool "Pseudorandom generator and $RANDOM variable"
223//config: default y
224//config: depends on HUSH
225//config: help
226//config: Enable pseudorandom generator and dynamic variable "$RANDOM".
227//config: Each read of "$RANDOM" will generate a new pseudorandom value.
228//config:
229//config:config HUSH_EXPORT_N
230//config: bool "Support 'export -n' option"
231//config: default y
232//config: depends on HUSH
233//config: help
234//config: export -n unexports variables. It is a bash extension.
235//config:
236//config:config HUSH_MODE_X
237//config: bool "Support 'hush -x' option and 'set -x' command"
238//config: default y
239//config: depends on HUSH
240//config: help
Denys Vlasenko29082232010-07-16 13:52:32 +0200241//config: This instructs hush to print commands before execution.
242//config: Adds ~300 bytes.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200243//config:
Denys Vlasenko6adf2aa2010-07-16 19:26:38 +0200244//config:config MSH
245//config: bool "msh (deprecated: aliased to hush)"
246//config: default n
247//config: select HUSH
248//config: help
249//config: msh is deprecated and will be removed, please migrate to hush.
250//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200251
Dan Fandrich89ca2f92010-11-28 01:54:39 +0100252/* -i (interactive) and -s (read stdin) are also accepted,
253 * but currently do nothing, therefore aren't shown in help.
254 * NOMMU-specific options are not meant to be used by users,
255 * therefore we don't show them either.
256 */
257//usage:#define hush_trivial_usage
258//usage: "[-nx] [-c SCRIPT]"
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200259//usage:#define hush_full_usage ""
Dan Fandrich89ca2f92010-11-28 01:54:39 +0100260//usage:#define msh_trivial_usage hush_trivial_usage
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200261//usage:#define msh_full_usage ""
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +0200262//usage:#define sh_trivial_usage NOUSAGE_STR
263//usage:#define sh_full_usage ""
264//usage:#define bash_trivial_usage NOUSAGE_STR
265//usage:#define bash_full_usage ""
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200266
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000267
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200268/* Build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000269#define LEAK_HUNTING 0
270#define BUILD_AS_NOMMU 0
271/* Enable/disable sanity checks. Ok to enable in production,
272 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
273 * Keeping 1 for now even in released versions.
274 */
275#define HUSH_DEBUG 1
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200276/* Slightly bigger (+200 bytes), but faster hush.
277 * So far it only enables a trick with counting SIGCHLDs and forks,
278 * which allows us to do fewer waitpid's.
279 * (we can detect a case where neither forks were done nor SIGCHLDs happened
280 * and therefore waitpid will return the same result as last time)
281 */
282#define ENABLE_HUSH_FAST 0
Denys Vlasenko9297dbc2010-07-05 21:37:12 +0200283/* TODO: implement simplified code for users which do not need ${var%...} ops
284 * So far ${var%...} ops are always enabled:
285 */
286#define ENABLE_HUSH_DOLLAR_OPS 1
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000287
288
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000289#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000290# undef BB_MMU
291# undef USE_FOR_NOMMU
292# undef USE_FOR_MMU
293# define BB_MMU 0
294# define USE_FOR_NOMMU(...) __VA_ARGS__
295# define USE_FOR_MMU(...)
296#endif
297
Denys Vlasenko1fcbff22010-06-26 02:40:08 +0200298#include "NUM_APPLETS.h"
Denys Vlasenko14974842010-03-23 01:08:26 +0100299#if NUM_APPLETS == 1
Denis Vlasenko61befda2008-11-25 01:36:03 +0000300/* STANDALONE does not make sense, and won't compile */
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000301# undef CONFIG_FEATURE_SH_STANDALONE
302# undef ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000303# undef IF_FEATURE_SH_STANDALONE
Denys Vlasenko14974842010-03-23 01:08:26 +0100304# undef IF_NOT_FEATURE_SH_STANDALONE
305# define ENABLE_FEATURE_SH_STANDALONE 0
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000306# define IF_FEATURE_SH_STANDALONE(...)
307# define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denis Vlasenko61befda2008-11-25 01:36:03 +0000308#endif
309
Denis Vlasenko05743d72008-02-10 12:10:08 +0000310#if !ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000311# undef ENABLE_FEATURE_EDITING
312# define ENABLE_FEATURE_EDITING 0
313# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
314# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000315#endif
316
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000317/* Do we support ANY keywords? */
318#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000319# define HAS_KEYWORDS 1
320# define IF_HAS_KEYWORDS(...) __VA_ARGS__
321# define IF_HAS_NO_KEYWORDS(...)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000322#else
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000323# define HAS_KEYWORDS 0
324# define IF_HAS_KEYWORDS(...)
325# define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000326#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000327
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000328/* If you comment out one of these below, it will be #defined later
329 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000330#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000331/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000332#define debug_printf_parse(...) do {} while (0)
333#define debug_print_tree(a, b) do {} while (0)
334#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000335#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000336#define debug_printf_jobs(...) do {} while (0)
337#define debug_printf_expand(...) do {} while (0)
Denys Vlasenko1e811b12010-05-22 03:12:29 +0200338#define debug_printf_varexp(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000339#define debug_printf_glob(...) do {} while (0)
340#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000341#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000342#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000343
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000344#define ERR_PTR ((void*)(long)1)
345
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200346#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000347
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200348#define _SPECIAL_VARS_STR "_*@$!?#"
349#define SPECIAL_VARS_STR ("_*@$!?#" + 1)
350#define NUMERIC_SPECVARS_STR ("_*@$!?#" + 3)
Denys Vlasenko36f774a2010-09-05 14:45:38 +0200351#if ENABLE_HUSH_BASH_COMPAT
352/* Support / and // replace ops */
353/* Note that // is stored as \ in "encoded" string representation */
354# define VAR_ENCODED_SUBST_OPS "\\/%#:-=+?"
355# define VAR_SUBST_OPS ("\\/%#:-=+?" + 1)
356# define MINUS_PLUS_EQUAL_QUESTION ("\\/%#:-=+?" + 5)
357#else
358# define VAR_ENCODED_SUBST_OPS "%#:-=+?"
359# define VAR_SUBST_OPS "%#:-=+?"
360# define MINUS_PLUS_EQUAL_QUESTION ("%#:-=+?" + 3)
361#endif
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200362
363#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000364
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200365struct variable;
366
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000367static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
368
369/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000370 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000371 */
372#if !BB_MMU
373typedef struct nommu_save_t {
374 char **new_env;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200375 struct variable *old_vars;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000376 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000377 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000378} nommu_save_t;
379#endif
380
Denys Vlasenko9b782552010-09-08 13:33:26 +0200381enum {
Eric Andersen25f27032001-04-26 23:22:31 +0000382 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000383#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000384 RES_IF ,
385 RES_THEN ,
386 RES_ELIF ,
387 RES_ELSE ,
388 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000389#endif
390#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000391 RES_FOR ,
392 RES_WHILE ,
393 RES_UNTIL ,
394 RES_DO ,
395 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000396#endif
397#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000398 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000399#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000400#if ENABLE_HUSH_CASE
401 RES_CASE ,
Denys Vlasenkoe9bda902009-05-23 16:50:07 +0200402 /* three pseudo-keywords support contrived "case" syntax: */
403 RES_CASE_IN, /* "case ... IN", turns into RES_MATCH when IN is observed */
404 RES_MATCH , /* "word)" */
405 RES_CASE_BODY, /* "this command is inside CASE" */
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000406 RES_ESAC ,
407#endif
408 RES_XXXX ,
409 RES_SNTX
Denys Vlasenko9b782552010-09-08 13:33:26 +0200410};
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000411
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000412typedef struct o_string {
413 char *data;
414 int length; /* position where data is appended */
415 int maxlen;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +0200416 int o_expflags;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000417 /* At least some part of the string was inside '' or "",
418 * possibly empty one: word"", wo''rd etc. */
Denys Vlasenko38292b62010-09-05 14:49:40 +0200419 smallint has_quoted_part;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000420 smallint has_empty_slot;
421 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
422} o_string;
423enum {
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200424 EXP_FLAG_SINGLEWORD = 0x80, /* must be 0x80 */
425 EXP_FLAG_GLOB = 0x2,
426 /* Protect newly added chars against globbing
427 * by prepending \ to *, ?, [, \ */
428 EXP_FLAG_ESC_GLOB_CHARS = 0x1,
429};
430enum {
431 MAYBE_ASSIGNMENT = 0,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000432 DEFINITELY_ASSIGNMENT = 1,
Denys Vlasenko0e13b402010-09-21 12:35:39 +0200433 NOT_ASSIGNMENT = 2,
434 /* Not an assigment, but next word may be: "if v=xyz cmd;" */
435 WORD_IS_KEYWORD = 3,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000436};
437/* Used for initialization: o_string foo = NULL_O_STRING; */
438#define NULL_O_STRING { NULL }
439
440/* I can almost use ordinary FILE*. Is open_memstream() universally
441 * available? Where is it documented? */
442typedef struct in_str {
443 const char *p;
444 /* eof_flag=1: last char in ->p is really an EOF */
445 char eof_flag; /* meaningless if ->p == NULL */
446 char peek_buf[2];
447#if ENABLE_HUSH_INTERACTIVE
448 smallint promptme;
449 smallint promptmode; /* 0: PS1, 1: PS2 */
450#endif
451 FILE *file;
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200452 int (*get) (struct in_str *) FAST_FUNC;
453 int (*peek) (struct in_str *) FAST_FUNC;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000454} in_str;
455#define i_getch(input) ((input)->get(input))
456#define i_peek(input) ((input)->peek(input))
457
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200458/* The descrip member of this structure is only used to make
459 * debugging output pretty */
460static const struct {
461 int mode;
462 signed char default_fd;
463 char descrip[3];
464} redir_table[] = {
465 { O_RDONLY, 0, "<" },
466 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
467 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
468 { O_CREAT|O_RDWR, 1, "<>" },
469 { O_RDONLY, 0, "<<" },
470/* Should not be needed. Bogus default_fd helps in debugging */
471/* { O_RDONLY, 77, "<<" }, */
472};
473
Eric Andersen25f27032001-04-26 23:22:31 +0000474struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000475 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000476 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000477 int rd_fd; /* fd to redirect */
478 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
479 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000480 smallint rd_type; /* (enum redir_type) */
481 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000482 * and subsequently heredoc itself; and rd_dup is a bitmask:
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200483 * bit 0: do we need to trim leading tabs?
484 * bit 1: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000485 */
Eric Andersen25f27032001-04-26 23:22:31 +0000486};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000487typedef enum redir_type {
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200488 REDIRECT_INPUT = 0,
489 REDIRECT_OVERWRITE = 1,
490 REDIRECT_APPEND = 2,
491 REDIRECT_IO = 3,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000492 REDIRECT_HEREDOC = 4,
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200493 REDIRECT_HEREDOC2 = 5, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000494
495 REDIRFD_CLOSE = -3,
496 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000497 REDIRFD_TO_FILE = -1,
498 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000499
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000500 HEREDOC_SKIPTABS = 1,
501 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000502} redir_type;
503
Eric Andersen25f27032001-04-26 23:22:31 +0000504
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000505struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000506 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000507 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000508 smallint is_stopped; /* is the command currently running? */
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200509 smallint cmd_type; /* CMD_xxx */
510#define CMD_NORMAL 0
511#define CMD_SUBSHELL 1
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200512#if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenkod383b492010-09-06 10:22:13 +0200513/* used for "[[ EXPR ]]" */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200514# define CMD_SINGLEWORD_NOGLOB 2
Denis Vlasenkoed055212009-04-11 10:37:10 +0000515#endif
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200516#if ENABLE_HUSH_FUNCTIONS
517# define CMD_FUNCDEF 3
518#endif
519
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100520 smalluint cmd_exitcode;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200521 /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */
522 struct pipe *group;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000523#if !BB_MMU
524 char *group_as_string;
525#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000526#if ENABLE_HUSH_FUNCTIONS
527 struct function *child_func;
528/* This field is used to prevent a bug here:
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200529 * while...do f1() {a;}; f1; f1() {b;}; f1; done
Denis Vlasenkoed055212009-04-11 10:37:10 +0000530 * When we execute "f1() {a;}" cmd, we create new function and clear
531 * cmd->group, cmd->group_as_string, cmd->argv[0].
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200532 * When we execute "f1() {b;}", we notice that f1 exists,
533 * and that its "parent cmd" struct is still "alive",
Denis Vlasenkoed055212009-04-11 10:37:10 +0000534 * we put those fields back into cmd->xxx
535 * (struct function has ->parent_cmd ptr to facilitate that).
536 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
537 * Without this trick, loop would execute a;b;b;b;...
538 * instead of correct sequence a;b;a;b;...
539 * When command is freed, it severs the link
540 * (sets ->child_func->parent_cmd to NULL).
541 */
542#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000543 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000544/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
545 * and on execution these are substituted with their values.
546 * Substitution can make _several_ words out of one argv[n]!
547 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000548 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000549 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000550 struct redir_struct *redirects; /* I/O redirections */
551};
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000552/* Is there anything in this command at all? */
553#define IS_NULL_CMD(cmd) \
554 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
555
Eric Andersen25f27032001-04-26 23:22:31 +0000556struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000557 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000558 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000559 int alive_cmds; /* number of commands running (not exited) */
560 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000561#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000562 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000563 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000564 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000565#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000566 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000567 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000568 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
569 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000570};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000571typedef enum pipe_style {
572 PIPE_SEQ = 1,
573 PIPE_AND = 2,
574 PIPE_OR = 3,
575 PIPE_BG = 4,
576} pipe_style;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000577/* Is there anything in this pipe at all? */
578#define IS_NULL_PIPE(pi) \
579 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
Eric Andersen25f27032001-04-26 23:22:31 +0000580
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000581/* This holds pointers to the various results of parsing */
582struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000583 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000584 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000585 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000586 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000587 /* last command in pipe (being constructed right now) */
588 struct command *command;
589 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000590 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000591#if !BB_MMU
592 o_string as_string;
593#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000594#if HAS_KEYWORDS
595 smallint ctx_res_w;
596 smallint ctx_inverted; /* "! cmd | cmd" */
597#if ENABLE_HUSH_CASE
598 smallint ctx_dsemicolon; /* ";;" seen */
599#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000600 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
601 int old_flag;
602 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000603 * example: "if pipe1; pipe2; then pipe3; fi"
604 * when we see "if" or "then", we malloc and copy current context,
605 * and make ->stack point to it. then we parse pipeN.
606 * when closing "then" / fi" / whatever is found,
607 * we move list_head into ->stack->command->group,
608 * copy ->stack into current context, and delete ->stack.
609 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000610 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000611 struct parse_context *stack;
612#endif
613};
614
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000615/* On program start, environ points to initial environment.
616 * putenv adds new pointers into it, unsetenv removes them.
617 * Neither of these (de)allocates the strings.
618 * setenv allocates new strings in malloc space and does putenv,
619 * and thus setenv is unusable (leaky) for shell's purposes */
620#define setenv(...) setenv_is_leaky_dont_use()
621struct variable {
622 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000623 char *varstr; /* points to "name=" portion */
Denys Vlasenko295fef82009-06-03 12:47:26 +0200624#if ENABLE_HUSH_LOCAL
625 unsigned func_nest_level;
626#endif
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000627 int max_len; /* if > 0, name is part of initial env; else name is malloced */
628 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000629 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000630};
631
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000632enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000633 BC_BREAK = 1,
634 BC_CONTINUE = 2,
635};
636
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000637#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000638struct function {
639 struct function *next;
640 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000641 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000642 struct pipe *body;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200643# if !BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000644 char *body_as_string;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200645# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000646};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000647#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000648
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000649
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100650/* set -/+o OPT support. (TODO: make it optional)
651 * bash supports the following opts:
652 * allexport off
653 * braceexpand on
654 * emacs on
655 * errexit off
656 * errtrace off
657 * functrace off
658 * hashall on
659 * histexpand off
660 * history on
661 * ignoreeof off
662 * interactive-comments on
663 * keyword off
664 * monitor on
665 * noclobber off
666 * noexec off
667 * noglob off
668 * nolog off
669 * notify off
670 * nounset off
671 * onecmd off
672 * physical off
673 * pipefail off
674 * posix off
675 * privileged off
676 * verbose off
677 * vi off
678 * xtrace off
679 */
Dan Fandrich85c62472010-11-20 13:05:17 -0800680static const char o_opt_strings[] ALIGN1 =
681 "pipefail\0"
682 "noexec\0"
683#if ENABLE_HUSH_MODE_X
684 "xtrace\0"
685#endif
686 ;
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100687enum {
688 OPT_O_PIPEFAIL,
Dan Fandrich85c62472010-11-20 13:05:17 -0800689 OPT_O_NOEXEC,
690#if ENABLE_HUSH_MODE_X
691 OPT_O_XTRACE,
692#endif
Denys Vlasenko6696eac2010-11-14 02:01:50 +0100693 NUM_OPT_O
694};
695
696
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000697/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000698/* Sorted roughly by size (smaller offsets == smaller code) */
699struct globals {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000700 /* interactive_fd != 0 means we are an interactive shell.
701 * If we are, then saved_tty_pgrp can also be != 0, meaning
702 * that controlling tty is available. With saved_tty_pgrp == 0,
703 * job control still works, but terminal signals
704 * (^C, ^Z, ^Y, ^\) won't work at all, and background
705 * process groups can only be created with "cmd &".
706 * With saved_tty_pgrp != 0, hush will use tcsetpgrp()
707 * to give tty to the foreground process group,
708 * and will take it back when the group is stopped (^Z)
709 * or killed (^C).
710 */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000711#if ENABLE_HUSH_INTERACTIVE
712 /* 'interactive_fd' is a fd# open to ctty, if we have one
713 * _AND_ if we decided to act interactively */
714 int interactive_fd;
715 const char *PS1;
716 const char *PS2;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000717# define G_interactive_fd (G.interactive_fd)
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000718#else
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000719# define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000720#endif
721#if ENABLE_FEATURE_EDITING
722 line_input_t *line_input_state;
723#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000724 pid_t root_pid;
Denys Vlasenkodea47882009-10-09 15:40:49 +0200725 pid_t root_ppid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000726 pid_t last_bg_pid;
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200727#if ENABLE_HUSH_RANDOM_SUPPORT
728 random_t random_gen;
729#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000730#if ENABLE_HUSH_JOB
731 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000732 int last_jobid;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000733 pid_t saved_tty_pgrp;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000734 struct pipe *job_list;
Mike Frysinger38478a62009-05-20 04:48:06 -0400735# define G_saved_tty_pgrp (G.saved_tty_pgrp)
736#else
737# define G_saved_tty_pgrp 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000738#endif
Denys Vlasenko26777aa2010-11-22 23:49:10 +0100739 char o_opt[NUM_OPT_O];
Denys Vlasenko57542eb2010-11-28 03:59:30 +0100740#if ENABLE_HUSH_MODE_X
741# define G_x_mode (G.o_opt[OPT_O_XTRACE])
742#else
743# define G_x_mode 0
744#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000745 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000746#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000747 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000748#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000749#if ENABLE_HUSH_FUNCTIONS
750 /* 0: outside of a function (or sourced file)
751 * -1: inside of a function, ok to use return builtin
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000752 * 1: return is invoked, skip all till end of func
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000753 */
754 smallint flag_return_in_progress;
755#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000756 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000757 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000758 smalluint last_exitcode;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000759 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000760 smalluint global_args_malloced;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +0100761 smalluint inherited_set_is_saved;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000762 /* how many non-NULL argv's we have. NB: $# + 1 */
763 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000764 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000765#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000766 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000767#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000768#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000769 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000770 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000771#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000772 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000773 const char *cwd;
Denys Vlasenko52e460b2010-09-16 16:12:00 +0200774 struct variable *top_var;
Denys Vlasenko29082232010-07-16 13:52:32 +0200775 char **expanded_assignments;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000776#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000777 struct function *top_func;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200778# if ENABLE_HUSH_LOCAL
779 struct variable **shadowed_vars_pp;
780 unsigned func_nest_level;
781# endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000782#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000783 /* Signal and trap handling */
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200784#if ENABLE_HUSH_FAST
785 unsigned count_SIGCHLD;
786 unsigned handled_SIGCHLD;
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +0200787 smallint we_have_children;
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200788#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000789 /* which signals have non-DFL handler (even with no traps set)? */
790 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000791 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000792 sigset_t blocked_set;
793 sigset_t inherited_set;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000794#if HUSH_DEBUG
795 unsigned long memleak_value;
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000796 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000797#endif
Denys Vlasenkoaaa22d22009-10-19 16:34:39 +0200798 char user_input_buf[ENABLE_FEATURE_EDITING ? CONFIG_FEATURE_EDITING_MAX_LEN : 2];
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000799};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000800#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000801/* Not #defining name to G.name - this quickly gets unwieldy
802 * (too many defines). Also, I actually prefer to see when a variable
803 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000804#define INIT_G() do { \
805 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
806} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000807
808
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000809/* Function prototypes for builtins */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200810static int builtin_cd(char **argv) FAST_FUNC;
811static int builtin_echo(char **argv) FAST_FUNC;
812static int builtin_eval(char **argv) FAST_FUNC;
813static int builtin_exec(char **argv) FAST_FUNC;
814static int builtin_exit(char **argv) FAST_FUNC;
815static int builtin_export(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000816#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200817static int builtin_fg_bg(char **argv) FAST_FUNC;
818static int builtin_jobs(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000819#endif
820#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200821static int builtin_help(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000822#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200823#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200824static int builtin_local(char **argv) FAST_FUNC;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200825#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000826#if HUSH_DEBUG
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200827static int builtin_memleak(char **argv) FAST_FUNC;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000828#endif
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400829#if ENABLE_PRINTF
830static int builtin_printf(char **argv) FAST_FUNC;
831#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200832static int builtin_pwd(char **argv) FAST_FUNC;
833static int builtin_read(char **argv) FAST_FUNC;
834static int builtin_set(char **argv) FAST_FUNC;
835static int builtin_shift(char **argv) FAST_FUNC;
836static int builtin_source(char **argv) FAST_FUNC;
837static int builtin_test(char **argv) FAST_FUNC;
838static int builtin_trap(char **argv) FAST_FUNC;
839static int builtin_type(char **argv) FAST_FUNC;
840static int builtin_true(char **argv) FAST_FUNC;
841static int builtin_umask(char **argv) FAST_FUNC;
842static int builtin_unset(char **argv) FAST_FUNC;
843static int builtin_wait(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000844#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200845static int builtin_break(char **argv) FAST_FUNC;
846static int builtin_continue(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000847#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000848#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200849static int builtin_return(char **argv) FAST_FUNC;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000850#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000851
852/* Table of built-in functions. They can be forked or not, depending on
853 * context: within pipes, they fork. As simple commands, they do not.
854 * When used in non-forking context, they can change global variables
855 * in the parent shell process. If forked, of course they cannot.
856 * For example, 'unset foo | whatever' will parse and run, but foo will
857 * still be set at the end. */
858struct built_in_command {
Denys Vlasenko17323a62010-01-28 01:57:05 +0100859 const char *b_cmd;
860 int (*b_function)(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000861#if ENABLE_HUSH_HELP
Denys Vlasenko17323a62010-01-28 01:57:05 +0100862 const char *b_descr;
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200863# define BLTIN(cmd, func, help) { cmd, func, help }
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000864#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200865# define BLTIN(cmd, func, help) { cmd, func }
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000866#endif
867};
868
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200869static const struct built_in_command bltins1[] = {
870 BLTIN("." , builtin_source , "Run commands in a file"),
871 BLTIN(":" , builtin_true , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000872#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200873 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000874#endif
875#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200876 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000877#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200878 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000879#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200880 BLTIN("continue" , builtin_continue, "Start new loop iteration"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000881#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200882 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
883 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
884 BLTIN("exit" , builtin_exit , "Exit"),
885 BLTIN("export" , builtin_export , "Set environment variables"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000886#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200887 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000888#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000889#if ENABLE_HUSH_HELP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200890 BLTIN("help" , builtin_help , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000891#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000892#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200893 BLTIN("jobs" , builtin_jobs , "List jobs"),
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000894#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200895#if ENABLE_HUSH_LOCAL
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200896 BLTIN("local" , builtin_local , "Set local variables"),
Denys Vlasenko295fef82009-06-03 12:47:26 +0200897#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000898#if HUSH_DEBUG
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200899 BLTIN("memleak" , builtin_memleak , NULL),
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000900#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200901 BLTIN("read" , builtin_read , "Input into variable"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000902#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200903 BLTIN("return" , builtin_return , "Return from a function"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000904#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200905 BLTIN("set" , builtin_set , "Set/unset positional parameters"),
906 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
Denys Vlasenko82731b42010-05-17 17:49:52 +0200907#if ENABLE_HUSH_BASH_COMPAT
908 BLTIN("source" , builtin_source , "Run commands in a file"),
909#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200910 BLTIN("trap" , builtin_trap , "Trap signals"),
Denys Vlasenko651a2692010-03-23 16:25:17 +0100911 BLTIN("type" , builtin_type , "Show command type"),
Denys Vlasenkof3c742f2010-03-06 20:12:00 +0100912 BLTIN("ulimit" , shell_builtin_ulimit , "Control resource limits"),
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200913 BLTIN("umask" , builtin_umask , "Set file creation mask"),
914 BLTIN("unset" , builtin_unset , "Unset variables"),
915 BLTIN("wait" , builtin_wait , "Wait for process"),
916};
917/* For now, echo and test are unconditionally enabled.
918 * Maybe make it configurable? */
919static const struct built_in_command bltins2[] = {
920 BLTIN("[" , builtin_test , NULL),
921 BLTIN("echo" , builtin_echo , NULL),
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400922#if ENABLE_PRINTF
923 BLTIN("printf" , builtin_printf , NULL),
924#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200925 BLTIN("pwd" , builtin_pwd , NULL),
926 BLTIN("test" , builtin_test , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000927};
928
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000929
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000930/* Debug printouts.
931 */
932#if HUSH_DEBUG
933/* prevent disasters with G.debug_indent < 0 */
934# define indent() fprintf(stderr, "%*s", (G.debug_indent * 2) & 0xff, "")
935# define debug_enter() (G.debug_indent++)
936# define debug_leave() (G.debug_indent--)
937#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200938# define indent() ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000939# define debug_enter() ((void)0)
940# define debug_leave() ((void)0)
941#endif
942
943#ifndef debug_printf
944# define debug_printf(...) (indent(), fprintf(stderr, __VA_ARGS__))
945#endif
946
947#ifndef debug_printf_parse
948# define debug_printf_parse(...) (indent(), fprintf(stderr, __VA_ARGS__))
949#endif
950
951#ifndef debug_printf_exec
952#define debug_printf_exec(...) (indent(), fprintf(stderr, __VA_ARGS__))
953#endif
954
955#ifndef debug_printf_env
956# define debug_printf_env(...) (indent(), fprintf(stderr, __VA_ARGS__))
957#endif
958
959#ifndef debug_printf_jobs
960# define debug_printf_jobs(...) (indent(), fprintf(stderr, __VA_ARGS__))
961# define DEBUG_JOBS 1
962#else
963# define DEBUG_JOBS 0
964#endif
965
966#ifndef debug_printf_expand
967# define debug_printf_expand(...) (indent(), fprintf(stderr, __VA_ARGS__))
968# define DEBUG_EXPAND 1
969#else
970# define DEBUG_EXPAND 0
971#endif
972
Denys Vlasenko1e811b12010-05-22 03:12:29 +0200973#ifndef debug_printf_varexp
974# define debug_printf_varexp(...) (indent(), fprintf(stderr, __VA_ARGS__))
975#endif
976
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000977#ifndef debug_printf_glob
978# define debug_printf_glob(...) (indent(), fprintf(stderr, __VA_ARGS__))
979# define DEBUG_GLOB 1
980#else
981# define DEBUG_GLOB 0
982#endif
983
984#ifndef debug_printf_list
985# define debug_printf_list(...) (indent(), fprintf(stderr, __VA_ARGS__))
986#endif
987
988#ifndef debug_printf_subst
989# define debug_printf_subst(...) (indent(), fprintf(stderr, __VA_ARGS__))
990#endif
991
992#ifndef debug_printf_clean
993# define debug_printf_clean(...) (indent(), fprintf(stderr, __VA_ARGS__))
994# define DEBUG_CLEAN 1
995#else
996# define DEBUG_CLEAN 0
997#endif
998
999#if DEBUG_EXPAND
1000static void debug_print_strings(const char *prefix, char **vv)
1001{
1002 indent();
1003 fprintf(stderr, "%s:\n", prefix);
1004 while (*vv)
1005 fprintf(stderr, " '%s'\n", *vv++);
1006}
1007#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001008# define debug_print_strings(prefix, vv) ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001009#endif
1010
1011
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001012/* Leak hunting. Use hush_leaktool.sh for post-processing.
1013 */
1014#if LEAK_HUNTING
1015static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001016{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001017 void *ptr = xmalloc((size + 0xff) & ~0xff);
1018 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
1019 return ptr;
1020}
1021static void *xxrealloc(int lineno, void *ptr, size_t size)
1022{
1023 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
1024 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
1025 return ptr;
1026}
1027static char *xxstrdup(int lineno, const char *str)
1028{
1029 char *ptr = xstrdup(str);
1030 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
1031 return ptr;
1032}
1033static void xxfree(void *ptr)
1034{
1035 fdprintf(2, "free %p\n", ptr);
1036 free(ptr);
1037}
Denys Vlasenko8391c482010-05-22 17:50:43 +02001038# define xmalloc(s) xxmalloc(__LINE__, s)
1039# define xrealloc(p, s) xxrealloc(__LINE__, p, s)
1040# define xstrdup(s) xxstrdup(__LINE__, s)
1041# define free(p) xxfree(p)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001042#endif
1043
1044
1045/* Syntax and runtime errors. They always abort scripts.
1046 * In interactive use they usually discard unparsed and/or unexecuted commands
1047 * and return to the prompt.
1048 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
1049 */
1050#if HUSH_DEBUG < 2
Denys Vlasenko606291b2009-09-23 23:15:43 +02001051# define die_if_script(lineno, ...) die_if_script(__VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001052# define syntax_error(lineno, msg) syntax_error(msg)
1053# define syntax_error_at(lineno, msg) syntax_error_at(msg)
1054# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
1055# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
1056# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001057#endif
1058
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001059static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001060{
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001061 va_list p;
1062
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001063#if HUSH_DEBUG >= 2
1064 bb_error_msg("hush.c:%u", lineno);
1065#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001066 va_start(p, fmt);
1067 bb_verror_msg(fmt, p, NULL);
1068 va_end(p);
1069 if (!G_interactive_fd)
1070 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +00001071}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001072
1073static void syntax_error(unsigned lineno, const char *msg)
1074{
1075 if (msg)
1076 die_if_script(lineno, "syntax error: %s", msg);
1077 else
1078 die_if_script(lineno, "syntax error", NULL);
1079}
1080
1081static void syntax_error_at(unsigned lineno, const char *msg)
1082{
1083 die_if_script(lineno, "syntax error at '%s'", msg);
1084}
1085
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001086static void syntax_error_unterm_str(unsigned lineno, const char *s)
1087{
1088 die_if_script(lineno, "syntax error: unterminated %s", s);
1089}
1090
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001091/* It so happens that all such cases are totally fatal
1092 * even if shell is interactive: EOF while looking for closing
1093 * delimiter. There is nowhere to read stuff from after that,
1094 * it's EOF! The only choice is to terminate.
1095 */
1096static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN;
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001097static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001098{
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001099 char msg[2] = { ch, '\0' };
1100 syntax_error_unterm_str(lineno, msg);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001101 xfunc_die();
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001102}
1103
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02001104static void syntax_error_unexpected_ch(unsigned lineno, int ch)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001105{
1106 char msg[2];
1107 msg[0] = ch;
1108 msg[1] = '\0';
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02001109 die_if_script(lineno, "syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001110}
1111
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001112#if HUSH_DEBUG < 2
1113# undef die_if_script
1114# undef syntax_error
1115# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001116# undef syntax_error_unterm_ch
1117# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001118# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001119#else
Denys Vlasenko606291b2009-09-23 23:15:43 +02001120# define die_if_script(...) die_if_script(__LINE__, __VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001121# define syntax_error(msg) syntax_error(__LINE__, msg)
1122# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
1123# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
1124# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
1125# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001126#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001127
Denis Vlasenko552433b2009-04-04 19:29:21 +00001128
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001129#if ENABLE_HUSH_INTERACTIVE
1130static void cmdedit_update_prompt(void);
1131#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001132# define cmdedit_update_prompt() ((void)0)
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001133#endif
1134
1135
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001136/* Utility functions
1137 */
Denis Vlasenko55789c62008-06-18 16:30:42 +00001138/* Replace each \x with x in place, return ptr past NUL. */
1139static char *unbackslash(char *src)
1140{
Denys Vlasenko71885402009-09-24 01:44:13 +02001141 char *dst = src = strchrnul(src, '\\');
Denis Vlasenko55789c62008-06-18 16:30:42 +00001142 while (1) {
1143 if (*src == '\\')
1144 src++;
1145 if ((*dst++ = *src++) == '\0')
1146 break;
1147 }
1148 return dst;
1149}
1150
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001151static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001152{
1153 int i;
1154 unsigned count1;
1155 unsigned count2;
1156 char **v;
1157
1158 v = strings;
1159 count1 = 0;
1160 if (v) {
1161 while (*v) {
1162 count1++;
1163 v++;
1164 }
1165 }
1166 count2 = 0;
1167 v = add;
1168 while (*v) {
1169 count2++;
1170 v++;
1171 }
1172 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
1173 v[count1 + count2] = NULL;
1174 i = count2;
1175 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001176 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001177 return v;
1178}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001179#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001180static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
1181{
1182 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
1183 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
1184 return ptr;
1185}
1186#define add_strings_to_strings(strings, add, need_to_dup) \
1187 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
1188#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001189
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001190/* Note: takes ownership of "add" ptr (it is not strdup'ed) */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001191static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001192{
1193 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001194 v[0] = add;
1195 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001196 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001197}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001198#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001199static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
1200{
1201 char **ptr = add_string_to_strings(strings, add);
1202 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
1203 return ptr;
1204}
1205#define add_string_to_strings(strings, add) \
1206 xx_add_string_to_strings(__LINE__, strings, add)
1207#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001208
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001209static void free_strings(char **strings)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001210{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001211 char **v;
1212
1213 if (!strings)
1214 return;
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001215 v = strings;
1216 while (*v) {
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001217 free(*v);
1218 v++;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001219 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001220 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001221}
1222
Denis Vlasenko76d50412008-06-10 16:19:39 +00001223
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001224/* Helpers for setting new $n and restoring them back
1225 */
1226typedef struct save_arg_t {
1227 char *sv_argv0;
1228 char **sv_g_argv;
1229 int sv_g_argc;
1230 smallint sv_g_malloced;
1231} save_arg_t;
1232
1233static void save_and_replace_G_args(save_arg_t *sv, char **argv)
1234{
1235 int n;
1236
1237 sv->sv_argv0 = argv[0];
1238 sv->sv_g_argv = G.global_argv;
1239 sv->sv_g_argc = G.global_argc;
1240 sv->sv_g_malloced = G.global_args_malloced;
1241
1242 argv[0] = G.global_argv[0]; /* retain $0 */
1243 G.global_argv = argv;
1244 G.global_args_malloced = 0;
1245
1246 n = 1;
1247 while (*++argv)
1248 n++;
1249 G.global_argc = n;
1250}
1251
1252static void restore_G_args(save_arg_t *sv, char **argv)
1253{
1254 char **pp;
1255
1256 if (G.global_args_malloced) {
1257 /* someone ran "set -- arg1 arg2 ...", undo */
1258 pp = G.global_argv;
1259 while (*++pp) /* note: does not free $0 */
1260 free(*pp);
1261 free(G.global_argv);
1262 }
1263 argv[0] = sv->sv_argv0;
1264 G.global_argv = sv->sv_g_argv;
1265 G.global_argc = sv->sv_g_argc;
1266 G.global_args_malloced = sv->sv_g_malloced;
1267}
1268
1269
Denis Vlasenkod5762932009-03-31 11:22:57 +00001270/* Basic theory of signal handling in shell
1271 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001272 * This does not describe what hush does, rather, it is current understanding
1273 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001274 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1275 *
1276 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1277 * is finished or backgrounded. It is the same in interactive and
1278 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001279 * a user trap handler is installed or a shell special one is in effect.
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001280 * ^C or ^Z from keyboard seems to execute "at once" because it usually
Denis Vlasenkod5762932009-03-31 11:22:57 +00001281 * backgrounds (i.e. stops) or kills all members of currently running
1282 * pipe.
1283 *
1284 * Wait builtin in interruptible by signals for which user trap is set
1285 * or by SIGINT in interactive shell.
1286 *
1287 * Trap handlers will execute even within trap handlers. (right?)
1288 *
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001289 * User trap handlers are forgotten when subshell ("(cmd)") is entered,
1290 * except for handlers set to '' (empty string).
Denis Vlasenkod5762932009-03-31 11:22:57 +00001291 *
1292 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001293 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001294 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001295 * Commands which are run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001296 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001297 *
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001298 * Ordinary commands have signals set to SIG_IGN/DFL as inherited
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001299 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001300 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001301 * Signals which differ from SIG_DFL action
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001302 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001303 *
1304 * SIGQUIT: ignore
1305 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001306 * SIGHUP (interactive):
1307 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001308 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001309 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1310 * that all pipe members are stopped. Try this in bash:
1311 * while :; do :; done - ^Z does not background it
1312 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001313 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001314 * of the command line, show prompt. NB: ^C does not send SIGINT
1315 * to interactive shell while shell is waiting for a pipe,
1316 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001317 * Example 1: this waits 5 sec, but does not execute ls:
1318 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1319 * Example 2: this does not wait and does not execute ls:
1320 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1321 * Example 3: this does not wait 5 sec, but executes ls:
1322 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001323 *
1324 * (What happens to signals which are IGN on shell start?)
1325 * (What happens with signal mask on shell start?)
1326 *
1327 * Implementation in hush
1328 * ======================
1329 * We use in-kernel pending signal mask to determine which signals were sent.
1330 * We block all signals which we don't want to take action immediately,
1331 * i.e. we block all signals which need to have special handling as described
1332 * above, and all signals which have traps set.
1333 * After each pipe execution, we extract any pending signals via sigtimedwait()
1334 * and act on them.
1335 *
1336 * unsigned non_DFL_mask: a mask of such "special" signals
1337 * sigset_t blocked_set: current blocked signal set
1338 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001339 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +00001340 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001341 * "trap 'cmd' SIGxxx":
1342 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001343 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001344 * unblock signals with special interactive handling
1345 * (child shell is not interactive),
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001346 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001347 * after [v]fork, if we plan to exec:
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001348 * POSIX says fork clears pending signal mask in child - no need to clear it.
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001349 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001350 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001351 * Note: as a result, we do not use signal handlers much. The only uses
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001352 * are to count SIGCHLDs
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001353 * and to restore tty pgrp on signal-induced exit.
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001354 *
Denys Vlasenko67f71862009-09-25 14:21:06 +02001355 * Note 2 (compat):
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001356 * Standard says "When a subshell is entered, traps that are not being ignored
1357 * are set to the default actions". bash interprets it so that traps which
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001358 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001359 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001360enum {
1361 SPECIAL_INTERACTIVE_SIGS = 0
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001362 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001363 | (1 << SIGINT)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001364 | (1 << SIGHUP)
1365 ,
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001366 SPECIAL_JOB_SIGS = 0
Mike Frysinger38478a62009-05-20 04:48:06 -04001367#if ENABLE_HUSH_JOB
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001368 | (1 << SIGTTIN)
1369 | (1 << SIGTTOU)
1370 | (1 << SIGTSTP)
1371#endif
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001372};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001373
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001374#if ENABLE_HUSH_FAST
1375static void SIGCHLD_handler(int sig UNUSED_PARAM)
1376{
1377 G.count_SIGCHLD++;
1378//bb_error_msg("[%d] SIGCHLD_handler: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1379}
1380#endif
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001381
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001382#if ENABLE_HUSH_JOB
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001383
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001384/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
Denys Vlasenko8391c482010-05-22 17:50:43 +02001385# define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001386/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denys Vlasenko8391c482010-05-22 17:50:43 +02001387# define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001388
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001389/* Restores tty foreground process group, and exits.
1390 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001391 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001392 * or called directly with -EXITCODE.
1393 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001394static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001395static void sigexit(int sig)
1396{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001397 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001398 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001399
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001400 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001401 * tty pgrp then, only top-level shell process does that */
Mike Frysinger38478a62009-05-20 04:48:06 -04001402 if (G_saved_tty_pgrp && getpid() == G.root_pid)
1403 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001404
1405 /* Not a signal, just exit */
1406 if (sig <= 0)
1407 _exit(- sig);
1408
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001409 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001410}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001411#else
1412
Denys Vlasenko8391c482010-05-22 17:50:43 +02001413# define disable_restore_tty_pgrp_on_exit() ((void)0)
1414# define enable_restore_tty_pgrp_on_exit() ((void)0)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001415
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001416#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001417
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001418/* Restores tty foreground process group, and exits. */
1419static void hush_exit(int exitcode) NORETURN;
1420static void hush_exit(int exitcode)
1421{
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001422 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1423 /* Prevent recursion:
1424 * trap "echo Hi; exit" EXIT; exit
1425 */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001426 char *argv[3];
1427 /* argv[0] is unused */
1428 argv[1] = G.traps[0];
1429 argv[2] = NULL;
Denys Vlasenkoa110c902010-09-12 15:38:04 +02001430 G.exiting = 1; /* prevent EXIT trap recursion */
Denys Vlasenkoa110c902010-09-12 15:38:04 +02001431 /* Note: G.traps[0] is not cleared!
Denys Vlasenkode8c3f62010-09-12 16:13:44 +02001432 * "trap" will still show it, if executed
1433 * in the handler */
1434 builtin_eval(argv);
Denis Vlasenkod5762932009-03-31 11:22:57 +00001435 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001436
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001437#if ENABLE_HUSH_JOB
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001438 fflush_all();
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001439 sigexit(- (exitcode & 0xff));
1440#else
1441 exit(exitcode);
1442#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001443}
1444
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02001445
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001446static int check_and_run_traps(int sig)
1447{
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02001448 /* I want it in rodata, not in bss.
1449 * gcc 4.2.1 puts it in rodata only if it has { 0, 0 }
1450 * initializer. But other compilers may still use bss.
1451 * TODO: find more portable solution.
1452 */
1453 static const struct timespec zero_timespec = { 0, 0 };
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001454 smalluint save_rcode;
1455 int last_sig = 0;
1456
1457 if (sig)
1458 goto jump_in;
1459 while (1) {
1460 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
1461 if (sig <= 0)
1462 break;
1463 jump_in:
1464 last_sig = sig;
1465 if (G.traps && G.traps[sig]) {
1466 if (G.traps[sig][0]) {
1467 /* We have user-defined handler */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001468 char *argv[3];
1469 /* argv[0] is unused */
1470 argv[1] = G.traps[sig];
1471 argv[2] = NULL;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001472 save_rcode = G.last_exitcode;
1473 builtin_eval(argv);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001474 G.last_exitcode = save_rcode;
1475 } /* else: "" trap, ignoring signal */
1476 continue;
1477 }
1478 /* not a trap: special action */
1479 switch (sig) {
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001480#if ENABLE_HUSH_FAST
1481 case SIGCHLD:
1482 G.count_SIGCHLD++;
1483//bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1484 break;
1485#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001486 case SIGINT:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001487 /* Builtin was ^C'ed, make it look prettier: */
1488 bb_putchar('\n');
1489 G.flag_SIGINT = 1;
1490 break;
1491#if ENABLE_HUSH_JOB
1492 case SIGHUP: {
1493 struct pipe *job;
1494 /* bash is observed to signal whole process groups,
1495 * not individual processes */
1496 for (job = G.job_list; job; job = job->next) {
1497 if (job->pgrp <= 0)
1498 continue;
1499 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1500 if (kill(- job->pgrp, SIGHUP) == 0)
1501 kill(- job->pgrp, SIGCONT);
1502 }
1503 sigexit(SIGHUP);
1504 }
1505#endif
1506 default: /* ignored: */
1507 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
1508 break;
1509 }
1510 }
1511 return last_sig;
1512}
1513
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001514
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001515static const char *get_cwd(int force)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001516{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001517 if (force || G.cwd == NULL) {
1518 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1519 * we must not try to free(bb_msg_unknown) */
1520 if (G.cwd == bb_msg_unknown)
1521 G.cwd = NULL;
1522 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1523 if (!G.cwd)
1524 G.cwd = bb_msg_unknown;
1525 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00001526 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001527}
1528
Denis Vlasenko83506862007-11-23 13:11:42 +00001529
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001530/*
1531 * Shell and environment variable support
1532 */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001533static struct variable **get_ptr_to_local_var(const char *name, unsigned len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001534{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001535 struct variable **pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001536 struct variable *cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001537
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001538 pp = &G.top_var;
1539 while ((cur = *pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001540 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001541 return pp;
1542 pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001543 }
1544 return NULL;
1545}
1546
Denys Vlasenko03dad222010-01-12 23:29:57 +01001547static const char* FAST_FUNC get_local_var_value(const char *name)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001548{
Denys Vlasenko29082232010-07-16 13:52:32 +02001549 struct variable **vpp;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001550 unsigned len = strlen(name);
Denys Vlasenko29082232010-07-16 13:52:32 +02001551
1552 if (G.expanded_assignments) {
1553 char **cpp = G.expanded_assignments;
Denys Vlasenko29082232010-07-16 13:52:32 +02001554 while (*cpp) {
1555 char *cp = *cpp;
1556 if (strncmp(cp, name, len) == 0 && cp[len] == '=')
1557 return cp + len + 1;
1558 cpp++;
1559 }
1560 }
1561
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001562 vpp = get_ptr_to_local_var(name, len);
Denys Vlasenko29082232010-07-16 13:52:32 +02001563 if (vpp)
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001564 return (*vpp)->varstr + len + 1;
Denys Vlasenko29082232010-07-16 13:52:32 +02001565
Denys Vlasenkodea47882009-10-09 15:40:49 +02001566 if (strcmp(name, "PPID") == 0)
1567 return utoa(G.root_ppid);
1568 // bash compat: UID? EUID?
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001569#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001570 if (strcmp(name, "RANDOM") == 0)
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001571 return utoa(next_random(&G.random_gen));
1572#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001573 return NULL;
1574}
1575
1576/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001577 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001578 * flg_export:
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001579 * 0: do not change export flag
1580 * (if creating new variable, flag will be 0)
1581 * 1: set export flag and putenv the variable
1582 * -1: clear export flag and unsetenv the variable
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001583 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001584 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02001585#if !BB_MMU && ENABLE_HUSH_LOCAL
1586/* all params are used */
1587#elif BB_MMU && ENABLE_HUSH_LOCAL
1588#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1589 set_local_var(str, flg_export, local_lvl)
1590#elif BB_MMU && !ENABLE_HUSH_LOCAL
1591#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001592 set_local_var(str, flg_export)
Denys Vlasenko295fef82009-06-03 12:47:26 +02001593#elif !BB_MMU && !ENABLE_HUSH_LOCAL
1594#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1595 set_local_var(str, flg_export, flg_read_only)
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001596#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02001597static int set_local_var(char *str, int flg_export, int local_lvl, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001598{
Denys Vlasenko295fef82009-06-03 12:47:26 +02001599 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001600 struct variable *cur;
Denis Vlasenko950bd722009-04-21 11:23:56 +00001601 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001602 int name_len;
1603
Denis Vlasenko950bd722009-04-21 11:23:56 +00001604 eq_sign = strchr(str, '=');
1605 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001606 free(str);
1607 return -1;
1608 }
1609
Denis Vlasenko950bd722009-04-21 11:23:56 +00001610 name_len = eq_sign - str + 1; /* including '=' */
Denys Vlasenko295fef82009-06-03 12:47:26 +02001611 var_pp = &G.top_var;
1612 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001613 if (strncmp(cur->varstr, str, name_len) != 0) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02001614 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001615 continue;
1616 }
1617 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001618 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001619#if !BB_MMU
1620 if (!flg_read_only)
1621#endif
1622 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001623 free(str);
1624 return -1;
1625 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001626 if (flg_export == -1) { // "&& cur->flg_export" ?
Denis Vlasenko950bd722009-04-21 11:23:56 +00001627 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1628 *eq_sign = '\0';
1629 unsetenv(str);
1630 *eq_sign = '=';
1631 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001632#if ENABLE_HUSH_LOCAL
1633 if (cur->func_nest_level < local_lvl) {
1634 /* New variable is declared as local,
1635 * and existing one is global, or local
1636 * from enclosing function.
1637 * Remove and save old one: */
1638 *var_pp = cur->next;
1639 cur->next = *G.shadowed_vars_pp;
1640 *G.shadowed_vars_pp = cur;
1641 /* bash 3.2.33(1) and exported vars:
1642 * # export z=z
1643 * # f() { local z=a; env | grep ^z; }
1644 * # f
1645 * z=a
1646 * # env | grep ^z
1647 * z=z
1648 */
1649 if (cur->flg_export)
1650 flg_export = 1;
1651 break;
1652 }
1653#endif
Denis Vlasenko950bd722009-04-21 11:23:56 +00001654 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001655 free_and_exp:
1656 free(str);
1657 goto exp;
1658 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001659 if (cur->max_len != 0) {
1660 if (cur->max_len >= strlen(str)) {
1661 /* This one is from startup env, reuse space */
1662 strcpy(cur->varstr, str);
1663 goto free_and_exp;
1664 }
1665 } else {
1666 /* max_len == 0 signifies "malloced" var, which we can
1667 * (and has to) free */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001668 free(cur->varstr);
Denys Vlasenko295fef82009-06-03 12:47:26 +02001669 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001670 cur->max_len = 0;
1671 goto set_str_and_exp;
1672 }
1673
Denys Vlasenko295fef82009-06-03 12:47:26 +02001674 /* Not found - create new variable struct */
1675 cur = xzalloc(sizeof(*cur));
1676#if ENABLE_HUSH_LOCAL
1677 cur->func_nest_level = local_lvl;
1678#endif
1679 cur->next = *var_pp;
1680 *var_pp = cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001681
1682 set_str_and_exp:
1683 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001684#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001685 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001686#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001687 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001688 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001689 cur->flg_export = 1;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001690 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1691 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001692 if (cur->flg_export) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001693 if (flg_export == -1) {
1694 cur->flg_export = 0;
1695 /* unsetenv was already done */
1696 } else {
1697 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1698 return putenv(cur->varstr);
1699 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001700 }
1701 return 0;
1702}
1703
Denys Vlasenko6db47842009-09-05 20:15:17 +02001704/* Used at startup and after each cd */
1705static void set_pwd_var(int exp)
1706{
1707 set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)),
1708 /*exp:*/ exp, /*lvl:*/ 0, /*ro:*/ 0);
1709}
1710
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001711static int unset_local_var_len(const char *name, int name_len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001712{
1713 struct variable *cur;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001714 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001715
1716 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001717 return EXIT_SUCCESS;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001718 var_pp = &G.top_var;
1719 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001720 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1721 if (cur->flg_read_only) {
1722 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001723 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001724 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001725 *var_pp = cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001726 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1727 bb_unsetenv(cur->varstr);
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001728 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1729 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001730 if (!cur->max_len)
1731 free(cur->varstr);
1732 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001733 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001734 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001735 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001736 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001737 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001738}
1739
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001740static int unset_local_var(const char *name)
1741{
1742 return unset_local_var_len(name, strlen(name));
1743}
1744
1745static void unset_vars(char **strings)
1746{
1747 char **v;
1748
1749 if (!strings)
1750 return;
1751 v = strings;
1752 while (*v) {
1753 const char *eq = strchrnul(*v, '=');
1754 unset_local_var_len(*v, (int)(eq - *v));
1755 v++;
1756 }
1757 free(strings);
1758}
1759
Denys Vlasenko03dad222010-01-12 23:29:57 +01001760static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val)
Mike Frysinger98c52642009-04-02 10:02:37 +00001761{
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001762 char *var = xasprintf("%s=%s", name, val);
Denys Vlasenko03dad222010-01-12 23:29:57 +01001763 set_local_var(var, /*flags:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001764}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001765
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001766
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001767/*
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001768 * Helpers for "var1=val1 var2=val2 cmd" feature
1769 */
1770static void add_vars(struct variable *var)
1771{
1772 struct variable *next;
1773
1774 while (var) {
1775 next = var->next;
1776 var->next = G.top_var;
1777 G.top_var = var;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001778 if (var->flg_export) {
1779 debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001780 putenv(var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001781 } else {
Denys Vlasenko295fef82009-06-03 12:47:26 +02001782 debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001783 }
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001784 var = next;
1785 }
1786}
1787
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001788static struct variable *set_vars_and_save_old(char **strings)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001789{
1790 char **s;
1791 struct variable *old = NULL;
1792
1793 if (!strings)
1794 return old;
1795 s = strings;
1796 while (*s) {
1797 struct variable *var_p;
1798 struct variable **var_pp;
1799 char *eq;
1800
1801 eq = strchr(*s, '=');
1802 if (eq) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001803 var_pp = get_ptr_to_local_var(*s, eq - *s);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001804 if (var_pp) {
1805 /* Remove variable from global linked list */
1806 var_p = *var_pp;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001807 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001808 *var_pp = var_p->next;
1809 /* Add it to returned list */
1810 var_p->next = old;
1811 old = var_p;
1812 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001813 set_local_var(*s, /*exp:*/ 1, /*lvl:*/ 0, /*ro:*/ 0);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001814 }
1815 s++;
1816 }
1817 return old;
1818}
1819
1820
1821/*
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001822 * in_str support
1823 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001824static int FAST_FUNC static_get(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001825{
Denys Vlasenko8391c482010-05-22 17:50:43 +02001826 int ch = *i->p;
1827 if (ch != '\0') {
1828 i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001829 return ch;
Denys Vlasenko8391c482010-05-22 17:50:43 +02001830 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001831 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001832}
1833
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001834static int FAST_FUNC static_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001835{
1836 return *i->p;
1837}
1838
1839#if ENABLE_HUSH_INTERACTIVE
1840
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001841static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001842{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001843 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001844 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00001845 if (G.PS1 == NULL)
1846 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001847 G.PS2 = get_local_var_value("PS2");
Denys Vlasenko690ad242009-04-30 21:24:24 +02001848 } else {
Mike Frysingerec2c6552009-03-28 12:24:44 +00001849 G.PS1 = NULL;
Denys Vlasenko690ad242009-04-30 21:24:24 +02001850 }
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001851 if (G.PS2 == NULL)
1852 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001853}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001854
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02001855static const char *setup_prompt_string(int promptmode)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001856{
1857 const char *prompt_str;
1858 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001859 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1860 /* Set up the prompt */
1861 if (promptmode == 0) { /* PS1 */
1862 free((char*)G.PS1);
Denys Vlasenko6db47842009-09-05 20:15:17 +02001863 /* bash uses $PWD value, even if it is set by user.
1864 * It uses current dir only if PWD is unset.
1865 * We always use current dir. */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001866 G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#');
Mike Frysingerec2c6552009-03-28 12:24:44 +00001867 prompt_str = G.PS1;
1868 } else
1869 prompt_str = G.PS2;
1870 } else
1871 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001872 debug_printf("result '%s'\n", prompt_str);
1873 return prompt_str;
1874}
1875
1876static void get_user_input(struct in_str *i)
1877{
1878 int r;
1879 const char *prompt_str;
1880
1881 prompt_str = setup_prompt_string(i->promptmode);
Denys Vlasenko8391c482010-05-22 17:50:43 +02001882# if ENABLE_FEATURE_EDITING
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001883 /* Enable command line editing only while a command line
1884 * is actually being read */
1885 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001886 G.flag_SIGINT = 0;
1887 /* buglet: SIGINT will not make new prompt to appear _at once_,
1888 * only after <Enter>. (^C will work) */
Denys Vlasenkoaaa22d22009-10-19 16:34:39 +02001889 r = read_line_input(prompt_str, G.user_input_buf, CONFIG_FEATURE_EDITING_MAX_LEN-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001890 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001891 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001892 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001893 i->eof_flag = (r < 0);
1894 if (i->eof_flag) { /* EOF/error detected */
1895 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1896 G.user_input_buf[1] = '\0';
1897 }
Denys Vlasenko8391c482010-05-22 17:50:43 +02001898# else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001899 do {
1900 G.flag_SIGINT = 0;
1901 fputs(prompt_str, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001902 fflush_all();
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001903 G.user_input_buf[0] = r = fgetc(i->file);
1904 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001905//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001906 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001907 i->eof_flag = (r == EOF);
Denys Vlasenko8391c482010-05-22 17:50:43 +02001908# endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001909 i->p = G.user_input_buf;
1910}
1911
1912#endif /* INTERACTIVE */
1913
1914/* This is the magic location that prints prompts
1915 * and gets data back from the user */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001916static int FAST_FUNC file_get(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001917{
1918 int ch;
1919
1920 /* If there is data waiting, eat it up */
1921 if (i->p && *i->p) {
1922#if ENABLE_HUSH_INTERACTIVE
1923 take_cached:
1924#endif
1925 ch = *i->p++;
1926 if (i->eof_flag && !*i->p)
1927 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001928 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001929 } else {
1930 /* need to double check i->file because we might be doing something
1931 * more complicated by now, like sourcing or substituting. */
1932#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001933 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001934 do {
1935 get_user_input(i);
1936 } while (!*i->p); /* need non-empty line */
1937 i->promptmode = 1; /* PS2 */
1938 i->promptme = 0;
1939 goto take_cached;
1940 }
1941#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001942 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001943 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001944 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001945#if ENABLE_HUSH_INTERACTIVE
1946 if (ch == '\n')
1947 i->promptme = 1;
1948#endif
1949 return ch;
1950}
1951
Denis Vlasenko913a2012009-04-05 22:17:04 +00001952/* All callers guarantee this routine will never
1953 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001954 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001955static int FAST_FUNC file_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001956{
1957 int ch;
1958 if (i->p && *i->p) {
1959 if (i->eof_flag && !i->p[1])
1960 return EOF;
1961 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001962 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001963 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001964 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001965 i->eof_flag = (ch == EOF);
1966 i->peek_buf[0] = ch;
1967 i->peek_buf[1] = '\0';
1968 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001969 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001970 return ch;
1971}
1972
1973static void setup_file_in_str(struct in_str *i, FILE *f)
1974{
1975 i->peek = file_peek;
1976 i->get = file_get;
1977#if ENABLE_HUSH_INTERACTIVE
1978 i->promptme = 1;
1979 i->promptmode = 0; /* PS1 */
1980#endif
1981 i->file = f;
1982 i->p = NULL;
1983}
1984
1985static void setup_string_in_str(struct in_str *i, const char *s)
1986{
1987 i->peek = static_peek;
1988 i->get = static_get;
1989#if ENABLE_HUSH_INTERACTIVE
1990 i->promptme = 1;
1991 i->promptmode = 0; /* PS1 */
1992#endif
1993 i->p = s;
1994 i->eof_flag = 0;
1995}
1996
1997
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001998/*
1999 * o_string support
2000 */
2001#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00002002
Denis Vlasenko0b677d82009-04-10 13:49:10 +00002003static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002004{
2005 o->length = 0;
Denys Vlasenko38292b62010-09-05 14:49:40 +02002006 o->has_quoted_part = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002007 if (o->data)
2008 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002009}
2010
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002011static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00002012{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00002013 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002014 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00002015}
2016
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002017static ALWAYS_INLINE void o_free_unsafe(o_string *o)
2018{
2019 free(o->data);
2020}
2021
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002022static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002023{
2024 if (o->length + len > o->maxlen) {
2025 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
2026 o->data = xrealloc(o->data, 1 + o->maxlen);
2027 }
2028}
2029
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002030static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002031{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002032 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
2033 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002034 o->data[o->length] = ch;
2035 o->length++;
2036 o->data[o->length] = '\0';
2037}
2038
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002039static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002040{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002041 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002042 memcpy(&o->data[o->length], str, len);
2043 o->length += len;
2044 o->data[o->length] = '\0';
2045}
2046
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002047static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00002048{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002049 o_addblock(o, str, strlen(str));
2050}
Denys Vlasenko2e48d532010-05-22 17:30:39 +02002051
Denys Vlasenko1e811b12010-05-22 03:12:29 +02002052#if !BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002053static void nommu_addchr(o_string *o, int ch)
2054{
2055 if (o)
2056 o_addchr(o, ch);
2057}
2058#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002059# define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002060#endif
2061
2062static void o_addstr_with_NUL(o_string *o, const char *str)
2063{
2064 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00002065}
2066
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002067/*
Denys Vlasenko238081f2010-10-03 14:26:26 +02002068 * HUSH_BRACE_EXPANSION code needs corresponding quoting on variable expansion side.
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002069 * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v.
2070 * Apparently, on unquoted $v bash still does globbing
2071 * ("v='*.txt'; echo $v" prints all .txt files),
2072 * but NOT brace expansion! Thus, there should be TWO independent
2073 * quoting mechanisms on $v expansion side: one protects
2074 * $v from brace expansion, and other additionally protects "$v" against globbing.
2075 * We have only second one.
2076 */
2077
Denys Vlasenko9e800222010-10-03 14:28:04 +02002078#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002079# define MAYBE_BRACES "{}"
2080#else
2081# define MAYBE_BRACES ""
2082#endif
2083
Eric Andersen25f27032001-04-26 23:22:31 +00002084/* My analysis of quoting semantics tells me that state information
2085 * is associated with a destination, not a source.
2086 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002087static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00002088{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002089 int sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002090 char *found = strchr("*?[\\" MAYBE_BRACES, ch);
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002091 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002092 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002093 o_grow_by(o, sz);
2094 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002095 o->data[o->length] = '\\';
2096 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00002097 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002098 o->data[o->length] = ch;
2099 o->length++;
2100 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002101}
2102
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002103static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002104{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002105 int sz = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002106 if ((o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)
2107 && strchr("*?[\\" MAYBE_BRACES, ch)
2108 ) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002109 sz++;
2110 o->data[o->length] = '\\';
2111 o->length++;
2112 }
2113 o_grow_by(o, sz);
2114 o->data[o->length] = ch;
2115 o->length++;
2116 o->data[o->length] = '\0';
2117}
2118
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002119static void o_addqblock(o_string *o, const char *str, int len)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002120{
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002121 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002122 char ch;
2123 int sz;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002124 int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002125 if (ordinary_cnt > len) /* paranoia */
2126 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002127 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002128 if (ordinary_cnt == len)
2129 return;
2130 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002131 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002132
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002133 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002134 sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002135 if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002136 sz++;
2137 o->data[o->length] = '\\';
2138 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002139 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002140 o_grow_by(o, sz);
2141 o->data[o->length] = ch;
2142 o->length++;
2143 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002144 }
2145}
2146
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002147static void o_addQblock(o_string *o, const char *str, int len)
2148{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002149 if (!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002150 o_addblock(o, str, len);
2151 return;
2152 }
2153 o_addqblock(o, str, len);
2154}
2155
Denys Vlasenko38292b62010-09-05 14:49:40 +02002156static void o_addQstr(o_string *o, const char *str)
2157{
2158 o_addQblock(o, str, strlen(str));
2159}
2160
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002161/* A special kind of o_string for $VAR and `cmd` expansion.
2162 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002163 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002164 * list[i] contains an INDEX (int!) into this string data.
2165 * It means that if list[] needs to grow, data needs to be moved higher up
2166 * but list[i]'s need not be modified.
2167 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002168 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002169 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
2170 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002171#if DEBUG_EXPAND || DEBUG_GLOB
2172static void debug_print_list(const char *prefix, o_string *o, int n)
2173{
2174 char **list = (char**)o->data;
2175 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2176 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002177
2178 indent();
Denys Vlasenkoe298ce62010-09-04 19:52:44 +02002179 fprintf(stderr, "%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 +02002180 prefix, list, n, string_start, o->length, o->maxlen,
2181 !!(o->o_expflags & EXP_FLAG_GLOB),
2182 o->has_quoted_part,
2183 !!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002184 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002185 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002186 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
2187 o->data + (int)list[i] + string_start,
2188 o->data + (int)list[i] + string_start);
2189 i++;
2190 }
2191 if (n) {
2192 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002193 indent();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002194 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002195 }
2196}
2197#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002198# define debug_print_list(prefix, o, n) ((void)0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002199#endif
2200
2201/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
2202 * in list[n] so that it points past last stored byte so far.
2203 * It returns n+1. */
2204static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002205{
2206 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00002207 int string_start;
2208 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002209
2210 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00002211 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2212 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002213 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002214 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002215 /* list[n] points to string_start, make space for 16 more pointers */
2216 o->maxlen += 0x10 * sizeof(list[0]);
2217 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00002218 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002219 memmove(list + n + 0x10, list + n, string_len);
2220 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002221 } else {
2222 debug_printf_list("list[%d]=%d string_start=%d\n",
2223 n, string_len, string_start);
2224 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002225 } else {
2226 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00002227 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
2228 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002229 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
2230 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002231 o->has_empty_slot = 0;
2232 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002233 list[n] = (char*)(uintptr_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002234 return n + 1;
2235}
2236
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002237/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002238static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002239{
2240 char **list = (char**)o->data;
2241 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2242
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002243 return ((int)(uintptr_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002244}
2245
Denys Vlasenko9e800222010-10-03 14:28:04 +02002246#if ENABLE_HUSH_BRACE_EXPANSION
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002247/* There in a GNU extension, GLOB_BRACE, but it is not usable:
2248 * first, it processes even {a} (no commas), second,
2249 * I didn't manage to make it return strings when they don't match
Denys Vlasenko160746b2009-11-16 05:51:18 +01002250 * existing files. Need to re-implement it.
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002251 */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002252
2253/* Helper */
2254static int glob_needed(const char *s)
2255{
2256 while (*s) {
2257 if (*s == '\\') {
2258 if (!s[1])
2259 return 0;
2260 s += 2;
2261 continue;
2262 }
2263 if (*s == '*' || *s == '[' || *s == '?' || *s == '{')
2264 return 1;
2265 s++;
2266 }
2267 return 0;
2268}
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002269/* Return pointer to next closing brace or to comma */
2270static const char *next_brace_sub(const char *cp)
2271{
2272 unsigned depth = 0;
2273 cp++;
2274 while (*cp != '\0') {
2275 if (*cp == '\\') {
2276 if (*++cp == '\0')
2277 break;
2278 cp++;
2279 continue;
Denys Vlasenko3581c622010-01-25 13:39:24 +01002280 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002281 if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002282 break;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002283 if (*cp++ == '{')
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002284 depth++;
2285 }
2286
2287 return *cp != '\0' ? cp : NULL;
2288}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002289/* Recursive brace globber. Note: may garble pattern[]. */
2290static int glob_brace(char *pattern, o_string *o, int n)
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002291{
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002292 char *new_pattern_buf;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002293 const char *begin;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002294 const char *next;
2295 const char *rest;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002296 const char *p;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002297 size_t rest_len;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002298
2299 debug_printf_glob("glob_brace('%s')\n", pattern);
2300
2301 begin = pattern;
2302 while (1) {
2303 if (*begin == '\0')
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002304 goto simple_glob;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002305 if (*begin == '{') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002306 /* Find the first sub-pattern and at the same time
2307 * find the rest after the closing brace */
2308 next = next_brace_sub(begin);
2309 if (next == NULL) {
2310 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002311 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002312 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002313 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002314 /* "{abc}" with no commas - illegal
2315 * brace expr, disregard and skip it */
2316 begin = next + 1;
2317 continue;
2318 }
2319 break;
2320 }
2321 if (*begin == '\\' && begin[1] != '\0')
2322 begin++;
2323 begin++;
2324 }
2325 debug_printf_glob("begin:%s\n", begin);
2326 debug_printf_glob("next:%s\n", next);
2327
2328 /* Now find the end of the whole brace expression */
2329 rest = next;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002330 while (*rest != '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002331 rest = next_brace_sub(rest);
2332 if (rest == NULL) {
2333 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002334 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002335 }
2336 debug_printf_glob("rest:%s\n", rest);
2337 }
2338 rest_len = strlen(++rest) + 1;
2339
2340 /* We are sure the brace expression is well-formed */
2341
2342 /* Allocate working buffer large enough for our work */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002343 new_pattern_buf = xmalloc(strlen(pattern));
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002344
2345 /* We have a brace expression. BEGIN points to the opening {,
2346 * NEXT points past the terminator of the first element, and REST
2347 * points past the final }. We will accumulate result names from
2348 * recursive runs for each brace alternative in the buffer using
2349 * GLOB_APPEND. */
2350
2351 p = begin + 1;
2352 while (1) {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002353 /* Construct the new glob expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002354 memcpy(
2355 mempcpy(
2356 mempcpy(new_pattern_buf,
2357 /* We know the prefix for all sub-patterns */
2358 pattern, begin - pattern),
2359 p, next - p),
2360 rest, rest_len);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002361
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002362 /* Note: glob_brace() may garble new_pattern_buf[].
2363 * That's why we re-copy prefix every time (1st memcpy above).
2364 */
2365 n = glob_brace(new_pattern_buf, o, n);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002366 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002367 /* We saw the last entry */
2368 break;
2369 }
2370 p = next + 1;
2371 next = next_brace_sub(next);
2372 }
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002373 free(new_pattern_buf);
2374 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002375
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002376 simple_glob:
2377 {
2378 int gr;
2379 glob_t globdata;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002380
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002381 memset(&globdata, 0, sizeof(globdata));
2382 gr = glob(pattern, 0, NULL, &globdata);
2383 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
2384 if (gr != 0) {
2385 if (gr == GLOB_NOMATCH) {
2386 globfree(&globdata);
2387 /* NB: garbles parameter */
2388 unbackslash(pattern);
2389 o_addstr_with_NUL(o, pattern);
2390 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2391 return o_save_ptr_helper(o, n);
2392 }
2393 if (gr == GLOB_NOSPACE)
2394 bb_error_msg_and_die(bb_msg_memory_exhausted);
2395 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2396 * but we didn't specify it. Paranoia again. */
2397 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
2398 }
2399 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2400 char **argv = globdata.gl_pathv;
2401 while (1) {
2402 o_addstr_with_NUL(o, *argv);
2403 n = o_save_ptr_helper(o, n);
2404 argv++;
2405 if (!*argv)
2406 break;
2407 }
2408 }
2409 globfree(&globdata);
2410 }
2411 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002412}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002413/* Performs globbing on last list[],
2414 * saving each result as a new list[].
2415 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002416static int perform_glob(o_string *o, int n)
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002417{
2418 char *pattern, *copy;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002419
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002420 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002421 if (!o->data)
2422 return o_save_ptr_helper(o, n);
2423 pattern = o->data + o_get_last_ptr(o, n);
2424 debug_printf_glob("glob pattern '%s'\n", pattern);
2425 if (!glob_needed(pattern)) {
2426 /* unbackslash last string in o in place, fix length */
2427 o->length = unbackslash(pattern) - o->data;
2428 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2429 return o_save_ptr_helper(o, n);
2430 }
2431
2432 copy = xstrdup(pattern);
2433 /* "forget" pattern in o */
2434 o->length = pattern - o->data;
2435 n = glob_brace(copy, o, n);
2436 free(copy);
2437 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002438 debug_print_list("perform_glob returning", o, n);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002439 return n;
2440}
2441
Denys Vlasenko238081f2010-10-03 14:26:26 +02002442#else /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002443
2444/* Helper */
2445static int glob_needed(const char *s)
2446{
2447 while (*s) {
2448 if (*s == '\\') {
2449 if (!s[1])
2450 return 0;
2451 s += 2;
2452 continue;
2453 }
2454 if (*s == '*' || *s == '[' || *s == '?')
2455 return 1;
2456 s++;
2457 }
2458 return 0;
2459}
2460/* Performs globbing on last list[],
2461 * saving each result as a new list[].
2462 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002463static int perform_glob(o_string *o, int n)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002464{
2465 glob_t globdata;
2466 int gr;
2467 char *pattern;
2468
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002469 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002470 if (!o->data)
2471 return o_save_ptr_helper(o, n);
2472 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002473 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002474 if (!glob_needed(pattern)) {
2475 literal:
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002476 /* unbackslash last string in o in place, fix length */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002477 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002478 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002479 return o_save_ptr_helper(o, n);
2480 }
2481
2482 memset(&globdata, 0, sizeof(globdata));
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002483 /* Can't use GLOB_NOCHECK: it does not unescape the string.
2484 * If we glob "*.\*" and don't find anything, we need
2485 * to fall back to using literal "*.*", but GLOB_NOCHECK
2486 * will return "*.\*"!
2487 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002488 gr = glob(pattern, 0, NULL, &globdata);
2489 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002490 if (gr != 0) {
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002491 if (gr == GLOB_NOMATCH) {
2492 globfree(&globdata);
2493 goto literal;
2494 }
2495 if (gr == GLOB_NOSPACE)
2496 bb_error_msg_and_die(bb_msg_memory_exhausted);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002497 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2498 * but we didn't specify it. Paranoia again. */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002499 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002500 }
2501 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2502 char **argv = globdata.gl_pathv;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002503 /* "forget" pattern in o */
2504 o->length = pattern - o->data;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002505 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002506 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002507 n = o_save_ptr_helper(o, n);
2508 argv++;
2509 if (!*argv)
2510 break;
2511 }
2512 }
2513 globfree(&globdata);
2514 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002515 debug_print_list("perform_glob returning", o, n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002516 return n;
2517}
2518
Denys Vlasenko238081f2010-10-03 14:26:26 +02002519#endif /* !HUSH_BRACE_EXPANSION */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002520
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002521/* If o->o_expflags & EXP_FLAG_GLOB, glob the string so far remembered.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002522 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002523static int o_save_ptr(o_string *o, int n)
2524{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002525 if (o->o_expflags & EXP_FLAG_GLOB) {
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00002526 /* If o->has_empty_slot, list[n] was already globbed
2527 * (if it was requested back then when it was filled)
2528 * so don't do that again! */
2529 if (!o->has_empty_slot)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002530 return perform_glob(o, n); /* o_save_ptr_helper is inside */
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00002531 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002532 return o_save_ptr_helper(o, n);
2533}
2534
2535/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002536static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002537{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002538 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002539 int string_start;
2540
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002541 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
2542 if (DEBUG_EXPAND)
2543 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002544 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002545 list = (char**)o->data;
2546 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2547 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002548 while (n) {
2549 n--;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002550 list[n] = o->data + (int)(uintptr_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002551 }
2552 return list;
2553}
2554
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002555static void free_pipe_list(struct pipe *pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002556
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002557/* Returns pi->next - next pipe in the list */
2558static struct pipe *free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002559{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002560 struct pipe *next;
2561 int i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002562
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002563 debug_printf_clean("free_pipe (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002564 for (i = 0; i < pi->num_cmds; i++) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002565 struct command *command;
2566 struct redir_struct *r, *rnext;
2567
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002568 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002569 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002570 if (command->argv) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002571 if (DEBUG_CLEAN) {
2572 int a;
2573 char **p;
2574 for (a = 0, p = command->argv; *p; a++, p++) {
2575 debug_printf_clean(" argv[%d] = %s\n", a, *p);
2576 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002577 }
2578 free_strings(command->argv);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002579 //command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002580 }
2581 /* not "else if": on syntax error, we may have both! */
2582 if (command->group) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02002583 debug_printf_clean(" begin group (cmd_type:%d)\n",
2584 command->cmd_type);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002585 free_pipe_list(command->group);
2586 debug_printf_clean(" end group\n");
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002587 //command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002588 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00002589 /* else is crucial here.
2590 * If group != NULL, child_func is meaningless */
2591#if ENABLE_HUSH_FUNCTIONS
2592 else if (command->child_func) {
2593 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
2594 command->child_func->parent_cmd = NULL;
2595 }
2596#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002597#if !BB_MMU
2598 free(command->group_as_string);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002599 //command->group_as_string = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002600#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002601 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002602 debug_printf_clean(" redirect %d%s",
2603 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002604 /* guard against the case >$FOO, where foo is unset or blank */
2605 if (r->rd_filename) {
2606 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
2607 free(r->rd_filename);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002608 //r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002609 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002610 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002611 rnext = r->next;
2612 free(r);
2613 }
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002614 //command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002615 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002616 free(pi->cmds); /* children are an array, they get freed all at once */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002617 //pi->cmds = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002618#if ENABLE_HUSH_JOB
2619 free(pi->cmdtext);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002620 //pi->cmdtext = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002621#endif
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002622
2623 next = pi->next;
2624 free(pi);
2625 return next;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002626}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002627
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002628static void free_pipe_list(struct pipe *pi)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002629{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002630 while (pi) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002631#if HAS_KEYWORDS
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002632 debug_printf_clean("pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002633#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002634 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002635 pi = free_pipe(pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002636 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002637}
2638
2639
Denys Vlasenkob36abf22010-09-05 14:50:59 +02002640/*** Parsing routines ***/
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002641
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01002642#ifndef debug_print_tree
2643static void debug_print_tree(struct pipe *pi, int lvl)
2644{
2645 static const char *const PIPE[] = {
2646 [PIPE_SEQ] = "SEQ",
2647 [PIPE_AND] = "AND",
2648 [PIPE_OR ] = "OR" ,
2649 [PIPE_BG ] = "BG" ,
2650 };
2651 static const char *RES[] = {
2652 [RES_NONE ] = "NONE" ,
2653# if ENABLE_HUSH_IF
2654 [RES_IF ] = "IF" ,
2655 [RES_THEN ] = "THEN" ,
2656 [RES_ELIF ] = "ELIF" ,
2657 [RES_ELSE ] = "ELSE" ,
2658 [RES_FI ] = "FI" ,
2659# endif
2660# if ENABLE_HUSH_LOOPS
2661 [RES_FOR ] = "FOR" ,
2662 [RES_WHILE] = "WHILE",
2663 [RES_UNTIL] = "UNTIL",
2664 [RES_DO ] = "DO" ,
2665 [RES_DONE ] = "DONE" ,
2666# endif
2667# if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
2668 [RES_IN ] = "IN" ,
2669# endif
2670# if ENABLE_HUSH_CASE
2671 [RES_CASE ] = "CASE" ,
2672 [RES_CASE_IN ] = "CASE_IN" ,
2673 [RES_MATCH] = "MATCH",
2674 [RES_CASE_BODY] = "CASE_BODY",
2675 [RES_ESAC ] = "ESAC" ,
2676# endif
2677 [RES_XXXX ] = "XXXX" ,
2678 [RES_SNTX ] = "SNTX" ,
2679 };
2680 static const char *const CMDTYPE[] = {
2681 "{}",
2682 "()",
2683 "[noglob]",
2684# if ENABLE_HUSH_FUNCTIONS
2685 "func()",
2686# endif
2687 };
2688
2689 int pin, prn;
2690
2691 pin = 0;
2692 while (pi) {
2693 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
2694 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
2695 prn = 0;
2696 while (prn < pi->num_cmds) {
2697 struct command *command = &pi->cmds[prn];
2698 char **argv = command->argv;
2699
2700 fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
2701 lvl*2, "", prn,
2702 command->assignment_cnt);
2703 if (command->group) {
2704 fprintf(stderr, " group %s: (argv=%p)%s%s\n",
2705 CMDTYPE[command->cmd_type],
2706 argv
2707# if !BB_MMU
2708 , " group_as_string:", command->group_as_string
2709# else
2710 , "", ""
2711# endif
2712 );
2713 debug_print_tree(command->group, lvl+1);
2714 prn++;
2715 continue;
2716 }
2717 if (argv) while (*argv) {
2718 fprintf(stderr, " '%s'", *argv);
2719 argv++;
2720 }
2721 fprintf(stderr, "\n");
2722 prn++;
2723 }
2724 pi = pi->next;
2725 pin++;
2726 }
2727}
2728#endif /* debug_print_tree */
2729
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00002730static struct pipe *new_pipe(void)
2731{
Eric Andersen25f27032001-04-26 23:22:31 +00002732 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002733 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002734 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002735 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00002736 return pi;
2737}
2738
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002739/* Command (member of a pipe) is complete, or we start a new pipe
2740 * if ctx->command is NULL.
2741 * No errors possible here.
2742 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002743static int done_command(struct parse_context *ctx)
2744{
2745 /* The command is really already in the pipe structure, so
2746 * advance the pipe counter and make a new, null command. */
2747 struct pipe *pi = ctx->pipe;
2748 struct command *command = ctx->command;
2749
2750 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002751 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002752 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002753 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002754 }
2755 pi->num_cmds++;
2756 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002757 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002758 } else {
2759 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
2760 }
2761
2762 /* Only real trickiness here is that the uncommitted
2763 * command structure is not counted in pi->num_cmds. */
2764 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002765 ctx->command = command = &pi->cmds[pi->num_cmds];
2766 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002767 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002768 return pi->num_cmds; /* used only for 0/nonzero check */
2769}
2770
2771static void done_pipe(struct parse_context *ctx, pipe_style type)
2772{
2773 int not_null;
2774
2775 debug_printf_parse("done_pipe entered, followup %d\n", type);
2776 /* Close previous command */
2777 not_null = done_command(ctx);
2778 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002779#if HAS_KEYWORDS
2780 ctx->pipe->pi_inverted = ctx->ctx_inverted;
2781 ctx->ctx_inverted = 0;
2782 ctx->pipe->res_word = ctx->ctx_res_w;
2783#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002784
2785 /* Without this check, even just <enter> on command line generates
2786 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002787 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002788 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00002789#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002790 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00002791#endif
2792#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002793 || ctx->ctx_res_w == RES_DONE
2794 || ctx->ctx_res_w == RES_FOR
2795 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00002796#endif
2797#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002798 || ctx->ctx_res_w == RES_ESAC
2799#endif
2800 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002801 struct pipe *new_p;
2802 debug_printf_parse("done_pipe: adding new pipe: "
2803 "not_null:%d ctx->ctx_res_w:%d\n",
2804 not_null, ctx->ctx_res_w);
2805 new_p = new_pipe();
2806 ctx->pipe->next = new_p;
2807 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002808 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002809 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002810 * This is used to control execution.
2811 * RES_FOR and RES_IN are NOT sticky (needed to support
2812 * cases where variable or value happens to match a keyword):
2813 */
2814#if ENABLE_HUSH_LOOPS
2815 if (ctx->ctx_res_w == RES_FOR
2816 || ctx->ctx_res_w == RES_IN)
2817 ctx->ctx_res_w = RES_NONE;
2818#endif
2819#if ENABLE_HUSH_CASE
2820 if (ctx->ctx_res_w == RES_MATCH)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02002821 ctx->ctx_res_w = RES_CASE_BODY;
2822 if (ctx->ctx_res_w == RES_CASE)
2823 ctx->ctx_res_w = RES_CASE_IN;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002824#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002825 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002826 /* Create the memory for command, roughly:
2827 * ctx->pipe->cmds = new struct command;
2828 * ctx->command = &ctx->pipe->cmds[0];
2829 */
2830 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002831 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002832 }
2833 debug_printf_parse("done_pipe return\n");
2834}
2835
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002836static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00002837{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002838 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00002839 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002840 /* Create the memory for command, roughly:
2841 * ctx->pipe->cmds = new struct command;
2842 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002843 */
2844 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00002845}
2846
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002847/* If a reserved word is found and processed, parse context is modified
2848 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00002849 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002850#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002851struct reserved_combo {
2852 char literal[6];
2853 unsigned char res;
2854 unsigned char assignment_flag;
2855 int flag;
2856};
2857enum {
2858 FLAG_END = (1 << RES_NONE ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002859# if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002860 FLAG_IF = (1 << RES_IF ),
2861 FLAG_THEN = (1 << RES_THEN ),
2862 FLAG_ELIF = (1 << RES_ELIF ),
2863 FLAG_ELSE = (1 << RES_ELSE ),
2864 FLAG_FI = (1 << RES_FI ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002865# endif
2866# if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002867 FLAG_FOR = (1 << RES_FOR ),
2868 FLAG_WHILE = (1 << RES_WHILE),
2869 FLAG_UNTIL = (1 << RES_UNTIL),
2870 FLAG_DO = (1 << RES_DO ),
2871 FLAG_DONE = (1 << RES_DONE ),
2872 FLAG_IN = (1 << RES_IN ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002873# endif
2874# if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002875 FLAG_MATCH = (1 << RES_MATCH),
2876 FLAG_ESAC = (1 << RES_ESAC ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002877# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002878 FLAG_START = (1 << RES_XXXX ),
2879};
2880
2881static const struct reserved_combo* match_reserved_word(o_string *word)
2882{
Eric Andersen25f27032001-04-26 23:22:31 +00002883 /* Mostly a list of accepted follow-up reserved words.
2884 * FLAG_END means we are done with the sequence, and are ready
2885 * to turn the compound list into a command.
2886 * FLAG_START means the word must start a new compound list.
2887 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002888 static const struct reserved_combo reserved_list[] = {
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002889# if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00002890 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
2891 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
2892 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
2893 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
2894 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
2895 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002896# endif
2897# if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00002898 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
2899 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
2900 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
2901 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
2902 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
2903 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002904# endif
2905# if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00002906 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
2907 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002908# endif
Eric Andersen25f27032001-04-26 23:22:31 +00002909 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002910 const struct reserved_combo *r;
2911
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02002912 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002913 if (strcmp(word->data, r->literal) == 0)
2914 return r;
2915 }
2916 return NULL;
2917}
Denis Vlasenkobb929512009-04-16 10:59:40 +00002918/* Return 0: not a keyword, 1: keyword
2919 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002920static int reserved_word(o_string *word, struct parse_context *ctx)
2921{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002922# if ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002923 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00002924 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002925 };
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002926# endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002927 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002928
Denys Vlasenko38292b62010-09-05 14:49:40 +02002929 if (word->has_quoted_part)
Denis Vlasenkobb929512009-04-16 10:59:40 +00002930 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002931 r = match_reserved_word(word);
2932 if (!r)
2933 return 0;
2934
2935 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002936# if ENABLE_HUSH_CASE
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02002937 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
2938 /* "case word IN ..." - IN part starts first MATCH part */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002939 r = &reserved_match;
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02002940 } else
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002941# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002942 if (r->flag == 0) { /* '!' */
2943 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002944 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00002945 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00002946 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002947 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00002948 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002949 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002950 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002951 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00002952
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002953 old = xmalloc(sizeof(*old));
2954 debug_printf_parse("push stack %p\n", old);
2955 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002956 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002957 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002958 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002959 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002960 ctx->ctx_res_w = RES_SNTX;
2961 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00002962 } else {
2963 /* "{...} fi" is ok. "{...} if" is not
2964 * Example:
2965 * if { echo foo; } then { echo bar; } fi */
2966 if (ctx->command->group)
2967 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002968 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00002969
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002970 ctx->ctx_res_w = r->res;
2971 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00002972 word->o_assignment = r->assignment_flag;
2973
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002974 if (ctx->old_flag & FLAG_END) {
2975 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00002976
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002977 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002978 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002979 old = ctx->stack;
2980 old->command->group = ctx->list_head;
Denys Vlasenko9d617c42009-06-09 18:40:52 +02002981 old->command->cmd_type = CMD_NORMAL;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002982# if !BB_MMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002983 o_addstr(&old->as_string, ctx->as_string.data);
2984 o_free_unsafe(&ctx->as_string);
2985 old->command->group_as_string = xstrdup(old->as_string.data);
2986 debug_printf_parse("pop, remembering as:'%s'\n",
2987 old->command->group_as_string);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002988# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002989 *ctx = *old; /* physical copy */
2990 free(old);
2991 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002992 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002993}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002994#endif /* HAS_KEYWORDS */
Eric Andersen25f27032001-04-26 23:22:31 +00002995
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002996/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002997 * Normal return is 0. Syntax errors return 1.
2998 * Note: on return, word is reset, but not o_free'd!
2999 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003000static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003001{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003002 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003003
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003004 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denys Vlasenko38292b62010-09-05 14:49:40 +02003005 if (word->length == 0 && !word->has_quoted_part) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003006 debug_printf_parse("done_word return 0: true null, ignored\n");
3007 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003008 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003009
Eric Andersen25f27032001-04-26 23:22:31 +00003010 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003011 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3012 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003013 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3014 * "2.7 Redirection
3015 * ...the word that follows the redirection operator
3016 * shall be subjected to tilde expansion, parameter expansion,
3017 * command substitution, arithmetic expansion, and quote
3018 * removal. Pathname expansion shall not be performed
3019 * on the word by a non-interactive shell; an interactive
3020 * shell may perform it, but shall do so only when
3021 * the expansion would result in one word."
3022 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003023 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003024 /* Cater for >\file case:
3025 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
3026 * Same with heredocs:
3027 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
3028 */
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003029 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
3030 unbackslash(ctx->pending_redirect->rd_filename);
3031 /* Is it <<"HEREDOC"? */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003032 if (word->has_quoted_part) {
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003033 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
3034 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003035 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003036 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003037 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003038 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003039 /* If this word wasn't an assignment, next ones definitely
3040 * can't be assignments. Even if they look like ones. */
3041 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3042 && word->o_assignment != WORD_IS_KEYWORD
3043 ) {
3044 word->o_assignment = NOT_ASSIGNMENT;
3045 } else {
3046 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
3047 command->assignment_cnt++;
3048 word->o_assignment = MAYBE_ASSIGNMENT;
3049 }
3050
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003051#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003052# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003053 if (ctx->ctx_dsemicolon
3054 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3055 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003056 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003057 /* ctx->ctx_res_w = RES_MATCH; */
3058 ctx->ctx_dsemicolon = 0;
3059 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003060# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003061 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003062# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003063 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3064 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003065# endif
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003066# if ENABLE_HUSH_CASE
3067 && ctx->ctx_res_w != RES_CASE
3068# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003069 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003070 debug_printf_parse("checking '%s' for reserved-ness\n", word->data);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003071 if (reserved_word(word, ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003072 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003073 debug_printf_parse("done_word return %d\n",
3074 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003075 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003076 }
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02003077# if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003078 if (strcmp(word->data, "[[") == 0) {
3079 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
3080 }
3081 /* fall through */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02003082# endif
Eric Andersen25f27032001-04-26 23:22:31 +00003083 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003084#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00003085 if (command->group) {
3086 /* "{ echo foo; } echo bar" - bad */
3087 syntax_error_at(word->data);
3088 debug_printf_parse("done_word return 1: syntax error, "
3089 "groups and arglists don't mix\n");
3090 return 1;
3091 }
Denys Vlasenko38292b62010-09-05 14:49:40 +02003092 if (word->has_quoted_part
Denis Vlasenko55789c62008-06-18 16:30:42 +00003093 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3094 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003095 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003096 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003097 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003098 char *p = word->data;
3099 while (p[0] == SPECIAL_VAR_SYMBOL
3100 && (p[1] & 0x7f) == '@'
3101 && p[2] == SPECIAL_VAR_SYMBOL
3102 ) {
3103 p += 3;
3104 }
3105 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003106 /* saw no "$@", or not only "$@" but some
3107 * real text is there too */
3108 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003109 * e.g. "", $empty"" etc to not disappear */
3110 o_addchr(word, SPECIAL_VAR_SYMBOL);
3111 o_addchr(word, SPECIAL_VAR_SYMBOL);
3112 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003113 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003114 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003115 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003116 }
Eric Andersen25f27032001-04-26 23:22:31 +00003117
Denis Vlasenko06810332007-05-21 23:30:54 +00003118#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003119 if (ctx->ctx_res_w == RES_FOR) {
Denys Vlasenko38292b62010-09-05 14:49:40 +02003120 if (word->has_quoted_part
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003121 || !is_well_formed_var_name(command->argv[0], '\0')
3122 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003123 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003124 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003125 return 1;
3126 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003127 /* Force FOR to have just one word (variable name) */
3128 /* NB: basically, this makes hush see "for v in ..."
3129 * syntax as if it is "for v; in ...". FOR and IN become
3130 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003131 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003132 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003133#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003134#if ENABLE_HUSH_CASE
3135 /* Force CASE to have just one word */
3136 if (ctx->ctx_res_w == RES_CASE) {
3137 done_pipe(ctx, PIPE_SEQ);
3138 }
3139#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003140
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003141 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00003142
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003143 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003144 return 0;
3145}
3146
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003147
3148/* Peek ahead in the input to find out if we have a "&n" construct,
3149 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003150 * Return:
3151 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
3152 * REDIRFD_SYNTAX_ERR if syntax error,
3153 * REDIRFD_TO_FILE if no & was seen,
3154 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003155 */
3156#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003157#define parse_redir_right_fd(as_string, input) \
3158 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003159#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003160static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003161{
3162 int ch, d, ok;
3163
3164 ch = i_peek(input);
3165 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003166 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003167
3168 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003169 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003170 ch = i_peek(input);
3171 if (ch == '-') {
3172 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003173 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003174 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003175 }
3176 d = 0;
3177 ok = 0;
3178 while (ch != EOF && isdigit(ch)) {
3179 d = d*10 + (ch-'0');
3180 ok = 1;
3181 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003182 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003183 ch = i_peek(input);
3184 }
3185 if (ok) return d;
3186
3187//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
3188
3189 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003190 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003191}
3192
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003193/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003194 */
3195static int parse_redirect(struct parse_context *ctx,
3196 int fd,
3197 redir_type style,
3198 struct in_str *input)
3199{
3200 struct command *command = ctx->command;
3201 struct redir_struct *redir;
3202 struct redir_struct **redirp;
3203 int dup_num;
3204
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003205 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003206 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003207 /* Check for a '>&1' type redirect */
3208 dup_num = parse_redir_right_fd(&ctx->as_string, input);
3209 if (dup_num == REDIRFD_SYNTAX_ERR)
3210 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003211 } else {
3212 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003213 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003214 if (dup_num) { /* <<-... */
3215 ch = i_getch(input);
3216 nommu_addchr(&ctx->as_string, ch);
3217 ch = i_peek(input);
3218 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003219 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003220
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003221 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003222 int ch = i_peek(input);
3223 if (ch == '|') {
3224 /* >|FILE redirect ("clobbering" >).
3225 * Since we do not support "set -o noclobber" yet,
3226 * >| and > are the same for now. Just eat |.
3227 */
3228 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003229 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003230 }
3231 }
3232
3233 /* Create a new redir_struct and append it to the linked list */
3234 redirp = &command->redirects;
3235 while ((redir = *redirp) != NULL) {
3236 redirp = &(redir->next);
3237 }
3238 *redirp = redir = xzalloc(sizeof(*redir));
3239 /* redir->next = NULL; */
3240 /* redir->rd_filename = NULL; */
3241 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003242 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003243
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003244 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
3245 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003246
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003247 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003248 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003249 /* Erik had a check here that the file descriptor in question
3250 * is legit; I postpone that to "run time"
3251 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003252 debug_printf_parse("duplicating redirect '%d>&%d'\n",
3253 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003254 } else {
3255 /* Set ctx->pending_redirect, so we know what to do at the
3256 * end of the next parsed word. */
3257 ctx->pending_redirect = redir;
3258 }
3259 return 0;
3260}
3261
Eric Andersen25f27032001-04-26 23:22:31 +00003262/* If a redirect is immediately preceded by a number, that number is
3263 * supposed to tell which file descriptor to redirect. This routine
3264 * looks for such preceding numbers. In an ideal world this routine
3265 * needs to handle all the following classes of redirects...
3266 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3267 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3268 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3269 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003270 *
3271 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3272 * "2.7 Redirection
3273 * ... If n is quoted, the number shall not be recognized as part of
3274 * the redirection expression. For example:
3275 * echo \2>a
3276 * writes the character 2 into file a"
Denys Vlasenko38292b62010-09-05 14:49:40 +02003277 * We are getting it right by setting ->has_quoted_part on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003278 *
3279 * A -1 return means no valid number was found,
3280 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00003281 */
3282static int redirect_opt_num(o_string *o)
3283{
3284 int num;
3285
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003286 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003287 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003288 num = bb_strtou(o->data, NULL, 10);
3289 if (errno || num < 0)
3290 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003291 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00003292 return num;
3293}
3294
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003295#if BB_MMU
3296#define fetch_till_str(as_string, input, word, skip_tabs) \
3297 fetch_till_str(input, word, skip_tabs)
3298#endif
3299static char *fetch_till_str(o_string *as_string,
3300 struct in_str *input,
3301 const char *word,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003302 int heredoc_flags)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003303{
3304 o_string heredoc = NULL_O_STRING;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003305 unsigned past_EOL;
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003306 int prev = 0; /* not \ */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003307 int ch;
3308
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003309 goto jump_in;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003310 while (1) {
3311 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003312 if (ch != EOF)
3313 nommu_addchr(as_string, ch);
3314 if ((ch == '\n' || ch == EOF)
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003315 && ((heredoc_flags & HEREDOC_QUOTED) || prev != '\\')
3316 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003317 if (strcmp(heredoc.data + past_EOL, word) == 0) {
3318 heredoc.data[past_EOL] = '\0';
3319 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
3320 return heredoc.data;
3321 }
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003322 while (ch == '\n') {
3323 o_addchr(&heredoc, ch);
3324 prev = ch;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003325 jump_in:
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003326 past_EOL = heredoc.length;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003327 do {
3328 ch = i_getch(input);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003329 if (ch != EOF)
3330 nommu_addchr(as_string, ch);
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003331 } while ((heredoc_flags & HEREDOC_SKIPTABS) && ch == '\t');
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003332 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003333 }
3334 if (ch == EOF) {
3335 o_free_unsafe(&heredoc);
3336 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003337 }
3338 o_addchr(&heredoc, ch);
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02003339 nommu_addchr(as_string, ch);
Denys Vlasenkoc3adfac2010-09-06 11:46:03 +02003340 if (prev == '\\' && ch == '\\')
3341 /* Correctly handle foo\\<eol> (not a line cont.) */
3342 prev = 0; /* not \ */
3343 else
3344 prev = ch;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003345 }
3346}
3347
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003348/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
3349 * and load them all. There should be exactly heredoc_cnt of them.
3350 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003351static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
3352{
3353 struct pipe *pi = ctx->list_head;
3354
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003355 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003356 int i;
3357 struct command *cmd = pi->cmds;
3358
3359 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
3360 pi->num_cmds,
3361 cmd->argv ? cmd->argv[0] : "NONE");
3362 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003363 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003364
3365 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
3366 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003367 while (redir) {
3368 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003369 char *p;
3370
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003371 redir->rd_type = REDIRECT_HEREDOC2;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003372 /* redir->rd_dup is (ab)used to indicate <<- */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003373 p = fetch_till_str(&ctx->as_string, input,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003374 redir->rd_filename, redir->rd_dup);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003375 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003376 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003377 return 1;
3378 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003379 free(redir->rd_filename);
3380 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003381 heredoc_cnt--;
3382 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003383 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003384 }
3385 cmd++;
3386 }
3387 pi = pi->next;
3388 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003389#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003390 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003391 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003392 bb_error_msg_and_die("heredoc BUG 2");
3393#endif
3394 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003395}
3396
3397
Denys Vlasenkob36abf22010-09-05 14:50:59 +02003398static int run_list(struct pipe *pi);
3399#if BB_MMU
3400#define parse_stream(pstring, input, end_trigger) \
3401 parse_stream(input, end_trigger)
3402#endif
3403static struct pipe *parse_stream(char **pstring,
3404 struct in_str *input,
3405 int end_trigger);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003406
Eric Andersen25f27032001-04-26 23:22:31 +00003407
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003408#if !ENABLE_HUSH_FUNCTIONS
3409#define parse_group(dest, ctx, input, ch) \
3410 parse_group(ctx, input, ch)
3411#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003412static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00003413 struct in_str *input, int ch)
3414{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003415 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00003416 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003417 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003418 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00003419 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003420 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003421
3422 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003423#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko38292b62010-09-05 14:49:40 +02003424 if (ch == '(' && !dest->has_quoted_part) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003425 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00003426 if (done_word(dest, ctx))
3427 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003428 if (!command->argv)
3429 goto skip; /* (... */
3430 if (command->argv[1]) { /* word word ... (... */
3431 syntax_error_unexpected_ch('(');
3432 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003433 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003434 /* it is "word(..." or "word (..." */
3435 do
3436 ch = i_getch(input);
3437 while (ch == ' ' || ch == '\t');
3438 if (ch != ')') {
3439 syntax_error_unexpected_ch(ch);
3440 return 1;
3441 }
3442 nommu_addchr(&ctx->as_string, ch);
3443 do
3444 ch = i_getch(input);
3445 while (ch == ' ' || ch == '\t' || ch == '\n');
3446 if (ch != '{') {
3447 syntax_error_unexpected_ch(ch);
3448 return 1;
3449 }
3450 nommu_addchr(&ctx->as_string, ch);
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003451 command->cmd_type = CMD_FUNCDEF;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003452 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003453 }
3454#endif
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01003455
3456#if 0 /* Prevented by caller */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003457 if (command->argv /* word [word]{... */
3458 || dest->length /* word{... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003459 || dest->has_quoted_part /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003460 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003461 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003462 debug_printf_parse("parse_group return 1: "
3463 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003464 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003465 }
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01003466#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003467
3468#if ENABLE_HUSH_FUNCTIONS
3469 skip:
3470#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00003471 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003472 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00003473 endch = ')';
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003474 command->cmd_type = CMD_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003475 } else {
3476 /* bash does not allow "{echo...", requires whitespace */
3477 ch = i_getch(input);
3478 if (ch != ' ' && ch != '\t' && ch != '\n') {
3479 syntax_error_unexpected_ch(ch);
3480 return 1;
3481 }
3482 nommu_addchr(&ctx->as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003483 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003484
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003485 {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003486#if BB_MMU
3487# define as_string NULL
3488#else
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003489 char *as_string = NULL;
3490#endif
3491 pipe_list = parse_stream(&as_string, input, endch);
3492#if !BB_MMU
3493 if (as_string)
3494 o_addstr(&ctx->as_string, as_string);
3495#endif
3496 /* empty ()/{} or parse error? */
3497 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00003498 /* parse_stream already emitted error msg */
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003499 if (!BB_MMU)
3500 free(as_string);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003501 debug_printf_parse("parse_group return 1: "
3502 "parse_stream returned %p\n", pipe_list);
3503 return 1;
3504 }
3505 command->group = pipe_list;
3506#if !BB_MMU
3507 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
3508 command->group_as_string = as_string;
3509 debug_printf_parse("end of group, remembering as:'%s'\n",
3510 command->group_as_string);
3511#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003512#undef as_string
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003513 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003514 debug_printf_parse("parse_group return 0\n");
3515 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003516 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00003517}
3518
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003519#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_DOLLAR_OPS
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003520/* Subroutines for copying $(...) and `...` things */
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02003521static void add_till_backquote(o_string *dest, struct in_str *input, int in_dquote);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003522/* '...' */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003523static void add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003524{
3525 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003526 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003527 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00003528 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003529 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003530 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003531 if (ch == '\'')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003532 return;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003533 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003534 }
3535}
3536/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003537static void add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003538{
3539 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003540 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003541 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00003542 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003543 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003544 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003545 if (ch == '"')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003546 return;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003547 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003548 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003549 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003550 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003551 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003552 if (ch == '`') {
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02003553 add_till_backquote(dest, input, /*in_dquote:*/ 1);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003554 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003555 continue;
3556 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00003557 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003558 }
3559}
3560/* Process `cmd` - copy contents until "`" is seen. Complicated by
3561 * \` quoting.
3562 * "Within the backquoted style of command substitution, backslash
3563 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
3564 * The search for the matching backquote shall be satisfied by the first
3565 * backquote found without a preceding backslash; during this search,
3566 * if a non-escaped backquote is encountered within a shell comment,
3567 * a here-document, an embedded command substitution of the $(command)
3568 * form, or a quoted string, undefined results occur. A single-quoted
3569 * or double-quoted string that begins, but does not end, within the
3570 * "`...`" sequence produces undefined results."
3571 * Example Output
3572 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
3573 */
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02003574static void add_till_backquote(o_string *dest, struct in_str *input, int in_dquote)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003575{
3576 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003577 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003578 if (ch == '`')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003579 return;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003580 if (ch == '\\') {
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02003581 /* \x. Copy both unless it is \`, \$, \\ and maybe \" */
3582 ch = i_getch(input);
3583 if (ch != '`'
3584 && ch != '$'
3585 && ch != '\\'
3586 && (!in_dquote || ch != '"')
3587 ) {
3588 o_addchr(dest, '\\');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003589 }
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02003590 }
3591 if (ch == EOF) {
3592 syntax_error_unterm_ch('`');
3593 /*xfunc_die(); - redundant */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003594 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003595 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003596 }
3597}
3598/* Process $(cmd) - copy contents until ")" is seen. Complicated by
3599 * quoting and nested ()s.
3600 * "With the $(command) style of command substitution, all characters
3601 * following the open parenthesis to the matching closing parenthesis
3602 * constitute the command. Any valid shell script can be used for command,
3603 * except a script consisting solely of redirections which produces
3604 * unspecified results."
3605 * Example Output
3606 * echo $(echo '(TEST)' BEST) (TEST) BEST
3607 * echo $(echo 'TEST)' BEST) TEST) BEST
3608 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
Denys Vlasenko74369502010-05-21 19:52:01 +02003609 *
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003610 * Also adapted to eat ${var%...} and $((...)) constructs, since ... part
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003611 * can contain arbitrary constructs, just like $(cmd).
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003612 * In bash compat mode, it needs to also be able to stop on ':' or '/'
3613 * for ${var:N[:M]} and ${var/P[/R]} parsing.
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003614 */
Denys Vlasenko74369502010-05-21 19:52:01 +02003615#define DOUBLE_CLOSE_CHAR_FLAG 0x80
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003616static int add_till_closing_bracket(o_string *dest, struct in_str *input, unsigned end_ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003617{
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003618 int ch;
Denys Vlasenko74369502010-05-21 19:52:01 +02003619 char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003620# if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003621 char end_char2 = end_ch >> 8;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003622# endif
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003623 end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1);
3624
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003625 while (1) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003626 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003627 if (ch == EOF) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003628 syntax_error_unterm_ch(end_ch);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003629 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003630 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003631 if (ch == end_ch IF_HUSH_BASH_COMPAT( || ch == end_char2)) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003632 if (!dbl)
3633 break;
3634 /* we look for closing )) of $((EXPR)) */
3635 if (i_peek(input) == end_ch) {
3636 i_getch(input); /* eat second ')' */
3637 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00003638 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003639 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003640 o_addchr(dest, ch);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003641 if (ch == '(' || ch == '{') {
3642 ch = (ch == '(' ? ')' : '}');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003643 add_till_closing_bracket(dest, input, ch);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003644 o_addchr(dest, ch);
3645 continue;
3646 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003647 if (ch == '\'') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003648 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003649 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003650 continue;
3651 }
3652 if (ch == '"') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003653 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003654 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003655 continue;
3656 }
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003657 if (ch == '`') {
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02003658 add_till_backquote(dest, input, /*in_dquote:*/ 0);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003659 o_addchr(dest, ch);
3660 continue;
3661 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003662 if (ch == '\\') {
3663 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003664 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003665 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00003666 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003667 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003668 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003669 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003670 continue;
3671 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003672 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003673 return ch;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003674}
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003675#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_DOLLAR_OPS */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003676
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003677/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003678#if BB_MMU
Denys Vlasenko101a4e32010-09-09 14:04:57 +02003679#define parse_dollar(as_string, dest, input, quote_mask) \
3680 parse_dollar(dest, input, quote_mask)
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003681#define as_string NULL
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003682#endif
Denys Vlasenko2e48d532010-05-22 17:30:39 +02003683static int parse_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003684 o_string *dest,
Denys Vlasenko101a4e32010-09-09 14:04:57 +02003685 struct in_str *input, unsigned char quote_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00003686{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003687 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003688
Denys Vlasenko2e48d532010-05-22 17:30:39 +02003689 debug_printf_parse("parse_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003690 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003691 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003692 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00003693 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003694 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003695 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003696 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003697 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003698 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003699 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003700 if (!isalnum(ch) && ch != '_')
3701 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003702 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003703 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003704 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003705 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003706 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003707 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003708 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003709 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003710 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003711 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003712 o_addchr(dest, ch | quote_mask);
3713 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003714 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003715 case '$': /* pid */
3716 case '!': /* last bg pid */
3717 case '?': /* last exit code */
3718 case '#': /* number of args */
3719 case '*': /* args */
3720 case '@': /* args */
3721 goto make_one_char_var;
3722 case '{': {
Mike Frysingeref3e7fd2009-06-01 14:13:39 -04003723 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3724
Denys Vlasenko74369502010-05-21 19:52:01 +02003725 ch = i_getch(input); /* eat '{' */
3726 nommu_addchr(as_string, ch);
3727
3728 ch = i_getch(input); /* first char after '{' */
Denys Vlasenko74369502010-05-21 19:52:01 +02003729 /* It should be ${?}, or ${#var},
3730 * or even ${?+subst} - operator acting on a special variable,
3731 * or the beginning of variable name.
3732 */
Denys Vlasenko101a4e32010-09-09 14:04:57 +02003733 if (ch == EOF
3734 || (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) /* not one of those */
3735 ) {
Denys Vlasenko74369502010-05-21 19:52:01 +02003736 bad_dollar_syntax:
3737 syntax_error_unterm_str("${name}");
Denys Vlasenko2e48d532010-05-22 17:30:39 +02003738 debug_printf_parse("parse_dollar return 1: unterminated ${name}\n");
Denys Vlasenko74369502010-05-21 19:52:01 +02003739 return 1;
3740 }
Denys Vlasenko101a4e32010-09-09 14:04:57 +02003741 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02003742 ch |= quote_mask;
3743
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003744 /* It's possible to just call add_till_closing_bracket() at this point.
Denys Vlasenko74369502010-05-21 19:52:01 +02003745 * However, this regresses some of our testsuite cases
3746 * which check invalid constructs like ${%}.
3747 * Oh well... let's check that the var name part is fine... */
3748
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003749 while (1) {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003750 unsigned pos;
3751
Denys Vlasenko74369502010-05-21 19:52:01 +02003752 o_addchr(dest, ch);
3753 debug_printf_parse(": '%c'\n", ch);
3754
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003755 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003756 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02003757 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00003758 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00003759
Denys Vlasenko74369502010-05-21 19:52:01 +02003760 if (!isalnum(ch) && ch != '_') {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003761 unsigned end_ch;
3762 unsigned char last_ch;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003763 /* handle parameter expansions
3764 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
3765 */
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003766 if (!strchr(VAR_SUBST_OPS, ch)) /* ${var<bad_char>... */
Denys Vlasenko74369502010-05-21 19:52:01 +02003767 goto bad_dollar_syntax;
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003768
3769 /* Eat everything until closing '}' (or ':') */
3770 end_ch = '}';
3771 if (ENABLE_HUSH_BASH_COMPAT
3772 && ch == ':'
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003773 && !strchr(MINUS_PLUS_EQUAL_QUESTION, i_peek(input))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003774 ) {
3775 /* It's ${var:N[:M]} thing */
3776 end_ch = '}' * 0x100 + ':';
3777 }
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003778 if (ENABLE_HUSH_BASH_COMPAT
3779 && ch == '/'
3780 ) {
3781 /* It's ${var/[/]pattern[/repl]} thing */
3782 if (i_peek(input) == '/') { /* ${var//pattern[/repl]}? */
3783 i_getch(input);
3784 nommu_addchr(as_string, '/');
3785 ch = '\\';
3786 }
3787 end_ch = '}' * 0x100 + '/';
3788 }
3789 o_addchr(dest, ch);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003790 again:
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003791 if (!BB_MMU)
3792 pos = dest->length;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003793#if ENABLE_HUSH_DOLLAR_OPS
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003794 last_ch = add_till_closing_bracket(dest, input, end_ch);
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003795#else
3796#error Simple code to only allow ${var} is not implemented
3797#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003798 if (as_string) {
3799 o_addstr(as_string, dest->data + pos);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003800 o_addchr(as_string, last_ch);
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003801 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003802
3803 if (ENABLE_HUSH_BASH_COMPAT && (end_ch & 0xff00)) {
3804 /* close the first block: */
3805 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003806 /* while parsing N from ${var:N[:M]}
3807 * or pattern from ${var/[/]pattern[/repl]} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003808 if ((end_ch & 0xff) == last_ch) {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003809 /* got ':' or '/'- parse the rest */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003810 end_ch = '}';
3811 goto again;
3812 }
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003813 /* got '}' */
3814 if (end_ch == '}' * 0x100 + ':') {
3815 /* it's ${var:N} - emulate :999999999 */
3816 o_addstr(dest, "999999999");
3817 } /* else: it's ${var/[/]pattern} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003818 }
Denys Vlasenko74369502010-05-21 19:52:01 +02003819 break;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003820 }
Denys Vlasenko74369502010-05-21 19:52:01 +02003821 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003822 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3823 break;
3824 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003825#if ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003826 case '(': {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003827 unsigned pos;
3828
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003829 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003830 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00003831# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003832 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003833 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003834 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003835 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3836 o_addchr(dest, /*quote_mask |*/ '+');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003837 if (!BB_MMU)
3838 pos = dest->length;
3839 add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG);
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00003840 if (as_string) {
3841 o_addstr(as_string, dest->data + pos);
3842 o_addchr(as_string, ')');
3843 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00003844 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003845 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003846 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003847 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00003848# endif
3849# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003850 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3851 o_addchr(dest, quote_mask | '`');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003852 if (!BB_MMU)
3853 pos = dest->length;
3854 add_till_closing_bracket(dest, input, ')');
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00003855 if (as_string) {
3856 o_addstr(as_string, dest->data + pos);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01003857 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00003858 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003859 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00003860# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003861 break;
3862 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00003863#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003864 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003865 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003866 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003867 ch = i_peek(input);
3868 if (isalnum(ch)) { /* it's $_name or $_123 */
3869 ch = '_';
3870 goto make_var;
3871 }
3872 /* else: it's $_ */
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02003873 /* TODO: $_ and $-: */
3874 /* $_ Shell or shell script name; or last argument of last command
3875 * (if last command wasn't a pipe; if it was, bash sets $_ to "");
3876 * but in command's env, set to full pathname used to invoke it */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003877 /* $- Option flags set by set builtin or shell options (-i etc) */
3878 default:
3879 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00003880 }
Denys Vlasenko2e48d532010-05-22 17:30:39 +02003881 debug_printf_parse("parse_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003882 return 0;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003883#undef as_string
Eric Andersen25f27032001-04-26 23:22:31 +00003884}
3885
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003886#if BB_MMU
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003887# if ENABLE_HUSH_BASH_COMPAT
3888#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
3889 encode_string(dest, input, dquote_end, process_bkslash)
3890# else
3891/* only ${var/pattern/repl} (its pattern part) needs additional mode */
3892#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
3893 encode_string(dest, input, dquote_end)
3894# endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003895#define as_string NULL
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003896
3897#else /* !MMU */
3898
3899# if ENABLE_HUSH_BASH_COMPAT
3900/* all parameters are needed, no macro tricks */
3901# else
3902#define encode_string(as_string, dest, input, dquote_end, process_bkslash) \
3903 encode_string(as_string, dest, input, dquote_end)
3904# endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003905#endif
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003906static int encode_string(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003907 o_string *dest,
3908 struct in_str *input,
Denys Vlasenko14e289b2010-09-10 10:15:18 +02003909 int dquote_end,
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003910 int process_bkslash)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003911{
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003912#if !ENABLE_HUSH_BASH_COMPAT
3913 const int process_bkslash = 1;
3914#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00003915 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003916 int next;
3917
3918 again:
3919 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003920 if (ch != EOF)
3921 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003922 if (ch == dquote_end) { /* may be only '"' or EOF */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003923 debug_printf_parse("encode_string return 0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003924 return 0;
3925 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003926 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003927 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00003928 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003929 /*xfunc_die(); - redundant */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003930 }
3931 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003932 if (ch != '\n') {
3933 next = i_peek(input);
3934 }
Denys Vlasenkof37eb392009-10-18 11:46:35 +02003935 debug_printf_parse("\" ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003936 ch, ch, !!(dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003937 if (process_bkslash && ch == '\\') {
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003938 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003939 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003940 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003941 }
3942 /* bash:
3943 * "The backslash retains its special meaning [in "..."]
3944 * only when followed by one of the following characters:
3945 * $, `, ", \, or <newline>. A double quote may be quoted
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003946 * within double quotes by preceding it with a backslash."
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003947 * NB: in (unquoted) heredoc, above does not apply to ",
3948 * therefore we check for it by "next == dquote_end" cond.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003949 */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003950 if (next == dquote_end || strchr("$`\\\n", next)) {
Denys Vlasenko850b15b2010-09-09 12:58:19 +02003951 ch = i_getch(input); /* eat next */
3952 if (ch == '\n')
3953 goto again; /* skip \<newline> */
Denys Vlasenko4f870492010-09-10 11:06:01 +02003954 } /* else: ch remains == '\\', and we double it below: */
3955 o_addqchr(dest, ch); /* \c if c is a glob char, else just c */
Denys Vlasenko850b15b2010-09-09 12:58:19 +02003956 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003957 goto again;
3958 }
3959 if (ch == '$') {
Denys Vlasenko101a4e32010-09-09 14:04:57 +02003960 if (parse_dollar(as_string, dest, input, /*quote_mask:*/ 0x80) != 0) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02003961 debug_printf_parse("encode_string return 1: "
Denys Vlasenko2e48d532010-05-22 17:30:39 +02003962 "parse_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003963 return 1;
3964 }
3965 goto again;
3966 }
3967#if ENABLE_HUSH_TICK
3968 if (ch == '`') {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003969 //unsigned pos = dest->length;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003970 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3971 o_addchr(dest, 0x80 | '`');
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02003972 add_till_backquote(dest, input, /*in_dquote:*/ dquote_end == '"');
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003973 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3974 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00003975 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003976 }
3977#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00003978 o_addQchr(dest, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003979 goto again;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003980#undef as_string
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003981}
3982
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003983/*
3984 * Scan input until EOF or end_trigger char.
3985 * Return a list of pipes to execute, or NULL on EOF
3986 * or if end_trigger character is met.
3987 * On syntax error, exit is shell is not interactive,
3988 * reset parsing machinery and start parsing anew,
3989 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00003990 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003991static struct pipe *parse_stream(char **pstring,
3992 struct in_str *input,
3993 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00003994{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003995 struct parse_context ctx;
3996 o_string dest = NULL_O_STRING;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003997 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00003998
Denys Vlasenko77a7b552010-09-09 12:40:03 +02003999 /* Single-quote triggers a bypass of the main loop until its mate is
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004000 * found. When recursing, quote state is passed in via dest->o_expflags.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004001 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004002 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
Denys Vlasenko90a99042009-09-06 02:36:23 +02004003 end_trigger ? end_trigger : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004004 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004005
Denys Vlasenkof37eb392009-10-18 11:46:35 +02004006 /* If very first arg is "" or '', dest.data may end up NULL.
4007 * Preventing this: */
4008 o_addchr(&dest, '\0');
4009 dest.length = 0;
4010
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004011 /* We used to separate words on $IFS here. This was wrong.
4012 * $IFS is used only for word splitting when $var is expanded,
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004013 * here we should use blank chars as separators, not $IFS
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004014 */
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004015
4016 reset: /* we come back here only on syntax errors in interactive shell */
4017
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004018#if ENABLE_HUSH_INTERACTIVE
4019 input->promptmode = 0; /* PS1 */
4020#endif
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004021 if (MAYBE_ASSIGNMENT != 0)
4022 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004023 initialize_context(&ctx);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004024 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004025 while (1) {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004026 const char *is_blank;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004027 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004028 int ch;
4029 int next;
4030 int redir_fd;
4031 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004032
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004033 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004034 debug_printf_parse(": ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004035 ch, ch, !!(dest.o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004036 if (ch == EOF) {
4037 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004038
4039 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004040 syntax_error_unterm_str("here document");
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004041 goto parse_error;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004042 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004043 /* end_trigger == '}' case errors out earlier,
4044 * checking only ')' */
4045 if (end_trigger == ')') {
4046 syntax_error_unterm_ch('('); /* exits */
4047 /* goto parse_error; */
4048 }
4049
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004050 if (done_word(&dest, &ctx)) {
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02004051 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004052 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004053 o_free(&dest);
4054 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004055 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004056 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004057 /* (this makes bare "&" cmd a no-op.
4058 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004059 if (pi->num_cmds == 0
4060 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
4061 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004062 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004063 pi = NULL;
4064 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004065#if !BB_MMU
4066 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
4067 if (pstring)
4068 *pstring = ctx.as_string.data;
4069 else
4070 o_free_unsafe(&ctx.as_string);
4071#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004072 debug_leave();
4073 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004074 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004075 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004076 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004077
4078 next = '\0';
4079 if (ch != '\n')
4080 next = i_peek(input);
4081
4082 is_special = "{}<>;&|()#'" /* special outside of "str" */
4083 "\\$\"" IF_HUSH_TICK("`"); /* always special */
4084 /* Are { and } special here? */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004085 if (ctx.command->argv /* word [word]{... - non-special */
4086 || dest.length /* word{... - non-special */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004087 || dest.has_quoted_part /* ""{... - non-special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004088 || (next != ';' /* }; - special */
4089 && next != ')' /* }) - special */
4090 && next != '&' /* }& and }&& ... - special */
4091 && next != '|' /* }|| ... - special */
4092 && !strchr(defifs, next) /* {word - non-special */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02004093 )
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01004094 ) {
4095 /* They are not special, skip "{}" */
4096 is_special += 2;
4097 }
4098 is_special = strchr(is_special, ch);
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004099 is_blank = strchr(defifs, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004100
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004101 if (!is_special && !is_blank) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00004102 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004103 o_addQchr(&dest, ch);
4104 if ((dest.o_assignment == MAYBE_ASSIGNMENT
4105 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004106 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004107 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00004108 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004109 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004110 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004111 continue;
4112 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004113
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004114 if (is_blank) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004115 if (done_word(&dest, &ctx)) {
4116 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00004117 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004118 if (ch == '\n') {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004119 /* Is this a case when newline is simply ignored?
4120 * Some examples:
4121 * "cmd | <newline> cmd ..."
4122 * "case ... in <newline> word) ..."
4123 */
4124 if (IS_NULL_CMD(ctx.command)
4125 && dest.length == 0 && !dest.has_quoted_part
Denis Vlasenkof1736072008-07-31 10:09:26 +00004126 ) {
4127 continue;
4128 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004129 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004130 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004131 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
4132 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004133 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004134 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004135 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004136 heredoc_cnt = 0;
4137 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004138 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004139 ch = ';';
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004140 /* note: if (is_blank) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004141 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004142 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004143 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004144
4145 /* "cmd}" or "cmd }..." without semicolon or &:
4146 * } is an ordinary char in this case, even inside { cmd; }
4147 * Pathological example: { ""}; } should exec "}" cmd
4148 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004149 if (ch == '}') {
4150 if (!IS_NULL_CMD(ctx.command) /* cmd } */
4151 || dest.length != 0 /* word} */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004152 || dest.has_quoted_part /* ""} */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004153 ) {
4154 goto ordinary_char;
4155 }
4156 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
4157 goto skip_end_trigger;
4158 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00004159 }
4160
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004161 if (end_trigger && end_trigger == ch
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004162 && (ch != ';' || heredoc_cnt == 0)
4163#if ENABLE_HUSH_CASE
4164 && (ch != ')'
4165 || ctx.ctx_res_w != RES_MATCH
Denys Vlasenko38292b62010-09-05 14:49:40 +02004166 || (!dest.has_quoted_part && strcmp(dest.data, "esac") == 0)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004167 )
4168#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004169 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004170 if (heredoc_cnt) {
4171 /* This is technically valid:
4172 * { cat <<HERE; }; echo Ok
4173 * heredoc
4174 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004175 * HERE
4176 * but we don't support this.
4177 * We require heredoc to be in enclosing {}/(),
4178 * if any.
4179 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004180 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004181 goto parse_error;
4182 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004183 if (done_word(&dest, &ctx)) {
4184 goto parse_error;
4185 }
4186 done_pipe(&ctx, PIPE_SEQ);
4187 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004188 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00004189 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004190 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00004191 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004192 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004193#if !BB_MMU
4194 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
4195 if (pstring)
4196 *pstring = ctx.as_string.data;
4197 else
4198 o_free_unsafe(&ctx.as_string);
4199#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004200 debug_leave();
4201 debug_printf_parse("parse_stream return %p: "
4202 "end_trigger char found\n",
4203 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004204 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004205 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004206 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004207 skip_end_trigger:
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004208 if (is_blank)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004209 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004210
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004211 /* Catch <, > before deciding whether this word is
4212 * an assignment. a=1 2>z b=2: b=2 is still assignment */
4213 switch (ch) {
4214 case '>':
4215 redir_fd = redirect_opt_num(&dest);
4216 if (done_word(&dest, &ctx)) {
4217 goto parse_error;
4218 }
4219 redir_style = REDIRECT_OVERWRITE;
4220 if (next == '>') {
4221 redir_style = REDIRECT_APPEND;
4222 ch = i_getch(input);
4223 nommu_addchr(&ctx.as_string, ch);
4224 }
4225#if 0
4226 else if (next == '(') {
4227 syntax_error(">(process) not supported");
4228 goto parse_error;
4229 }
4230#endif
4231 if (parse_redirect(&ctx, redir_fd, redir_style, input))
4232 goto parse_error;
4233 continue; /* back to top of while (1) */
4234 case '<':
4235 redir_fd = redirect_opt_num(&dest);
4236 if (done_word(&dest, &ctx)) {
4237 goto parse_error;
4238 }
4239 redir_style = REDIRECT_INPUT;
4240 if (next == '<') {
4241 redir_style = REDIRECT_HEREDOC;
4242 heredoc_cnt++;
4243 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
4244 ch = i_getch(input);
4245 nommu_addchr(&ctx.as_string, ch);
4246 } else if (next == '>') {
4247 redir_style = REDIRECT_IO;
4248 ch = i_getch(input);
4249 nommu_addchr(&ctx.as_string, ch);
4250 }
4251#if 0
4252 else if (next == '(') {
4253 syntax_error("<(process) not supported");
4254 goto parse_error;
4255 }
4256#endif
4257 if (parse_redirect(&ctx, redir_fd, redir_style, input))
4258 goto parse_error;
4259 continue; /* back to top of while (1) */
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004260 case '#':
4261 if (dest.length == 0 && !dest.has_quoted_part) {
4262 /* skip "#comment" */
4263 while (1) {
4264 ch = i_peek(input);
4265 if (ch == EOF || ch == '\n')
4266 break;
4267 i_getch(input);
4268 /* note: we do not add it to &ctx.as_string */
4269 }
4270 nommu_addchr(&ctx.as_string, '\n');
4271 continue; /* back to top of while (1) */
4272 }
4273 break;
4274 case '\\':
4275 if (next == '\n') {
4276 /* It's "\<newline>" */
4277#if !BB_MMU
4278 /* Remove trailing '\' from ctx.as_string */
4279 ctx.as_string.data[--ctx.as_string.length] = '\0';
4280#endif
4281 ch = i_getch(input); /* eat it */
4282 continue; /* back to top of while (1) */
4283 }
4284 break;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004285 }
4286
4287 if (dest.o_assignment == MAYBE_ASSIGNMENT
4288 /* check that we are not in word in "a=1 2>word b=1": */
4289 && !ctx.pending_redirect
4290 ) {
4291 /* ch is a special char and thus this word
4292 * cannot be an assignment */
4293 dest.o_assignment = NOT_ASSIGNMENT;
4294 }
4295
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02004296 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
4297
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004298 switch (ch) {
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004299 case '#': /* non-comment #: "echo a#b" etc */
4300 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004301 break;
4302 case '\\':
4303 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004304 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004305 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00004306 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004307 ch = i_getch(input);
Denys Vlasenko7b4c0fd2010-11-22 17:58:14 +01004308 /* note: ch != '\n' (that case does not reach this place) */
4309 o_addchr(&dest, '\\');
4310 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
4311 o_addchr(&dest, ch);
4312 nommu_addchr(&ctx.as_string, ch);
4313 /* Example: echo Hello \2>file
4314 * we need to know that word 2 is quoted */
4315 dest.has_quoted_part = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004316 break;
4317 case '$':
Denys Vlasenko101a4e32010-09-09 14:04:57 +02004318 if (parse_dollar(&ctx.as_string, &dest, input, /*quote_mask:*/ 0) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004319 debug_printf_parse("parse_stream parse error: "
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004320 "parse_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004321 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004322 }
Eric Andersen25f27032001-04-26 23:22:31 +00004323 break;
4324 case '\'':
Denys Vlasenko38292b62010-09-05 14:49:40 +02004325 dest.has_quoted_part = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004326 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004327 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004328 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004329 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004330 /*xfunc_die(); - redundant */
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004331 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004332 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004333 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004334 break;
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02004335 o_addqchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004336 }
Eric Andersen25f27032001-04-26 23:22:31 +00004337 break;
4338 case '"':
Denys Vlasenko38292b62010-09-05 14:49:40 +02004339 dest.has_quoted_part = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004340 if (dest.o_assignment == NOT_ASSIGNMENT)
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004341 dest.o_expflags |= EXP_FLAG_ESC_GLOB_CHARS;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004342 if (encode_string(&ctx.as_string, &dest, input, '"', /*process_bkslash:*/ 1))
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004343 goto parse_error;
Denys Vlasenko5b6210c2010-09-09 13:32:21 +02004344 dest.o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS;
Eric Andersen25f27032001-04-26 23:22:31 +00004345 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004346#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004347 case '`': {
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004348 unsigned pos;
4349
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004350 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4351 o_addchr(&dest, '`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004352 pos = dest.length;
Denys Vlasenkoacd5bc82010-09-12 15:05:39 +02004353 add_till_backquote(&dest, input, /*in_dquote:*/ 0);
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004354# if !BB_MMU
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004355 o_addstr(&ctx.as_string, dest.data + pos);
4356 o_addchr(&ctx.as_string, '`');
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004357# endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004358 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4359 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00004360 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004361 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004362#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004363 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004364#if ENABLE_HUSH_CASE
4365 case_semi:
4366#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004367 if (done_word(&dest, &ctx)) {
4368 goto parse_error;
4369 }
4370 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004371#if ENABLE_HUSH_CASE
4372 /* Eat multiple semicolons, detect
4373 * whether it means something special */
4374 while (1) {
4375 ch = i_peek(input);
4376 if (ch != ';')
4377 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004378 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004379 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004380 if (ctx.ctx_res_w == RES_CASE_BODY) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004381 ctx.ctx_dsemicolon = 1;
4382 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004383 break;
4384 }
4385 }
4386#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004387 new_cmd:
4388 /* We just finished a cmd. New one may start
4389 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004390 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00004391 break;
4392 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004393 if (done_word(&dest, &ctx)) {
4394 goto parse_error;
4395 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004396 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004397 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004398 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004399 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00004400 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004401 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00004402 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004403 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004404 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004405 if (done_word(&dest, &ctx)) {
4406 goto parse_error;
4407 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004408#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004409 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00004410 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004411#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004412 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004413 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004414 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004415 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00004416 } else {
4417 /* we could pick up a file descriptor choice here
4418 * with redirect_opt_num(), but bash doesn't do it.
4419 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004420 done_command(&ctx);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004421#if !BB_MMU
4422 o_reset_to_empty_unquoted(&ctx.as_string);
4423#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004424 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004425 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004426 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004427#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00004428 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004429 if (ctx.ctx_res_w == RES_MATCH
4430 && ctx.command->argv == NULL /* not (word|(... */
4431 && dest.length == 0 /* not word(... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004432 && dest.has_quoted_part == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004433 ) {
4434 continue;
4435 }
4436#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004437 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004438 if (parse_group(&dest, &ctx, input, ch) != 0) {
4439 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004440 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004441 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004442 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004443#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004444 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004445 goto case_semi;
4446#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004447 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004448 /* proper use of this character is caught by end_trigger:
4449 * if we see {, we call parse_group(..., end_trigger='}')
4450 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004451 syntax_error_unexpected_ch(ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004452 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004453 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004454 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004455 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004456 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004457 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004458
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004459 parse_error:
4460 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004461 struct parse_context *pctx;
4462 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004463
4464 /* Clean up allocated tree.
Denys Vlasenko764b2f02009-06-07 16:05:04 +02004465 * Sample for finding leaks on syntax error recovery path.
4466 * Run it from interactive shell, watch pmap `pidof hush`.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004467 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00004468 * Samples to catch leaks at execution:
4469 * while if (true | {true;}); then echo ok; fi; do break; done
4470 * 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 +00004471 */
4472 pctx = &ctx;
4473 do {
4474 /* Update pipe/command counts,
4475 * otherwise freeing may miss some */
4476 done_pipe(pctx, PIPE_SEQ);
4477 debug_printf_clean("freeing list %p from ctx %p\n",
4478 pctx->list_head, pctx);
4479 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004480 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004481 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004482#if !BB_MMU
4483 o_free_unsafe(&pctx->as_string);
4484#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004485 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004486 if (pctx != &ctx) {
4487 free(pctx);
4488 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004489 IF_HAS_KEYWORDS(pctx = p2;)
4490 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004491 /* Free text, clear all dest fields */
4492 o_free(&dest);
4493 /* If we are not in top-level parse, we return,
4494 * our caller will propagate error.
4495 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004496 if (end_trigger != ';') {
4497#if !BB_MMU
4498 if (pstring)
4499 *pstring = NULL;
4500#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004501 debug_leave();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004502 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004503 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004504 /* Discard cached input, force prompt */
4505 input->p = NULL;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00004506 IF_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004507 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004508 }
Eric Andersen25f27032001-04-26 23:22:31 +00004509}
4510
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004511
4512/*** Execution routines ***/
4513
4514/* Expansion can recurse, need forward decls: */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004515#if !ENABLE_HUSH_BASH_COMPAT
4516/* only ${var/pattern/repl} (its pattern part) needs additional mode */
4517#define expand_string_to_string(str, do_unbackslash) \
4518 expand_string_to_string(str)
4519#endif
Denys Vlasenkoebee4102010-09-10 10:17:53 +02004520static char *expand_string_to_string(const char *str, int do_unbackslash);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01004521#if ENABLE_HUSH_TICK
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004522static int process_command_subs(o_string *dest, const char *s);
Denys Vlasenko26777aa2010-11-22 23:49:10 +01004523#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004524
4525/* expand_strvec_to_strvec() takes a list of strings, expands
4526 * all variable references within and returns a pointer to
4527 * a list of expanded strings, possibly with larger number
4528 * of strings. (Think VAR="a b"; echo $VAR).
4529 * This new list is allocated as a single malloc block.
4530 * NULL-terminated list of char* pointers is at the beginning of it,
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004531 * followed by strings themselves.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004532 * Caller can deallocate entire list by single free(list). */
4533
Denys Vlasenko238081f2010-10-03 14:26:26 +02004534/* A horde of its helpers come first: */
4535
4536static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
4537{
4538 while (--len >= 0) {
Denys Vlasenko9e800222010-10-03 14:28:04 +02004539 char c = *str++;
Denys Vlasenko957f79f2010-10-03 17:15:50 +02004540
Denys Vlasenko9e800222010-10-03 14:28:04 +02004541#if ENABLE_HUSH_BRACE_EXPANSION
4542 if (c == '{' || c == '}') {
4543 /* { -> \{, } -> \} */
4544 o_addchr(o, '\\');
Denys Vlasenko957f79f2010-10-03 17:15:50 +02004545 /* And now we want to add { or } and continue:
4546 * o_addchr(o, c);
4547 * continue;
4548 * luckily, just falling throught achieves this.
4549 */
Denys Vlasenko9e800222010-10-03 14:28:04 +02004550 }
4551#endif
4552 o_addchr(o, c);
4553 if (c == '\\') {
Denys Vlasenko238081f2010-10-03 14:26:26 +02004554 /* \z -> \\\z; \<eol> -> \\<eol> */
4555 o_addchr(o, '\\');
4556 if (len) {
4557 len--;
4558 o_addchr(o, '\\');
4559 o_addchr(o, *str++);
4560 }
4561 }
4562 }
4563}
4564
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004565/* Store given string, finalizing the word and starting new one whenever
4566 * we encounter IFS char(s). This is used for expanding variable values.
4567 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
4568static int expand_on_ifs(o_string *output, int n, const char *str)
4569{
4570 while (1) {
4571 int word_len = strcspn(str, G.ifs);
4572 if (word_len) {
Denys Vlasenko238081f2010-10-03 14:26:26 +02004573 if (!(output->o_expflags & EXP_FLAG_GLOB)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004574 o_addblock(output, str, word_len);
Denys Vlasenko238081f2010-10-03 14:26:26 +02004575 } else {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004576 /* Protect backslashes against globbing up :)
Denys Vlasenkoa769e022010-09-10 10:12:34 +02004577 * Example: "v='\*'; echo b$v" prints "b\*"
4578 * (and does not try to glob on "*")
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004579 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004580 o_addblock_duplicate_backslash(output, str, word_len);
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004581 /*/ Why can't we do it easier? */
4582 /*o_addblock(output, str, word_len); - WRONG: "v='\*'; echo Z$v" prints "Z*" instead of "Z\*" */
4583 /*o_addqblock(output, str, word_len); - WRONG: "v='*'; echo Z$v" prints "Z*" instead of Z* files */
4584 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004585 str += word_len;
4586 }
4587 if (!*str) /* EOL - do not finalize word */
4588 break;
4589 o_addchr(output, '\0');
4590 debug_print_list("expand_on_ifs", output, n);
4591 n = o_save_ptr(output, n);
4592 str += strspn(str, G.ifs); /* skip ifs chars */
4593 }
4594 debug_print_list("expand_on_ifs[1]", output, n);
4595 return n;
4596}
4597
4598/* Helper to expand $((...)) and heredoc body. These act as if
4599 * they are in double quotes, with the exception that they are not :).
4600 * Just the rules are similar: "expand only $var and `cmd`"
4601 *
4602 * Returns malloced string.
4603 * As an optimization, we return NULL if expansion is not needed.
4604 */
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004605#if !ENABLE_HUSH_BASH_COMPAT
4606/* only ${var/pattern/repl} (its pattern part) needs additional mode */
4607#define encode_then_expand_string(str, process_bkslash, do_unbackslash) \
4608 encode_then_expand_string(str)
4609#endif
4610static char *encode_then_expand_string(const char *str, int process_bkslash, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004611{
4612 char *exp_str;
4613 struct in_str input;
4614 o_string dest = NULL_O_STRING;
4615
4616 if (!strchr(str, '$')
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02004617 && !strchr(str, '\\')
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004618#if ENABLE_HUSH_TICK
4619 && !strchr(str, '`')
4620#endif
4621 ) {
4622 return NULL;
4623 }
4624
4625 /* We need to expand. Example:
4626 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
4627 */
4628 setup_string_in_str(&input, str);
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004629 encode_string(NULL, &dest, &input, EOF, process_bkslash);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004630 //bb_error_msg("'%s' -> '%s'", str, dest.data);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02004631 exp_str = expand_string_to_string(dest.data, /*unbackslash:*/ do_unbackslash);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004632 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
4633 o_free_unsafe(&dest);
4634 return exp_str;
4635}
4636
4637#if ENABLE_SH_MATH_SUPPORT
Denys Vlasenko063847d2010-09-15 13:33:02 +02004638static arith_t expand_and_evaluate_arith(const char *arg, const char **errmsg_p)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004639{
Denys Vlasenko06d44d72010-09-13 12:49:03 +02004640 arith_state_t math_state;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004641 arith_t res;
4642 char *exp_str;
4643
Denys Vlasenko06d44d72010-09-13 12:49:03 +02004644 math_state.lookupvar = get_local_var_value;
4645 math_state.setvar = set_local_var_from_halves;
4646 //math_state.endofname = endofname;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004647 exp_str = encode_then_expand_string(arg, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenko06d44d72010-09-13 12:49:03 +02004648 res = arith(&math_state, exp_str ? exp_str : arg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004649 free(exp_str);
Denys Vlasenko063847d2010-09-15 13:33:02 +02004650 if (errmsg_p)
4651 *errmsg_p = math_state.errmsg;
4652 if (math_state.errmsg)
4653 die_if_script(math_state.errmsg);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004654 return res;
4655}
4656#endif
4657
4658#if ENABLE_HUSH_BASH_COMPAT
4659/* ${var/[/]pattern[/repl]} helpers */
4660static char *strstr_pattern(char *val, const char *pattern, int *size)
4661{
4662 while (1) {
4663 char *end = scan_and_match(val, pattern, SCAN_MOVE_FROM_RIGHT + SCAN_MATCH_LEFT_HALF);
4664 debug_printf_varexp("val:'%s' pattern:'%s' end:'%s'\n", val, pattern, end);
4665 if (end) {
4666 *size = end - val;
4667 return val;
4668 }
4669 if (*val == '\0')
4670 return NULL;
4671 /* Optimization: if "*pat" did not match the start of "string",
4672 * we know that "tring", "ring" etc will not match too:
4673 */
4674 if (pattern[0] == '*')
4675 return NULL;
4676 val++;
4677 }
4678}
4679static char *replace_pattern(char *val, const char *pattern, const char *repl, char exp_op)
4680{
4681 char *result = NULL;
4682 unsigned res_len = 0;
4683 unsigned repl_len = strlen(repl);
4684
4685 while (1) {
4686 int size;
4687 char *s = strstr_pattern(val, pattern, &size);
4688 if (!s)
4689 break;
4690
4691 result = xrealloc(result, res_len + (s - val) + repl_len + 1);
4692 memcpy(result + res_len, val, s - val);
4693 res_len += s - val;
4694 strcpy(result + res_len, repl);
4695 res_len += repl_len;
4696 debug_printf_varexp("val:'%s' s:'%s' result:'%s'\n", val, s, result);
4697
4698 val = s + size;
4699 if (exp_op == '/')
4700 break;
4701 }
4702 if (val[0] && result) {
4703 result = xrealloc(result, res_len + strlen(val) + 1);
4704 strcpy(result + res_len, val);
4705 debug_printf_varexp("val:'%s' result:'%s'\n", val, result);
4706 }
4707 debug_printf_varexp("result:'%s'\n", result);
4708 return result;
4709}
4710#endif
4711
4712/* Helper:
4713 * Handles <SPECIAL_VAR_SYMBOL>varname...<SPECIAL_VAR_SYMBOL> construct.
4714 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02004715static NOINLINE const char *expand_one_var(char **to_be_freed_pp, char *arg, char **pp)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004716{
4717 const char *val = NULL;
4718 char *to_be_freed = NULL;
4719 char *p = *pp;
4720 char *var;
4721 char first_char;
4722 char exp_op;
4723 char exp_save = exp_save; /* for compiler */
4724 char *exp_saveptr; /* points to expansion operator */
4725 char *exp_word = exp_word; /* for compiler */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02004726 char arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004727
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004728 *p = '\0'; /* replace trailing SPECIAL_VAR_SYMBOL */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004729 var = arg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004730 exp_saveptr = arg[1] ? strchr(VAR_ENCODED_SUBST_OPS, arg[1]) : NULL;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02004731 arg0 = arg[0];
4732 first_char = arg[0] = arg0 & 0x7f;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004733 exp_op = 0;
4734
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004735 if (first_char == '#' /* ${#... */
4736 && arg[1] && !exp_saveptr /* not ${#} and not ${#<op_char>...} */
4737 ) {
4738 /* It must be length operator: ${#var} */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004739 var++;
4740 exp_op = 'L';
4741 } else {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004742 /* Maybe handle parameter expansion */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004743 if (exp_saveptr /* if 2nd char is one of expansion operators */
4744 && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */
4745 ) {
4746 /* ${?:0}, ${#[:]%0} etc */
4747 exp_saveptr = var + 1;
4748 } else {
4749 /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */
4750 exp_saveptr = var+1 + strcspn(var+1, VAR_ENCODED_SUBST_OPS);
4751 }
4752 exp_op = exp_save = *exp_saveptr;
4753 if (exp_op) {
4754 exp_word = exp_saveptr + 1;
4755 if (exp_op == ':') {
4756 exp_op = *exp_word++;
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004757//TODO: try ${var:} and ${var:bogus} in non-bash config
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004758 if (ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004759 && (!exp_op || !strchr(MINUS_PLUS_EQUAL_QUESTION, exp_op))
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004760 ) {
4761 /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */
4762 exp_op = ':';
4763 exp_word--;
4764 }
4765 }
4766 *exp_saveptr = '\0';
4767 } /* else: it's not an expansion op, but bare ${var} */
4768 }
4769
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004770 /* Look up the variable in question */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004771 if (isdigit(var[0])) {
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004772 /* parse_dollar should have vetted var for us */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004773 int n = xatoi_positive(var);
4774 if (n < G.global_argc)
4775 val = G.global_argv[n];
4776 /* else val remains NULL: $N with too big N */
4777 } else {
4778 switch (var[0]) {
4779 case '$': /* pid */
4780 val = utoa(G.root_pid);
4781 break;
4782 case '!': /* bg pid */
4783 val = G.last_bg_pid ? utoa(G.last_bg_pid) : "";
4784 break;
4785 case '?': /* exitcode */
4786 val = utoa(G.last_exitcode);
4787 break;
4788 case '#': /* argc */
4789 val = utoa(G.global_argc ? G.global_argc-1 : 0);
4790 break;
4791 default:
4792 val = get_local_var_value(var);
4793 }
4794 }
4795
4796 /* Handle any expansions */
4797 if (exp_op == 'L') {
4798 debug_printf_expand("expand: length(%s)=", val);
4799 val = utoa(val ? strlen(val) : 0);
4800 debug_printf_expand("%s\n", val);
4801 } else if (exp_op) {
4802 if (exp_op == '%' || exp_op == '#') {
4803 /* Standard-mandated substring removal ops:
4804 * ${parameter%word} - remove smallest suffix pattern
4805 * ${parameter%%word} - remove largest suffix pattern
4806 * ${parameter#word} - remove smallest prefix pattern
4807 * ${parameter##word} - remove largest prefix pattern
4808 *
4809 * Word is expanded to produce a glob pattern.
4810 * Then var's value is matched to it and matching part removed.
4811 */
4812 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02004813 char *t;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004814 char *exp_exp_word;
4815 char *loc;
4816 unsigned scan_flags = pick_scan(exp_op, *exp_word);
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +02004817 if (exp_op == *exp_word) /* ## or %% */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004818 exp_word++;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004819 exp_exp_word = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004820 if (exp_exp_word)
4821 exp_word = exp_exp_word;
Denys Vlasenko4f870492010-09-10 11:06:01 +02004822 /* HACK ALERT. We depend here on the fact that
4823 * G.global_argv and results of utoa and get_local_var_value
4824 * are actually in writable memory:
4825 * scan_and_match momentarily stores NULs there. */
4826 t = (char*)val;
4827 loc = scan_and_match(t, exp_word, scan_flags);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004828 //bb_error_msg("op:%c str:'%s' pat:'%s' res:'%s'",
Denys Vlasenko4f870492010-09-10 11:06:01 +02004829 // exp_op, t, exp_word, loc);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004830 free(exp_exp_word);
4831 if (loc) { /* match was found */
4832 if (scan_flags & SCAN_MATCH_LEFT_HALF) /* #[#] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02004833 val = loc; /* take right part */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004834 else /* %[%] */
Denys Vlasenko4f870492010-09-10 11:06:01 +02004835 val = to_be_freed = xstrndup(val, loc - val); /* left */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004836 }
4837 }
4838 }
4839#if ENABLE_HUSH_BASH_COMPAT
4840 else if (exp_op == '/' || exp_op == '\\') {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004841 /* It's ${var/[/]pattern[/repl]} thing.
4842 * Note that in encoded form it has TWO parts:
4843 * var/pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenko4f870492010-09-10 11:06:01 +02004844 * and if // is used, it is encoded as \:
4845 * var\pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004846 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004847 /* Empty variable always gives nothing: */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004848 // "v=''; echo ${v/*/w}" prints "", not "w"
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004849 if (val && val[0]) {
Denys Vlasenko4f870492010-09-10 11:06:01 +02004850 /* pattern uses non-standard expansion.
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004851 * repl should be unbackslashed and globbed
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004852 * by the usual expansion rules:
4853 * >az; >bz;
4854 * v='a bz'; echo "${v/a*z/a*z}" prints "a*z"
4855 * v='a bz'; echo "${v/a*z/\z}" prints "\z"
4856 * v='a bz'; echo ${v/a*z/a*z} prints "az"
4857 * v='a bz'; echo ${v/a*z/\z} prints "z"
4858 * (note that a*z _pattern_ is never globbed!)
4859 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004860 char *pattern, *repl, *t;
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004861 pattern = encode_then_expand_string(exp_word, /*process_bkslash:*/ 0, /*unbackslash:*/ 0);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004862 if (!pattern)
4863 pattern = xstrdup(exp_word);
4864 debug_printf_varexp("pattern:'%s'->'%s'\n", exp_word, pattern);
4865 *p++ = SPECIAL_VAR_SYMBOL;
4866 exp_word = p;
4867 p = strchr(p, SPECIAL_VAR_SYMBOL);
4868 *p = '\0';
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004869 repl = encode_then_expand_string(exp_word, /*process_bkslash:*/ arg0 & 0x80, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004870 debug_printf_varexp("repl:'%s'->'%s'\n", exp_word, repl);
4871 /* HACK ALERT. We depend here on the fact that
4872 * G.global_argv and results of utoa and get_local_var_value
4873 * are actually in writable memory:
4874 * replace_pattern momentarily stores NULs there. */
4875 t = (char*)val;
4876 to_be_freed = replace_pattern(t,
4877 pattern,
4878 (repl ? repl : exp_word),
4879 exp_op);
4880 if (to_be_freed) /* at least one replace happened */
4881 val = to_be_freed;
4882 free(pattern);
4883 free(repl);
4884 }
4885 }
4886#endif
4887 else if (exp_op == ':') {
4888#if ENABLE_HUSH_BASH_COMPAT && ENABLE_SH_MATH_SUPPORT
4889 /* It's ${var:N[:M]} bashism.
4890 * Note that in encoded form it has TWO parts:
4891 * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL>
4892 */
4893 arith_t beg, len;
Denys Vlasenko063847d2010-09-15 13:33:02 +02004894 const char *errmsg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004895
Denys Vlasenko063847d2010-09-15 13:33:02 +02004896 beg = expand_and_evaluate_arith(exp_word, &errmsg);
4897 if (errmsg)
4898 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004899 debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg);
4900 *p++ = SPECIAL_VAR_SYMBOL;
4901 exp_word = p;
4902 p = strchr(p, SPECIAL_VAR_SYMBOL);
4903 *p = '\0';
Denys Vlasenko063847d2010-09-15 13:33:02 +02004904 len = expand_and_evaluate_arith(exp_word, &errmsg);
4905 if (errmsg)
4906 goto arith_err;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004907 debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len);
Denys Vlasenko063847d2010-09-15 13:33:02 +02004908 if (len >= 0) { /* bash compat: len < 0 is illegal */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004909 if (beg < 0) /* bash compat */
4910 beg = 0;
4911 debug_printf_varexp("from val:'%s'\n", val);
Denys Vlasenkob771c652010-09-13 00:34:26 +02004912 if (len == 0 || !val || beg >= strlen(val)) {
Denys Vlasenko063847d2010-09-15 13:33:02 +02004913 arith_err:
Denys Vlasenkob771c652010-09-13 00:34:26 +02004914 val = NULL;
4915 } else {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004916 /* Paranoia. What if user entered 9999999999999
4917 * which fits in arith_t but not int? */
4918 if (len >= INT_MAX)
4919 len = INT_MAX;
4920 val = to_be_freed = xstrndup(val + beg, len);
4921 }
4922 debug_printf_varexp("val:'%s'\n", val);
4923 } else
4924#endif
4925 {
4926 die_if_script("malformed ${%s:...}", var);
Denys Vlasenkob771c652010-09-13 00:34:26 +02004927 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004928 }
4929 } else { /* one of "-=+?" */
4930 /* Standard-mandated substitution ops:
4931 * ${var?word} - indicate error if unset
4932 * If var is unset, word (or a message indicating it is unset
4933 * if word is null) is written to standard error
4934 * and the shell exits with a non-zero exit status.
4935 * Otherwise, the value of var is substituted.
4936 * ${var-word} - use default value
4937 * If var is unset, word is substituted.
4938 * ${var=word} - assign and use default value
4939 * If var is unset, word is assigned to var.
4940 * In all cases, final value of var is substituted.
4941 * ${var+word} - use alternative value
4942 * If var is unset, null is substituted.
4943 * Otherwise, word is substituted.
4944 *
4945 * Word is subjected to tilde expansion, parameter expansion,
4946 * command substitution, and arithmetic expansion.
4947 * If word is not needed, it is not expanded.
4948 *
4949 * Colon forms (${var:-word}, ${var:=word} etc) do the same,
4950 * but also treat null var as if it is unset.
4951 */
4952 int use_word = (!val || ((exp_save == ':') && !val[0]));
4953 if (exp_op == '+')
4954 use_word = !use_word;
4955 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
4956 (exp_save == ':') ? "true" : "false", use_word);
4957 if (use_word) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02004958 to_be_freed = encode_then_expand_string(exp_word, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004959 if (to_be_freed)
4960 exp_word = to_be_freed;
4961 if (exp_op == '?') {
4962 /* mimic bash message */
4963 die_if_script("%s: %s",
4964 var,
4965 exp_word[0] ? exp_word : "parameter null or not set"
4966 );
4967//TODO: how interactive bash aborts expansion mid-command?
4968 } else {
4969 val = exp_word;
4970 }
4971
4972 if (exp_op == '=') {
4973 /* ${var=[word]} or ${var:=[word]} */
4974 if (isdigit(var[0]) || var[0] == '#') {
4975 /* mimic bash message */
4976 die_if_script("$%s: cannot assign in this way", var);
4977 val = NULL;
4978 } else {
4979 char *new_var = xasprintf("%s=%s", var, val);
4980 set_local_var(new_var, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
4981 }
4982 }
4983 }
4984 } /* one of "-=+?" */
4985
4986 *exp_saveptr = exp_save;
4987 } /* if (exp_op) */
4988
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02004989 arg[0] = arg0;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004990
4991 *pp = p;
4992 *to_be_freed_pp = to_be_freed;
4993 return val;
4994}
4995
4996/* Expand all variable references in given string, adding words to list[]
4997 * at n, n+1,... positions. Return updated n (so that list[n] is next one
4998 * to be filled). This routine is extremely tricky: has to deal with
4999 * variables/parameters with whitespace, $* and $@, and constructs like
5000 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005001static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005002{
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005003 /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005004 * expansion of right-hand side of assignment == 1-element expand.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005005 */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005006 char cant_be_null = 0; /* only bit 0x80 matters */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005007 char *p;
5008
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005009 debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg,
5010 !!(output->o_expflags & EXP_FLAG_SINGLEWORD));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005011 debug_print_list("expand_vars_to_list", output, n);
5012 n = o_save_ptr(output, n);
5013 debug_print_list("expand_vars_to_list[0]", output, n);
5014
5015 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
5016 char first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005017 char *to_be_freed = NULL;
5018 const char *val = NULL;
5019#if ENABLE_HUSH_TICK
5020 o_string subst_result = NULL_O_STRING;
5021#endif
5022#if ENABLE_SH_MATH_SUPPORT
5023 char arith_buf[sizeof(arith_t)*3 + 2];
5024#endif
5025 o_addblock(output, arg, p - arg);
5026 debug_print_list("expand_vars_to_list[1]", output, n);
5027 arg = ++p;
5028 p = strchr(p, SPECIAL_VAR_SYMBOL);
5029
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005030 /* Fetch special var name (if it is indeed one of them)
5031 * and quote bit, force the bit on if singleword expansion -
5032 * important for not getting v=$@ expand to many words. */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005033 first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005034
5035 /* Is this variable quoted and thus expansion can't be null?
5036 * "$@" is special. Even if quoted, it can still
5037 * expand to nothing (not even an empty string),
5038 * thus it is excluded. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005039 if ((first_ch & 0x7f) != '@')
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005040 cant_be_null |= first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005041
5042 switch (first_ch & 0x7f) {
5043 /* Highest bit in first_ch indicates that var is double-quoted */
5044 case '*':
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005045 case '@': {
5046 int i;
5047 if (!G.global_argv[1])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005048 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005049 i = 1;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005050 cant_be_null |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005051 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005052 while (G.global_argv[i]) {
5053 n = expand_on_ifs(output, n, G.global_argv[i]);
5054 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
5055 if (G.global_argv[i++][0] && G.global_argv[i]) {
5056 /* this argv[] is not empty and not last:
5057 * put terminating NUL, start new word */
5058 o_addchr(output, '\0');
5059 debug_print_list("expand_vars_to_list[2]", output, n);
5060 n = o_save_ptr(output, n);
5061 debug_print_list("expand_vars_to_list[3]", output, n);
5062 }
5063 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005064 } else
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005065 /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....'
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005066 * and in this case should treat it like '$*' - see 'else...' below */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005067 if (first_ch == ('@'|0x80) /* quoted $@ */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005068 && !(output->o_expflags & EXP_FLAG_SINGLEWORD) /* not v="$@" case */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005069 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005070 while (1) {
5071 o_addQstr(output, G.global_argv[i]);
5072 if (++i >= G.global_argc)
5073 break;
5074 o_addchr(output, '\0');
5075 debug_print_list("expand_vars_to_list[4]", output, n);
5076 n = o_save_ptr(output, n);
5077 }
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005078 } else { /* quoted $* (or v="$@" case): add as one word */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005079 while (1) {
5080 o_addQstr(output, G.global_argv[i]);
5081 if (!G.global_argv[++i])
5082 break;
5083 if (G.ifs[0])
5084 o_addchr(output, G.ifs[0]);
5085 }
5086 }
5087 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02005088 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005089 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
5090 /* "Empty variable", used to make "" etc to not disappear */
5091 arg++;
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005092 cant_be_null = 0x80;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005093 break;
5094#if ENABLE_HUSH_TICK
5095 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005096 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005097 arg++;
5098 /* Can't just stuff it into output o_string,
5099 * expanded result may need to be globbed
5100 * and $IFS-splitted */
5101 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
5102 G.last_exitcode = process_command_subs(&subst_result, arg);
5103 debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
5104 val = subst_result.data;
5105 goto store_val;
5106#endif
5107#if ENABLE_SH_MATH_SUPPORT
5108 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
5109 arith_t res;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005110
5111 arg++; /* skip '+' */
5112 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
5113 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denys Vlasenko063847d2010-09-15 13:33:02 +02005114 res = expand_and_evaluate_arith(arg, NULL);
Denys Vlasenkobed7c812010-09-16 11:50:46 +02005115 debug_printf_subst("ARITH RES '"ARITH_FMT"'\n", res);
5116 sprintf(arith_buf, ARITH_FMT, res);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005117 val = arith_buf;
5118 break;
5119 }
5120#endif
5121 default:
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005122 val = expand_one_var(&to_be_freed, arg, &p);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005123 IF_HUSH_TICK(store_val:)
5124 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005125 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val,
5126 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005127 if (val && val[0]) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005128 n = expand_on_ifs(output, n, val);
5129 val = NULL;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005130 }
5131 } else { /* quoted $VAR, val will be appended below */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005132 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val,
5133 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005134 }
5135 break;
5136
5137 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
5138
5139 if (val && val[0]) {
5140 o_addQstr(output, val);
5141 }
5142 free(to_be_freed);
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005143
5144 /* Restore NULL'ed SPECIAL_VAR_SYMBOL.
5145 * Do the check to avoid writing to a const string. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005146 if (*p != SPECIAL_VAR_SYMBOL)
5147 *p = SPECIAL_VAR_SYMBOL;
5148
5149#if ENABLE_HUSH_TICK
5150 o_free(&subst_result);
5151#endif
5152 arg = ++p;
5153 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
5154
5155 if (arg[0]) {
5156 debug_print_list("expand_vars_to_list[a]", output, n);
5157 /* this part is literal, and it was already pre-quoted
5158 * if needed (much earlier), do not use o_addQstr here! */
5159 o_addstr_with_NUL(output, arg);
5160 debug_print_list("expand_vars_to_list[b]", output, n);
5161 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
Denys Vlasenkobfc02a72010-09-09 14:38:46 +02005162 && !(cant_be_null & 0x80) /* and all vars were not quoted. */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005163 ) {
5164 n--;
5165 /* allow to reuse list[n] later without re-growth */
5166 output->has_empty_slot = 1;
5167 } else {
5168 o_addchr(output, '\0');
5169 }
5170
5171 return n;
5172}
5173
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005174static char **expand_variables(char **argv, unsigned expflags)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005175{
5176 int n;
5177 char **list;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005178 o_string output = NULL_O_STRING;
5179
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005180 output.o_expflags = expflags;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005181
5182 n = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005183 while (*argv) {
Denys Vlasenko95d48f22010-09-08 13:58:55 +02005184 n = expand_vars_to_list(&output, n, *argv);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005185 argv++;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005186 }
5187 debug_print_list("expand_variables", &output, n);
5188
5189 /* output.data (malloced in one block) gets returned in "list" */
5190 list = o_finalize_list(&output, n);
5191 debug_print_strings("expand_variables[1]", list);
5192 return list;
5193}
5194
5195static char **expand_strvec_to_strvec(char **argv)
5196{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005197 return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005198}
5199
5200#if ENABLE_HUSH_BASH_COMPAT
5201static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
5202{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005203 return expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005204}
5205#endif
5206
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02005207/* Used for expansion of right hand of assignments,
5208 * $((...)), heredocs, variable espansion parts.
5209 *
5210 * NB: should NOT do globbing!
5211 * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*"
5212 */
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005213static char *expand_string_to_string(const char *str, int do_unbackslash)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005214{
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005215#if !ENABLE_HUSH_BASH_COMPAT
5216 const int do_unbackslash = 1;
5217#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005218 char *argv[2], **list;
5219
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005220 debug_printf_expand("string_to_string<='%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005221 /* This is generally an optimization, but it also
5222 * handles "", which otherwise trips over !list[0] check below.
5223 * (is this ever happens that we actually get str="" here?)
5224 */
5225 if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) {
5226 //TODO: Can use on strings with \ too, just unbackslash() them?
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005227 debug_printf_expand("string_to_string(fast)=>'%s'\n", str);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005228 return xstrdup(str);
5229 }
5230
5231 argv[0] = (char*)str;
5232 argv[1] = NULL;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005233 list = expand_variables(argv, do_unbackslash
5234 ? EXP_FLAG_ESC_GLOB_CHARS | EXP_FLAG_SINGLEWORD
5235 : EXP_FLAG_SINGLEWORD
5236 );
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005237 if (HUSH_DEBUG)
5238 if (!list[0] || list[1])
5239 bb_error_msg_and_die("BUG in varexp2");
5240 /* actually, just move string 2*sizeof(char*) bytes back */
5241 overlapping_strcpy((char*)list, list[0]);
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005242 if (do_unbackslash)
5243 unbackslash((char*)list);
5244 debug_printf_expand("string_to_string=>'%s'\n", (char*)list);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005245 return (char*)list;
5246}
5247
5248/* Used for "eval" builtin */
5249static char* expand_strvec_to_string(char **argv)
5250{
5251 char **list;
5252
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005253 list = expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005254 /* Convert all NULs to spaces */
5255 if (list[0]) {
5256 int n = 1;
5257 while (list[n]) {
5258 if (HUSH_DEBUG)
5259 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
5260 bb_error_msg_and_die("BUG in varexp3");
5261 /* bash uses ' ' regardless of $IFS contents */
5262 list[n][-1] = ' ';
5263 n++;
5264 }
5265 }
5266 overlapping_strcpy((char*)list, list[0]);
5267 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
5268 return (char*)list;
5269}
5270
5271static char **expand_assignments(char **argv, int count)
5272{
5273 int i;
5274 char **p;
5275
5276 G.expanded_assignments = p = NULL;
5277 /* Expand assignments into one string each */
5278 for (i = 0; i < count; i++) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005279 G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i], /*unbackslash:*/ 1));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005280 }
5281 G.expanded_assignments = NULL;
5282 return p;
5283}
5284
5285
5286#if BB_MMU
5287/* never called */
5288void re_execute_shell(char ***to_free, const char *s,
5289 char *g_argv0, char **g_argv,
5290 char **builtin_argv) NORETURN;
5291
5292static void reset_traps_to_defaults(void)
5293{
5294 /* This function is always called in a child shell
5295 * after fork (not vfork, NOMMU doesn't use this function).
5296 */
5297 unsigned sig;
5298 unsigned mask;
5299
5300 /* Child shells are not interactive.
5301 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
5302 * Testcase: (while :; do :; done) + ^Z should background.
5303 * Same goes for SIGTERM, SIGHUP, SIGINT.
5304 */
5305 if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS))
5306 return; /* already no traps and no SPECIAL_INTERACTIVE_SIGS */
5307
5308 /* Switching off SPECIAL_INTERACTIVE_SIGS.
5309 * Stupid. It can be done with *single* &= op, but we can't use
5310 * the fact that G.blocked_set is implemented as a bitmask
5311 * in libc... */
5312 mask = (SPECIAL_INTERACTIVE_SIGS >> 1);
5313 sig = 1;
5314 while (1) {
5315 if (mask & 1) {
5316 /* Careful. Only if no trap or trap is not "" */
5317 if (!G.traps || !G.traps[sig] || G.traps[sig][0])
5318 sigdelset(&G.blocked_set, sig);
5319 }
5320 mask >>= 1;
5321 if (!mask)
5322 break;
5323 sig++;
5324 }
5325 /* Our homegrown sig mask is saner to work with :) */
5326 G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS;
5327
5328 /* Resetting all traps to default except empty ones */
5329 mask = G.non_DFL_mask;
5330 if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) {
5331 if (!G.traps[sig] || !G.traps[sig][0])
5332 continue;
5333 free(G.traps[sig]);
5334 G.traps[sig] = NULL;
5335 /* There is no signal for 0 (EXIT) */
5336 if (sig == 0)
5337 continue;
5338 /* There was a trap handler, we just removed it.
5339 * But if sig still has non-DFL handling,
5340 * we should not unblock the sig. */
5341 if (mask & 1)
5342 continue;
5343 sigdelset(&G.blocked_set, sig);
5344 }
5345 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
5346}
5347
5348#else /* !BB_MMU */
5349
5350static void re_execute_shell(char ***to_free, const char *s,
5351 char *g_argv0, char **g_argv,
5352 char **builtin_argv) NORETURN;
5353static void re_execute_shell(char ***to_free, const char *s,
5354 char *g_argv0, char **g_argv,
5355 char **builtin_argv)
5356{
5357# define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
5358 /* delims + 2 * (number of bytes in printed hex numbers) */
5359 char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
5360 char *heredoc_argv[4];
5361 struct variable *cur;
5362# if ENABLE_HUSH_FUNCTIONS
5363 struct function *funcp;
5364# endif
5365 char **argv, **pp;
5366 unsigned cnt;
5367 unsigned long long empty_trap_mask;
5368
5369 if (!g_argv0) { /* heredoc */
5370 argv = heredoc_argv;
5371 argv[0] = (char *) G.argv0_for_re_execing;
5372 argv[1] = (char *) "-<";
5373 argv[2] = (char *) s;
5374 argv[3] = NULL;
5375 pp = &argv[3]; /* used as pointer to empty environment */
5376 goto do_exec;
5377 }
5378
5379 cnt = 0;
5380 pp = builtin_argv;
5381 if (pp) while (*pp++)
5382 cnt++;
5383
5384 empty_trap_mask = 0;
5385 if (G.traps) {
5386 int sig;
5387 for (sig = 1; sig < NSIG; sig++) {
5388 if (G.traps[sig] && !G.traps[sig][0])
5389 empty_trap_mask |= 1LL << sig;
5390 }
5391 }
5392
5393 sprintf(param_buf, NOMMU_HACK_FMT
5394 , (unsigned) G.root_pid
5395 , (unsigned) G.root_ppid
5396 , (unsigned) G.last_bg_pid
5397 , (unsigned) G.last_exitcode
5398 , cnt
5399 , empty_trap_mask
5400 IF_HUSH_LOOPS(, G.depth_of_loop)
5401 );
5402# undef NOMMU_HACK_FMT
5403 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
5404 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
5405 */
5406 cnt += 6;
5407 for (cur = G.top_var; cur; cur = cur->next) {
5408 if (!cur->flg_export || cur->flg_read_only)
5409 cnt += 2;
5410 }
5411# if ENABLE_HUSH_FUNCTIONS
5412 for (funcp = G.top_func; funcp; funcp = funcp->next)
5413 cnt += 3;
5414# endif
5415 pp = g_argv;
5416 while (*pp++)
5417 cnt++;
5418 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
5419 *pp++ = (char *) G.argv0_for_re_execing;
5420 *pp++ = param_buf;
5421 for (cur = G.top_var; cur; cur = cur->next) {
5422 if (strcmp(cur->varstr, hush_version_str) == 0)
5423 continue;
5424 if (cur->flg_read_only) {
5425 *pp++ = (char *) "-R";
5426 *pp++ = cur->varstr;
5427 } else if (!cur->flg_export) {
5428 *pp++ = (char *) "-V";
5429 *pp++ = cur->varstr;
5430 }
5431 }
5432# if ENABLE_HUSH_FUNCTIONS
5433 for (funcp = G.top_func; funcp; funcp = funcp->next) {
5434 *pp++ = (char *) "-F";
5435 *pp++ = funcp->name;
5436 *pp++ = funcp->body_as_string;
5437 }
5438# endif
5439 /* We can pass activated traps here. Say, -Tnn:trap_string
5440 *
5441 * However, POSIX says that subshells reset signals with traps
5442 * to SIG_DFL.
5443 * I tested bash-3.2 and it not only does that with true subshells
5444 * of the form ( list ), but with any forked children shells.
5445 * I set trap "echo W" WINCH; and then tried:
5446 *
5447 * { echo 1; sleep 20; echo 2; } &
5448 * while true; do echo 1; sleep 20; echo 2; break; done &
5449 * true | { echo 1; sleep 20; echo 2; } | cat
5450 *
5451 * In all these cases sending SIGWINCH to the child shell
5452 * did not run the trap. If I add trap "echo V" WINCH;
5453 * _inside_ group (just before echo 1), it works.
5454 *
5455 * I conclude it means we don't need to pass active traps here.
5456 * Even if we would use signal handlers instead of signal masking
5457 * in order to implement trap handling,
5458 * exec syscall below resets signals to SIG_DFL for us.
5459 */
5460 *pp++ = (char *) "-c";
5461 *pp++ = (char *) s;
5462 if (builtin_argv) {
5463 while (*++builtin_argv)
5464 *pp++ = *builtin_argv;
5465 *pp++ = (char *) "";
5466 }
5467 *pp++ = g_argv0;
5468 while (*g_argv)
5469 *pp++ = *g_argv++;
5470 /* *pp = NULL; - is already there */
5471 pp = environ;
5472
5473 do_exec:
5474 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
5475 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
5476 execve(bb_busybox_exec_path, argv, pp);
5477 /* Fallback. Useful for init=/bin/hush usage etc */
5478 if (argv[0][0] == '/')
5479 execve(argv[0], argv, pp);
5480 xfunc_error_retval = 127;
5481 bb_error_msg_and_die("can't re-execute the shell");
5482}
5483#endif /* !BB_MMU */
5484
5485
5486static int run_and_free_list(struct pipe *pi);
5487
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005488/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005489 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
5490 * end_trigger controls how often we stop parsing
5491 * NUL: parse all, execute, return
5492 * ';': parse till ';' or newline, execute, repeat till EOF
5493 */
5494static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005495{
Denys Vlasenko00243b02009-11-16 02:00:03 +01005496 /* Why we need empty flag?
5497 * An obscure corner case "false; ``; echo $?":
5498 * empty command in `` should still set $? to 0.
5499 * But we can't just set $? to 0 at the start,
5500 * this breaks "false; echo `echo $?`" case.
5501 */
5502 bool empty = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005503 while (1) {
5504 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005505
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005506 pipe_list = parse_stream(NULL, inp, end_trigger);
Denys Vlasenko00243b02009-11-16 02:00:03 +01005507 if (!pipe_list) { /* EOF */
5508 if (empty)
5509 G.last_exitcode = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005510 break;
Denys Vlasenko00243b02009-11-16 02:00:03 +01005511 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005512 debug_print_tree(pipe_list, 0);
5513 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
5514 run_and_free_list(pipe_list);
Denys Vlasenko00243b02009-11-16 02:00:03 +01005515 empty = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005516 }
Eric Andersen25f27032001-04-26 23:22:31 +00005517}
5518
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005519static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005520{
5521 struct in_str input;
5522 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005523 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00005524}
5525
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005526static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00005527{
Eric Andersen25f27032001-04-26 23:22:31 +00005528 struct in_str input;
5529 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005530 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00005531}
5532
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005533#if ENABLE_HUSH_TICK
5534static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
5535{
5536 pid_t pid;
5537 int channel[2];
5538# if !BB_MMU
5539 char **to_free = NULL;
5540# endif
5541
5542 xpipe(channel);
5543 pid = BB_MMU ? xfork() : xvfork();
5544 if (pid == 0) { /* child */
5545 disable_restore_tty_pgrp_on_exit();
5546 /* Process substitution is not considered to be usual
5547 * 'command execution'.
5548 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
5549 */
5550 bb_signals(0
5551 + (1 << SIGTSTP)
5552 + (1 << SIGTTIN)
5553 + (1 << SIGTTOU)
5554 , SIG_IGN);
5555 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
5556 close(channel[0]); /* NB: close _first_, then move fd! */
5557 xmove_fd(channel[1], 1);
5558 /* Prevent it from trying to handle ctrl-z etc */
5559 IF_HUSH_JOB(G.run_list_level = 1;)
5560 /* Awful hack for `trap` or $(trap).
5561 *
5562 * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
5563 * contains an example where "trap" is executed in a subshell:
5564 *
5565 * save_traps=$(trap)
5566 * ...
5567 * eval "$save_traps"
5568 *
5569 * Standard does not say that "trap" in subshell shall print
5570 * parent shell's traps. It only says that its output
5571 * must have suitable form, but then, in the above example
5572 * (which is not supposed to be normative), it implies that.
5573 *
5574 * bash (and probably other shell) does implement it
5575 * (traps are reset to defaults, but "trap" still shows them),
5576 * but as a result, "trap" logic is hopelessly messed up:
5577 *
5578 * # trap
5579 * trap -- 'echo Ho' SIGWINCH <--- we have a handler
5580 * # (trap) <--- trap is in subshell - no output (correct, traps are reset)
5581 * # true | trap <--- trap is in subshell - no output (ditto)
5582 * # echo `true | trap` <--- in subshell - output (but traps are reset!)
5583 * trap -- 'echo Ho' SIGWINCH
5584 * # echo `(trap)` <--- in subshell in subshell - output
5585 * trap -- 'echo Ho' SIGWINCH
5586 * # echo `true | (trap)` <--- in subshell in subshell in subshell - output!
5587 * trap -- 'echo Ho' SIGWINCH
5588 *
5589 * The rules when to forget and when to not forget traps
5590 * get really complex and nonsensical.
5591 *
5592 * Our solution: ONLY bare $(trap) or `trap` is special.
5593 */
5594 s = skip_whitespace(s);
5595 if (strncmp(s, "trap", 4) == 0
5596 && skip_whitespace(s + 4)[0] == '\0'
5597 ) {
5598 static const char *const argv[] = { NULL, NULL };
5599 builtin_trap((char**)argv);
5600 exit(0); /* not _exit() - we need to fflush */
5601 }
5602# if BB_MMU
5603 reset_traps_to_defaults();
5604 parse_and_run_string(s);
5605 _exit(G.last_exitcode);
5606# else
5607 /* We re-execute after vfork on NOMMU. This makes this script safe:
5608 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
5609 * huge=`cat BIG` # was blocking here forever
5610 * echo OK
5611 */
5612 re_execute_shell(&to_free,
5613 s,
5614 G.global_argv[0],
5615 G.global_argv + 1,
5616 NULL);
5617# endif
5618 }
5619
5620 /* parent */
5621 *pid_p = pid;
5622# if ENABLE_HUSH_FAST
5623 G.count_SIGCHLD++;
5624//bb_error_msg("[%d] fork in generate_stream_from_string:"
5625// " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d",
5626// getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
5627# endif
5628 enable_restore_tty_pgrp_on_exit();
5629# if !BB_MMU
5630 free(to_free);
5631# endif
5632 close(channel[1]);
5633 close_on_exec_on(channel[0]);
5634 return xfdopen_for_read(channel[0]);
5635}
5636
5637/* Return code is exit status of the process that is run. */
5638static int process_command_subs(o_string *dest, const char *s)
5639{
5640 FILE *fp;
5641 struct in_str pipe_str;
5642 pid_t pid;
5643 int status, ch, eol_cnt;
5644
5645 fp = generate_stream_from_string(s, &pid);
5646
5647 /* Now send results of command back into original context */
5648 setup_file_in_str(&pipe_str, fp);
5649 eol_cnt = 0;
5650 while ((ch = i_getch(&pipe_str)) != EOF) {
5651 if (ch == '\n') {
5652 eol_cnt++;
5653 continue;
5654 }
5655 while (eol_cnt) {
5656 o_addchr(dest, '\n');
5657 eol_cnt--;
5658 }
5659 o_addQchr(dest, ch);
5660 }
5661
5662 debug_printf("done reading from `cmd` pipe, closing it\n");
5663 fclose(fp);
5664 /* We need to extract exitcode. Test case
5665 * "true; echo `sleep 1; false` $?"
5666 * should print 1 */
5667 safe_waitpid(pid, &status, 0);
5668 debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
5669 return WEXITSTATUS(status);
5670}
5671#endif /* ENABLE_HUSH_TICK */
5672
5673
5674static void setup_heredoc(struct redir_struct *redir)
5675{
5676 struct fd_pair pair;
5677 pid_t pid;
5678 int len, written;
5679 /* the _body_ of heredoc (misleading field name) */
5680 const char *heredoc = redir->rd_filename;
5681 char *expanded;
5682#if !BB_MMU
5683 char **to_free;
5684#endif
5685
5686 expanded = NULL;
5687 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
Denys Vlasenkod98e5c62010-09-10 10:44:23 +02005688 expanded = encode_then_expand_string(heredoc, /*process_bkslash:*/ 1, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005689 if (expanded)
5690 heredoc = expanded;
5691 }
5692 len = strlen(heredoc);
5693
5694 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
5695 xpiped_pair(pair);
5696 xmove_fd(pair.rd, redir->rd_fd);
5697
5698 /* Try writing without forking. Newer kernels have
5699 * dynamically growing pipes. Must use non-blocking write! */
5700 ndelay_on(pair.wr);
5701 while (1) {
5702 written = write(pair.wr, heredoc, len);
5703 if (written <= 0)
5704 break;
5705 len -= written;
5706 if (len == 0) {
5707 close(pair.wr);
5708 free(expanded);
5709 return;
5710 }
5711 heredoc += written;
5712 }
5713 ndelay_off(pair.wr);
5714
5715 /* Okay, pipe buffer was not big enough */
5716 /* Note: we must not create a stray child (bastard? :)
5717 * for the unsuspecting parent process. Child creates a grandchild
5718 * and exits before parent execs the process which consumes heredoc
5719 * (that exec happens after we return from this function) */
5720#if !BB_MMU
5721 to_free = NULL;
5722#endif
5723 pid = xvfork();
5724 if (pid == 0) {
5725 /* child */
5726 disable_restore_tty_pgrp_on_exit();
5727 pid = BB_MMU ? xfork() : xvfork();
5728 if (pid != 0)
5729 _exit(0);
5730 /* grandchild */
5731 close(redir->rd_fd); /* read side of the pipe */
5732#if BB_MMU
5733 full_write(pair.wr, heredoc, len); /* may loop or block */
5734 _exit(0);
5735#else
5736 /* Delegate blocking writes to another process */
5737 xmove_fd(pair.wr, STDOUT_FILENO);
5738 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
5739#endif
5740 }
5741 /* parent */
5742#if ENABLE_HUSH_FAST
5743 G.count_SIGCHLD++;
5744//bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
5745#endif
5746 enable_restore_tty_pgrp_on_exit();
5747#if !BB_MMU
5748 free(to_free);
5749#endif
5750 close(pair.wr);
5751 free(expanded);
5752 wait(NULL); /* wait till child has died */
5753}
5754
5755/* squirrel != NULL means we squirrel away copies of stdin, stdout,
5756 * and stderr if they are redirected. */
5757static int setup_redirects(struct command *prog, int squirrel[])
5758{
5759 int openfd, mode;
5760 struct redir_struct *redir;
5761
5762 for (redir = prog->redirects; redir; redir = redir->next) {
5763 if (redir->rd_type == REDIRECT_HEREDOC2) {
5764 /* rd_fd<<HERE case */
5765 if (squirrel && redir->rd_fd < 3
5766 && squirrel[redir->rd_fd] < 0
5767 ) {
5768 squirrel[redir->rd_fd] = dup(redir->rd_fd);
5769 }
5770 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
5771 * of the heredoc */
5772 debug_printf_parse("set heredoc '%s'\n",
5773 redir->rd_filename);
5774 setup_heredoc(redir);
5775 continue;
5776 }
5777
5778 if (redir->rd_dup == REDIRFD_TO_FILE) {
5779 /* rd_fd<*>file case (<*> is <,>,>>,<>) */
5780 char *p;
5781 if (redir->rd_filename == NULL) {
5782 /* Something went wrong in the parse.
5783 * Pretend it didn't happen */
5784 bb_error_msg("bug in redirect parse");
5785 continue;
5786 }
5787 mode = redir_table[redir->rd_type].mode;
Denys Vlasenkoebee4102010-09-10 10:17:53 +02005788 p = expand_string_to_string(redir->rd_filename, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005789 openfd = open_or_warn(p, mode);
5790 free(p);
5791 if (openfd < 0) {
5792 /* this could get lost if stderr has been redirected, but
5793 * bash and ash both lose it as well (though zsh doesn't!) */
5794//what the above comment tries to say?
5795 return 1;
5796 }
5797 } else {
5798 /* rd_fd<*>rd_dup or rd_fd<*>- cases */
5799 openfd = redir->rd_dup;
5800 }
5801
5802 if (openfd != redir->rd_fd) {
5803 if (squirrel && redir->rd_fd < 3
5804 && squirrel[redir->rd_fd] < 0
5805 ) {
5806 squirrel[redir->rd_fd] = dup(redir->rd_fd);
5807 }
5808 if (openfd == REDIRFD_CLOSE) {
5809 /* "n>-" means "close me" */
5810 close(redir->rd_fd);
5811 } else {
5812 xdup2(openfd, redir->rd_fd);
5813 if (redir->rd_dup == REDIRFD_TO_FILE)
5814 close(openfd);
5815 }
5816 }
5817 }
5818 return 0;
5819}
5820
5821static void restore_redirects(int squirrel[])
5822{
5823 int i, fd;
5824 for (i = 0; i < 3; i++) {
5825 fd = squirrel[i];
5826 if (fd != -1) {
5827 /* We simply die on error */
5828 xmove_fd(fd, i);
5829 }
5830 }
5831}
5832
5833static char *find_in_path(const char *arg)
5834{
5835 char *ret = NULL;
5836 const char *PATH = get_local_var_value("PATH");
5837
5838 if (!PATH)
5839 return NULL;
5840
5841 while (1) {
5842 const char *end = strchrnul(PATH, ':');
5843 int sz = end - PATH; /* must be int! */
5844
5845 free(ret);
5846 if (sz != 0) {
5847 ret = xasprintf("%.*s/%s", sz, PATH, arg);
5848 } else {
5849 /* We have xxx::yyyy in $PATH,
5850 * it means "use current dir" */
5851 ret = xstrdup(arg);
5852 }
5853 if (access(ret, F_OK) == 0)
5854 break;
5855
5856 if (*end == '\0') {
5857 free(ret);
5858 return NULL;
5859 }
5860 PATH = end + 1;
5861 }
5862
5863 return ret;
5864}
5865
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005866static const struct built_in_command *find_builtin_helper(const char *name,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005867 const struct built_in_command *x,
5868 const struct built_in_command *end)
5869{
5870 while (x != end) {
5871 if (strcmp(name, x->b_cmd) != 0) {
5872 x++;
5873 continue;
5874 }
5875 debug_printf_exec("found builtin '%s'\n", name);
5876 return x;
5877 }
5878 return NULL;
5879}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005880static const struct built_in_command *find_builtin1(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005881{
5882 return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
5883}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005884static const struct built_in_command *find_builtin(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005885{
5886 const struct built_in_command *x = find_builtin1(name);
5887 if (x)
5888 return x;
5889 return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
5890}
5891
5892#if ENABLE_HUSH_FUNCTIONS
5893static struct function **find_function_slot(const char *name)
5894{
5895 struct function **funcpp = &G.top_func;
5896 while (*funcpp) {
5897 if (strcmp(name, (*funcpp)->name) == 0) {
5898 break;
5899 }
5900 funcpp = &(*funcpp)->next;
5901 }
5902 return funcpp;
5903}
5904
5905static const struct function *find_function(const char *name)
5906{
5907 const struct function *funcp = *find_function_slot(name);
5908 if (funcp)
5909 debug_printf_exec("found function '%s'\n", name);
5910 return funcp;
5911}
5912
5913/* Note: takes ownership on name ptr */
5914static struct function *new_function(char *name)
5915{
5916 struct function **funcpp = find_function_slot(name);
5917 struct function *funcp = *funcpp;
5918
5919 if (funcp != NULL) {
5920 struct command *cmd = funcp->parent_cmd;
5921 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
5922 if (!cmd) {
5923 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
5924 free(funcp->name);
5925 /* Note: if !funcp->body, do not free body_as_string!
5926 * This is a special case of "-F name body" function:
5927 * body_as_string was not malloced! */
5928 if (funcp->body) {
5929 free_pipe_list(funcp->body);
5930# if !BB_MMU
5931 free(funcp->body_as_string);
5932# endif
5933 }
5934 } else {
5935 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
5936 cmd->argv[0] = funcp->name;
5937 cmd->group = funcp->body;
5938# if !BB_MMU
5939 cmd->group_as_string = funcp->body_as_string;
5940# endif
5941 }
5942 } else {
5943 debug_printf_exec("remembering new function '%s'\n", name);
5944 funcp = *funcpp = xzalloc(sizeof(*funcp));
5945 /*funcp->next = NULL;*/
5946 }
5947
5948 funcp->name = name;
5949 return funcp;
5950}
5951
5952static void unset_func(const char *name)
5953{
5954 struct function **funcpp = find_function_slot(name);
5955 struct function *funcp = *funcpp;
5956
5957 if (funcp != NULL) {
5958 debug_printf_exec("freeing function '%s'\n", funcp->name);
5959 *funcpp = funcp->next;
5960 /* funcp is unlinked now, deleting it.
5961 * Note: if !funcp->body, the function was created by
5962 * "-F name body", do not free ->body_as_string
5963 * and ->name as they were not malloced. */
5964 if (funcp->body) {
5965 free_pipe_list(funcp->body);
5966 free(funcp->name);
5967# if !BB_MMU
5968 free(funcp->body_as_string);
5969# endif
5970 }
5971 free(funcp);
5972 }
5973}
5974
5975# if BB_MMU
5976#define exec_function(to_free, funcp, argv) \
5977 exec_function(funcp, argv)
5978# endif
5979static void exec_function(char ***to_free,
5980 const struct function *funcp,
5981 char **argv) NORETURN;
5982static void exec_function(char ***to_free,
5983 const struct function *funcp,
5984 char **argv)
5985{
5986# if BB_MMU
5987 int n = 1;
5988
5989 argv[0] = G.global_argv[0];
5990 G.global_argv = argv;
5991 while (*++argv)
5992 n++;
5993 G.global_argc = n;
5994 /* On MMU, funcp->body is always non-NULL */
5995 n = run_list(funcp->body);
5996 fflush_all();
5997 _exit(n);
5998# else
5999 re_execute_shell(to_free,
6000 funcp->body_as_string,
6001 G.global_argv[0],
6002 argv + 1,
6003 NULL);
6004# endif
6005}
6006
6007static int run_function(const struct function *funcp, char **argv)
6008{
6009 int rc;
6010 save_arg_t sv;
6011 smallint sv_flg;
6012
6013 save_and_replace_G_args(&sv, argv);
6014
6015 /* "we are in function, ok to use return" */
6016 sv_flg = G.flag_return_in_progress;
6017 G.flag_return_in_progress = -1;
6018# if ENABLE_HUSH_LOCAL
6019 G.func_nest_level++;
6020# endif
6021
6022 /* On MMU, funcp->body is always non-NULL */
6023# if !BB_MMU
6024 if (!funcp->body) {
6025 /* Function defined by -F */
6026 parse_and_run_string(funcp->body_as_string);
6027 rc = G.last_exitcode;
6028 } else
6029# endif
6030 {
6031 rc = run_list(funcp->body);
6032 }
6033
6034# if ENABLE_HUSH_LOCAL
6035 {
6036 struct variable *var;
6037 struct variable **var_pp;
6038
6039 var_pp = &G.top_var;
6040 while ((var = *var_pp) != NULL) {
6041 if (var->func_nest_level < G.func_nest_level) {
6042 var_pp = &var->next;
6043 continue;
6044 }
6045 /* Unexport */
6046 if (var->flg_export)
6047 bb_unsetenv(var->varstr);
6048 /* Remove from global list */
6049 *var_pp = var->next;
6050 /* Free */
6051 if (!var->max_len)
6052 free(var->varstr);
6053 free(var);
6054 }
6055 G.func_nest_level--;
6056 }
6057# endif
6058 G.flag_return_in_progress = sv_flg;
6059
6060 restore_G_args(&sv, argv);
6061
6062 return rc;
6063}
6064#endif /* ENABLE_HUSH_FUNCTIONS */
6065
6066
6067#if BB_MMU
6068#define exec_builtin(to_free, x, argv) \
6069 exec_builtin(x, argv)
6070#else
6071#define exec_builtin(to_free, x, argv) \
6072 exec_builtin(to_free, argv)
6073#endif
6074static void exec_builtin(char ***to_free,
6075 const struct built_in_command *x,
6076 char **argv) NORETURN;
6077static void exec_builtin(char ***to_free,
6078 const struct built_in_command *x,
6079 char **argv)
6080{
6081#if BB_MMU
6082 int rcode = x->b_function(argv);
6083 fflush_all();
6084 _exit(rcode);
6085#else
6086 /* On NOMMU, we must never block!
6087 * Example: { sleep 99 | read line; } & echo Ok
6088 */
6089 re_execute_shell(to_free,
6090 argv[0],
6091 G.global_argv[0],
6092 G.global_argv + 1,
6093 argv);
6094#endif
6095}
6096
6097
6098static void execvp_or_die(char **argv) NORETURN;
6099static void execvp_or_die(char **argv)
6100{
6101 debug_printf_exec("execing '%s'\n", argv[0]);
6102 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
6103 execvp(argv[0], argv);
6104 bb_perror_msg("can't execute '%s'", argv[0]);
6105 _exit(127); /* bash compat */
6106}
6107
6108#if ENABLE_HUSH_MODE_X
6109static void dump_cmd_in_x_mode(char **argv)
6110{
6111 if (G_x_mode && argv) {
6112 /* We want to output the line in one write op */
6113 char *buf, *p;
6114 int len;
6115 int n;
6116
6117 len = 3;
6118 n = 0;
6119 while (argv[n])
6120 len += strlen(argv[n++]) + 1;
6121 buf = xmalloc(len);
6122 buf[0] = '+';
6123 p = buf + 1;
6124 n = 0;
6125 while (argv[n])
6126 p += sprintf(p, " %s", argv[n++]);
6127 *p++ = '\n';
6128 *p = '\0';
6129 fputs(buf, stderr);
6130 free(buf);
6131 }
6132}
6133#else
6134# define dump_cmd_in_x_mode(argv) ((void)0)
6135#endif
6136
6137#if BB_MMU
6138#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
6139 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
6140#define pseudo_exec(nommu_save, command, argv_expanded) \
6141 pseudo_exec(command, argv_expanded)
6142#endif
6143
6144/* Called after [v]fork() in run_pipe, or from builtin_exec.
6145 * Never returns.
6146 * Don't exit() here. If you don't exec, use _exit instead.
6147 * The at_exit handlers apparently confuse the calling process,
6148 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
6149static void pseudo_exec_argv(nommu_save_t *nommu_save,
6150 char **argv, int assignment_cnt,
6151 char **argv_expanded) NORETURN;
6152static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
6153 char **argv, int assignment_cnt,
6154 char **argv_expanded)
6155{
6156 char **new_env;
6157
6158 new_env = expand_assignments(argv, assignment_cnt);
6159 dump_cmd_in_x_mode(new_env);
6160
6161 if (!argv[assignment_cnt]) {
6162 /* Case when we are here: ... | var=val | ...
6163 * (note that we do not exit early, i.e., do not optimize out
6164 * expand_assignments(): think about ... | var=`sleep 1` | ...
6165 */
6166 free_strings(new_env);
6167 _exit(EXIT_SUCCESS);
6168 }
6169
6170#if BB_MMU
6171 set_vars_and_save_old(new_env);
6172 free(new_env); /* optional */
6173 /* we can also destroy set_vars_and_save_old's return value,
6174 * to save memory */
6175#else
6176 nommu_save->new_env = new_env;
6177 nommu_save->old_vars = set_vars_and_save_old(new_env);
6178#endif
6179
6180 if (argv_expanded) {
6181 argv = argv_expanded;
6182 } else {
6183 argv = expand_strvec_to_strvec(argv + assignment_cnt);
6184#if !BB_MMU
6185 nommu_save->argv = argv;
6186#endif
6187 }
6188 dump_cmd_in_x_mode(argv);
6189
6190#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
6191 if (strchr(argv[0], '/') != NULL)
6192 goto skip;
6193#endif
6194
6195 /* Check if the command matches any of the builtins.
6196 * Depending on context, this might be redundant. But it's
6197 * easier to waste a few CPU cycles than it is to figure out
6198 * if this is one of those cases.
6199 */
6200 {
6201 /* On NOMMU, it is more expensive to re-execute shell
6202 * just in order to run echo or test builtin.
6203 * It's better to skip it here and run corresponding
6204 * non-builtin later. */
6205 const struct built_in_command *x;
6206 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
6207 if (x) {
6208 exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
6209 }
6210 }
6211#if ENABLE_HUSH_FUNCTIONS
6212 /* Check if the command matches any functions */
6213 {
6214 const struct function *funcp = find_function(argv[0]);
6215 if (funcp) {
6216 exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
6217 }
6218 }
6219#endif
6220
6221#if ENABLE_FEATURE_SH_STANDALONE
6222 /* Check if the command matches any busybox applets */
6223 {
6224 int a = find_applet_by_name(argv[0]);
6225 if (a >= 0) {
6226# if BB_MMU /* see above why on NOMMU it is not allowed */
6227 if (APPLET_IS_NOEXEC(a)) {
6228 debug_printf_exec("running applet '%s'\n", argv[0]);
6229 run_applet_no_and_exit(a, argv);
6230 }
6231# endif
6232 /* Re-exec ourselves */
6233 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
6234 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
6235 execv(bb_busybox_exec_path, argv);
6236 /* If they called chroot or otherwise made the binary no longer
6237 * executable, fall through */
6238 }
6239 }
6240#endif
6241
6242#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
6243 skip:
6244#endif
6245 execvp_or_die(argv);
6246}
6247
6248/* Called after [v]fork() in run_pipe
6249 */
6250static void pseudo_exec(nommu_save_t *nommu_save,
6251 struct command *command,
6252 char **argv_expanded) NORETURN;
6253static void pseudo_exec(nommu_save_t *nommu_save,
6254 struct command *command,
6255 char **argv_expanded)
6256{
6257 if (command->argv) {
6258 pseudo_exec_argv(nommu_save, command->argv,
6259 command->assignment_cnt, argv_expanded);
6260 }
6261
6262 if (command->group) {
6263 /* Cases when we are here:
6264 * ( list )
6265 * { list } &
6266 * ... | ( list ) | ...
6267 * ... | { list } | ...
6268 */
6269#if BB_MMU
6270 int rcode;
6271 debug_printf_exec("pseudo_exec: run_list\n");
6272 reset_traps_to_defaults();
6273 rcode = run_list(command->group);
6274 /* OK to leak memory by not calling free_pipe_list,
6275 * since this process is about to exit */
6276 _exit(rcode);
6277#else
6278 re_execute_shell(&nommu_save->argv_from_re_execing,
6279 command->group_as_string,
6280 G.global_argv[0],
6281 G.global_argv + 1,
6282 NULL);
6283#endif
6284 }
6285
6286 /* Case when we are here: ... | >file */
6287 debug_printf_exec("pseudo_exec'ed null command\n");
6288 _exit(EXIT_SUCCESS);
6289}
6290
6291#if ENABLE_HUSH_JOB
6292static const char *get_cmdtext(struct pipe *pi)
6293{
6294 char **argv;
6295 char *p;
6296 int len;
6297
6298 /* This is subtle. ->cmdtext is created only on first backgrounding.
6299 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
6300 * On subsequent bg argv is trashed, but we won't use it */
6301 if (pi->cmdtext)
6302 return pi->cmdtext;
6303 argv = pi->cmds[0].argv;
6304 if (!argv || !argv[0]) {
6305 pi->cmdtext = xzalloc(1);
6306 return pi->cmdtext;
6307 }
6308
6309 len = 0;
6310 do {
6311 len += strlen(*argv) + 1;
6312 } while (*++argv);
6313 p = xmalloc(len);
6314 pi->cmdtext = p;
6315 argv = pi->cmds[0].argv;
6316 do {
6317 len = strlen(*argv);
6318 memcpy(p, *argv, len);
6319 p += len;
6320 *p++ = ' ';
6321 } while (*++argv);
6322 p[-1] = '\0';
6323 return pi->cmdtext;
6324}
6325
6326static void insert_bg_job(struct pipe *pi)
6327{
6328 struct pipe *job, **jobp;
6329 int i;
6330
6331 /* Linear search for the ID of the job to use */
6332 pi->jobid = 1;
6333 for (job = G.job_list; job; job = job->next)
6334 if (job->jobid >= pi->jobid)
6335 pi->jobid = job->jobid + 1;
6336
6337 /* Add job to the list of running jobs */
6338 jobp = &G.job_list;
6339 while ((job = *jobp) != NULL)
6340 jobp = &job->next;
6341 job = *jobp = xmalloc(sizeof(*job));
6342
6343 *job = *pi; /* physical copy */
6344 job->next = NULL;
6345 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
6346 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
6347 for (i = 0; i < pi->num_cmds; i++) {
6348 job->cmds[i].pid = pi->cmds[i].pid;
6349 /* all other fields are not used and stay zero */
6350 }
6351 job->cmdtext = xstrdup(get_cmdtext(pi));
6352
6353 if (G_interactive_fd)
6354 printf("[%d] %d %s\n", job->jobid, job->cmds[0].pid, job->cmdtext);
6355 G.last_jobid = job->jobid;
6356}
6357
6358static void remove_bg_job(struct pipe *pi)
6359{
6360 struct pipe *prev_pipe;
6361
6362 if (pi == G.job_list) {
6363 G.job_list = pi->next;
6364 } else {
6365 prev_pipe = G.job_list;
6366 while (prev_pipe->next != pi)
6367 prev_pipe = prev_pipe->next;
6368 prev_pipe->next = pi->next;
6369 }
6370 if (G.job_list)
6371 G.last_jobid = G.job_list->jobid;
6372 else
6373 G.last_jobid = 0;
6374}
6375
6376/* Remove a backgrounded job */
6377static void delete_finished_bg_job(struct pipe *pi)
6378{
6379 remove_bg_job(pi);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006380 free_pipe(pi);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006381}
6382#endif /* JOB */
6383
6384/* Check to see if any processes have exited -- if they
6385 * have, figure out why and see if a job has completed */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02006386static int checkjobs(struct pipe *fg_pipe)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006387{
6388 int attributes;
6389 int status;
6390#if ENABLE_HUSH_JOB
6391 struct pipe *pi;
6392#endif
6393 pid_t childpid;
6394 int rcode = 0;
6395
6396 debug_printf_jobs("checkjobs %p\n", fg_pipe);
6397
6398 attributes = WUNTRACED;
6399 if (fg_pipe == NULL)
6400 attributes |= WNOHANG;
6401
6402 errno = 0;
6403#if ENABLE_HUSH_FAST
6404 if (G.handled_SIGCHLD == G.count_SIGCHLD) {
6405//bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
6406//getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
6407 /* There was neither fork nor SIGCHLD since last waitpid */
6408 /* Avoid doing waitpid syscall if possible */
6409 if (!G.we_have_children) {
6410 errno = ECHILD;
6411 return -1;
6412 }
6413 if (fg_pipe == NULL) { /* is WNOHANG set? */
6414 /* We have children, but they did not exit
6415 * or stop yet (we saw no SIGCHLD) */
6416 return 0;
6417 }
6418 /* else: !WNOHANG, waitpid will block, can't short-circuit */
6419 }
6420#endif
6421
6422/* Do we do this right?
6423 * bash-3.00# sleep 20 | false
6424 * <ctrl-Z pressed>
6425 * [3]+ Stopped sleep 20 | false
6426 * bash-3.00# echo $?
6427 * 1 <========== bg pipe is not fully done, but exitcode is already known!
6428 * [hush 1.14.0: yes we do it right]
6429 */
6430 wait_more:
6431 while (1) {
6432 int i;
6433 int dead;
6434
6435#if ENABLE_HUSH_FAST
6436 i = G.count_SIGCHLD;
6437#endif
6438 childpid = waitpid(-1, &status, attributes);
6439 if (childpid <= 0) {
6440 if (childpid && errno != ECHILD)
6441 bb_perror_msg("waitpid");
6442#if ENABLE_HUSH_FAST
6443 else { /* Until next SIGCHLD, waitpid's are useless */
6444 G.we_have_children = (childpid == 0);
6445 G.handled_SIGCHLD = i;
6446//bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6447 }
6448#endif
6449 break;
6450 }
6451 dead = WIFEXITED(status) || WIFSIGNALED(status);
6452
6453#if DEBUG_JOBS
6454 if (WIFSTOPPED(status))
6455 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
6456 childpid, WSTOPSIG(status), WEXITSTATUS(status));
6457 if (WIFSIGNALED(status))
6458 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
6459 childpid, WTERMSIG(status), WEXITSTATUS(status));
6460 if (WIFEXITED(status))
6461 debug_printf_jobs("pid %d exited, exitcode %d\n",
6462 childpid, WEXITSTATUS(status));
6463#endif
6464 /* Were we asked to wait for fg pipe? */
6465 if (fg_pipe) {
Denys Vlasenkoc08c3f52010-11-14 01:59:55 +01006466 i = fg_pipe->num_cmds;
6467 while (--i >= 0) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006468 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
6469 if (fg_pipe->cmds[i].pid != childpid)
6470 continue;
6471 if (dead) {
Denys Vlasenko6696eac2010-11-14 02:01:50 +01006472 int ex;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006473 fg_pipe->cmds[i].pid = 0;
6474 fg_pipe->alive_cmds--;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01006475 ex = WEXITSTATUS(status);
6476 /* bash prints killer signal's name for *last*
6477 * process in pipe (prints just newline for SIGINT).
6478 * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
6479 */
6480 if (WIFSIGNALED(status)) {
6481 int sig = WTERMSIG(status);
6482 if (i == fg_pipe->num_cmds-1)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006483 printf("%s\n", sig == SIGINT ? "" : get_signame(sig));
Denys Vlasenko6696eac2010-11-14 02:01:50 +01006484 /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
6485 * Maybe we need to use sig | 128? */
6486 ex = sig + 128;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006487 }
Denys Vlasenko6696eac2010-11-14 02:01:50 +01006488 fg_pipe->cmds[i].cmd_exitcode = ex;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006489 } else {
6490 fg_pipe->cmds[i].is_stopped = 1;
6491 fg_pipe->stopped_cmds++;
6492 }
6493 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
6494 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
Denys Vlasenkoc08c3f52010-11-14 01:59:55 +01006495 if (fg_pipe->alive_cmds == fg_pipe->stopped_cmds) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006496 /* All processes in fg pipe have exited or stopped */
Denys Vlasenko6696eac2010-11-14 02:01:50 +01006497 i = fg_pipe->num_cmds;
6498 while (--i >= 0) {
6499 rcode = fg_pipe->cmds[i].cmd_exitcode;
6500 /* usually last process gives overall exitstatus,
6501 * but with "set -o pipefail", last *failed* process does */
6502 if (G.o_opt[OPT_O_PIPEFAIL] == 0 || rcode != 0)
6503 break;
6504 }
6505 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006506/* Note: *non-interactive* bash does not continue if all processes in fg pipe
6507 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
6508 * and "killall -STOP cat" */
6509 if (G_interactive_fd) {
6510#if ENABLE_HUSH_JOB
Denys Vlasenkoc08c3f52010-11-14 01:59:55 +01006511 if (fg_pipe->alive_cmds != 0)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006512 insert_bg_job(fg_pipe);
6513#endif
6514 return rcode;
6515 }
Denys Vlasenkoc08c3f52010-11-14 01:59:55 +01006516 if (fg_pipe->alive_cmds == 0)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006517 return rcode;
6518 }
6519 /* There are still running processes in the fg pipe */
6520 goto wait_more; /* do waitpid again */
6521 }
6522 /* it wasnt fg_pipe, look for process in bg pipes */
6523 }
6524
6525#if ENABLE_HUSH_JOB
6526 /* We asked to wait for bg or orphaned children */
6527 /* No need to remember exitcode in this case */
6528 for (pi = G.job_list; pi; pi = pi->next) {
6529 for (i = 0; i < pi->num_cmds; i++) {
6530 if (pi->cmds[i].pid == childpid)
6531 goto found_pi_and_prognum;
6532 }
6533 }
6534 /* Happens when shell is used as init process (init=/bin/sh) */
6535 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
6536 continue; /* do waitpid again */
6537
6538 found_pi_and_prognum:
6539 if (dead) {
6540 /* child exited */
6541 pi->cmds[i].pid = 0;
6542 pi->alive_cmds--;
6543 if (!pi->alive_cmds) {
6544 if (G_interactive_fd)
6545 printf(JOB_STATUS_FORMAT, pi->jobid,
6546 "Done", pi->cmdtext);
6547 delete_finished_bg_job(pi);
6548 }
6549 } else {
6550 /* child stopped */
6551 pi->cmds[i].is_stopped = 1;
6552 pi->stopped_cmds++;
6553 }
6554#endif
6555 } /* while (waitpid succeeds)... */
6556
6557 return rcode;
6558}
6559
6560#if ENABLE_HUSH_JOB
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006561static int checkjobs_and_fg_shell(struct pipe *fg_pipe)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006562{
6563 pid_t p;
6564 int rcode = checkjobs(fg_pipe);
6565 if (G_saved_tty_pgrp) {
6566 /* Job finished, move the shell to the foreground */
6567 p = getpgrp(); /* our process group id */
6568 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
6569 tcsetpgrp(G_interactive_fd, p);
6570 }
6571 return rcode;
6572}
6573#endif
6574
6575/* Start all the jobs, but don't wait for anything to finish.
6576 * See checkjobs().
6577 *
6578 * Return code is normally -1, when the caller has to wait for children
6579 * to finish to determine the exit status of the pipe. If the pipe
6580 * is a simple builtin command, however, the action is done by the
6581 * time run_pipe returns, and the exit code is provided as the
6582 * return value.
6583 *
6584 * Returns -1 only if started some children. IOW: we have to
6585 * mask out retvals of builtins etc with 0xff!
6586 *
6587 * The only case when we do not need to [v]fork is when the pipe
6588 * is single, non-backgrounded, non-subshell command. Examples:
6589 * cmd ; ... { list } ; ...
6590 * cmd && ... { list } && ...
6591 * cmd || ... { list } || ...
6592 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
6593 * or (if SH_STANDALONE) an applet, and we can run the { list }
6594 * with run_list. If it isn't one of these, we fork and exec cmd.
6595 *
6596 * Cases when we must fork:
6597 * non-single: cmd | cmd
6598 * backgrounded: cmd & { list } &
6599 * subshell: ( list ) [&]
6600 */
6601#if !ENABLE_HUSH_MODE_X
Denys Vlasenko26777aa2010-11-22 23:49:10 +01006602#define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, argv_expanded) \
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006603 redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel)
6604#endif
6605static int redirect_and_varexp_helper(char ***new_env_p,
6606 struct variable **old_vars_p,
6607 struct command *command,
6608 int squirrel[3],
6609 char **argv_expanded)
6610{
6611 /* setup_redirects acts on file descriptors, not FILEs.
6612 * This is perfect for work that comes after exec().
6613 * Is it really safe for inline use? Experimentally,
6614 * things seem to work. */
6615 int rcode = setup_redirects(command, squirrel);
6616 if (rcode == 0) {
6617 char **new_env = expand_assignments(command->argv, command->assignment_cnt);
6618 *new_env_p = new_env;
6619 dump_cmd_in_x_mode(new_env);
6620 dump_cmd_in_x_mode(argv_expanded);
6621 if (old_vars_p)
6622 *old_vars_p = set_vars_and_save_old(new_env);
6623 }
6624 return rcode;
6625}
6626static NOINLINE int run_pipe(struct pipe *pi)
6627{
6628 static const char *const null_ptr = NULL;
6629
6630 int cmd_no;
6631 int next_infd;
6632 struct command *command;
6633 char **argv_expanded;
6634 char **argv;
6635 /* it is not always needed, but we aim to smaller code */
6636 int squirrel[] = { -1, -1, -1 };
6637 int rcode;
6638
6639 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
6640 debug_enter();
6641
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02006642 /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*"
6643 * Result should be 3 lines: q w e, qwe, q w e
6644 */
6645 G.ifs = get_local_var_value("IFS");
6646 if (!G.ifs)
6647 G.ifs = defifs;
6648
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006649 IF_HUSH_JOB(pi->pgrp = -1;)
6650 pi->stopped_cmds = 0;
6651 command = &pi->cmds[0];
6652 argv_expanded = NULL;
6653
6654 if (pi->num_cmds != 1
6655 || pi->followup == PIPE_BG
6656 || command->cmd_type == CMD_SUBSHELL
6657 ) {
6658 goto must_fork;
6659 }
6660
6661 pi->alive_cmds = 1;
6662
6663 debug_printf_exec(": group:%p argv:'%s'\n",
6664 command->group, command->argv ? command->argv[0] : "NONE");
6665
6666 if (command->group) {
6667#if ENABLE_HUSH_FUNCTIONS
6668 if (command->cmd_type == CMD_FUNCDEF) {
6669 /* "executing" func () { list } */
6670 struct function *funcp;
6671
6672 funcp = new_function(command->argv[0]);
6673 /* funcp->name is already set to argv[0] */
6674 funcp->body = command->group;
6675# if !BB_MMU
6676 funcp->body_as_string = command->group_as_string;
6677 command->group_as_string = NULL;
6678# endif
6679 command->group = NULL;
6680 command->argv[0] = NULL;
6681 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
6682 funcp->parent_cmd = command;
6683 command->child_func = funcp;
6684
6685 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
6686 debug_leave();
6687 return EXIT_SUCCESS;
6688 }
6689#endif
6690 /* { list } */
6691 debug_printf("non-subshell group\n");
6692 rcode = 1; /* exitcode if redir failed */
6693 if (setup_redirects(command, squirrel) == 0) {
6694 debug_printf_exec(": run_list\n");
6695 rcode = run_list(command->group) & 0xff;
6696 }
6697 restore_redirects(squirrel);
6698 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
6699 debug_leave();
6700 debug_printf_exec("run_pipe: return %d\n", rcode);
6701 return rcode;
6702 }
6703
6704 argv = command->argv ? command->argv : (char **) &null_ptr;
6705 {
6706 const struct built_in_command *x;
6707#if ENABLE_HUSH_FUNCTIONS
6708 const struct function *funcp;
6709#else
6710 enum { funcp = 0 };
6711#endif
6712 char **new_env = NULL;
6713 struct variable *old_vars = NULL;
6714
6715 if (argv[command->assignment_cnt] == NULL) {
6716 /* Assignments, but no command */
6717 /* Ensure redirects take effect (that is, create files).
6718 * Try "a=t >file" */
6719#if 0 /* A few cases in testsuite fail with this code. FIXME */
6720 rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, squirrel, /*argv_expanded:*/ NULL);
6721 /* Set shell variables */
6722 if (new_env) {
6723 argv = new_env;
6724 while (*argv) {
6725 set_local_var(*argv, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
6726 /* Do we need to flag set_local_var() errors?
6727 * "assignment to readonly var" and "putenv error"
6728 */
6729 argv++;
6730 }
6731 }
6732 /* Redirect error sets $? to 1. Otherwise,
6733 * if evaluating assignment value set $?, retain it.
6734 * Try "false; q=`exit 2`; echo $?" - should print 2: */
6735 if (rcode == 0)
6736 rcode = G.last_exitcode;
6737 /* Exit, _skipping_ variable restoring code: */
6738 goto clean_up_and_ret0;
6739
6740#else /* Older, bigger, but more correct code */
6741
6742 rcode = setup_redirects(command, squirrel);
6743 restore_redirects(squirrel);
6744 /* Set shell variables */
6745 if (G_x_mode)
6746 bb_putchar_stderr('+');
6747 while (*argv) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02006748 char *p = expand_string_to_string(*argv, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006749 if (G_x_mode)
6750 fprintf(stderr, " %s", p);
6751 debug_printf_exec("set shell var:'%s'->'%s'\n",
6752 *argv, p);
6753 set_local_var(p, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
6754 /* Do we need to flag set_local_var() errors?
6755 * "assignment to readonly var" and "putenv error"
6756 */
6757 argv++;
6758 }
6759 if (G_x_mode)
6760 bb_putchar_stderr('\n');
6761 /* Redirect error sets $? to 1. Otherwise,
6762 * if evaluating assignment value set $?, retain it.
6763 * Try "false; q=`exit 2`; echo $?" - should print 2: */
6764 if (rcode == 0)
6765 rcode = G.last_exitcode;
6766 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
6767 debug_leave();
6768 debug_printf_exec("run_pipe: return %d\n", rcode);
6769 return rcode;
6770#endif
6771 }
6772
6773 /* Expand the rest into (possibly) many strings each */
6774 if (0) {}
6775#if ENABLE_HUSH_BASH_COMPAT
6776 else if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
6777 argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
6778 }
6779#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006780 else {
6781 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
6782 }
6783
6784 /* if someone gives us an empty string: `cmd with empty output` */
6785 if (!argv_expanded[0]) {
6786 free(argv_expanded);
6787 debug_leave();
6788 return G.last_exitcode;
6789 }
6790
6791 x = find_builtin(argv_expanded[0]);
6792#if ENABLE_HUSH_FUNCTIONS
6793 funcp = NULL;
6794 if (!x)
6795 funcp = find_function(argv_expanded[0]);
6796#endif
6797 if (x || funcp) {
6798 if (!funcp) {
6799 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
6800 debug_printf("exec with redirects only\n");
6801 rcode = setup_redirects(command, NULL);
6802 goto clean_up_and_ret1;
6803 }
6804 }
6805 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
6806 if (rcode == 0) {
6807 if (!funcp) {
6808 debug_printf_exec(": builtin '%s' '%s'...\n",
6809 x->b_cmd, argv_expanded[1]);
6810 rcode = x->b_function(argv_expanded) & 0xff;
6811 fflush_all();
6812 }
6813#if ENABLE_HUSH_FUNCTIONS
6814 else {
6815# if ENABLE_HUSH_LOCAL
6816 struct variable **sv;
6817 sv = G.shadowed_vars_pp;
6818 G.shadowed_vars_pp = &old_vars;
6819# endif
6820 debug_printf_exec(": function '%s' '%s'...\n",
6821 funcp->name, argv_expanded[1]);
6822 rcode = run_function(funcp, argv_expanded) & 0xff;
6823# if ENABLE_HUSH_LOCAL
6824 G.shadowed_vars_pp = sv;
6825# endif
6826 }
6827#endif
6828 }
6829 clean_up_and_ret:
6830 unset_vars(new_env);
6831 add_vars(old_vars);
6832/* clean_up_and_ret0: */
6833 restore_redirects(squirrel);
6834 clean_up_and_ret1:
6835 free(argv_expanded);
6836 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
6837 debug_leave();
6838 debug_printf_exec("run_pipe return %d\n", rcode);
6839 return rcode;
6840 }
6841
6842 if (ENABLE_FEATURE_SH_STANDALONE) {
6843 int n = find_applet_by_name(argv_expanded[0]);
6844 if (n >= 0 && APPLET_IS_NOFORK(n)) {
6845 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
6846 if (rcode == 0) {
6847 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
6848 argv_expanded[0], argv_expanded[1]);
6849 rcode = run_nofork_applet(n, argv_expanded);
6850 }
6851 goto clean_up_and_ret;
6852 }
6853 }
6854 /* It is neither builtin nor applet. We must fork. */
6855 }
6856
6857 must_fork:
6858 /* NB: argv_expanded may already be created, and that
6859 * might include `cmd` runs! Do not rerun it! We *must*
6860 * use argv_expanded if it's non-NULL */
6861
6862 /* Going to fork a child per each pipe member */
6863 pi->alive_cmds = 0;
6864 next_infd = 0;
6865
6866 cmd_no = 0;
6867 while (cmd_no < pi->num_cmds) {
6868 struct fd_pair pipefds;
6869#if !BB_MMU
6870 volatile nommu_save_t nommu_save;
6871 nommu_save.new_env = NULL;
6872 nommu_save.old_vars = NULL;
6873 nommu_save.argv = NULL;
6874 nommu_save.argv_from_re_execing = NULL;
6875#endif
6876 command = &pi->cmds[cmd_no];
6877 cmd_no++;
6878 if (command->argv) {
6879 debug_printf_exec(": pipe member '%s' '%s'...\n",
6880 command->argv[0], command->argv[1]);
6881 } else {
6882 debug_printf_exec(": pipe member with no argv\n");
6883 }
6884
6885 /* pipes are inserted between pairs of commands */
6886 pipefds.rd = 0;
6887 pipefds.wr = 1;
6888 if (cmd_no < pi->num_cmds)
6889 xpiped_pair(pipefds);
6890
6891 command->pid = BB_MMU ? fork() : vfork();
6892 if (!command->pid) { /* child */
6893#if ENABLE_HUSH_JOB
6894 disable_restore_tty_pgrp_on_exit();
6895 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
6896
6897 /* Every child adds itself to new process group
6898 * with pgid == pid_of_first_child_in_pipe */
6899 if (G.run_list_level == 1 && G_interactive_fd) {
6900 pid_t pgrp;
6901 pgrp = pi->pgrp;
6902 if (pgrp < 0) /* true for 1st process only */
6903 pgrp = getpid();
6904 if (setpgid(0, pgrp) == 0
6905 && pi->followup != PIPE_BG
6906 && G_saved_tty_pgrp /* we have ctty */
6907 ) {
6908 /* We do it in *every* child, not just first,
6909 * to avoid races */
6910 tcsetpgrp(G_interactive_fd, pgrp);
6911 }
6912 }
6913#endif
6914 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
6915 /* 1st cmd in backgrounded pipe
6916 * should have its stdin /dev/null'ed */
6917 close(0);
6918 if (open(bb_dev_null, O_RDONLY))
6919 xopen("/", O_RDONLY);
6920 } else {
6921 xmove_fd(next_infd, 0);
6922 }
6923 xmove_fd(pipefds.wr, 1);
6924 if (pipefds.rd > 1)
6925 close(pipefds.rd);
6926 /* Like bash, explicit redirects override pipes,
6927 * and the pipe fd is available for dup'ing. */
6928 if (setup_redirects(command, NULL))
6929 _exit(1);
6930
6931 /* Restore default handlers just prior to exec */
6932 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
6933
6934 /* Stores to nommu_save list of env vars putenv'ed
6935 * (NOMMU, on MMU we don't need that) */
6936 /* cast away volatility... */
6937 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
6938 /* pseudo_exec() does not return */
6939 }
6940
6941 /* parent or error */
6942#if ENABLE_HUSH_FAST
6943 G.count_SIGCHLD++;
6944//bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6945#endif
6946 enable_restore_tty_pgrp_on_exit();
6947#if !BB_MMU
6948 /* Clean up after vforked child */
6949 free(nommu_save.argv);
6950 free(nommu_save.argv_from_re_execing);
6951 unset_vars(nommu_save.new_env);
6952 add_vars(nommu_save.old_vars);
6953#endif
6954 free(argv_expanded);
6955 argv_expanded = NULL;
6956 if (command->pid < 0) { /* [v]fork failed */
6957 /* Clearly indicate, was it fork or vfork */
6958 bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
6959 } else {
6960 pi->alive_cmds++;
6961#if ENABLE_HUSH_JOB
6962 /* Second and next children need to know pid of first one */
6963 if (pi->pgrp < 0)
6964 pi->pgrp = command->pid;
6965#endif
6966 }
6967
6968 if (cmd_no > 1)
6969 close(next_infd);
6970 if (cmd_no < pi->num_cmds)
6971 close(pipefds.wr);
6972 /* Pass read (output) pipe end to next iteration */
6973 next_infd = pipefds.rd;
6974 }
6975
6976 if (!pi->alive_cmds) {
6977 debug_leave();
6978 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
6979 return 1;
6980 }
6981
6982 debug_leave();
6983 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
6984 return -1;
6985}
6986
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006987/* NB: called by pseudo_exec, and therefore must not modify any
6988 * global data until exec/_exit (we can be a child after vfork!) */
6989static int run_list(struct pipe *pi)
6990{
6991#if ENABLE_HUSH_CASE
6992 char *case_word = NULL;
6993#endif
6994#if ENABLE_HUSH_LOOPS
6995 struct pipe *loop_top = NULL;
6996 char **for_lcur = NULL;
6997 char **for_list = NULL;
6998#endif
6999 smallint last_followup;
7000 smalluint rcode;
7001#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
7002 smalluint cond_code = 0;
7003#else
7004 enum { cond_code = 0 };
7005#endif
7006#if HAS_KEYWORDS
Denys Vlasenko9b782552010-09-08 13:33:26 +02007007 smallint rword; /* RES_foo */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007008 smallint last_rword; /* ditto */
7009#endif
7010
7011 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
7012 debug_enter();
7013
7014#if ENABLE_HUSH_LOOPS
7015 /* Check syntax for "for" */
7016 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
7017 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
7018 continue;
7019 /* current word is FOR or IN (BOLD in comments below) */
7020 if (cpipe->next == NULL) {
7021 syntax_error("malformed for");
7022 debug_leave();
7023 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
7024 return 1;
7025 }
7026 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
7027 if (cpipe->next->res_word == RES_DO)
7028 continue;
7029 /* next word is not "do". It must be "in" then ("FOR v in ...") */
7030 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
7031 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
7032 ) {
7033 syntax_error("malformed for");
7034 debug_leave();
7035 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
7036 return 1;
7037 }
7038 }
7039#endif
7040
7041 /* Past this point, all code paths should jump to ret: label
7042 * in order to return, no direct "return" statements please.
7043 * This helps to ensure that no memory is leaked. */
7044
7045#if ENABLE_HUSH_JOB
7046 G.run_list_level++;
7047#endif
7048
7049#if HAS_KEYWORDS
7050 rword = RES_NONE;
7051 last_rword = RES_XXXX;
7052#endif
7053 last_followup = PIPE_SEQ;
7054 rcode = G.last_exitcode;
7055
7056 /* Go through list of pipes, (maybe) executing them. */
7057 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
7058 if (G.flag_SIGINT)
7059 break;
7060
7061 IF_HAS_KEYWORDS(rword = pi->res_word;)
7062 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
7063 rword, cond_code, last_rword);
7064#if ENABLE_HUSH_LOOPS
7065 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
7066 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
7067 ) {
7068 /* start of a loop: remember where loop starts */
7069 loop_top = pi;
7070 G.depth_of_loop++;
7071 }
7072#endif
7073 /* Still in the same "if...", "then..." or "do..." branch? */
7074 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
7075 if ((rcode == 0 && last_followup == PIPE_OR)
7076 || (rcode != 0 && last_followup == PIPE_AND)
7077 ) {
7078 /* It is "<true> || CMD" or "<false> && CMD"
7079 * and we should not execute CMD */
7080 debug_printf_exec("skipped cmd because of || or &&\n");
7081 last_followup = pi->followup;
7082 continue;
7083 }
7084 }
7085 last_followup = pi->followup;
7086 IF_HAS_KEYWORDS(last_rword = rword;)
7087#if ENABLE_HUSH_IF
7088 if (cond_code) {
7089 if (rword == RES_THEN) {
7090 /* if false; then ... fi has exitcode 0! */
7091 G.last_exitcode = rcode = EXIT_SUCCESS;
7092 /* "if <false> THEN cmd": skip cmd */
7093 continue;
7094 }
7095 } else {
7096 if (rword == RES_ELSE || rword == RES_ELIF) {
7097 /* "if <true> then ... ELSE/ELIF cmd":
7098 * skip cmd and all following ones */
7099 break;
7100 }
7101 }
7102#endif
7103#if ENABLE_HUSH_LOOPS
7104 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
7105 if (!for_lcur) {
7106 /* first loop through for */
7107
7108 static const char encoded_dollar_at[] ALIGN1 = {
7109 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
7110 }; /* encoded representation of "$@" */
7111 static const char *const encoded_dollar_at_argv[] = {
7112 encoded_dollar_at, NULL
7113 }; /* argv list with one element: "$@" */
7114 char **vals;
7115
7116 vals = (char**)encoded_dollar_at_argv;
7117 if (pi->next->res_word == RES_IN) {
7118 /* if no variable values after "in" we skip "for" */
7119 if (!pi->next->cmds[0].argv) {
7120 G.last_exitcode = rcode = EXIT_SUCCESS;
7121 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
7122 break;
7123 }
7124 vals = pi->next->cmds[0].argv;
7125 } /* else: "for var; do..." -> assume "$@" list */
7126 /* create list of variable values */
7127 debug_print_strings("for_list made from", vals);
7128 for_list = expand_strvec_to_strvec(vals);
7129 for_lcur = for_list;
7130 debug_print_strings("for_list", for_list);
7131 }
7132 if (!*for_lcur) {
7133 /* "for" loop is over, clean up */
7134 free(for_list);
7135 for_list = NULL;
7136 for_lcur = NULL;
7137 break;
7138 }
7139 /* Insert next value from for_lcur */
7140 /* note: *for_lcur already has quotes removed, $var expanded, etc */
7141 set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
7142 continue;
7143 }
7144 if (rword == RES_IN) {
7145 continue; /* "for v IN list;..." - "in" has no cmds anyway */
7146 }
7147 if (rword == RES_DONE) {
7148 continue; /* "done" has no cmds too */
7149 }
7150#endif
7151#if ENABLE_HUSH_CASE
7152 if (rword == RES_CASE) {
7153 case_word = expand_strvec_to_string(pi->cmds->argv);
7154 continue;
7155 }
7156 if (rword == RES_MATCH) {
7157 char **argv;
7158
7159 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
7160 break;
7161 /* all prev words didn't match, does this one match? */
7162 argv = pi->cmds->argv;
7163 while (*argv) {
Denys Vlasenkoebee4102010-09-10 10:17:53 +02007164 char *pattern = expand_string_to_string(*argv, /*unbackslash:*/ 1);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007165 /* TODO: which FNM_xxx flags to use? */
7166 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
7167 free(pattern);
7168 if (cond_code == 0) { /* match! we will execute this branch */
7169 free(case_word); /* make future "word)" stop */
7170 case_word = NULL;
7171 break;
7172 }
7173 argv++;
7174 }
7175 continue;
7176 }
7177 if (rword == RES_CASE_BODY) { /* inside of a case branch */
7178 if (cond_code != 0)
7179 continue; /* not matched yet, skip this pipe */
7180 }
7181#endif
7182 /* Just pressing <enter> in shell should check for jobs.
7183 * OTOH, in non-interactive shell this is useless
7184 * and only leads to extra job checks */
7185 if (pi->num_cmds == 0) {
7186 if (G_interactive_fd)
7187 goto check_jobs_and_continue;
7188 continue;
7189 }
7190
7191 /* After analyzing all keywords and conditions, we decided
7192 * to execute this pipe. NB: have to do checkjobs(NULL)
7193 * after run_pipe to collect any background children,
7194 * even if list execution is to be stopped. */
7195 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
7196 {
7197 int r;
7198#if ENABLE_HUSH_LOOPS
7199 G.flag_break_continue = 0;
7200#endif
7201 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
7202 if (r != -1) {
7203 /* We ran a builtin, function, or group.
7204 * rcode is already known
7205 * and we don't need to wait for anything. */
7206 G.last_exitcode = rcode;
7207 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
7208 check_and_run_traps(0);
7209#if ENABLE_HUSH_LOOPS
7210 /* Was it "break" or "continue"? */
7211 if (G.flag_break_continue) {
7212 smallint fbc = G.flag_break_continue;
7213 /* We might fall into outer *loop*,
7214 * don't want to break it too */
7215 if (loop_top) {
7216 G.depth_break_continue--;
7217 if (G.depth_break_continue == 0)
7218 G.flag_break_continue = 0;
7219 /* else: e.g. "continue 2" should *break* once, *then* continue */
7220 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
7221 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
7222 goto check_jobs_and_break;
7223 /* "continue": simulate end of loop */
7224 rword = RES_DONE;
7225 continue;
7226 }
7227#endif
7228#if ENABLE_HUSH_FUNCTIONS
7229 if (G.flag_return_in_progress == 1) {
7230 /* same as "goto check_jobs_and_break" */
7231 checkjobs(NULL);
7232 break;
7233 }
7234#endif
7235 } else if (pi->followup == PIPE_BG) {
7236 /* What does bash do with attempts to background builtins? */
7237 /* even bash 3.2 doesn't do that well with nested bg:
7238 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
7239 * I'm NOT treating inner &'s as jobs */
7240 check_and_run_traps(0);
7241#if ENABLE_HUSH_JOB
7242 if (G.run_list_level == 1)
7243 insert_bg_job(pi);
7244#endif
7245 /* Last command's pid goes to $! */
7246 G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid;
7247 G.last_exitcode = rcode = EXIT_SUCCESS;
7248 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
7249 } else {
7250#if ENABLE_HUSH_JOB
7251 if (G.run_list_level == 1 && G_interactive_fd) {
7252 /* Waits for completion, then fg's main shell */
7253 rcode = checkjobs_and_fg_shell(pi);
7254 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
7255 check_and_run_traps(0);
7256 } else
7257#endif
7258 { /* This one just waits for completion */
7259 rcode = checkjobs(pi);
7260 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
7261 check_and_run_traps(0);
7262 }
7263 G.last_exitcode = rcode;
7264 }
7265 }
7266
7267 /* Analyze how result affects subsequent commands */
7268#if ENABLE_HUSH_IF
7269 if (rword == RES_IF || rword == RES_ELIF)
7270 cond_code = rcode;
7271#endif
7272#if ENABLE_HUSH_LOOPS
7273 /* Beware of "while false; true; do ..."! */
7274 if (pi->next && pi->next->res_word == RES_DO) {
7275 if (rword == RES_WHILE) {
7276 if (rcode) {
7277 /* "while false; do...done" - exitcode 0 */
7278 G.last_exitcode = rcode = EXIT_SUCCESS;
7279 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
7280 goto check_jobs_and_break;
7281 }
7282 }
7283 if (rword == RES_UNTIL) {
7284 if (!rcode) {
7285 debug_printf_exec(": until expr is true: breaking\n");
7286 check_jobs_and_break:
7287 checkjobs(NULL);
7288 break;
7289 }
7290 }
7291 }
7292#endif
7293
7294 check_jobs_and_continue:
7295 checkjobs(NULL);
7296 } /* for (pi) */
7297
7298#if ENABLE_HUSH_JOB
7299 G.run_list_level--;
7300#endif
7301#if ENABLE_HUSH_LOOPS
7302 if (loop_top)
7303 G.depth_of_loop--;
7304 free(for_list);
7305#endif
7306#if ENABLE_HUSH_CASE
7307 free(case_word);
7308#endif
7309 debug_leave();
7310 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
7311 return rcode;
7312}
7313
7314/* Select which version we will use */
7315static int run_and_free_list(struct pipe *pi)
7316{
7317 int rcode = 0;
7318 debug_printf_exec("run_and_free_list entered\n");
Dan Fandrich85c62472010-11-20 13:05:17 -08007319 if (!G.o_opt[OPT_O_NOEXEC]) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02007320 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
7321 rcode = run_list(pi);
7322 }
7323 /* free_pipe_list has the side effect of clearing memory.
7324 * In the long run that function can be merged with run_list,
7325 * but doing that now would hobble the debugging effort. */
7326 free_pipe_list(pi);
7327 debug_printf_exec("run_and_free_list return %d\n", rcode);
7328 return rcode;
7329}
7330
7331
Denis Vlasenkof9375282009-04-05 19:13:39 +00007332/* Called a few times only (or even once if "sh -c") */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007333static void init_sigmasks(void)
Eric Andersen52a97ca2001-06-22 06:49:26 +00007334{
Denis Vlasenkof9375282009-04-05 19:13:39 +00007335 unsigned sig;
7336 unsigned mask;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007337 sigset_t old_blocked_set;
7338
7339 if (!G.inherited_set_is_saved) {
7340 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
7341 G.inherited_set = G.blocked_set;
7342 }
7343 old_blocked_set = G.blocked_set;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00007344
Denis Vlasenkof9375282009-04-05 19:13:39 +00007345 mask = (1 << SIGQUIT);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007346 if (G_interactive_fd) {
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00007347 mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS;
Mike Frysinger38478a62009-05-20 04:48:06 -04007348 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007349 mask |= SPECIAL_JOB_SIGS;
7350 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007351 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00007352
Denis Vlasenkof9375282009-04-05 19:13:39 +00007353 sig = 0;
7354 while (mask) {
7355 if (mask & 1)
7356 sigaddset(&G.blocked_set, sig);
7357 mask >>= 1;
7358 sig++;
7359 }
7360 sigdelset(&G.blocked_set, SIGCHLD);
7361
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007362 if (memcmp(&old_blocked_set, &G.blocked_set, sizeof(old_blocked_set)) != 0)
7363 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7364
Denis Vlasenkof9375282009-04-05 19:13:39 +00007365 /* POSIX allows shell to re-enable SIGCHLD
7366 * even if it was SIG_IGN on entry */
Denys Vlasenko8d7be232009-05-25 16:38:32 +02007367#if ENABLE_HUSH_FAST
7368 G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007369 if (!G.inherited_set_is_saved)
Denys Vlasenko8d7be232009-05-25 16:38:32 +02007370 signal(SIGCHLD, SIGCHLD_handler);
7371#else
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007372 if (!G.inherited_set_is_saved)
Denys Vlasenko8d7be232009-05-25 16:38:32 +02007373 signal(SIGCHLD, SIG_DFL);
7374#endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007375
7376 G.inherited_set_is_saved = 1;
Denis Vlasenkof9375282009-04-05 19:13:39 +00007377}
7378
7379#if ENABLE_HUSH_JOB
7380/* helper */
7381static void maybe_set_to_sigexit(int sig)
7382{
7383 void (*handler)(int);
7384 /* non_DFL_mask'ed signals are, well, masked,
7385 * no need to set handler for them.
7386 */
7387 if (!((G.non_DFL_mask >> sig) & 1)) {
7388 handler = signal(sig, sigexit);
7389 if (handler == SIG_IGN) /* oops... restore back to IGN! */
7390 signal(sig, handler);
7391 }
7392}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007393/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00007394static void set_fatal_handlers(void)
7395{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00007396 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00007397 if (HUSH_DEBUG) {
7398 maybe_set_to_sigexit(SIGILL );
7399 maybe_set_to_sigexit(SIGFPE );
7400 maybe_set_to_sigexit(SIGBUS );
7401 maybe_set_to_sigexit(SIGSEGV);
7402 maybe_set_to_sigexit(SIGTRAP);
7403 } /* else: hush is perfect. what SEGV? */
7404 maybe_set_to_sigexit(SIGABRT);
7405 /* bash 3.2 seems to handle these just like 'fatal' ones */
7406 maybe_set_to_sigexit(SIGPIPE);
7407 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00007408 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00007409 * if we aren't interactive... but in this case
7410 * we never want to restore pgrp on exit, and this fn is not called */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00007411 /*maybe_set_to_sigexit(SIGHUP );*/
Denis Vlasenkof9375282009-04-05 19:13:39 +00007412 /*maybe_set_to_sigexit(SIGTERM);*/
7413 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00007414}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00007415#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00007416
Denys Vlasenko6696eac2010-11-14 02:01:50 +01007417static int set_mode(int state, char mode, const char *o_opt)
Denis Vlasenkod5762932009-03-31 11:22:57 +00007418{
Denys Vlasenko6696eac2010-11-14 02:01:50 +01007419 int idx;
Denis Vlasenkod5762932009-03-31 11:22:57 +00007420 switch (mode) {
Denys Vlasenko6696eac2010-11-14 02:01:50 +01007421 case 'n':
Dan Fandrich85c62472010-11-20 13:05:17 -08007422 G.o_opt[OPT_O_NOEXEC] = state;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01007423 break;
7424 case 'x':
7425 IF_HUSH_MODE_X(G_x_mode = state;)
7426 break;
7427 case 'o':
7428 if (!o_opt) {
7429 /* "set -+o" without parameter.
7430 * in bash, set -o produces this output:
7431 * pipefail off
7432 * and set +o:
7433 * set +o pipefail
7434 * We always use the second form.
7435 */
7436 const char *p = o_opt_strings;
7437 idx = 0;
7438 while (*p) {
7439 printf("set %co %s\n", (G.o_opt[idx] ? '-' : '+'), p);
7440 idx++;
7441 p += strlen(p) + 1;
7442 }
7443 break;
7444 }
7445 idx = index_in_strings(o_opt_strings, o_opt);
7446 if (idx >= 0) {
7447 G.o_opt[idx] = state;
7448 break;
7449 }
7450 default:
7451 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00007452 }
7453 return EXIT_SUCCESS;
7454}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007455
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00007456int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00007457int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00007458{
7459 int opt;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007460 unsigned builtin_argc;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007461 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007462 struct variable *cur_var;
Denys Vlasenko52e460b2010-09-16 16:12:00 +02007463 struct variable shell_ver;
Eric Andersenbc604a22001-05-16 05:24:03 +00007464
Denis Vlasenko574f2f42008-02-27 18:41:59 +00007465 INIT_G();
Denys Vlasenkocddbb612010-05-20 14:27:09 +02007466 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, it is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007467 G.last_exitcode = EXIT_SUCCESS;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007468#if !BB_MMU
7469 G.argv0_for_re_execing = argv[0];
7470#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00007471 /* Deal with HUSH_VERSION */
Denys Vlasenko52e460b2010-09-16 16:12:00 +02007472 memset(&shell_ver, 0, sizeof(shell_ver));
7473 shell_ver.flg_export = 1;
7474 shell_ver.flg_read_only = 1;
Denys Vlasenko4f870492010-09-10 11:06:01 +02007475 /* Code which handles ${var<op>...} needs writable values for all variables,
Denys Vlasenko36f774a2010-09-05 14:45:38 +02007476 * therefore we xstrdup: */
Denys Vlasenko52e460b2010-09-16 16:12:00 +02007477 shell_ver.varstr = xstrdup(hush_version_str),
7478 G.top_var = &shell_ver;
Denys Vlasenko605067b2010-09-06 12:10:51 +02007479 /* Create shell local variables from the values
7480 * currently living in the environment */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00007481 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00007482 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
Denis Vlasenko87a86552008-07-29 19:43:10 +00007483 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00007484 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007485 if (e) while (*e) {
7486 char *value = strchr(*e, '=');
7487 if (value) { /* paranoia */
7488 cur_var->next = xzalloc(sizeof(*cur_var));
7489 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00007490 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007491 cur_var->max_len = strlen(*e);
7492 cur_var->flg_export = 1;
7493 }
7494 e++;
7495 }
Denys Vlasenko605067b2010-09-06 12:10:51 +02007496 /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */
Denys Vlasenko52e460b2010-09-16 16:12:00 +02007497 debug_printf_env("putenv '%s'\n", shell_ver.varstr);
7498 putenv(shell_ver.varstr);
Denys Vlasenko6db47842009-09-05 20:15:17 +02007499
7500 /* Export PWD */
7501 set_pwd_var(/*exp:*/ 1);
7502 /* bash also exports SHLVL and _,
7503 * and sets (but doesn't export) the following variables:
7504 * BASH=/bin/bash
7505 * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
7506 * BASH_VERSION='3.2.0(1)-release'
7507 * HOSTTYPE=i386
7508 * MACHTYPE=i386-pc-linux-gnu
7509 * OSTYPE=linux-gnu
7510 * HOSTNAME=<xxxxxxxxxx>
Denys Vlasenkodea47882009-10-09 15:40:49 +02007511 * PPID=<NNNNN> - we also do it elsewhere
Denys Vlasenko6db47842009-09-05 20:15:17 +02007512 * EUID=<NNNNN>
7513 * UID=<NNNNN>
7514 * GROUPS=()
7515 * LINES=<NNN>
7516 * COLUMNS=<NNN>
7517 * BASH_ARGC=()
7518 * BASH_ARGV=()
7519 * BASH_LINENO=()
7520 * BASH_SOURCE=()
7521 * DIRSTACK=()
7522 * PIPESTATUS=([0]="0")
7523 * HISTFILE=/<xxx>/.bash_history
7524 * HISTFILESIZE=500
7525 * HISTSIZE=500
7526 * MAILCHECK=60
7527 * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
7528 * SHELL=/bin/bash
7529 * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
7530 * TERM=dumb
7531 * OPTERR=1
7532 * OPTIND=1
7533 * IFS=$' \t\n'
7534 * PS1='\s-\v\$ '
7535 * PS2='> '
7536 * PS4='+ '
7537 */
7538
Denis Vlasenko38f63192007-01-22 09:03:07 +00007539#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00007540 G.line_input_state = new_line_input_t(FOR_SHELL);
Denys Vlasenko99862cb2010-09-12 17:34:13 +02007541# if defined MAX_HISTORY && MAX_HISTORY > 0 && ENABLE_HUSH_SAVEHISTORY
7542 {
7543 const char *hp = get_local_var_value("HISTFILE");
7544 if (!hp) {
7545 hp = get_local_var_value("HOME");
7546 if (hp) {
7547 G.line_input_state->hist_file = concat_path_file(hp, ".hush_history");
7548 //set_local_var(xasprintf("HISTFILE=%s", ...));
7549 }
7550 }
7551 }
7552# endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00007553#endif
Denys Vlasenko99862cb2010-09-12 17:34:13 +02007554
Denis Vlasenko87a86552008-07-29 19:43:10 +00007555 G.global_argc = argc;
7556 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00007557 /* Initialize some more globals to non-zero values */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00007558 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00007559
Denis Vlasenkoed782372009-04-10 00:45:02 +00007560 if (setjmp(die_jmp)) {
7561 /* xfunc has failed! die die die */
7562 /* no EXIT traps, this is an escape hatch! */
7563 G.exiting = 1;
7564 hush_exit(xfunc_error_retval);
7565 }
7566
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00007567 /* Shell is non-interactive at first. We need to call
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007568 * init_sigmasks() if we are going to execute "sh <script>",
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007569 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007570 * If we later decide that we are interactive, we run init_sigmasks()
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00007571 * in order to intercept (more) signals.
7572 */
7573
7574 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00007575 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007576 builtin_argc = 0;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007577 while (1) {
Denys Vlasenkoa67a9622009-08-20 03:38:58 +02007578 opt = getopt(argc, argv, "+c:xins"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007579#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00007580 "<:$:R:V:"
7581# if ENABLE_HUSH_FUNCTIONS
7582 "F:"
7583# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007584#endif
7585 );
7586 if (opt <= 0)
7587 break;
Eric Andersen25f27032001-04-26 23:22:31 +00007588 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007589 case 'c':
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007590 /* Possibilities:
7591 * sh ... -c 'script'
7592 * sh ... -c 'script' ARG0 [ARG1...]
7593 * On NOMMU, if builtin_argc != 0,
Denys Vlasenko17323a62010-01-28 01:57:05 +01007594 * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007595 * "" needs to be replaced with NULL
7596 * and BARGV vector fed to builtin function.
Denys Vlasenko17323a62010-01-28 01:57:05 +01007597 * Note: the form without ARG0 never happens:
7598 * sh ... -c 'builtin' BARGV... ""
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007599 */
Denys Vlasenkodea47882009-10-09 15:40:49 +02007600 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007601 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02007602 G.root_ppid = getppid();
7603 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00007604 G.global_argv = argv + optind;
7605 G.global_argc = argc - optind;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007606 if (builtin_argc) {
7607 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
7608 const struct built_in_command *x;
7609
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007610 init_sigmasks();
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007611 x = find_builtin(optarg);
7612 if (x) { /* paranoia */
7613 G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
7614 G.global_argv += builtin_argc;
7615 G.global_argv[-1] = NULL; /* replace "" */
Denys Vlasenko17323a62010-01-28 01:57:05 +01007616 G.last_exitcode = x->b_function(argv + optind - 1);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007617 }
7618 goto final_return;
7619 }
7620 if (!G.global_argv[0]) {
7621 /* -c 'script' (no params): prevent empty $0 */
7622 G.global_argv--; /* points to argv[i] of 'script' */
7623 G.global_argv[0] = argv[0];
Denys Vlasenko5ae8f1c2010-05-22 06:32:11 +02007624 G.global_argc++;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007625 } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007626 init_sigmasks();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007627 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007628 goto final_return;
7629 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00007630 /* Well, we cannot just declare interactiveness,
7631 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007632 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007633 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00007634 case 's':
7635 /* "-s" means "read from stdin", but this is how we always
7636 * operate, so simply do nothing here. */
7637 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007638#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00007639 case '<': /* "big heredoc" support */
Denys Vlasenko729ecb82010-06-07 14:14:26 +02007640 full_write1_str(optarg);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00007641 _exit(0);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007642 case '$': {
7643 unsigned long long empty_trap_mask;
7644
Denis Vlasenko34e573d2009-04-06 12:56:28 +00007645 G.root_pid = bb_strtou(optarg, &optarg, 16);
7646 optarg++;
Denys Vlasenkodea47882009-10-09 15:40:49 +02007647 G.root_ppid = bb_strtou(optarg, &optarg, 16);
7648 optarg++;
Denis Vlasenko34e573d2009-04-06 12:56:28 +00007649 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
7650 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007651 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007652 optarg++;
7653 builtin_argc = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007654 optarg++;
7655 empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
7656 if (empty_trap_mask != 0) {
7657 int sig;
7658 init_sigmasks();
7659 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
7660 for (sig = 1; sig < NSIG; sig++) {
7661 if (empty_trap_mask & (1LL << sig)) {
7662 G.traps[sig] = xzalloc(1); /* == xstrdup(""); */
7663 sigaddset(&G.blocked_set, sig);
7664 }
7665 }
7666 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7667 }
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007668# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00007669 optarg++;
7670 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007671# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00007672 break;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007673 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007674 case 'R':
7675 case 'V':
Denys Vlasenko295fef82009-06-03 12:47:26 +02007676 set_local_var(xstrdup(optarg), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ opt == 'R');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007677 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00007678# if ENABLE_HUSH_FUNCTIONS
7679 case 'F': {
7680 struct function *funcp = new_function(optarg);
7681 /* funcp->name is already set to optarg */
7682 /* funcp->body is set to NULL. It's a special case. */
7683 funcp->body_as_string = argv[optind];
7684 optind++;
7685 break;
7686 }
7687# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007688#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007689 case 'n':
7690 case 'x':
Denys Vlasenko6696eac2010-11-14 02:01:50 +01007691 if (set_mode(1, opt, NULL) == 0) /* no error */
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007692 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007693 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00007694#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007695 fprintf(stderr, "Usage: sh [FILE]...\n"
7696 " or: sh -c command [args]...\n\n");
7697 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00007698#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007699 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00007700#endif
Eric Andersen25f27032001-04-26 23:22:31 +00007701 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007702 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007703
Denys Vlasenkodea47882009-10-09 15:40:49 +02007704 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007705 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02007706 G.root_ppid = getppid();
7707 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007708
7709 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007710 if (argv[0] && argv[0][0] == '-') {
7711 FILE *input;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007712 debug_printf("sourcing /etc/profile\n");
7713 input = fopen_for_read("/etc/profile");
7714 if (input != NULL) {
7715 close_on_exec_on(fileno(input));
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007716 init_sigmasks();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007717 parse_and_run_file(input);
7718 fclose(input);
7719 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007720 /* bash: after sourcing /etc/profile,
7721 * tries to source (in the given order):
7722 * ~/.bash_profile, ~/.bash_login, ~/.profile,
Denys Vlasenko28a105d2009-06-01 11:26:30 +02007723 * stopping on first found. --noprofile turns this off.
Denis Vlasenkof9375282009-04-05 19:13:39 +00007724 * bash also sources ~/.bash_logout on exit.
7725 * If called as sh, skips .bash_XXX files.
7726 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007727 }
7728
Denis Vlasenkof9375282009-04-05 19:13:39 +00007729 if (argv[optind]) {
7730 FILE *input;
7731 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007732 * "bash <script>" (which is never interactive (unless -i?))
7733 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00007734 * If called as sh, does the same but with $ENV.
7735 */
7736 debug_printf("running script '%s'\n", argv[optind]);
7737 G.global_argv = argv + optind;
7738 G.global_argc = argc - optind;
7739 input = xfopen_for_read(argv[optind]);
7740 close_on_exec_on(fileno(input));
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007741 init_sigmasks();
Denis Vlasenkof9375282009-04-05 19:13:39 +00007742 parse_and_run_file(input);
7743#if ENABLE_FEATURE_CLEAN_UP
7744 fclose(input);
7745#endif
7746 goto final_return;
7747 }
7748
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00007749 /* Up to here, shell was non-interactive. Now it may become one.
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007750 * NB: don't forget to (re)run init_sigmasks() as needed.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00007751 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00007752
Denys Vlasenko28a105d2009-06-01 11:26:30 +02007753 /* A shell is interactive if the '-i' flag was given,
7754 * or if all of the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00007755 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00007756 * no arguments remaining or the -s flag given
7757 * standard input is a terminal
7758 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00007759 * Refer to Posix.2, the description of the 'sh' utility.
7760 */
7761#if ENABLE_HUSH_JOB
7762 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Mike Frysinger38478a62009-05-20 04:48:06 -04007763 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
7764 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
7765 if (G_saved_tty_pgrp < 0)
7766 G_saved_tty_pgrp = 0;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007767
7768 /* try to dup stdin to high fd#, >= 255 */
7769 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
7770 if (G_interactive_fd < 0) {
7771 /* try to dup to any fd */
7772 G_interactive_fd = dup(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007773 if (G_interactive_fd < 0) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007774 /* give up */
7775 G_interactive_fd = 0;
Mike Frysinger38478a62009-05-20 04:48:06 -04007776 G_saved_tty_pgrp = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00007777 }
7778 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007779// TODO: track & disallow any attempts of user
7780// to (inadvertently) close/redirect G_interactive_fd
Eric Andersen25f27032001-04-26 23:22:31 +00007781 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007782 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007783 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00007784 close_on_exec_on(G_interactive_fd);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007785
Mike Frysinger38478a62009-05-20 04:48:06 -04007786 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007787 /* If we were run as 'hush &', sleep until we are
7788 * in the foreground (tty pgrp == our pgrp).
7789 * If we get started under a job aware app (like bash),
7790 * make sure we are now in charge so we don't fight over
7791 * who gets the foreground */
7792 while (1) {
7793 pid_t shell_pgrp = getpgrp();
Mike Frysinger38478a62009-05-20 04:48:06 -04007794 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
7795 if (G_saved_tty_pgrp == shell_pgrp)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007796 break;
7797 /* send TTIN to ourself (should stop us) */
7798 kill(- shell_pgrp, SIGTTIN);
7799 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007800 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007801
Denis Vlasenkof9375282009-04-05 19:13:39 +00007802 /* Block some signals */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007803 init_sigmasks();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007804
Mike Frysinger38478a62009-05-20 04:48:06 -04007805 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007806 /* Set other signals to restore saved_tty_pgrp */
7807 set_fatal_handlers();
7808 /* Put ourselves in our own process group
7809 * (bash, too, does this only if ctty is available) */
7810 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
7811 /* Grab control of the terminal */
7812 tcsetpgrp(G_interactive_fd, getpid());
7813 }
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00007814 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00007815 * (we reset die_sleep = 0 whereever we [v]fork) */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00007816 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007817 } else {
7818 init_sigmasks();
7819 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007820#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00007821 /* No job control compiled in, only prompt/line editing */
7822 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007823 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
7824 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007825 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007826 G_interactive_fd = dup(STDIN_FILENO);
7827 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007828 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007829 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007830 }
7831 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007832 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00007833 close_on_exec_on(G_interactive_fd);
Denis Vlasenkof9375282009-04-05 19:13:39 +00007834 }
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007835 init_sigmasks();
Denis Vlasenkof9375282009-04-05 19:13:39 +00007836#else
7837 /* We have interactiveness code disabled */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007838 init_sigmasks();
Denis Vlasenkof9375282009-04-05 19:13:39 +00007839#endif
7840 /* bash:
7841 * if interactive but not a login shell, sources ~/.bashrc
7842 * (--norc turns this off, --rcfile <file> overrides)
7843 */
7844
7845 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Denys Vlasenkoc34c0332009-09-29 12:25:30 +02007846 /* note: ash and hush share this string */
7847 printf("\n\n%s %s\n"
7848 IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
7849 "\n",
7850 bb_banner,
7851 "hush - the humble shell"
7852 );
Mike Frysingerb2705e12009-03-23 08:44:02 +00007853 }
7854
Denis Vlasenkof9375282009-04-05 19:13:39 +00007855 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00007856
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007857 final_return:
Denis Vlasenko38f63192007-01-22 09:03:07 +00007858#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko87a86552008-07-29 19:43:10 +00007859 if (G.cwd != bb_msg_unknown)
7860 free((char*)G.cwd);
7861 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007862 while (cur_var) {
7863 struct variable *tmp = cur_var;
7864 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00007865 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007866 cur_var = cur_var->next;
7867 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00007868 }
Eric Andersen25f27032001-04-26 23:22:31 +00007869#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007870 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00007871}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00007872
7873
Denys Vlasenko1cc4b132009-08-21 00:05:51 +02007874#if ENABLE_MSH
7875int msh_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
7876int msh_main(int argc, char **argv)
7877{
7878 //bb_error_msg("msh is deprecated, please use hush instead");
7879 return hush_main(argc, argv);
7880}
7881#endif
7882
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007883
7884/*
7885 * Built-ins
7886 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007887static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007888{
7889 return 0;
7890}
7891
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02007892static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007893{
7894 int argc = 0;
7895 while (*argv) {
7896 argc++;
7897 argv++;
7898 }
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02007899 return applet_main_func(argc, argv - argc);
Mike Frysingerccb19592009-10-15 03:31:15 -04007900}
7901
7902static int FAST_FUNC builtin_test(char **argv)
7903{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02007904 return run_applet_main(argv, test_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007905}
7906
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007907static int FAST_FUNC builtin_echo(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007908{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02007909 return run_applet_main(argv, echo_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007910}
7911
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04007912#if ENABLE_PRINTF
7913static int FAST_FUNC builtin_printf(char **argv)
7914{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02007915 return run_applet_main(argv, printf_main);
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04007916}
7917#endif
7918
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007919static char **skip_dash_dash(char **argv)
7920{
7921 argv++;
7922 if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
7923 argv++;
7924 return argv;
7925}
7926
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007927static int FAST_FUNC builtin_eval(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007928{
7929 int rcode = EXIT_SUCCESS;
7930
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007931 argv = skip_dash_dash(argv);
7932 if (*argv) {
Denis Vlasenkob0a64782009-04-06 11:33:07 +00007933 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007934 /* bash:
7935 * eval "echo Hi; done" ("done" is syntax error):
7936 * "echo Hi" will not execute too.
7937 */
7938 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007939 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007940 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007941 }
7942 return rcode;
7943}
7944
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007945static int FAST_FUNC builtin_cd(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007946{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007947 const char *newdir;
7948
7949 argv = skip_dash_dash(argv);
7950 newdir = argv[0];
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007951 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007952 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00007953 * bash says "bash: cd: HOME not set" and does nothing
7954 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007955 */
Denys Vlasenko90a99042009-09-06 02:36:23 +02007956 const char *home = get_local_var_value("HOME");
7957 newdir = home ? home : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00007958 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007959 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007960 /* Mimic bash message exactly */
7961 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007962 return EXIT_FAILURE;
7963 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02007964 /* Read current dir (get_cwd(1) is inside) and set PWD.
7965 * Note: do not enforce exporting. If PWD was unset or unexported,
7966 * set it again, but do not export. bash does the same.
7967 */
7968 set_pwd_var(/*exp:*/ 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007969 return EXIT_SUCCESS;
7970}
7971
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007972static int FAST_FUNC builtin_exec(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007973{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007974 argv = skip_dash_dash(argv);
7975 if (argv[0] == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007976 return EXIT_SUCCESS; /* bash does this */
Denys Vlasenkof37eb392009-10-18 11:46:35 +02007977
Denys Vlasenkof37eb392009-10-18 11:46:35 +02007978 /* Careful: we can end up here after [v]fork. Do not restore
7979 * tty pgrp then, only top-level shell process does that */
7980 if (G_saved_tty_pgrp && getpid() == G.root_pid)
7981 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
7982
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02007983 /* TODO: if exec fails, bash does NOT exit! We do.
7984 * We'll need to undo sigprocmask (it's inside execvp_or_die)
7985 * and tcsetpgrp, and this is inherently racy.
7986 */
7987 execvp_or_die(argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007988}
7989
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007990static int FAST_FUNC builtin_exit(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007991{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00007992 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00007993
7994 /* interactive bash:
7995 * # trap "echo EEE" EXIT
7996 * # exit
7997 * exit
7998 * There are stopped jobs.
7999 * (if there are _stopped_ jobs, running ones don't count)
8000 * # exit
8001 * exit
8002 # EEE (then bash exits)
8003 *
Denys Vlasenkoa110c902010-09-12 15:38:04 +02008004 * TODO: we can use G.exiting = -1 as indicator "last cmd was exit"
Denis Vlasenko40e84372009-04-18 11:23:38 +00008005 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00008006
8007 /* note: EXIT trap is run by hush_exit */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008008 argv = skip_dash_dash(argv);
8009 if (argv[0] == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008010 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008011 /* mimic bash: exit 123abc == exit 255 + error msg */
8012 xfunc_error_retval = 255;
8013 /* bash: exit -2 == exit 254, no error msg */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008014 hush_exit(xatoi(argv[0]) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008015}
8016
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008017static void print_escaped(const char *s)
8018{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008019 if (*s == '\'')
8020 goto squote;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008021 do {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008022 const char *p = strchrnul(s, '\'');
8023 /* print 'xxxx', possibly just '' */
8024 printf("'%.*s'", (int)(p - s), s);
8025 if (*p == '\0')
8026 break;
8027 s = p;
8028 squote:
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008029 /* s points to '; print "'''...'''" */
8030 putchar('"');
8031 do putchar('\''); while (*++s == '\'');
8032 putchar('"');
8033 } while (*s);
8034}
8035
Denys Vlasenko295fef82009-06-03 12:47:26 +02008036#if !ENABLE_HUSH_LOCAL
8037#define helper_export_local(argv, exp, lvl) \
8038 helper_export_local(argv, exp)
8039#endif
8040static void helper_export_local(char **argv, int exp, int lvl)
8041{
8042 do {
8043 char *name = *argv;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02008044 char *name_end = strchrnul(name, '=');
Denys Vlasenko295fef82009-06-03 12:47:26 +02008045
8046 /* So far we do not check that name is valid (TODO?) */
8047
Denys Vlasenko27c56f12010-09-07 09:56:34 +02008048 if (*name_end == '\0') {
8049 struct variable *var, **vpp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02008050
Denys Vlasenko27c56f12010-09-07 09:56:34 +02008051 vpp = get_ptr_to_local_var(name, name_end - name);
8052 var = vpp ? *vpp : NULL;
8053
Denys Vlasenko295fef82009-06-03 12:47:26 +02008054 if (exp == -1) { /* unexporting? */
8055 /* export -n NAME (without =VALUE) */
8056 if (var) {
8057 var->flg_export = 0;
8058 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
8059 unsetenv(name);
8060 } /* else: export -n NOT_EXISTING_VAR: no-op */
8061 continue;
8062 }
8063 if (exp == 1) { /* exporting? */
8064 /* export NAME (without =VALUE) */
8065 if (var) {
8066 var->flg_export = 1;
8067 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
8068 putenv(var->varstr);
8069 continue;
8070 }
8071 }
8072 /* Exporting non-existing variable.
8073 * bash does not put it in environment,
8074 * but remembers that it is exported,
8075 * and does put it in env when it is set later.
8076 * We just set it to "" and export. */
8077 /* Or, it's "local NAME" (without =VALUE).
8078 * bash sets the value to "". */
8079 name = xasprintf("%s=", name);
8080 } else {
8081 /* (Un)exporting/making local NAME=VALUE */
8082 name = xstrdup(name);
8083 }
8084 set_local_var(name, /*exp:*/ exp, /*lvl:*/ lvl, /*ro:*/ 0);
8085 } while (*++argv);
8086}
8087
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008088static int FAST_FUNC builtin_export(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008089{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00008090 unsigned opt_unexport;
8091
Denys Vlasenkodf5131c2009-06-07 16:04:17 +02008092#if ENABLE_HUSH_EXPORT_N
8093 /* "!": do not abort on errors */
8094 opt_unexport = getopt32(argv, "!n");
8095 if (opt_unexport == (uint32_t)-1)
8096 return EXIT_FAILURE;
8097 argv += optind;
8098#else
8099 opt_unexport = 0;
8100 argv++;
8101#endif
8102
8103 if (argv[0] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008104 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008105 if (e) {
8106 while (*e) {
8107#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008108 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008109#else
8110 /* ash emits: export VAR='VAL'
8111 * bash: declare -x VAR="VAL"
8112 * we follow ash example */
8113 const char *s = *e++;
8114 const char *p = strchr(s, '=');
8115
8116 if (!p) /* wtf? take next variable */
8117 continue;
8118 /* export var= */
8119 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008120 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008121 putchar('\n');
8122#endif
8123 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01008124 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00008125 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008126 return EXIT_SUCCESS;
8127 }
8128
Denys Vlasenko295fef82009-06-03 12:47:26 +02008129 helper_export_local(argv, (opt_unexport ? -1 : 1), 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008130
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008131 return EXIT_SUCCESS;
8132}
8133
Denys Vlasenko295fef82009-06-03 12:47:26 +02008134#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008135static int FAST_FUNC builtin_local(char **argv)
Denys Vlasenko295fef82009-06-03 12:47:26 +02008136{
8137 if (G.func_nest_level == 0) {
8138 bb_error_msg("%s: not in a function", argv[0]);
8139 return EXIT_FAILURE; /* bash compat */
8140 }
8141 helper_export_local(argv, 0, G.func_nest_level);
8142 return EXIT_SUCCESS;
8143}
8144#endif
8145
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008146static int FAST_FUNC builtin_trap(char **argv)
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008147{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008148 int sig;
8149 char *new_cmd;
8150
8151 if (!G.traps)
8152 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
8153
8154 argv++;
8155 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00008156 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008157 /* No args: print all trapped */
8158 for (i = 0; i < NSIG; ++i) {
8159 if (G.traps[i]) {
8160 printf("trap -- ");
8161 print_escaped(G.traps[i]);
Denys Vlasenkoe74aaf92009-09-27 02:05:45 +02008162 /* note: bash adds "SIG", but only if invoked
8163 * as "bash". If called as "sh", or if set -o posix,
8164 * then it prints short signal names.
8165 * We are printing short names: */
8166 printf(" %s\n", get_signame(i));
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008167 }
8168 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01008169 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008170 return EXIT_SUCCESS;
8171 }
8172
8173 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008174 /* If first arg is a number: reset all specified signals */
8175 sig = bb_strtou(*argv, NULL, 10);
8176 if (errno == 0) {
8177 int ret;
8178 process_sig_list:
8179 ret = EXIT_SUCCESS;
8180 while (*argv) {
8181 sig = get_signum(*argv++);
8182 if (sig < 0 || sig >= NSIG) {
8183 ret = EXIT_FAILURE;
8184 /* Mimic bash message exactly */
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00008185 bb_perror_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008186 continue;
8187 }
8188
8189 free(G.traps[sig]);
8190 G.traps[sig] = xstrdup(new_cmd);
8191
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008192 debug_printf("trap: setting SIG%s (%i) to '%s'\n",
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008193 get_signame(sig), sig, G.traps[sig]);
8194
8195 /* There is no signal for 0 (EXIT) */
8196 if (sig == 0)
8197 continue;
8198
8199 if (new_cmd) {
8200 sigaddset(&G.blocked_set, sig);
8201 } else {
8202 /* There was a trap handler, we are removing it
8203 * (if sig has non-DFL handling,
8204 * we don't need to do anything) */
8205 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
8206 continue;
8207 sigdelset(&G.blocked_set, sig);
8208 }
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008209 }
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00008210 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008211 return ret;
8212 }
8213
8214 if (!argv[1]) { /* no second arg */
8215 bb_error_msg("trap: invalid arguments");
8216 return EXIT_FAILURE;
8217 }
8218
8219 /* First arg is "-": reset all specified to default */
8220 /* First arg is "--": skip it, the rest is "handler SIGs..." */
8221 /* Everything else: set arg as signal handler
8222 * (includes "" case, which ignores signal) */
8223 if (argv[0][0] == '-') {
8224 if (argv[0][1] == '\0') { /* "-" */
8225 /* new_cmd remains NULL: "reset these sigs" */
8226 goto reset_traps;
8227 }
8228 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
8229 argv++;
8230 }
8231 /* else: "-something", no special meaning */
8232 }
8233 new_cmd = *argv;
8234 reset_traps:
8235 argv++;
8236 goto process_sig_list;
8237}
8238
Mike Frysinger93cadc22009-05-27 17:06:25 -04008239/* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008240static int FAST_FUNC builtin_type(char **argv)
Mike Frysinger93cadc22009-05-27 17:06:25 -04008241{
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008242 int ret = EXIT_SUCCESS;
Mike Frysinger93cadc22009-05-27 17:06:25 -04008243
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008244 while (*++argv) {
Mike Frysinger93cadc22009-05-27 17:06:25 -04008245 const char *type;
Denys Vlasenko171932d2009-05-28 17:07:22 +02008246 char *path = NULL;
Mike Frysinger93cadc22009-05-27 17:06:25 -04008247
8248 if (0) {} /* make conditional compile easier below */
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008249 /*else if (find_alias(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04008250 type = "an alias";*/
8251#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008252 else if (find_function(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04008253 type = "a function";
8254#endif
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008255 else if (find_builtin(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04008256 type = "a shell builtin";
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008257 else if ((path = find_in_path(*argv)) != NULL)
8258 type = path;
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02008259 else {
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008260 bb_error_msg("type: %s: not found", *argv);
Mike Frysinger93cadc22009-05-27 17:06:25 -04008261 ret = EXIT_FAILURE;
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02008262 continue;
8263 }
Mike Frysinger93cadc22009-05-27 17:06:25 -04008264
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02008265 printf("%s is %s\n", *argv, type);
8266 free(path);
Mike Frysinger93cadc22009-05-27 17:06:25 -04008267 }
8268
8269 return ret;
8270}
8271
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008272#if ENABLE_HUSH_JOB
8273/* built-in 'fg' and 'bg' handler */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008274static int FAST_FUNC builtin_fg_bg(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008275{
8276 int i, jobnum;
8277 struct pipe *pi;
8278
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008279 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008280 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008281
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008282 /* If they gave us no args, assume they want the last backgrounded task */
8283 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00008284 for (pi = G.job_list; pi; pi = pi->next) {
8285 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008286 goto found;
8287 }
8288 }
8289 bb_error_msg("%s: no current job", argv[0]);
8290 return EXIT_FAILURE;
8291 }
8292 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
8293 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
8294 return EXIT_FAILURE;
8295 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008296 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008297 if (pi->jobid == jobnum) {
8298 goto found;
8299 }
8300 }
8301 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
8302 return EXIT_FAILURE;
8303 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00008304 /* TODO: bash prints a string representation
8305 * of job being foregrounded (like "sleep 1 | cat") */
Mike Frysinger38478a62009-05-20 04:48:06 -04008306 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008307 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008308 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008309 }
8310
8311 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00008312 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
8313 for (i = 0; i < pi->num_cmds; i++) {
8314 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
8315 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008316 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00008317 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008318
8319 i = kill(- pi->pgrp, SIGCONT);
8320 if (i < 0) {
8321 if (errno == ESRCH) {
8322 delete_finished_bg_job(pi);
8323 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008324 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00008325 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008326 }
8327
Denis Vlasenko34d4d892009-04-04 20:24:37 +00008328 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008329 remove_bg_job(pi);
8330 return checkjobs_and_fg_shell(pi);
8331 }
8332 return EXIT_SUCCESS;
8333}
8334#endif
8335
8336#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008337static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008338{
8339 const struct built_in_command *x;
8340
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008341 printf(
Denis Vlasenko34d4d892009-04-04 20:24:37 +00008342 "Built-in commands:\n"
8343 "------------------\n");
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008344 for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
Denys Vlasenko17323a62010-01-28 01:57:05 +01008345 if (x->b_descr)
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008346 printf("%-10s%s\n", x->b_cmd, x->b_descr);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008347 }
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008348 bb_putchar('\n');
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008349 return EXIT_SUCCESS;
8350}
8351#endif
8352
8353#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008354static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008355{
8356 struct pipe *job;
8357 const char *status_string;
8358
Denis Vlasenko87a86552008-07-29 19:43:10 +00008359 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00008360 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008361 status_string = "Stopped";
8362 else
8363 status_string = "Running";
8364
8365 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
8366 }
8367 return EXIT_SUCCESS;
8368}
8369#endif
8370
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00008371#if HUSH_DEBUG
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008372static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00008373{
8374 void *p;
8375 unsigned long l;
8376
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008377# ifdef M_TRIM_THRESHOLD
Denys Vlasenko27726cb2009-09-12 14:48:33 +02008378 /* Optional. Reduces probability of false positives */
8379 malloc_trim(0);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008380# endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00008381 /* Crude attempt to find where "free memory" starts,
8382 * sans fragmentation. */
8383 p = malloc(240);
8384 l = (unsigned long)p;
8385 free(p);
8386 p = malloc(3400);
8387 if (l < (unsigned long)p) l = (unsigned long)p;
8388 free(p);
8389
8390 if (!G.memleak_value)
8391 G.memleak_value = l;
Denys Vlasenko9038d6f2009-07-15 20:02:19 +02008392
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00008393 l -= G.memleak_value;
8394 if ((long)l < 0)
8395 l = 0;
8396 l /= 1024;
8397 if (l > 127)
8398 l = 127;
8399
8400 /* Exitcode is "how many kilobytes we leaked since 1st call" */
8401 return l;
8402}
8403#endif
8404
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008405static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008406{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008407 puts(get_cwd(0));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008408 return EXIT_SUCCESS;
8409}
8410
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008411static int FAST_FUNC builtin_read(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008412{
Denys Vlasenko03dad222010-01-12 23:29:57 +01008413 const char *r;
8414 char *opt_n = NULL;
8415 char *opt_p = NULL;
8416 char *opt_t = NULL;
8417 char *opt_u = NULL;
8418 int read_flags;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00008419
Denys Vlasenko03dad222010-01-12 23:29:57 +01008420 /* "!": do not abort on errors.
8421 * Option string must start with "sr" to match BUILTIN_READ_xxx
8422 */
8423 read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
8424 if (read_flags == (uint32_t)-1)
8425 return EXIT_FAILURE;
8426 argv += optind;
8427
8428 r = shell_builtin_read(set_local_var_from_halves,
8429 argv,
8430 get_local_var_value("IFS"), /* can be NULL */
8431 read_flags,
8432 opt_n,
8433 opt_p,
8434 opt_t,
8435 opt_u
8436 );
8437
8438 if ((uintptr_t)r > 1) {
8439 bb_error_msg("%s", r);
8440 r = (char*)(uintptr_t)1;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00008441 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008442
Denys Vlasenko03dad222010-01-12 23:29:57 +01008443 return (uintptr_t)r;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008444}
8445
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008446/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
8447 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008448 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008449 * set [-abCefhmnuvx] [-o option] [argument...]
8450 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008451 * set -- [argument...]
8452 * set -o
8453 * set +o
8454 * Implementations shall support the options in both their hyphen and
8455 * plus-sign forms. These options can also be specified as options to sh.
8456 * Examples:
8457 * Write out all variables and their values: set
8458 * Set $1, $2, and $3 and set "$#" to 3: set c a b
8459 * Turn on the -x and -v options: set -xv
8460 * Unset all positional parameters: set --
8461 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
8462 * Set the positional parameters to the expansion of x, even if x expands
8463 * with a leading '-' or '+': set -- $x
8464 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008465 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008466 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008467static int FAST_FUNC builtin_set(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008468{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008469 int n;
8470 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008471 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008472
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008473 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008474 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008475 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008476 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008477 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008478 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008479
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008480 do {
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008481 if (strcmp(arg, "--") == 0) {
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008482 ++argv;
8483 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008484 }
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00008485 if (arg[0] != '+' && arg[0] != '-')
8486 break;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008487 for (n = 1; arg[n]; ++n) {
8488 if (set_mode((arg[0] == '-'), arg[n], argv[1]))
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00008489 goto error;
Denys Vlasenko6696eac2010-11-14 02:01:50 +01008490 if (arg[n] == 'o' && argv[1])
8491 argv++;
8492 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008493 } while ((arg = *++argv) != NULL);
8494 /* Now argv[0] is 1st argument */
8495
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008496 if (arg == NULL)
8497 return EXIT_SUCCESS;
8498 set_argv:
8499
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008500 /* NB: G.global_argv[0] ($0) is never freed/changed */
8501 g_argv = G.global_argv;
8502 if (G.global_args_malloced) {
8503 pp = g_argv;
8504 while (*++pp)
8505 free(*pp);
8506 g_argv[1] = NULL;
8507 } else {
8508 G.global_args_malloced = 1;
8509 pp = xzalloc(sizeof(pp[0]) * 2);
8510 pp[0] = g_argv[0]; /* retain $0 */
8511 g_argv = pp;
8512 }
8513 /* This realloc's G.global_argv */
8514 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
8515
8516 n = 1;
8517 while (*++pp)
8518 n++;
8519 G.global_argc = n;
8520
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008521 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008522
8523 /* Nothing known, so abort */
8524 error:
8525 bb_error_msg("set: %s: invalid option", arg);
8526 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008527}
8528
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008529static int FAST_FUNC builtin_shift(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008530{
8531 int n = 1;
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008532 argv = skip_dash_dash(argv);
8533 if (argv[0]) {
8534 n = atoi(argv[0]);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008535 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008536 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00008537 if (G.global_args_malloced) {
8538 int m = 1;
8539 while (m <= n)
8540 free(G.global_argv[m++]);
8541 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008542 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00008543 memmove(&G.global_argv[1], &G.global_argv[n+1],
8544 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008545 return EXIT_SUCCESS;
8546 }
8547 return EXIT_FAILURE;
8548}
8549
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008550static int FAST_FUNC builtin_source(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008551{
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02008552 char *arg_path, *filename;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008553 FILE *input;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00008554 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00008555#if ENABLE_HUSH_FUNCTIONS
8556 smallint sv_flg;
8557#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008558
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008559 argv = skip_dash_dash(argv);
8560 filename = argv[0];
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02008561 if (!filename) {
8562 /* bash says: "bash: .: filename argument required" */
8563 return 2; /* bash compat */
8564 }
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008565 arg_path = NULL;
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02008566 if (!strchr(filename, '/')) {
8567 arg_path = find_in_path(filename);
8568 if (arg_path)
8569 filename = arg_path;
8570 }
8571 input = fopen_or_warn(filename, "r");
8572 free(arg_path);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008573 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008574 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008575 return EXIT_FAILURE;
8576 }
8577 close_on_exec_on(fileno(input));
8578
Mike Frysinger885b6f22009-04-18 21:04:25 +00008579#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008580 sv_flg = G.flag_return_in_progress;
8581 /* "we are inside sourced file, ok to use return" */
8582 G.flag_return_in_progress = -1;
Mike Frysinger885b6f22009-04-18 21:04:25 +00008583#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00008584 save_and_replace_G_args(&sv, argv);
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008585
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008586 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008587 fclose(input);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00008588
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008589 restore_G_args(&sv, argv);
Mike Frysinger885b6f22009-04-18 21:04:25 +00008590#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008591 G.flag_return_in_progress = sv_flg;
Mike Frysinger885b6f22009-04-18 21:04:25 +00008592#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008593
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008594 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008595}
8596
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008597static int FAST_FUNC builtin_umask(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008598{
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008599 int rc;
8600 mode_t mask;
8601
8602 mask = umask(0);
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008603 argv = skip_dash_dash(argv);
8604 if (argv[0]) {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008605 mode_t old_mask = mask;
8606
8607 mask ^= 0777;
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008608 rc = bb_parse_mode(argv[0], &mask);
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008609 mask ^= 0777;
8610 if (rc == 0) {
8611 mask = old_mask;
8612 /* bash messages:
8613 * bash: umask: 'q': invalid symbolic mode operator
8614 * bash: umask: 999: octal number out of range
8615 */
Denys Vlasenko44c86ce2010-05-20 04:22:55 +02008616 bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008617 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008618 } else {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008619 rc = 1;
8620 /* Mimic bash */
8621 printf("%04o\n", (unsigned) mask);
8622 /* fall through and restore mask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008623 }
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008624 umask(mask);
8625
8626 return !rc; /* rc != 0 - success */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008627}
8628
Mike Frysingerd690f682009-03-30 06:50:54 +00008629/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008630static int FAST_FUNC builtin_unset(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008631{
Mike Frysingerd690f682009-03-30 06:50:54 +00008632 int ret;
Denis Vlasenko28e67962009-04-26 23:22:40 +00008633 unsigned opts;
Mike Frysingerd690f682009-03-30 06:50:54 +00008634
Denis Vlasenko28e67962009-04-26 23:22:40 +00008635 /* "!": do not abort on errors */
8636 /* "+": stop at 1st non-option */
8637 opts = getopt32(argv, "!+vf");
8638 if (opts == (unsigned)-1)
8639 return EXIT_FAILURE;
8640 if (opts == 3) {
8641 bb_error_msg("unset: -v and -f are exclusive");
8642 return EXIT_FAILURE;
Mike Frysingerd690f682009-03-30 06:50:54 +00008643 }
Denis Vlasenko28e67962009-04-26 23:22:40 +00008644 argv += optind;
Mike Frysingerd690f682009-03-30 06:50:54 +00008645
8646 ret = EXIT_SUCCESS;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008647 while (*argv) {
Denis Vlasenko28e67962009-04-26 23:22:40 +00008648 if (!(opts & 2)) { /* not -f */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008649 if (unset_local_var(*argv)) {
8650 /* unset <nonexistent_var> doesn't fail.
8651 * Error is when one tries to unset RO var.
8652 * Message was printed by unset_local_var. */
Mike Frysingerd690f682009-03-30 06:50:54 +00008653 ret = EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008654 }
Mike Frysingerd690f682009-03-30 06:50:54 +00008655 }
Denis Vlasenko40e84372009-04-18 11:23:38 +00008656#if ENABLE_HUSH_FUNCTIONS
8657 else {
8658 unset_func(*argv);
8659 }
8660#endif
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008661 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00008662 }
8663 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008664}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008665
Mike Frysinger56bdea12009-03-28 20:01:58 +00008666/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008667static int FAST_FUNC builtin_wait(char **argv)
Mike Frysinger56bdea12009-03-28 20:01:58 +00008668{
8669 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00008670 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00008671
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008672 argv = skip_dash_dash(argv);
8673 if (argv[0] == NULL) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00008674 /* Don't care about wait results */
8675 /* Note 1: must wait until there are no more children */
8676 /* Note 2: must be interruptible */
8677 /* Examples:
8678 * $ sleep 3 & sleep 6 & wait
8679 * [1] 30934 sleep 3
8680 * [2] 30935 sleep 6
8681 * [1] Done sleep 3
8682 * [2] Done sleep 6
8683 * $ sleep 3 & sleep 6 & wait
8684 * [1] 30936 sleep 3
8685 * [2] 30937 sleep 6
8686 * [1] Done sleep 3
8687 * ^C <-- after ~4 sec from keyboard
8688 * $
8689 */
8690 sigaddset(&G.blocked_set, SIGCHLD);
8691 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
8692 while (1) {
8693 checkjobs(NULL);
8694 if (errno == ECHILD)
8695 break;
8696 /* Wait for SIGCHLD or any other signal of interest */
8697 /* sigtimedwait with infinite timeout: */
8698 sig = sigwaitinfo(&G.blocked_set, NULL);
8699 if (sig > 0) {
8700 sig = check_and_run_traps(sig);
8701 if (sig && sig != SIGCHLD) { /* see note 2 */
8702 ret = 128 + sig;
8703 break;
8704 }
8705 }
8706 }
8707 sigdelset(&G.blocked_set, SIGCHLD);
8708 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
8709 return ret;
8710 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00008711
Denis Vlasenko7566bae2009-03-31 17:24:49 +00008712 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00008713 while (*argv) {
8714 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00008715 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00008716 /* mimic bash message */
8717 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00008718 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008719 }
8720 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00008721 if (WIFSIGNALED(status))
8722 ret = 128 + WTERMSIG(status);
8723 else if (WIFEXITED(status))
8724 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00008725 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00008726 ret = EXIT_FAILURE;
8727 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00008728 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00008729 ret = 127;
8730 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00008731 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00008732 }
8733
8734 return ret;
8735}
8736
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008737#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
8738static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
8739{
8740 if (argv[1]) {
8741 def = bb_strtou(argv[1], NULL, 10);
8742 if (errno || def < def_min || argv[2]) {
8743 bb_error_msg("%s: bad arguments", argv[0]);
8744 def = UINT_MAX;
8745 }
8746 }
8747 return def;
8748}
8749#endif
8750
Denis Vlasenkodadfb492008-07-29 10:16:05 +00008751#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008752static int FAST_FUNC builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008753{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008754 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008755 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00008756 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00008757 return EXIT_SUCCESS; /* bash compat */
8758 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008759 G.flag_break_continue++; /* BC_BREAK = 1 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008760
8761 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
8762 if (depth == UINT_MAX)
8763 G.flag_break_continue = BC_BREAK;
8764 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +00008765 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008766
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008767 return EXIT_SUCCESS;
8768}
8769
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008770static int FAST_FUNC builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008771{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00008772 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
8773 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008774}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00008775#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008776
8777#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008778static int FAST_FUNC builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008779{
8780 int rc;
8781
8782 if (G.flag_return_in_progress != -1) {
8783 bb_error_msg("%s: not in a function or sourced script", argv[0]);
8784 return EXIT_FAILURE; /* bash compat */
8785 }
8786
8787 G.flag_return_in_progress = 1;
8788
8789 /* bash:
8790 * out of range: wraps around at 256, does not error out
8791 * non-numeric param:
8792 * f() { false; return qwe; }; f; echo $?
8793 * bash: return: qwe: numeric argument required <== we do this
8794 * 255 <== we also do this
8795 */
8796 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
8797 return rc;
8798}
8799#endif