blob: 5af525982143f1aa2eb6bd80f71fae331c314f83 [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 *
11 * Credits:
12 * The parser routines proper are all original material, first
Eric Andersencb81e642003-07-14 21:21:08 +000013 * written Dec 2000 and Jan 2001 by Larry Doolittle. The
14 * execution engine, the builtins, and much of the underlying
15 * support has been adapted from busybox-0.49pre's lash, which is
Eric Andersenc7bda1c2004-03-15 08:29:22 +000016 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersencb81e642003-07-14 21:21:08 +000017 * written by Erik Andersen <andersen@codepoet.org>. That, in turn,
18 * is based in part on ladsh.c, by Michael K. Johnson and Erik W.
19 * Troan, which they placed in the public domain. I don't know
20 * how much of the Johnson/Troan code has survived the repeated
21 * rewrites.
22 *
Eric Andersen25f27032001-04-26 23:22:31 +000023 * Other credits:
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +000024 * o_addchr derived from similar w_addchar function in glibc-2.2.
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000025 * parse_redirect, redirect_opt_num, and big chunks of main
Denis Vlasenko424f79b2009-03-22 14:23:34 +000026 * and many builtins derived from contributions by Erik Andersen.
27 * Miscellaneous bugfixes from Matt Kraai.
Eric Andersen25f27032001-04-26 23:22:31 +000028 *
29 * There are two big (and related) architecture differences between
30 * this parser and the lash parser. One is that this version is
31 * actually designed from the ground up to understand nearly all
32 * of the Bourne grammar. The second, consequential change is that
33 * the parser and input reader have been turned inside out. Now,
34 * the parser is in control, and asks for input as needed. The old
35 * way had the input reader in control, and it asked for parsing to
36 * take place as needed. The new way makes it much easier to properly
37 * handle the recursion implicit in the various substitutions, especially
38 * across continuation lines.
39 *
Denys Vlasenko349ef962010-05-21 15:46:24 +020040 * TODOs:
41 * grep for "TODO" and fix (some of them are easy)
42 * special variables (done: PWD, PPID, RANDOM)
43 * tilde expansion
Eric Andersen78a7c992001-05-15 16:30:25 +000044 * aliases
Denys Vlasenko349ef962010-05-21 15:46:24 +020045 * follow IFS rules more precisely, including update semantics
46 * builtins mandated by standards we don't support:
47 * [un]alias, command, fc, getopts, newgrp, readonly, times
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +020048 * make complex ${var%...} constructs support optional
49 * make here documents optional
Mike Frysinger25a6ca02009-03-28 13:59:26 +000050 *
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020051 * Bash compat TODO:
52 * redirection of stdout+stderr: &> and >&
53 * brace expansion: one/{two,three,four}
54 * reserved words: function select
55 * advanced test: [[ ]]
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020056 * process substitution: <(list) and >(list)
57 * =~: regex operator
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020058 * let EXPR [EXPR...]
Denys Vlasenko349ef962010-05-21 15:46:24 +020059 * Each EXPR is an arithmetic expression (ARITHMETIC EVALUATION)
60 * If the last arg evaluates to 0, let returns 1; 0 otherwise.
61 * NB: let `echo 'a=a + 1'` - error (IOW: multi-word expansion is used)
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020062 * ((EXPR))
Denys Vlasenko349ef962010-05-21 15:46:24 +020063 * The EXPR is evaluated according to ARITHMETIC EVALUATION.
64 * This is exactly equivalent to let "EXPR".
Denys Vlasenkoadc0e202010-05-17 18:56:58 +020065 * $[EXPR]: synonym for $((EXPR))
Denys Vlasenko08218012009-06-03 14:43:56 +020066 * export builtin should be special, its arguments are assignments
67 * and therefore expansion of them should be "one-word" expansion:
68 * $ export i=`echo 'a b'` # export has one arg: "i=a b"
69 * compare with:
70 * $ ls i=`echo 'a b'` # ls has two args: "i=a" and "b"
71 * ls: cannot access i=a: No such file or directory
72 * ls: cannot access b: No such file or directory
Denys Vlasenko9ca656b2009-06-10 13:39:35 +020073 * Note1: same applies to local builtin.
Denys Vlasenko08218012009-06-03 14:43:56 +020074 * Note2: bash 3.2.33(1) does this only if export word itself
75 * is not quoted:
76 * $ export i=`echo 'aaa bbb'`; echo "$i"
77 * aaa bbb
78 * $ "export" i=`echo 'aaa bbb'`; echo "$i"
79 * aaa
Eric Andersen25f27032001-04-26 23:22:31 +000080 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020081 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersen25f27032001-04-26 23:22:31 +000082 */
Denys Vlasenkocb6ff252009-05-04 00:14:30 +020083#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denys Vlasenko27726cb2009-09-12 14:48:33 +020084#include <malloc.h> /* for malloc_trim */
Denis Vlasenkobe709c22008-07-28 00:01:16 +000085#include <glob.h>
86/* #include <dmalloc.h> */
87#if ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +000088# include <fnmatch.h>
Denis Vlasenkobe709c22008-07-28 00:01:16 +000089#endif
Denys Vlasenko03dad222010-01-12 23:29:57 +010090
91#include "shell_common.h"
Mike Frysinger98c52642009-04-02 10:02:37 +000092#include "math.h"
Mike Frysingera4f331d2009-04-07 06:03:22 +000093#include "match.h"
Denys Vlasenkocbe0b7f2009-10-09 22:00:58 +020094#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko20b3d142009-10-09 20:59:39 +020095# include "random.h"
Denys Vlasenko76ace252009-10-12 15:25:01 +020096#else
97# define CLEAR_RANDOM_T(rnd) ((void)0)
Denys Vlasenko20b3d142009-10-09 20:59:39 +020098#endif
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000099#ifndef PIPE_BUF
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200100# define PIPE_BUF 4096 /* amount of buffering in a pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +0000101#endif
Mike Frysinger98c52642009-04-02 10:02:37 +0000102
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200103//applet:IF_HUSH(APPLET(hush, _BB_DIR_BIN, _BB_SUID_DROP))
104//applet:IF_MSH(APPLET(msh, _BB_DIR_BIN, _BB_SUID_DROP))
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200105//applet:IF_FEATURE_SH_IS_HUSH(APPLET_ODDNAME(sh, hush, _BB_DIR_BIN, _BB_SUID_DROP, sh))
106//applet:IF_FEATURE_BASH_IS_HUSH(APPLET_ODDNAME(bash, hush, _BB_DIR_BIN, _BB_SUID_DROP, bash))
107
108//kbuild:lib-$(CONFIG_HUSH) += hush.o match.o shell_common.o
109//kbuild:lib-$(CONFIG_HUSH_RANDOM_SUPPORT) += random.o
110
111//config:config HUSH
112//config: bool "hush"
113//config: default y
114//config: help
Denys Vlasenko771f1992010-07-16 14:31:34 +0200115//config: hush is a small shell (25k). It handles the normal flow control
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200116//config: constructs such as if/then/elif/else/fi, for/in/do/done, while loops,
117//config: case/esac. Redirections, here documents, $((arithmetic))
118//config: and functions are supported.
119//config:
120//config: It will compile and work on no-mmu systems.
121//config:
122//config: It does not handle select, aliases, brace expansion,
123//config: tilde expansion, &>file and >&file redirection of stdout+stderr.
124//config:
125//config:config HUSH_BASH_COMPAT
126//config: bool "bash-compatible extensions"
127//config: default y
128//config: depends on HUSH
129//config: help
130//config: Enable bash-compatible extensions.
131//config:
132//config:config HUSH_HELP
133//config: bool "help builtin"
134//config: default y
135//config: depends on HUSH
136//config: help
137//config: Enable help builtin in hush. Code size + ~1 kbyte.
138//config:
139//config:config HUSH_INTERACTIVE
140//config: bool "Interactive mode"
141//config: default y
142//config: depends on HUSH
143//config: help
144//config: Enable interactive mode (prompt and command editing).
145//config: Without this, hush simply reads and executes commands
146//config: from stdin just like a shell script from a file.
147//config: No prompt, no PS1/PS2 magic shell variables.
148//config:
149//config:config HUSH_JOB
150//config: bool "Job control"
151//config: default y
152//config: depends on HUSH_INTERACTIVE
153//config: help
154//config: Enable job control: Ctrl-Z backgrounds, Ctrl-C interrupts current
155//config: command (not entire shell), fg/bg builtins work. Without this option,
156//config: "cmd &" still works by simply spawning a process and immediately
157//config: prompting for next command (or executing next command in a script),
158//config: but no separate process group is formed.
159//config:
160//config:config HUSH_TICK
161//config: bool "Process substitution"
162//config: default y
163//config: depends on HUSH
164//config: help
165//config: Enable process substitution `command` and $(command) in hush.
166//config:
167//config:config HUSH_IF
168//config: bool "Support if/then/elif/else/fi"
169//config: default y
170//config: depends on HUSH
171//config: help
172//config: Enable if/then/elif/else/fi in hush.
173//config:
174//config:config HUSH_LOOPS
175//config: bool "Support for, while and until loops"
176//config: default y
177//config: depends on HUSH
178//config: help
179//config: Enable for, while and until loops in hush.
180//config:
181//config:config HUSH_CASE
182//config: bool "Support case ... esac statement"
183//config: default y
184//config: depends on HUSH
185//config: help
186//config: Enable case ... esac statement in hush. +400 bytes.
187//config:
188//config:config HUSH_FUNCTIONS
189//config: bool "Support funcname() { commands; } syntax"
190//config: default y
191//config: depends on HUSH
192//config: help
193//config: Enable support for shell functions in hush. +800 bytes.
194//config:
195//config:config HUSH_LOCAL
196//config: bool "Support local builtin"
197//config: default y
198//config: depends on HUSH_FUNCTIONS
199//config: help
200//config: Enable support for local variables in functions.
201//config:
202//config:config HUSH_RANDOM_SUPPORT
203//config: bool "Pseudorandom generator and $RANDOM variable"
204//config: default y
205//config: depends on HUSH
206//config: help
207//config: Enable pseudorandom generator and dynamic variable "$RANDOM".
208//config: Each read of "$RANDOM" will generate a new pseudorandom value.
209//config:
210//config:config HUSH_EXPORT_N
211//config: bool "Support 'export -n' option"
212//config: default y
213//config: depends on HUSH
214//config: help
215//config: export -n unexports variables. It is a bash extension.
216//config:
217//config:config HUSH_MODE_X
218//config: bool "Support 'hush -x' option and 'set -x' command"
219//config: default y
220//config: depends on HUSH
221//config: help
Denys Vlasenko29082232010-07-16 13:52:32 +0200222//config: This instructs hush to print commands before execution.
223//config: Adds ~300 bytes.
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200224//config:
Denys Vlasenko6adf2aa2010-07-16 19:26:38 +0200225//config:config MSH
226//config: bool "msh (deprecated: aliased to hush)"
227//config: default n
228//config: select HUSH
229//config: help
230//config: msh is deprecated and will be removed, please migrate to hush.
231//config:
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200232
233//usage:#define hush_trivial_usage NOUSAGE_STR
234//usage:#define hush_full_usage ""
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200235//usage:#define msh_trivial_usage NOUSAGE_STR
236//usage:#define msh_full_usage ""
237
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000238
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200239/* Build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000240#define LEAK_HUNTING 0
241#define BUILD_AS_NOMMU 0
242/* Enable/disable sanity checks. Ok to enable in production,
243 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
244 * Keeping 1 for now even in released versions.
245 */
246#define HUSH_DEBUG 1
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200247/* Slightly bigger (+200 bytes), but faster hush.
248 * So far it only enables a trick with counting SIGCHLDs and forks,
249 * which allows us to do fewer waitpid's.
250 * (we can detect a case where neither forks were done nor SIGCHLDs happened
251 * and therefore waitpid will return the same result as last time)
252 */
253#define ENABLE_HUSH_FAST 0
Denys Vlasenko9297dbc2010-07-05 21:37:12 +0200254/* TODO: implement simplified code for users which do not need ${var%...} ops
255 * So far ${var%...} ops are always enabled:
256 */
257#define ENABLE_HUSH_DOLLAR_OPS 1
Denis Vlasenko1943aec2009-04-09 14:15:57 +0000258
259
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000260#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000261# undef BB_MMU
262# undef USE_FOR_NOMMU
263# undef USE_FOR_MMU
264# define BB_MMU 0
265# define USE_FOR_NOMMU(...) __VA_ARGS__
266# define USE_FOR_MMU(...)
267#endif
268
Denys Vlasenko1fcbff22010-06-26 02:40:08 +0200269#include "NUM_APPLETS.h"
Denys Vlasenko14974842010-03-23 01:08:26 +0100270#if NUM_APPLETS == 1
Denis Vlasenko61befda2008-11-25 01:36:03 +0000271/* STANDALONE does not make sense, and won't compile */
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000272# undef CONFIG_FEATURE_SH_STANDALONE
273# undef ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000274# undef IF_FEATURE_SH_STANDALONE
Denys Vlasenko14974842010-03-23 01:08:26 +0100275# undef IF_NOT_FEATURE_SH_STANDALONE
276# define ENABLE_FEATURE_SH_STANDALONE 0
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000277# define IF_FEATURE_SH_STANDALONE(...)
278# define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denis Vlasenko61befda2008-11-25 01:36:03 +0000279#endif
280
Denis Vlasenko05743d72008-02-10 12:10:08 +0000281#if !ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000282# undef ENABLE_FEATURE_EDITING
283# define ENABLE_FEATURE_EDITING 0
284# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
285# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000286#endif
287
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000288/* Do we support ANY keywords? */
289#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000290# define HAS_KEYWORDS 1
291# define IF_HAS_KEYWORDS(...) __VA_ARGS__
292# define IF_HAS_NO_KEYWORDS(...)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000293#else
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000294# define HAS_KEYWORDS 0
295# define IF_HAS_KEYWORDS(...)
296# define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000297#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000298
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000299/* If you comment out one of these below, it will be #defined later
300 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000301#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000302/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000303#define debug_printf_parse(...) do {} while (0)
304#define debug_print_tree(a, b) do {} while (0)
305#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000306#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000307#define debug_printf_jobs(...) do {} while (0)
308#define debug_printf_expand(...) do {} while (0)
Denys Vlasenko1e811b12010-05-22 03:12:29 +0200309#define debug_printf_varexp(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000310#define debug_printf_glob(...) do {} while (0)
311#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000312#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000313#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000314
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000315#define ERR_PTR ((void*)(long)1)
316
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200317#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000318
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200319#define _SPECIAL_VARS_STR "_*@$!?#"
320#define SPECIAL_VARS_STR ("_*@$!?#" + 1)
321#define NUMERIC_SPECVARS_STR ("_*@$!?#" + 3)
Denys Vlasenko36f774a2010-09-05 14:45:38 +0200322#if ENABLE_HUSH_BASH_COMPAT
323/* Support / and // replace ops */
324/* Note that // is stored as \ in "encoded" string representation */
325# define VAR_ENCODED_SUBST_OPS "\\/%#:-=+?"
326# define VAR_SUBST_OPS ("\\/%#:-=+?" + 1)
327# define MINUS_PLUS_EQUAL_QUESTION ("\\/%#:-=+?" + 5)
328#else
329# define VAR_ENCODED_SUBST_OPS "%#:-=+?"
330# define VAR_SUBST_OPS "%#:-=+?"
331# define MINUS_PLUS_EQUAL_QUESTION ("%#:-=+?" + 3)
332#endif
Denys Vlasenkoe85248a2010-05-22 06:20:26 +0200333
334#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000335
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200336struct variable;
337
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000338static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
339
340/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000341 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000342 */
343#if !BB_MMU
344typedef struct nommu_save_t {
345 char **new_env;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200346 struct variable *old_vars;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000347 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000348 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000349} nommu_save_t;
350#endif
351
Denys Vlasenko9b782552010-09-08 13:33:26 +0200352enum {
Eric Andersen25f27032001-04-26 23:22:31 +0000353 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000354#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000355 RES_IF ,
356 RES_THEN ,
357 RES_ELIF ,
358 RES_ELSE ,
359 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000360#endif
361#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000362 RES_FOR ,
363 RES_WHILE ,
364 RES_UNTIL ,
365 RES_DO ,
366 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000367#endif
368#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000369 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000370#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000371#if ENABLE_HUSH_CASE
372 RES_CASE ,
Denys Vlasenkoe9bda902009-05-23 16:50:07 +0200373 /* three pseudo-keywords support contrived "case" syntax: */
374 RES_CASE_IN, /* "case ... IN", turns into RES_MATCH when IN is observed */
375 RES_MATCH , /* "word)" */
376 RES_CASE_BODY, /* "this command is inside CASE" */
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000377 RES_ESAC ,
378#endif
379 RES_XXXX ,
380 RES_SNTX
Denys Vlasenko9b782552010-09-08 13:33:26 +0200381};
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000382
Denys Vlasenko5b686cb2010-09-08 13:44:34 +0200383enum {
384 EXP_FLAG_GLOB = 0x200,
385 EXP_FLAG_ESC_GLOB_CHARS = 0x100,
386 EXP_FLAG_SINGLEWORD = 0x80, /* must be 0x80 */
387};
388
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000389typedef struct o_string {
390 char *data;
391 int length; /* position where data is appended */
392 int maxlen;
393 /* Protect newly added chars against globbing
394 * (by prepending \ to *, ?, [, \) */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +0200395 int o_expflags;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000396 /* At least some part of the string was inside '' or "",
397 * possibly empty one: word"", wo''rd etc. */
Denys Vlasenko38292b62010-09-05 14:49:40 +0200398 smallint has_quoted_part;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000399 smallint has_empty_slot;
400 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
401} o_string;
402enum {
403 MAYBE_ASSIGNMENT = 0,
404 DEFINITELY_ASSIGNMENT = 1,
405 NOT_ASSIGNMENT = 2,
406 WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
407};
408/* Used for initialization: o_string foo = NULL_O_STRING; */
409#define NULL_O_STRING { NULL }
410
411/* I can almost use ordinary FILE*. Is open_memstream() universally
412 * available? Where is it documented? */
413typedef struct in_str {
414 const char *p;
415 /* eof_flag=1: last char in ->p is really an EOF */
416 char eof_flag; /* meaningless if ->p == NULL */
417 char peek_buf[2];
418#if ENABLE_HUSH_INTERACTIVE
419 smallint promptme;
420 smallint promptmode; /* 0: PS1, 1: PS2 */
421#endif
422 FILE *file;
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200423 int (*get) (struct in_str *) FAST_FUNC;
424 int (*peek) (struct in_str *) FAST_FUNC;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000425} in_str;
426#define i_getch(input) ((input)->get(input))
427#define i_peek(input) ((input)->peek(input))
428
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200429/* The descrip member of this structure is only used to make
430 * debugging output pretty */
431static const struct {
432 int mode;
433 signed char default_fd;
434 char descrip[3];
435} redir_table[] = {
436 { O_RDONLY, 0, "<" },
437 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
438 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
439 { O_CREAT|O_RDWR, 1, "<>" },
440 { O_RDONLY, 0, "<<" },
441/* Should not be needed. Bogus default_fd helps in debugging */
442/* { O_RDONLY, 77, "<<" }, */
443};
444
Eric Andersen25f27032001-04-26 23:22:31 +0000445struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000446 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000447 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000448 int rd_fd; /* fd to redirect */
449 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
450 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000451 smallint rd_type; /* (enum redir_type) */
452 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000453 * and subsequently heredoc itself; and rd_dup is a bitmask:
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200454 * bit 0: do we need to trim leading tabs?
455 * bit 1: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000456 */
Eric Andersen25f27032001-04-26 23:22:31 +0000457};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000458typedef enum redir_type {
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200459 REDIRECT_INPUT = 0,
460 REDIRECT_OVERWRITE = 1,
461 REDIRECT_APPEND = 2,
462 REDIRECT_IO = 3,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000463 REDIRECT_HEREDOC = 4,
Denys Vlasenko764b2f02009-06-07 16:05:04 +0200464 REDIRECT_HEREDOC2 = 5, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000465
466 REDIRFD_CLOSE = -3,
467 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000468 REDIRFD_TO_FILE = -1,
469 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000470
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000471 HEREDOC_SKIPTABS = 1,
472 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000473} redir_type;
474
Eric Andersen25f27032001-04-26 23:22:31 +0000475
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000476struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000477 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000478 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000479 smallint is_stopped; /* is the command currently running? */
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200480 smallint cmd_type; /* CMD_xxx */
481#define CMD_NORMAL 0
482#define CMD_SUBSHELL 1
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200483#if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenkod383b492010-09-06 10:22:13 +0200484/* used for "[[ EXPR ]]" */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200485# define CMD_SINGLEWORD_NOGLOB 2
Denis Vlasenkoed055212009-04-11 10:37:10 +0000486#endif
Denys Vlasenko9ca656b2009-06-10 13:39:35 +0200487#if ENABLE_HUSH_FUNCTIONS
488# define CMD_FUNCDEF 3
489#endif
490
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200491 /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */
492 struct pipe *group;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000493#if !BB_MMU
494 char *group_as_string;
495#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000496#if ENABLE_HUSH_FUNCTIONS
497 struct function *child_func;
498/* This field is used to prevent a bug here:
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200499 * while...do f1() {a;}; f1; f1() {b;}; f1; done
Denis Vlasenkoed055212009-04-11 10:37:10 +0000500 * When we execute "f1() {a;}" cmd, we create new function and clear
501 * cmd->group, cmd->group_as_string, cmd->argv[0].
Denys Vlasenko9d617c42009-06-09 18:40:52 +0200502 * When we execute "f1() {b;}", we notice that f1 exists,
503 * and that its "parent cmd" struct is still "alive",
Denis Vlasenkoed055212009-04-11 10:37:10 +0000504 * we put those fields back into cmd->xxx
505 * (struct function has ->parent_cmd ptr to facilitate that).
506 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
507 * Without this trick, loop would execute a;b;b;b;...
508 * instead of correct sequence a;b;a;b;...
509 * When command is freed, it severs the link
510 * (sets ->child_func->parent_cmd to NULL).
511 */
512#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000513 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000514/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
515 * and on execution these are substituted with their values.
516 * Substitution can make _several_ words out of one argv[n]!
517 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000518 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000519 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000520 struct redir_struct *redirects; /* I/O redirections */
521};
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000522/* Is there anything in this command at all? */
523#define IS_NULL_CMD(cmd) \
524 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
525
Eric Andersen25f27032001-04-26 23:22:31 +0000526
527struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000528 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000529 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000530 int alive_cmds; /* number of commands running (not exited) */
531 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000532#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000533 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000534 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000535 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000536#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000537 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000538 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000539 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
540 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000541};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000542typedef enum pipe_style {
543 PIPE_SEQ = 1,
544 PIPE_AND = 2,
545 PIPE_OR = 3,
546 PIPE_BG = 4,
547} pipe_style;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000548/* Is there anything in this pipe at all? */
549#define IS_NULL_PIPE(pi) \
550 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
Eric Andersen25f27032001-04-26 23:22:31 +0000551
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000552/* This holds pointers to the various results of parsing */
553struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000554 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000555 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000556 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000557 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000558 /* last command in pipe (being constructed right now) */
559 struct command *command;
560 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000561 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000562#if !BB_MMU
563 o_string as_string;
564#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000565#if HAS_KEYWORDS
566 smallint ctx_res_w;
567 smallint ctx_inverted; /* "! cmd | cmd" */
568#if ENABLE_HUSH_CASE
569 smallint ctx_dsemicolon; /* ";;" seen */
570#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000571 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
572 int old_flag;
573 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000574 * example: "if pipe1; pipe2; then pipe3; fi"
575 * when we see "if" or "then", we malloc and copy current context,
576 * and make ->stack point to it. then we parse pipeN.
577 * when closing "then" / fi" / whatever is found,
578 * we move list_head into ->stack->command->group,
579 * copy ->stack into current context, and delete ->stack.
580 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000581 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000582 struct parse_context *stack;
583#endif
584};
585
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000586/* On program start, environ points to initial environment.
587 * putenv adds new pointers into it, unsetenv removes them.
588 * Neither of these (de)allocates the strings.
589 * setenv allocates new strings in malloc space and does putenv,
590 * and thus setenv is unusable (leaky) for shell's purposes */
591#define setenv(...) setenv_is_leaky_dont_use()
592struct variable {
593 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000594 char *varstr; /* points to "name=" portion */
Denys Vlasenko295fef82009-06-03 12:47:26 +0200595#if ENABLE_HUSH_LOCAL
596 unsigned func_nest_level;
597#endif
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000598 int max_len; /* if > 0, name is part of initial env; else name is malloced */
599 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000600 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000601};
602
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000603enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000604 BC_BREAK = 1,
605 BC_CONTINUE = 2,
606};
607
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000608#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000609struct function {
610 struct function *next;
611 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000612 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000613 struct pipe *body;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200614# if !BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000615 char *body_as_string;
Denys Vlasenkoc1947f12009-10-23 01:30:26 +0200616# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000617};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000618#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000619
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000620
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000621/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000622/* Sorted roughly by size (smaller offsets == smaller code) */
623struct globals {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000624 /* interactive_fd != 0 means we are an interactive shell.
625 * If we are, then saved_tty_pgrp can also be != 0, meaning
626 * that controlling tty is available. With saved_tty_pgrp == 0,
627 * job control still works, but terminal signals
628 * (^C, ^Z, ^Y, ^\) won't work at all, and background
629 * process groups can only be created with "cmd &".
630 * With saved_tty_pgrp != 0, hush will use tcsetpgrp()
631 * to give tty to the foreground process group,
632 * and will take it back when the group is stopped (^Z)
633 * or killed (^C).
634 */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000635#if ENABLE_HUSH_INTERACTIVE
636 /* 'interactive_fd' is a fd# open to ctty, if we have one
637 * _AND_ if we decided to act interactively */
638 int interactive_fd;
639 const char *PS1;
640 const char *PS2;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000641# define G_interactive_fd (G.interactive_fd)
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000642#else
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000643# define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000644#endif
645#if ENABLE_FEATURE_EDITING
646 line_input_t *line_input_state;
647#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000648 pid_t root_pid;
Denys Vlasenkodea47882009-10-09 15:40:49 +0200649 pid_t root_ppid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000650 pid_t last_bg_pid;
Denys Vlasenko20b3d142009-10-09 20:59:39 +0200651#if ENABLE_HUSH_RANDOM_SUPPORT
652 random_t random_gen;
653#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000654#if ENABLE_HUSH_JOB
655 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000656 int last_jobid;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000657 pid_t saved_tty_pgrp;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000658 struct pipe *job_list;
Mike Frysinger38478a62009-05-20 04:48:06 -0400659# define G_saved_tty_pgrp (G.saved_tty_pgrp)
660#else
661# define G_saved_tty_pgrp 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000662#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000663 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000664#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000665 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000666#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000667#if ENABLE_HUSH_FUNCTIONS
668 /* 0: outside of a function (or sourced file)
669 * -1: inside of a function, ok to use return builtin
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000670 * 1: return is invoked, skip all till end of func
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000671 */
672 smallint flag_return_in_progress;
673#endif
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200674 smallint n_mode;
675#if ENABLE_HUSH_MODE_X
Denys Vlasenko3f5fae02010-07-16 12:35:35 +0200676 smallint x_mode;
Denys Vlasenko29082232010-07-16 13:52:32 +0200677# define G_x_mode (G.x_mode)
Denys Vlasenko202a2d12010-07-16 12:36:14 +0200678#else
679# define G_x_mode 0
680#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000681 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000682 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000683 smalluint last_exitcode;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000684 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000685 smalluint global_args_malloced;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +0100686 smalluint inherited_set_is_saved;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000687 /* how many non-NULL argv's we have. NB: $# + 1 */
688 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000689 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000690#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000691 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000692#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000693#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000694 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000695 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000696#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000697 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000698 const char *cwd;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000699 struct variable *top_var; /* = &G.shell_ver (set in main()) */
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000700 struct variable shell_ver;
Denys Vlasenko29082232010-07-16 13:52:32 +0200701 char **expanded_assignments;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000702#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000703 struct function *top_func;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200704# if ENABLE_HUSH_LOCAL
705 struct variable **shadowed_vars_pp;
706 unsigned func_nest_level;
707# endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000708#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000709 /* Signal and trap handling */
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200710#if ENABLE_HUSH_FAST
711 unsigned count_SIGCHLD;
712 unsigned handled_SIGCHLD;
Denys Vlasenkoe2df5f42009-05-26 14:34:10 +0200713 smallint we_have_children;
Denys Vlasenko8d7be232009-05-25 16:38:32 +0200714#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000715 /* which signals have non-DFL handler (even with no traps set)? */
716 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000717 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000718 sigset_t blocked_set;
719 sigset_t inherited_set;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000720#if HUSH_DEBUG
721 unsigned long memleak_value;
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000722 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000723#endif
Denys Vlasenkoaaa22d22009-10-19 16:34:39 +0200724 char user_input_buf[ENABLE_FEATURE_EDITING ? CONFIG_FEATURE_EDITING_MAX_LEN : 2];
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000725};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000726#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000727/* Not #defining name to G.name - this quickly gets unwieldy
728 * (too many defines). Also, I actually prefer to see when a variable
729 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000730#define INIT_G() do { \
731 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
732} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000733
734
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000735/* Function prototypes for builtins */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200736static int builtin_cd(char **argv) FAST_FUNC;
737static int builtin_echo(char **argv) FAST_FUNC;
738static int builtin_eval(char **argv) FAST_FUNC;
739static int builtin_exec(char **argv) FAST_FUNC;
740static int builtin_exit(char **argv) FAST_FUNC;
741static int builtin_export(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000742#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200743static int builtin_fg_bg(char **argv) FAST_FUNC;
744static int builtin_jobs(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000745#endif
746#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200747static int builtin_help(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000748#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200749#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200750static int builtin_local(char **argv) FAST_FUNC;
Denys Vlasenko295fef82009-06-03 12:47:26 +0200751#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000752#if HUSH_DEBUG
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200753static int builtin_memleak(char **argv) FAST_FUNC;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000754#endif
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400755#if ENABLE_PRINTF
756static int builtin_printf(char **argv) FAST_FUNC;
757#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200758static int builtin_pwd(char **argv) FAST_FUNC;
759static int builtin_read(char **argv) FAST_FUNC;
760static int builtin_set(char **argv) FAST_FUNC;
761static int builtin_shift(char **argv) FAST_FUNC;
762static int builtin_source(char **argv) FAST_FUNC;
763static int builtin_test(char **argv) FAST_FUNC;
764static int builtin_trap(char **argv) FAST_FUNC;
765static int builtin_type(char **argv) FAST_FUNC;
766static int builtin_true(char **argv) FAST_FUNC;
767static int builtin_umask(char **argv) FAST_FUNC;
768static int builtin_unset(char **argv) FAST_FUNC;
769static int builtin_wait(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000770#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200771static int builtin_break(char **argv) FAST_FUNC;
772static int builtin_continue(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000773#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000774#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200775static int builtin_return(char **argv) FAST_FUNC;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000776#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000777
778/* Table of built-in functions. They can be forked or not, depending on
779 * context: within pipes, they fork. As simple commands, they do not.
780 * When used in non-forking context, they can change global variables
781 * in the parent shell process. If forked, of course they cannot.
782 * For example, 'unset foo | whatever' will parse and run, but foo will
783 * still be set at the end. */
784struct built_in_command {
Denys Vlasenko17323a62010-01-28 01:57:05 +0100785 const char *b_cmd;
786 int (*b_function)(char **argv) FAST_FUNC;
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000787#if ENABLE_HUSH_HELP
Denys Vlasenko17323a62010-01-28 01:57:05 +0100788 const char *b_descr;
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200789# define BLTIN(cmd, func, help) { cmd, func, help }
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000790#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200791# define BLTIN(cmd, func, help) { cmd, func }
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000792#endif
793};
794
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200795static const struct built_in_command bltins1[] = {
796 BLTIN("." , builtin_source , "Run commands in a file"),
797 BLTIN(":" , builtin_true , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000798#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200799 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000800#endif
801#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200802 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000803#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200804 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000805#if ENABLE_HUSH_LOOPS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200806 BLTIN("continue" , builtin_continue, "Start new loop iteration"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000807#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200808 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
809 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
810 BLTIN("exit" , builtin_exit , "Exit"),
811 BLTIN("export" , builtin_export , "Set environment variables"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000812#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200813 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000814#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000815#if ENABLE_HUSH_HELP
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200816 BLTIN("help" , builtin_help , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000817#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000818#if ENABLE_HUSH_JOB
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200819 BLTIN("jobs" , builtin_jobs , "List jobs"),
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000820#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +0200821#if ENABLE_HUSH_LOCAL
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200822 BLTIN("local" , builtin_local , "Set local variables"),
Denys Vlasenko295fef82009-06-03 12:47:26 +0200823#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000824#if HUSH_DEBUG
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200825 BLTIN("memleak" , builtin_memleak , NULL),
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000826#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200827 BLTIN("read" , builtin_read , "Input into variable"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000828#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200829 BLTIN("return" , builtin_return , "Return from a function"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000830#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200831 BLTIN("set" , builtin_set , "Set/unset positional parameters"),
832 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
Denys Vlasenko82731b42010-05-17 17:49:52 +0200833#if ENABLE_HUSH_BASH_COMPAT
834 BLTIN("source" , builtin_source , "Run commands in a file"),
835#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200836 BLTIN("trap" , builtin_trap , "Trap signals"),
Denys Vlasenko651a2692010-03-23 16:25:17 +0100837 BLTIN("type" , builtin_type , "Show command type"),
Denys Vlasenkof3c742f2010-03-06 20:12:00 +0100838 BLTIN("ulimit" , shell_builtin_ulimit , "Control resource limits"),
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200839 BLTIN("umask" , builtin_umask , "Set file creation mask"),
840 BLTIN("unset" , builtin_unset , "Unset variables"),
841 BLTIN("wait" , builtin_wait , "Wait for process"),
842};
843/* For now, echo and test are unconditionally enabled.
844 * Maybe make it configurable? */
845static const struct built_in_command bltins2[] = {
846 BLTIN("[" , builtin_test , NULL),
847 BLTIN("echo" , builtin_echo , NULL),
Mike Frysinger4ebc76c2009-10-15 03:32:39 -0400848#if ENABLE_PRINTF
849 BLTIN("printf" , builtin_printf , NULL),
850#endif
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +0200851 BLTIN("pwd" , builtin_pwd , NULL),
852 BLTIN("test" , builtin_test , NULL),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000853};
854
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000855
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000856/* Debug printouts.
857 */
858#if HUSH_DEBUG
859/* prevent disasters with G.debug_indent < 0 */
860# define indent() fprintf(stderr, "%*s", (G.debug_indent * 2) & 0xff, "")
861# define debug_enter() (G.debug_indent++)
862# define debug_leave() (G.debug_indent--)
863#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200864# define indent() ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000865# define debug_enter() ((void)0)
866# define debug_leave() ((void)0)
867#endif
868
869#ifndef debug_printf
870# define debug_printf(...) (indent(), fprintf(stderr, __VA_ARGS__))
871#endif
872
873#ifndef debug_printf_parse
874# define debug_printf_parse(...) (indent(), fprintf(stderr, __VA_ARGS__))
875#endif
876
877#ifndef debug_printf_exec
878#define debug_printf_exec(...) (indent(), fprintf(stderr, __VA_ARGS__))
879#endif
880
881#ifndef debug_printf_env
882# define debug_printf_env(...) (indent(), fprintf(stderr, __VA_ARGS__))
883#endif
884
885#ifndef debug_printf_jobs
886# define debug_printf_jobs(...) (indent(), fprintf(stderr, __VA_ARGS__))
887# define DEBUG_JOBS 1
888#else
889# define DEBUG_JOBS 0
890#endif
891
892#ifndef debug_printf_expand
893# define debug_printf_expand(...) (indent(), fprintf(stderr, __VA_ARGS__))
894# define DEBUG_EXPAND 1
895#else
896# define DEBUG_EXPAND 0
897#endif
898
Denys Vlasenko1e811b12010-05-22 03:12:29 +0200899#ifndef debug_printf_varexp
900# define debug_printf_varexp(...) (indent(), fprintf(stderr, __VA_ARGS__))
901#endif
902
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000903#ifndef debug_printf_glob
904# define debug_printf_glob(...) (indent(), fprintf(stderr, __VA_ARGS__))
905# define DEBUG_GLOB 1
906#else
907# define DEBUG_GLOB 0
908#endif
909
910#ifndef debug_printf_list
911# define debug_printf_list(...) (indent(), fprintf(stderr, __VA_ARGS__))
912#endif
913
914#ifndef debug_printf_subst
915# define debug_printf_subst(...) (indent(), fprintf(stderr, __VA_ARGS__))
916#endif
917
918#ifndef debug_printf_clean
919# define debug_printf_clean(...) (indent(), fprintf(stderr, __VA_ARGS__))
920# define DEBUG_CLEAN 1
921#else
922# define DEBUG_CLEAN 0
923#endif
924
925#if DEBUG_EXPAND
926static void debug_print_strings(const char *prefix, char **vv)
927{
928 indent();
929 fprintf(stderr, "%s:\n", prefix);
930 while (*vv)
931 fprintf(stderr, " '%s'\n", *vv++);
932}
933#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +0200934# define debug_print_strings(prefix, vv) ((void)0)
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000935#endif
936
937
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000938/* Leak hunting. Use hush_leaktool.sh for post-processing.
939 */
940#if LEAK_HUNTING
941static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000942{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000943 void *ptr = xmalloc((size + 0xff) & ~0xff);
944 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
945 return ptr;
946}
947static void *xxrealloc(int lineno, void *ptr, size_t size)
948{
949 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
950 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
951 return ptr;
952}
953static char *xxstrdup(int lineno, const char *str)
954{
955 char *ptr = xstrdup(str);
956 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
957 return ptr;
958}
959static void xxfree(void *ptr)
960{
961 fdprintf(2, "free %p\n", ptr);
962 free(ptr);
963}
Denys Vlasenko8391c482010-05-22 17:50:43 +0200964# define xmalloc(s) xxmalloc(__LINE__, s)
965# define xrealloc(p, s) xxrealloc(__LINE__, p, s)
966# define xstrdup(s) xxstrdup(__LINE__, s)
967# define free(p) xxfree(p)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000968#endif
969
970
971/* Syntax and runtime errors. They always abort scripts.
972 * In interactive use they usually discard unparsed and/or unexecuted commands
973 * and return to the prompt.
974 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
975 */
976#if HUSH_DEBUG < 2
Denys Vlasenko606291b2009-09-23 23:15:43 +0200977# define die_if_script(lineno, ...) die_if_script(__VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000978# define syntax_error(lineno, msg) syntax_error(msg)
979# define syntax_error_at(lineno, msg) syntax_error_at(msg)
980# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
981# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
982# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000983#endif
984
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000985static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000986{
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000987 va_list p;
988
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000989#if HUSH_DEBUG >= 2
990 bb_error_msg("hush.c:%u", lineno);
991#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000992 va_start(p, fmt);
993 bb_verror_msg(fmt, p, NULL);
994 va_end(p);
995 if (!G_interactive_fd)
996 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +0000997}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000998
999static void syntax_error(unsigned lineno, const char *msg)
1000{
1001 if (msg)
1002 die_if_script(lineno, "syntax error: %s", msg);
1003 else
1004 die_if_script(lineno, "syntax error", NULL);
1005}
1006
1007static void syntax_error_at(unsigned lineno, const char *msg)
1008{
1009 die_if_script(lineno, "syntax error at '%s'", msg);
1010}
1011
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001012static void syntax_error_unterm_str(unsigned lineno, const char *s)
1013{
1014 die_if_script(lineno, "syntax error: unterminated %s", s);
1015}
1016
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001017/* It so happens that all such cases are totally fatal
1018 * even if shell is interactive: EOF while looking for closing
1019 * delimiter. There is nowhere to read stuff from after that,
1020 * it's EOF! The only choice is to terminate.
1021 */
1022static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN;
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001023static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001024{
Mike Frysinger6a46ab82009-06-01 14:14:36 -04001025 char msg[2] = { ch, '\0' };
1026 syntax_error_unterm_str(lineno, msg);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001027 xfunc_die();
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001028}
1029
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02001030static void syntax_error_unexpected_ch(unsigned lineno, int ch)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001031{
1032 char msg[2];
1033 msg[0] = ch;
1034 msg[1] = '\0';
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02001035 die_if_script(lineno, "syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001036}
1037
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001038#if HUSH_DEBUG < 2
1039# undef die_if_script
1040# undef syntax_error
1041# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001042# undef syntax_error_unterm_ch
1043# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001044# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001045#else
Denys Vlasenko606291b2009-09-23 23:15:43 +02001046# define die_if_script(...) die_if_script(__LINE__, __VA_ARGS__)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00001047# define syntax_error(msg) syntax_error(__LINE__, msg)
1048# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
1049# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
1050# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
1051# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001052#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001053
Denis Vlasenko552433b2009-04-04 19:29:21 +00001054
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001055#if ENABLE_HUSH_INTERACTIVE
1056static void cmdedit_update_prompt(void);
1057#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001058# define cmdedit_update_prompt() ((void)0)
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001059#endif
1060
1061
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001062/* Utility functions
1063 */
Denis Vlasenko55789c62008-06-18 16:30:42 +00001064/* Replace each \x with x in place, return ptr past NUL. */
1065static char *unbackslash(char *src)
1066{
Denys Vlasenko71885402009-09-24 01:44:13 +02001067 char *dst = src = strchrnul(src, '\\');
Denis Vlasenko55789c62008-06-18 16:30:42 +00001068 while (1) {
1069 if (*src == '\\')
1070 src++;
1071 if ((*dst++ = *src++) == '\0')
1072 break;
1073 }
1074 return dst;
1075}
1076
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001077static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001078{
1079 int i;
1080 unsigned count1;
1081 unsigned count2;
1082 char **v;
1083
1084 v = strings;
1085 count1 = 0;
1086 if (v) {
1087 while (*v) {
1088 count1++;
1089 v++;
1090 }
1091 }
1092 count2 = 0;
1093 v = add;
1094 while (*v) {
1095 count2++;
1096 v++;
1097 }
1098 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
1099 v[count1 + count2] = NULL;
1100 i = count2;
1101 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001102 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001103 return v;
1104}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001105#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001106static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
1107{
1108 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
1109 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
1110 return ptr;
1111}
1112#define add_strings_to_strings(strings, add, need_to_dup) \
1113 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
1114#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001115
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001116/* Note: takes ownership of "add" ptr (it is not strdup'ed) */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001117static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001118{
1119 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001120 v[0] = add;
1121 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00001122 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00001123}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001124#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +00001125static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
1126{
1127 char **ptr = add_string_to_strings(strings, add);
1128 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
1129 return ptr;
1130}
1131#define add_string_to_strings(strings, add) \
1132 xx_add_string_to_strings(__LINE__, strings, add)
1133#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001134
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001135static void free_strings(char **strings)
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001136{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001137 char **v;
1138
1139 if (!strings)
1140 return;
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001141 v = strings;
1142 while (*v) {
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001143 free(*v);
1144 v++;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001145 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00001146 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001147}
1148
Denis Vlasenko76d50412008-06-10 16:19:39 +00001149
Denis Vlasenko270b1c32009-04-17 18:54:50 +00001150/* Helpers for setting new $n and restoring them back
1151 */
1152typedef struct save_arg_t {
1153 char *sv_argv0;
1154 char **sv_g_argv;
1155 int sv_g_argc;
1156 smallint sv_g_malloced;
1157} save_arg_t;
1158
1159static void save_and_replace_G_args(save_arg_t *sv, char **argv)
1160{
1161 int n;
1162
1163 sv->sv_argv0 = argv[0];
1164 sv->sv_g_argv = G.global_argv;
1165 sv->sv_g_argc = G.global_argc;
1166 sv->sv_g_malloced = G.global_args_malloced;
1167
1168 argv[0] = G.global_argv[0]; /* retain $0 */
1169 G.global_argv = argv;
1170 G.global_args_malloced = 0;
1171
1172 n = 1;
1173 while (*++argv)
1174 n++;
1175 G.global_argc = n;
1176}
1177
1178static void restore_G_args(save_arg_t *sv, char **argv)
1179{
1180 char **pp;
1181
1182 if (G.global_args_malloced) {
1183 /* someone ran "set -- arg1 arg2 ...", undo */
1184 pp = G.global_argv;
1185 while (*++pp) /* note: does not free $0 */
1186 free(*pp);
1187 free(G.global_argv);
1188 }
1189 argv[0] = sv->sv_argv0;
1190 G.global_argv = sv->sv_g_argv;
1191 G.global_argc = sv->sv_g_argc;
1192 G.global_args_malloced = sv->sv_g_malloced;
1193}
1194
1195
Denis Vlasenkod5762932009-03-31 11:22:57 +00001196/* Basic theory of signal handling in shell
1197 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001198 * This does not describe what hush does, rather, it is current understanding
1199 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001200 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1201 *
1202 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1203 * is finished or backgrounded. It is the same in interactive and
1204 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001205 * a user trap handler is installed or a shell special one is in effect.
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001206 * ^C or ^Z from keyboard seems to execute "at once" because it usually
Denis Vlasenkod5762932009-03-31 11:22:57 +00001207 * backgrounds (i.e. stops) or kills all members of currently running
1208 * pipe.
1209 *
1210 * Wait builtin in interruptible by signals for which user trap is set
1211 * or by SIGINT in interactive shell.
1212 *
1213 * Trap handlers will execute even within trap handlers. (right?)
1214 *
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001215 * User trap handlers are forgotten when subshell ("(cmd)") is entered,
1216 * except for handlers set to '' (empty string).
Denis Vlasenkod5762932009-03-31 11:22:57 +00001217 *
1218 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001219 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001220 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001221 * Commands which are run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001222 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001223 *
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001224 * Ordinary commands have signals set to SIG_IGN/DFL as inherited
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001225 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001226 *
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001227 * Signals which differ from SIG_DFL action
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001228 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001229 *
1230 * SIGQUIT: ignore
1231 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001232 * SIGHUP (interactive):
1233 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001234 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001235 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1236 * that all pipe members are stopped. Try this in bash:
1237 * while :; do :; done - ^Z does not background it
1238 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001239 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001240 * of the command line, show prompt. NB: ^C does not send SIGINT
1241 * to interactive shell while shell is waiting for a pipe,
1242 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001243 * Example 1: this waits 5 sec, but does not execute ls:
1244 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1245 * Example 2: this does not wait and does not execute ls:
1246 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1247 * Example 3: this does not wait 5 sec, but executes ls:
1248 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001249 *
1250 * (What happens to signals which are IGN on shell start?)
1251 * (What happens with signal mask on shell start?)
1252 *
1253 * Implementation in hush
1254 * ======================
1255 * We use in-kernel pending signal mask to determine which signals were sent.
1256 * We block all signals which we don't want to take action immediately,
1257 * i.e. we block all signals which need to have special handling as described
1258 * above, and all signals which have traps set.
1259 * After each pipe execution, we extract any pending signals via sigtimedwait()
1260 * and act on them.
1261 *
1262 * unsigned non_DFL_mask: a mask of such "special" signals
1263 * sigset_t blocked_set: current blocked signal set
1264 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001265 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +00001266 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001267 * "trap 'cmd' SIGxxx":
1268 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001269 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001270 * unblock signals with special interactive handling
1271 * (child shell is not interactive),
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001272 * unset all traps except '' (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001273 * after [v]fork, if we plan to exec:
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02001274 * POSIX says fork clears pending signal mask in child - no need to clear it.
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001275 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001276 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001277 * Note: as a result, we do not use signal handlers much. The only uses
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001278 * are to count SIGCHLDs
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001279 * and to restore tty pgrp on signal-induced exit.
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001280 *
Denys Vlasenko67f71862009-09-25 14:21:06 +02001281 * Note 2 (compat):
Denys Vlasenko4ea0ca82009-09-25 12:58:37 +02001282 * Standard says "When a subshell is entered, traps that are not being ignored
1283 * are set to the default actions". bash interprets it so that traps which
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01001284 * are set to '' (ignore) are NOT reset to defaults. We do the same.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001285 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001286enum {
1287 SPECIAL_INTERACTIVE_SIGS = 0
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001288 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001289 | (1 << SIGINT)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001290 | (1 << SIGHUP)
1291 ,
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001292 SPECIAL_JOB_SIGS = 0
Mike Frysinger38478a62009-05-20 04:48:06 -04001293#if ENABLE_HUSH_JOB
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001294 | (1 << SIGTTIN)
1295 | (1 << SIGTTOU)
1296 | (1 << SIGTSTP)
1297#endif
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001298};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001299
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001300#if ENABLE_HUSH_FAST
1301static void SIGCHLD_handler(int sig UNUSED_PARAM)
1302{
1303 G.count_SIGCHLD++;
1304//bb_error_msg("[%d] SIGCHLD_handler: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1305}
1306#endif
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001307
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001308#if ENABLE_HUSH_JOB
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001309
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001310/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
Denys Vlasenko8391c482010-05-22 17:50:43 +02001311# define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001312/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denys Vlasenko8391c482010-05-22 17:50:43 +02001313# define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001314
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001315/* Restores tty foreground process group, and exits.
1316 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001317 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001318 * or called directly with -EXITCODE.
1319 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001320static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001321static void sigexit(int sig)
1322{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001323 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001324 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001325
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001326 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001327 * tty pgrp then, only top-level shell process does that */
Mike Frysinger38478a62009-05-20 04:48:06 -04001328 if (G_saved_tty_pgrp && getpid() == G.root_pid)
1329 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001330
1331 /* Not a signal, just exit */
1332 if (sig <= 0)
1333 _exit(- sig);
1334
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001335 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001336}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001337#else
1338
Denys Vlasenko8391c482010-05-22 17:50:43 +02001339# define disable_restore_tty_pgrp_on_exit() ((void)0)
1340# define enable_restore_tty_pgrp_on_exit() ((void)0)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001341
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001342#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001343
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001344/* Restores tty foreground process group, and exits. */
1345static void hush_exit(int exitcode) NORETURN;
1346static void hush_exit(int exitcode)
1347{
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001348 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1349 /* Prevent recursion:
1350 * trap "echo Hi; exit" EXIT; exit
1351 */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001352 char *argv[3];
1353 /* argv[0] is unused */
1354 argv[1] = G.traps[0];
1355 argv[2] = NULL;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001356 G.traps[0] = NULL;
1357 G.exiting = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001358 builtin_eval(argv);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001359 /* free(argv[1]); - why bother */
Denis Vlasenkod5762932009-03-31 11:22:57 +00001360 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001361
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001362#if ENABLE_HUSH_JOB
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001363 fflush_all();
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001364 sigexit(- (exitcode & 0xff));
1365#else
1366 exit(exitcode);
1367#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001368}
1369
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001370static int check_and_run_traps(int sig)
1371{
Dan Fandrichfdd7b562010-06-18 22:37:42 -07001372 static const struct timespec zero_timespec;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001373 smalluint save_rcode;
1374 int last_sig = 0;
1375
1376 if (sig)
1377 goto jump_in;
1378 while (1) {
1379 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
1380 if (sig <= 0)
1381 break;
1382 jump_in:
1383 last_sig = sig;
1384 if (G.traps && G.traps[sig]) {
1385 if (G.traps[sig][0]) {
1386 /* We have user-defined handler */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001387 char *argv[3];
1388 /* argv[0] is unused */
1389 argv[1] = G.traps[sig];
1390 argv[2] = NULL;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001391 save_rcode = G.last_exitcode;
1392 builtin_eval(argv);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001393 G.last_exitcode = save_rcode;
1394 } /* else: "" trap, ignoring signal */
1395 continue;
1396 }
1397 /* not a trap: special action */
1398 switch (sig) {
Denys Vlasenko8d7be232009-05-25 16:38:32 +02001399#if ENABLE_HUSH_FAST
1400 case SIGCHLD:
1401 G.count_SIGCHLD++;
1402//bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
1403 break;
1404#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001405 case SIGINT:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001406 /* Builtin was ^C'ed, make it look prettier: */
1407 bb_putchar('\n');
1408 G.flag_SIGINT = 1;
1409 break;
1410#if ENABLE_HUSH_JOB
1411 case SIGHUP: {
1412 struct pipe *job;
1413 /* bash is observed to signal whole process groups,
1414 * not individual processes */
1415 for (job = G.job_list; job; job = job->next) {
1416 if (job->pgrp <= 0)
1417 continue;
1418 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1419 if (kill(- job->pgrp, SIGHUP) == 0)
1420 kill(- job->pgrp, SIGCONT);
1421 }
1422 sigexit(SIGHUP);
1423 }
1424#endif
1425 default: /* ignored: */
1426 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
1427 break;
1428 }
1429 }
1430 return last_sig;
1431}
1432
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001433
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001434static const char *get_cwd(int force)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001435{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001436 if (force || G.cwd == NULL) {
1437 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1438 * we must not try to free(bb_msg_unknown) */
1439 if (G.cwd == bb_msg_unknown)
1440 G.cwd = NULL;
1441 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1442 if (!G.cwd)
1443 G.cwd = bb_msg_unknown;
1444 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00001445 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001446}
1447
Denis Vlasenko83506862007-11-23 13:11:42 +00001448
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001449/*
1450 * Shell and environment variable support
1451 */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001452static struct variable **get_ptr_to_local_var(const char *name, unsigned len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001453{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001454 struct variable **pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001455 struct variable *cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001456
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001457 pp = &G.top_var;
1458 while ((cur = *pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001459 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001460 return pp;
1461 pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001462 }
1463 return NULL;
1464}
1465
Denys Vlasenko03dad222010-01-12 23:29:57 +01001466static const char* FAST_FUNC get_local_var_value(const char *name)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001467{
Denys Vlasenko29082232010-07-16 13:52:32 +02001468 struct variable **vpp;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001469 unsigned len = strlen(name);
Denys Vlasenko29082232010-07-16 13:52:32 +02001470
1471 if (G.expanded_assignments) {
1472 char **cpp = G.expanded_assignments;
Denys Vlasenko29082232010-07-16 13:52:32 +02001473 while (*cpp) {
1474 char *cp = *cpp;
1475 if (strncmp(cp, name, len) == 0 && cp[len] == '=')
1476 return cp + len + 1;
1477 cpp++;
1478 }
1479 }
1480
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001481 vpp = get_ptr_to_local_var(name, len);
Denys Vlasenko29082232010-07-16 13:52:32 +02001482 if (vpp)
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001483 return (*vpp)->varstr + len + 1;
Denys Vlasenko29082232010-07-16 13:52:32 +02001484
Denys Vlasenkodea47882009-10-09 15:40:49 +02001485 if (strcmp(name, "PPID") == 0)
1486 return utoa(G.root_ppid);
1487 // bash compat: UID? EUID?
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001488#if ENABLE_HUSH_RANDOM_SUPPORT
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001489 if (strcmp(name, "RANDOM") == 0)
Denys Vlasenko20b3d142009-10-09 20:59:39 +02001490 return utoa(next_random(&G.random_gen));
1491#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001492 return NULL;
1493}
1494
1495/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001496 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001497 * flg_export:
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001498 * 0: do not change export flag
1499 * (if creating new variable, flag will be 0)
1500 * 1: set export flag and putenv the variable
1501 * -1: clear export flag and unsetenv the variable
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001502 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001503 */
Denys Vlasenko295fef82009-06-03 12:47:26 +02001504#if !BB_MMU && ENABLE_HUSH_LOCAL
1505/* all params are used */
1506#elif BB_MMU && ENABLE_HUSH_LOCAL
1507#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1508 set_local_var(str, flg_export, local_lvl)
1509#elif BB_MMU && !ENABLE_HUSH_LOCAL
1510#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001511 set_local_var(str, flg_export)
Denys Vlasenko295fef82009-06-03 12:47:26 +02001512#elif !BB_MMU && !ENABLE_HUSH_LOCAL
1513#define set_local_var(str, flg_export, local_lvl, flg_read_only) \
1514 set_local_var(str, flg_export, flg_read_only)
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001515#endif
Denys Vlasenko295fef82009-06-03 12:47:26 +02001516static int set_local_var(char *str, int flg_export, int local_lvl, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001517{
Denys Vlasenko295fef82009-06-03 12:47:26 +02001518 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001519 struct variable *cur;
Denis Vlasenko950bd722009-04-21 11:23:56 +00001520 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001521 int name_len;
1522
Denis Vlasenko950bd722009-04-21 11:23:56 +00001523 eq_sign = strchr(str, '=');
1524 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001525 free(str);
1526 return -1;
1527 }
1528
Denis Vlasenko950bd722009-04-21 11:23:56 +00001529 name_len = eq_sign - str + 1; /* including '=' */
Denys Vlasenko295fef82009-06-03 12:47:26 +02001530 var_pp = &G.top_var;
1531 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001532 if (strncmp(cur->varstr, str, name_len) != 0) {
Denys Vlasenko295fef82009-06-03 12:47:26 +02001533 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001534 continue;
1535 }
1536 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001537 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001538#if !BB_MMU
1539 if (!flg_read_only)
1540#endif
1541 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001542 free(str);
1543 return -1;
1544 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001545 if (flg_export == -1) { // "&& cur->flg_export" ?
Denis Vlasenko950bd722009-04-21 11:23:56 +00001546 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1547 *eq_sign = '\0';
1548 unsetenv(str);
1549 *eq_sign = '=';
1550 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001551#if ENABLE_HUSH_LOCAL
1552 if (cur->func_nest_level < local_lvl) {
1553 /* New variable is declared as local,
1554 * and existing one is global, or local
1555 * from enclosing function.
1556 * Remove and save old one: */
1557 *var_pp = cur->next;
1558 cur->next = *G.shadowed_vars_pp;
1559 *G.shadowed_vars_pp = cur;
1560 /* bash 3.2.33(1) and exported vars:
1561 * # export z=z
1562 * # f() { local z=a; env | grep ^z; }
1563 * # f
1564 * z=a
1565 * # env | grep ^z
1566 * z=z
1567 */
1568 if (cur->flg_export)
1569 flg_export = 1;
1570 break;
1571 }
1572#endif
Denis Vlasenko950bd722009-04-21 11:23:56 +00001573 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001574 free_and_exp:
1575 free(str);
1576 goto exp;
1577 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001578 if (cur->max_len != 0) {
1579 if (cur->max_len >= strlen(str)) {
1580 /* This one is from startup env, reuse space */
1581 strcpy(cur->varstr, str);
1582 goto free_and_exp;
1583 }
1584 } else {
1585 /* max_len == 0 signifies "malloced" var, which we can
1586 * (and has to) free */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001587 free(cur->varstr);
Denys Vlasenko295fef82009-06-03 12:47:26 +02001588 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001589 cur->max_len = 0;
1590 goto set_str_and_exp;
1591 }
1592
Denys Vlasenko295fef82009-06-03 12:47:26 +02001593 /* Not found - create new variable struct */
1594 cur = xzalloc(sizeof(*cur));
1595#if ENABLE_HUSH_LOCAL
1596 cur->func_nest_level = local_lvl;
1597#endif
1598 cur->next = *var_pp;
1599 *var_pp = cur;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001600
1601 set_str_and_exp:
1602 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001603#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001604 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001605#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001606 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001607 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001608 cur->flg_export = 1;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001609 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1610 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001611 if (cur->flg_export) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001612 if (flg_export == -1) {
1613 cur->flg_export = 0;
1614 /* unsetenv was already done */
1615 } else {
1616 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1617 return putenv(cur->varstr);
1618 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001619 }
1620 return 0;
1621}
1622
Denys Vlasenko6db47842009-09-05 20:15:17 +02001623/* Used at startup and after each cd */
1624static void set_pwd_var(int exp)
1625{
1626 set_local_var(xasprintf("PWD=%s", get_cwd(/*force:*/ 1)),
1627 /*exp:*/ exp, /*lvl:*/ 0, /*ro:*/ 0);
1628}
1629
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001630static int unset_local_var_len(const char *name, int name_len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001631{
1632 struct variable *cur;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001633 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001634
1635 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001636 return EXIT_SUCCESS;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001637 var_pp = &G.top_var;
1638 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001639 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1640 if (cur->flg_read_only) {
1641 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001642 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001643 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001644 *var_pp = cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001645 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1646 bb_unsetenv(cur->varstr);
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001647 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1648 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001649 if (!cur->max_len)
1650 free(cur->varstr);
1651 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001652 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001653 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001654 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001655 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001656 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001657}
1658
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001659static int unset_local_var(const char *name)
1660{
1661 return unset_local_var_len(name, strlen(name));
1662}
1663
1664static void unset_vars(char **strings)
1665{
1666 char **v;
1667
1668 if (!strings)
1669 return;
1670 v = strings;
1671 while (*v) {
1672 const char *eq = strchrnul(*v, '=');
1673 unset_local_var_len(*v, (int)(eq - *v));
1674 v++;
1675 }
1676 free(strings);
1677}
1678
Denys Vlasenko03dad222010-01-12 23:29:57 +01001679static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val)
Mike Frysinger98c52642009-04-02 10:02:37 +00001680{
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001681 char *var = xasprintf("%s=%s", name, val);
Denys Vlasenko03dad222010-01-12 23:29:57 +01001682 set_local_var(var, /*flags:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001683}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001684
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001685
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001686/*
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001687 * Helpers for "var1=val1 var2=val2 cmd" feature
1688 */
1689static void add_vars(struct variable *var)
1690{
1691 struct variable *next;
1692
1693 while (var) {
1694 next = var->next;
1695 var->next = G.top_var;
1696 G.top_var = var;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001697 if (var->flg_export) {
1698 debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001699 putenv(var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001700 } else {
Denys Vlasenko295fef82009-06-03 12:47:26 +02001701 debug_printf_env("%s: restoring variable '%s'\n", __func__, var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001702 }
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001703 var = next;
1704 }
1705}
1706
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001707static struct variable *set_vars_and_save_old(char **strings)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001708{
1709 char **s;
1710 struct variable *old = NULL;
1711
1712 if (!strings)
1713 return old;
1714 s = strings;
1715 while (*s) {
1716 struct variable *var_p;
1717 struct variable **var_pp;
1718 char *eq;
1719
1720 eq = strchr(*s, '=');
1721 if (eq) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02001722 var_pp = get_ptr_to_local_var(*s, eq - *s);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001723 if (var_pp) {
1724 /* Remove variable from global linked list */
1725 var_p = *var_pp;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001726 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001727 *var_pp = var_p->next;
1728 /* Add it to returned list */
1729 var_p->next = old;
1730 old = var_p;
1731 }
Denys Vlasenko295fef82009-06-03 12:47:26 +02001732 set_local_var(*s, /*exp:*/ 1, /*lvl:*/ 0, /*ro:*/ 0);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001733 }
1734 s++;
1735 }
1736 return old;
1737}
1738
1739
1740/*
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001741 * in_str support
1742 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001743static int FAST_FUNC static_get(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001744{
Denys Vlasenko8391c482010-05-22 17:50:43 +02001745 int ch = *i->p;
1746 if (ch != '\0') {
1747 i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001748 return ch;
Denys Vlasenko8391c482010-05-22 17:50:43 +02001749 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001750 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001751}
1752
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001753static int FAST_FUNC static_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001754{
1755 return *i->p;
1756}
1757
1758#if ENABLE_HUSH_INTERACTIVE
1759
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001760static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001761{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001762 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001763 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00001764 if (G.PS1 == NULL)
1765 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001766 G.PS2 = get_local_var_value("PS2");
Denys Vlasenko690ad242009-04-30 21:24:24 +02001767 } else {
Mike Frysingerec2c6552009-03-28 12:24:44 +00001768 G.PS1 = NULL;
Denys Vlasenko690ad242009-04-30 21:24:24 +02001769 }
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001770 if (G.PS2 == NULL)
1771 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001772}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001773
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02001774static const char *setup_prompt_string(int promptmode)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001775{
1776 const char *prompt_str;
1777 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001778 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1779 /* Set up the prompt */
1780 if (promptmode == 0) { /* PS1 */
1781 free((char*)G.PS1);
Denys Vlasenko6db47842009-09-05 20:15:17 +02001782 /* bash uses $PWD value, even if it is set by user.
1783 * It uses current dir only if PWD is unset.
1784 * We always use current dir. */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02001785 G.PS1 = xasprintf("%s %c ", get_cwd(0), (geteuid() != 0) ? '$' : '#');
Mike Frysingerec2c6552009-03-28 12:24:44 +00001786 prompt_str = G.PS1;
1787 } else
1788 prompt_str = G.PS2;
1789 } else
1790 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001791 debug_printf("result '%s'\n", prompt_str);
1792 return prompt_str;
1793}
1794
1795static void get_user_input(struct in_str *i)
1796{
1797 int r;
1798 const char *prompt_str;
1799
1800 prompt_str = setup_prompt_string(i->promptmode);
Denys Vlasenko8391c482010-05-22 17:50:43 +02001801# if ENABLE_FEATURE_EDITING
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001802 /* Enable command line editing only while a command line
1803 * is actually being read */
1804 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001805 G.flag_SIGINT = 0;
1806 /* buglet: SIGINT will not make new prompt to appear _at once_,
1807 * only after <Enter>. (^C will work) */
Denys Vlasenkoaaa22d22009-10-19 16:34:39 +02001808 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 +00001809 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001810 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001811 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001812 i->eof_flag = (r < 0);
1813 if (i->eof_flag) { /* EOF/error detected */
1814 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1815 G.user_input_buf[1] = '\0';
1816 }
Denys Vlasenko8391c482010-05-22 17:50:43 +02001817# else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001818 do {
1819 G.flag_SIGINT = 0;
1820 fputs(prompt_str, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001821 fflush_all();
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001822 G.user_input_buf[0] = r = fgetc(i->file);
1823 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001824//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001825 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001826 i->eof_flag = (r == EOF);
Denys Vlasenko8391c482010-05-22 17:50:43 +02001827# endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001828 i->p = G.user_input_buf;
1829}
1830
1831#endif /* INTERACTIVE */
1832
1833/* This is the magic location that prints prompts
1834 * and gets data back from the user */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001835static int FAST_FUNC file_get(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001836{
1837 int ch;
1838
1839 /* If there is data waiting, eat it up */
1840 if (i->p && *i->p) {
1841#if ENABLE_HUSH_INTERACTIVE
1842 take_cached:
1843#endif
1844 ch = *i->p++;
1845 if (i->eof_flag && !*i->p)
1846 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001847 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001848 } else {
1849 /* need to double check i->file because we might be doing something
1850 * more complicated by now, like sourcing or substituting. */
1851#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001852 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001853 do {
1854 get_user_input(i);
1855 } while (!*i->p); /* need non-empty line */
1856 i->promptmode = 1; /* PS2 */
1857 i->promptme = 0;
1858 goto take_cached;
1859 }
1860#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001861 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001862 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001863 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001864#if ENABLE_HUSH_INTERACTIVE
1865 if (ch == '\n')
1866 i->promptme = 1;
1867#endif
1868 return ch;
1869}
1870
Denis Vlasenko913a2012009-04-05 22:17:04 +00001871/* All callers guarantee this routine will never
1872 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001873 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001874static int FAST_FUNC file_peek(struct in_str *i)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001875{
1876 int ch;
1877 if (i->p && *i->p) {
1878 if (i->eof_flag && !i->p[1])
1879 return EOF;
1880 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001881 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001882 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001883 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001884 i->eof_flag = (ch == EOF);
1885 i->peek_buf[0] = ch;
1886 i->peek_buf[1] = '\0';
1887 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001888 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001889 return ch;
1890}
1891
1892static void setup_file_in_str(struct in_str *i, FILE *f)
1893{
1894 i->peek = file_peek;
1895 i->get = file_get;
1896#if ENABLE_HUSH_INTERACTIVE
1897 i->promptme = 1;
1898 i->promptmode = 0; /* PS1 */
1899#endif
1900 i->file = f;
1901 i->p = NULL;
1902}
1903
1904static void setup_string_in_str(struct in_str *i, const char *s)
1905{
1906 i->peek = static_peek;
1907 i->get = static_get;
1908#if ENABLE_HUSH_INTERACTIVE
1909 i->promptme = 1;
1910 i->promptmode = 0; /* PS1 */
1911#endif
1912 i->p = s;
1913 i->eof_flag = 0;
1914}
1915
1916
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001917/*
1918 * o_string support
1919 */
1920#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001921
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001922static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001923{
1924 o->length = 0;
Denys Vlasenko38292b62010-09-05 14:49:40 +02001925 o->has_quoted_part = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001926 if (o->data)
1927 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001928}
1929
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001930static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001931{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001932 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001933 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001934}
1935
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001936static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1937{
1938 free(o->data);
1939}
1940
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001941static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001942{
1943 if (o->length + len > o->maxlen) {
1944 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1945 o->data = xrealloc(o->data, 1 + o->maxlen);
1946 }
1947}
1948
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001949static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001950{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001951 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1952 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001953 o->data[o->length] = ch;
1954 o->length++;
1955 o->data[o->length] = '\0';
1956}
1957
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001958static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001959{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001960 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001961 memcpy(&o->data[o->length], str, len);
1962 o->length += len;
1963 o->data[o->length] = '\0';
1964}
1965
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001966static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00001967{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001968 o_addblock(o, str, strlen(str));
1969}
Denys Vlasenko2e48d532010-05-22 17:30:39 +02001970
Denys Vlasenko1e811b12010-05-22 03:12:29 +02001971#if !BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001972static void nommu_addchr(o_string *o, int ch)
1973{
1974 if (o)
1975 o_addchr(o, ch);
1976}
1977#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02001978# define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001979#endif
1980
1981static void o_addstr_with_NUL(o_string *o, const char *str)
1982{
1983 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00001984}
1985
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001986static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
Denis Vlasenko55789c62008-06-18 16:30:42 +00001987{
1988 while (len) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00001989 len--;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02001990 o_addchr(o, *str);
1991 if (*str++ == '\\') {
1992 /* \z -> \\\z; \<eol> -> \\<eol> */
1993 o_addchr(o, '\\');
1994 if (len) {
1995 len--;
1996 o_addchr(o, '\\');
1997 o_addchr(o, *str++);
1998 }
1999 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00002000 }
2001}
2002
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002003#undef HUSH_BRACE_EXP
2004/*
2005 * HUSH_BRACE_EXP code needs corresponding quoting on variable expansion side.
2006 * Currently, "v='{q,w}'; echo $v" erroneously expands braces in $v.
2007 * Apparently, on unquoted $v bash still does globbing
2008 * ("v='*.txt'; echo $v" prints all .txt files),
2009 * but NOT brace expansion! Thus, there should be TWO independent
2010 * quoting mechanisms on $v expansion side: one protects
2011 * $v from brace expansion, and other additionally protects "$v" against globbing.
2012 * We have only second one.
2013 */
2014
2015#ifdef HUSH_BRACE_EXP
2016# define MAYBE_BRACES "{}"
2017#else
2018# define MAYBE_BRACES ""
2019#endif
2020
Eric Andersen25f27032001-04-26 23:22:31 +00002021/* My analysis of quoting semantics tells me that state information
2022 * is associated with a destination, not a source.
2023 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002024static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00002025{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002026 int sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002027 char *found = strchr("*?[\\" MAYBE_BRACES, ch);
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002028 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002029 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002030 o_grow_by(o, sz);
2031 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002032 o->data[o->length] = '\\';
2033 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00002034 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002035 o->data[o->length] = ch;
2036 o->length++;
2037 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002038}
2039
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002040static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002041{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002042 int sz = 1;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002043 if ((o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)
2044 && strchr("*?[\\" MAYBE_BRACES, ch)
2045 ) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002046 sz++;
2047 o->data[o->length] = '\\';
2048 o->length++;
2049 }
2050 o_grow_by(o, sz);
2051 o->data[o->length] = ch;
2052 o->length++;
2053 o->data[o->length] = '\0';
2054}
2055
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002056static void o_addqblock(o_string *o, const char *str, int len)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002057{
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002058 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002059 char ch;
2060 int sz;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002061 int ordinary_cnt = strcspn(str, "*?[\\" MAYBE_BRACES);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002062 if (ordinary_cnt > len) /* paranoia */
2063 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002064 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002065 if (ordinary_cnt == len)
2066 return;
2067 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002068 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002069
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002070 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002071 sz = 1;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002072 if (ch) { /* it is necessarily one of "*?[\\" MAYBE_BRACES */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002073 sz++;
2074 o->data[o->length] = '\\';
2075 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002076 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00002077 o_grow_by(o, sz);
2078 o->data[o->length] = ch;
2079 o->length++;
2080 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00002081 }
2082}
2083
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002084static void o_addQblock(o_string *o, const char *str, int len)
2085{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002086 if (!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)) {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002087 o_addblock(o, str, len);
2088 return;
2089 }
2090 o_addqblock(o, str, len);
2091}
2092
Denys Vlasenko38292b62010-09-05 14:49:40 +02002093static void o_addQstr(o_string *o, const char *str)
2094{
2095 o_addQblock(o, str, strlen(str));
2096}
2097
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002098/* A special kind of o_string for $VAR and `cmd` expansion.
2099 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002100 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002101 * list[i] contains an INDEX (int!) into this string data.
2102 * It means that if list[] needs to grow, data needs to be moved higher up
2103 * but list[i]'s need not be modified.
2104 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002105 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002106 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
2107 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002108#if DEBUG_EXPAND || DEBUG_GLOB
2109static void debug_print_list(const char *prefix, o_string *o, int n)
2110{
2111 char **list = (char**)o->data;
2112 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2113 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002114
2115 indent();
Denys Vlasenkoe298ce62010-09-04 19:52:44 +02002116 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 +02002117 prefix, list, n, string_start, o->length, o->maxlen,
2118 !!(o->o_expflags & EXP_FLAG_GLOB),
2119 o->has_quoted_part,
2120 !!(o->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002121 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002122 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002123 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
2124 o->data + (int)list[i] + string_start,
2125 o->data + (int)list[i] + string_start);
2126 i++;
2127 }
2128 if (n) {
2129 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002130 indent();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002131 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002132 }
2133}
2134#else
Denys Vlasenko28a105d2009-06-01 11:26:30 +02002135# define debug_print_list(prefix, o, n) ((void)0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002136#endif
2137
2138/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
2139 * in list[n] so that it points past last stored byte so far.
2140 * It returns n+1. */
2141static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002142{
2143 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00002144 int string_start;
2145 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002146
2147 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00002148 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2149 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002150 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002151 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002152 /* list[n] points to string_start, make space for 16 more pointers */
2153 o->maxlen += 0x10 * sizeof(list[0]);
2154 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00002155 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002156 memmove(list + n + 0x10, list + n, string_len);
2157 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002158 } else {
2159 debug_printf_list("list[%d]=%d string_start=%d\n",
2160 n, string_len, string_start);
2161 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002162 } else {
2163 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00002164 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
2165 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002166 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
2167 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002168 o->has_empty_slot = 0;
2169 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002170 list[n] = (char*)(uintptr_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002171 return n + 1;
2172}
2173
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002174/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002175static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002176{
2177 char **list = (char**)o->data;
2178 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2179
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002180 return ((int)(uintptr_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002181}
2182
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002183#ifdef HUSH_BRACE_EXP
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002184/* There in a GNU extension, GLOB_BRACE, but it is not usable:
2185 * first, it processes even {a} (no commas), second,
2186 * I didn't manage to make it return strings when they don't match
Denys Vlasenko160746b2009-11-16 05:51:18 +01002187 * existing files. Need to re-implement it.
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002188 */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002189
2190/* Helper */
2191static int glob_needed(const char *s)
2192{
2193 while (*s) {
2194 if (*s == '\\') {
2195 if (!s[1])
2196 return 0;
2197 s += 2;
2198 continue;
2199 }
2200 if (*s == '*' || *s == '[' || *s == '?' || *s == '{')
2201 return 1;
2202 s++;
2203 }
2204 return 0;
2205}
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002206/* Return pointer to next closing brace or to comma */
2207static const char *next_brace_sub(const char *cp)
2208{
2209 unsigned depth = 0;
2210 cp++;
2211 while (*cp != '\0') {
2212 if (*cp == '\\') {
2213 if (*++cp == '\0')
2214 break;
2215 cp++;
2216 continue;
Denys Vlasenko3581c622010-01-25 13:39:24 +01002217 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002218 if ((*cp == '}' && depth-- == 0) || (*cp == ',' && depth == 0))
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002219 break;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002220 if (*cp++ == '{')
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002221 depth++;
2222 }
2223
2224 return *cp != '\0' ? cp : NULL;
2225}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002226/* Recursive brace globber. Note: may garble pattern[]. */
2227static int glob_brace(char *pattern, o_string *o, int n)
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002228{
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002229 char *new_pattern_buf;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002230 const char *begin;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002231 const char *next;
2232 const char *rest;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002233 const char *p;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002234 size_t rest_len;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002235
2236 debug_printf_glob("glob_brace('%s')\n", pattern);
2237
2238 begin = pattern;
2239 while (1) {
2240 if (*begin == '\0')
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002241 goto simple_glob;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002242 if (*begin == '{') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002243 /* Find the first sub-pattern and at the same time
2244 * find the rest after the closing brace */
2245 next = next_brace_sub(begin);
2246 if (next == NULL) {
2247 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002248 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002249 }
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002250 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002251 /* "{abc}" with no commas - illegal
2252 * brace expr, disregard and skip it */
2253 begin = next + 1;
2254 continue;
2255 }
2256 break;
2257 }
2258 if (*begin == '\\' && begin[1] != '\0')
2259 begin++;
2260 begin++;
2261 }
2262 debug_printf_glob("begin:%s\n", begin);
2263 debug_printf_glob("next:%s\n", next);
2264
2265 /* Now find the end of the whole brace expression */
2266 rest = next;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002267 while (*rest != '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002268 rest = next_brace_sub(rest);
2269 if (rest == NULL) {
2270 /* An illegal expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002271 goto simple_glob;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002272 }
2273 debug_printf_glob("rest:%s\n", rest);
2274 }
2275 rest_len = strlen(++rest) + 1;
2276
2277 /* We are sure the brace expression is well-formed */
2278
2279 /* Allocate working buffer large enough for our work */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002280 new_pattern_buf = xmalloc(strlen(pattern));
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002281
2282 /* We have a brace expression. BEGIN points to the opening {,
2283 * NEXT points past the terminator of the first element, and REST
2284 * points past the final }. We will accumulate result names from
2285 * recursive runs for each brace alternative in the buffer using
2286 * GLOB_APPEND. */
2287
2288 p = begin + 1;
2289 while (1) {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002290 /* Construct the new glob expression */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002291 memcpy(
2292 mempcpy(
2293 mempcpy(new_pattern_buf,
2294 /* We know the prefix for all sub-patterns */
2295 pattern, begin - pattern),
2296 p, next - p),
2297 rest, rest_len);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002298
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002299 /* Note: glob_brace() may garble new_pattern_buf[].
2300 * That's why we re-copy prefix every time (1st memcpy above).
2301 */
2302 n = glob_brace(new_pattern_buf, o, n);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02002303 if (*next == '}') {
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002304 /* We saw the last entry */
2305 break;
2306 }
2307 p = next + 1;
2308 next = next_brace_sub(next);
2309 }
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002310 free(new_pattern_buf);
2311 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002312
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002313 simple_glob:
2314 {
2315 int gr;
2316 glob_t globdata;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002317
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002318 memset(&globdata, 0, sizeof(globdata));
2319 gr = glob(pattern, 0, NULL, &globdata);
2320 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
2321 if (gr != 0) {
2322 if (gr == GLOB_NOMATCH) {
2323 globfree(&globdata);
2324 /* NB: garbles parameter */
2325 unbackslash(pattern);
2326 o_addstr_with_NUL(o, pattern);
2327 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2328 return o_save_ptr_helper(o, n);
2329 }
2330 if (gr == GLOB_NOSPACE)
2331 bb_error_msg_and_die(bb_msg_memory_exhausted);
2332 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2333 * but we didn't specify it. Paranoia again. */
2334 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
2335 }
2336 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2337 char **argv = globdata.gl_pathv;
2338 while (1) {
2339 o_addstr_with_NUL(o, *argv);
2340 n = o_save_ptr_helper(o, n);
2341 argv++;
2342 if (!*argv)
2343 break;
2344 }
2345 }
2346 globfree(&globdata);
2347 }
2348 return n;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002349}
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002350/* Performs globbing on last list[],
2351 * saving each result as a new list[].
2352 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002353static int perform_glob(o_string *o, int n)
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002354{
2355 char *pattern, *copy;
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002356
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002357 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002358 if (!o->data)
2359 return o_save_ptr_helper(o, n);
2360 pattern = o->data + o_get_last_ptr(o, n);
2361 debug_printf_glob("glob pattern '%s'\n", pattern);
2362 if (!glob_needed(pattern)) {
2363 /* unbackslash last string in o in place, fix length */
2364 o->length = unbackslash(pattern) - o->data;
2365 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
2366 return o_save_ptr_helper(o, n);
2367 }
2368
2369 copy = xstrdup(pattern);
2370 /* "forget" pattern in o */
2371 o->length = pattern - o->data;
2372 n = glob_brace(copy, o, n);
2373 free(copy);
2374 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002375 debug_print_list("perform_glob returning", o, n);
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002376 return n;
2377}
2378
Denys Vlasenko8391c482010-05-22 17:50:43 +02002379#else /* !HUSH_BRACE_EXP */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002380
2381/* Helper */
2382static int glob_needed(const char *s)
2383{
2384 while (*s) {
2385 if (*s == '\\') {
2386 if (!s[1])
2387 return 0;
2388 s += 2;
2389 continue;
2390 }
2391 if (*s == '*' || *s == '[' || *s == '?')
2392 return 1;
2393 s++;
2394 }
2395 return 0;
2396}
2397/* Performs globbing on last list[],
2398 * saving each result as a new list[].
2399 */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002400static int perform_glob(o_string *o, int n)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002401{
2402 glob_t globdata;
2403 int gr;
2404 char *pattern;
2405
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002406 debug_printf_glob("start perform_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002407 if (!o->data)
2408 return o_save_ptr_helper(o, n);
2409 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002410 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002411 if (!glob_needed(pattern)) {
2412 literal:
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002413 /* unbackslash last string in o in place, fix length */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002414 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002415 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002416 return o_save_ptr_helper(o, n);
2417 }
2418
2419 memset(&globdata, 0, sizeof(globdata));
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002420 /* Can't use GLOB_NOCHECK: it does not unescape the string.
2421 * If we glob "*.\*" and don't find anything, we need
2422 * to fall back to using literal "*.*", but GLOB_NOCHECK
2423 * will return "*.\*"!
2424 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002425 gr = glob(pattern, 0, NULL, &globdata);
2426 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002427 if (gr != 0) {
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002428 if (gr == GLOB_NOMATCH) {
2429 globfree(&globdata);
2430 goto literal;
2431 }
2432 if (gr == GLOB_NOSPACE)
2433 bb_error_msg_and_die(bb_msg_memory_exhausted);
Denys Vlasenko5b2db972009-11-16 05:49:36 +01002434 /* GLOB_ABORTED? Only happens with GLOB_ERR flag,
2435 * but we didn't specify it. Paranoia again. */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002436 bb_error_msg_and_die("glob error %d on '%s'", gr, pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002437 }
2438 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
2439 char **argv = globdata.gl_pathv;
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002440 /* "forget" pattern in o */
2441 o->length = pattern - o->data;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002442 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002443 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002444 n = o_save_ptr_helper(o, n);
2445 argv++;
2446 if (!*argv)
2447 break;
2448 }
2449 }
2450 globfree(&globdata);
2451 if (DEBUG_GLOB)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002452 debug_print_list("perform_glob returning", o, n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002453 return n;
2454}
2455
Denys Vlasenko8391c482010-05-22 17:50:43 +02002456#endif /* !HUSH_BRACE_EXP */
Denys Vlasenkof3e28182009-11-17 03:35:31 +01002457
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002458/* If o->o_expflags & EXP_FLAG_GLOB, glob the string so far remembered.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002459 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002460static int o_save_ptr(o_string *o, int n)
2461{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02002462 if (o->o_expflags & EXP_FLAG_GLOB) {
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00002463 /* If o->has_empty_slot, list[n] was already globbed
2464 * (if it was requested back then when it was filled)
2465 * so don't do that again! */
2466 if (!o->has_empty_slot)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02002467 return perform_glob(o, n); /* o_save_ptr_helper is inside */
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00002468 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002469 return o_save_ptr_helper(o, n);
2470}
2471
2472/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00002473static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002474{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002475 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002476 int string_start;
2477
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002478 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
2479 if (DEBUG_EXPAND)
2480 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00002481 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002482 list = (char**)o->data;
2483 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
2484 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002485 while (n) {
2486 n--;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002487 list[n] = o->data + (int)(uintptr_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00002488 }
2489 return list;
2490}
2491
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002492static void free_pipe_list(struct pipe *pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002493
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002494/* Returns pi->next - next pipe in the list */
2495static struct pipe *free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002496{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002497 struct pipe *next;
2498 int i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002499
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002500 debug_printf_clean("free_pipe (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002501 for (i = 0; i < pi->num_cmds; i++) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002502 struct command *command;
2503 struct redir_struct *r, *rnext;
2504
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002505 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002506 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002507 if (command->argv) {
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002508 if (DEBUG_CLEAN) {
2509 int a;
2510 char **p;
2511 for (a = 0, p = command->argv; *p; a++, p++) {
2512 debug_printf_clean(" argv[%d] = %s\n", a, *p);
2513 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002514 }
2515 free_strings(command->argv);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002516 //command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002517 }
2518 /* not "else if": on syntax error, we may have both! */
2519 if (command->group) {
Denys Vlasenko9d617c42009-06-09 18:40:52 +02002520 debug_printf_clean(" begin group (cmd_type:%d)\n",
2521 command->cmd_type);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002522 free_pipe_list(command->group);
2523 debug_printf_clean(" end group\n");
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002524 //command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002525 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00002526 /* else is crucial here.
2527 * If group != NULL, child_func is meaningless */
2528#if ENABLE_HUSH_FUNCTIONS
2529 else if (command->child_func) {
2530 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
2531 command->child_func->parent_cmd = NULL;
2532 }
2533#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002534#if !BB_MMU
2535 free(command->group_as_string);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002536 //command->group_as_string = NULL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002537#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002538 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002539 debug_printf_clean(" redirect %d%s",
2540 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002541 /* guard against the case >$FOO, where foo is unset or blank */
2542 if (r->rd_filename) {
2543 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
2544 free(r->rd_filename);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002545 //r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002546 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002547 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002548 rnext = r->next;
2549 free(r);
2550 }
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002551 //command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002552 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002553 free(pi->cmds); /* children are an array, they get freed all at once */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002554 //pi->cmds = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002555#if ENABLE_HUSH_JOB
2556 free(pi->cmdtext);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002557 //pi->cmdtext = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002558#endif
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002559
2560 next = pi->next;
2561 free(pi);
2562 return next;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002563}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002564
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002565static void free_pipe_list(struct pipe *pi)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002566{
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002567 while (pi) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002568#if HAS_KEYWORDS
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002569 debug_printf_clean("pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002570#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002571 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denys Vlasenko27c56f12010-09-07 09:56:34 +02002572 pi = free_pipe(pi);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002573 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002574}
2575
2576
Denys Vlasenkob36abf22010-09-05 14:50:59 +02002577/*** Parsing routines ***/
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002578
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00002579static struct pipe *new_pipe(void)
2580{
Eric Andersen25f27032001-04-26 23:22:31 +00002581 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002582 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002583 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002584 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00002585 return pi;
2586}
2587
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002588/* Command (member of a pipe) is complete, or we start a new pipe
2589 * if ctx->command is NULL.
2590 * No errors possible here.
2591 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002592static int done_command(struct parse_context *ctx)
2593{
2594 /* The command is really already in the pipe structure, so
2595 * advance the pipe counter and make a new, null command. */
2596 struct pipe *pi = ctx->pipe;
2597 struct command *command = ctx->command;
2598
2599 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002600 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002601 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002602 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002603 }
2604 pi->num_cmds++;
2605 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002606 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002607 } else {
2608 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
2609 }
2610
2611 /* Only real trickiness here is that the uncommitted
2612 * command structure is not counted in pi->num_cmds. */
2613 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002614 ctx->command = command = &pi->cmds[pi->num_cmds];
2615 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002616 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002617 return pi->num_cmds; /* used only for 0/nonzero check */
2618}
2619
2620static void done_pipe(struct parse_context *ctx, pipe_style type)
2621{
2622 int not_null;
2623
2624 debug_printf_parse("done_pipe entered, followup %d\n", type);
2625 /* Close previous command */
2626 not_null = done_command(ctx);
2627 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002628#if HAS_KEYWORDS
2629 ctx->pipe->pi_inverted = ctx->ctx_inverted;
2630 ctx->ctx_inverted = 0;
2631 ctx->pipe->res_word = ctx->ctx_res_w;
2632#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002633
2634 /* Without this check, even just <enter> on command line generates
2635 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002636 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002637 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00002638#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002639 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00002640#endif
2641#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002642 || ctx->ctx_res_w == RES_DONE
2643 || ctx->ctx_res_w == RES_FOR
2644 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00002645#endif
2646#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002647 || ctx->ctx_res_w == RES_ESAC
2648#endif
2649 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002650 struct pipe *new_p;
2651 debug_printf_parse("done_pipe: adding new pipe: "
2652 "not_null:%d ctx->ctx_res_w:%d\n",
2653 not_null, ctx->ctx_res_w);
2654 new_p = new_pipe();
2655 ctx->pipe->next = new_p;
2656 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002657 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002658 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002659 * This is used to control execution.
2660 * RES_FOR and RES_IN are NOT sticky (needed to support
2661 * cases where variable or value happens to match a keyword):
2662 */
2663#if ENABLE_HUSH_LOOPS
2664 if (ctx->ctx_res_w == RES_FOR
2665 || ctx->ctx_res_w == RES_IN)
2666 ctx->ctx_res_w = RES_NONE;
2667#endif
2668#if ENABLE_HUSH_CASE
2669 if (ctx->ctx_res_w == RES_MATCH)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02002670 ctx->ctx_res_w = RES_CASE_BODY;
2671 if (ctx->ctx_res_w == RES_CASE)
2672 ctx->ctx_res_w = RES_CASE_IN;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002673#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002674 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002675 /* Create the memory for command, roughly:
2676 * ctx->pipe->cmds = new struct command;
2677 * ctx->command = &ctx->pipe->cmds[0];
2678 */
2679 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00002680 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002681 }
2682 debug_printf_parse("done_pipe return\n");
2683}
2684
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002685static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00002686{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002687 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00002688 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002689 /* Create the memory for command, roughly:
2690 * ctx->pipe->cmds = new struct command;
2691 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002692 */
2693 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00002694}
2695
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002696/* If a reserved word is found and processed, parse context is modified
2697 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00002698 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002699#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002700struct reserved_combo {
2701 char literal[6];
2702 unsigned char res;
2703 unsigned char assignment_flag;
2704 int flag;
2705};
2706enum {
2707 FLAG_END = (1 << RES_NONE ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002708# if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002709 FLAG_IF = (1 << RES_IF ),
2710 FLAG_THEN = (1 << RES_THEN ),
2711 FLAG_ELIF = (1 << RES_ELIF ),
2712 FLAG_ELSE = (1 << RES_ELSE ),
2713 FLAG_FI = (1 << RES_FI ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002714# endif
2715# if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002716 FLAG_FOR = (1 << RES_FOR ),
2717 FLAG_WHILE = (1 << RES_WHILE),
2718 FLAG_UNTIL = (1 << RES_UNTIL),
2719 FLAG_DO = (1 << RES_DO ),
2720 FLAG_DONE = (1 << RES_DONE ),
2721 FLAG_IN = (1 << RES_IN ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002722# endif
2723# if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002724 FLAG_MATCH = (1 << RES_MATCH),
2725 FLAG_ESAC = (1 << RES_ESAC ),
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002726# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002727 FLAG_START = (1 << RES_XXXX ),
2728};
2729
2730static const struct reserved_combo* match_reserved_word(o_string *word)
2731{
Eric Andersen25f27032001-04-26 23:22:31 +00002732 /* Mostly a list of accepted follow-up reserved words.
2733 * FLAG_END means we are done with the sequence, and are ready
2734 * to turn the compound list into a command.
2735 * FLAG_START means the word must start a new compound list.
2736 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002737 static const struct reserved_combo reserved_list[] = {
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002738# if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00002739 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
2740 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
2741 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
2742 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
2743 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
2744 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002745# endif
2746# if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00002747 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
2748 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
2749 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
2750 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
2751 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
2752 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002753# endif
2754# if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00002755 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
2756 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002757# endif
Eric Andersen25f27032001-04-26 23:22:31 +00002758 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002759 const struct reserved_combo *r;
2760
2761 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
2762 if (strcmp(word->data, r->literal) == 0)
2763 return r;
2764 }
2765 return NULL;
2766}
Denis Vlasenkobb929512009-04-16 10:59:40 +00002767/* Return 0: not a keyword, 1: keyword
2768 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002769static int reserved_word(o_string *word, struct parse_context *ctx)
2770{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002771# if ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002772 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00002773 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002774 };
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002775# endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002776 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002777
Denys Vlasenko38292b62010-09-05 14:49:40 +02002778 if (word->has_quoted_part)
Denis Vlasenkobb929512009-04-16 10:59:40 +00002779 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002780 r = match_reserved_word(word);
2781 if (!r)
2782 return 0;
2783
2784 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002785# if ENABLE_HUSH_CASE
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02002786 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE_IN) {
2787 /* "case word IN ..." - IN part starts first MATCH part */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002788 r = &reserved_match;
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02002789 } else
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002790# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002791 if (r->flag == 0) { /* '!' */
2792 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002793 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00002794 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00002795 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002796 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00002797 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002798 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002799 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002800 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00002801
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002802 old = xmalloc(sizeof(*old));
2803 debug_printf_parse("push stack %p\n", old);
2804 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002805 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002806 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002807 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002808 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002809 ctx->ctx_res_w = RES_SNTX;
2810 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00002811 } else {
2812 /* "{...} fi" is ok. "{...} if" is not
2813 * Example:
2814 * if { echo foo; } then { echo bar; } fi */
2815 if (ctx->command->group)
2816 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002817 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00002818
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002819 ctx->ctx_res_w = r->res;
2820 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00002821 word->o_assignment = r->assignment_flag;
2822
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002823 if (ctx->old_flag & FLAG_END) {
2824 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00002825
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002826 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002827 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002828 old = ctx->stack;
2829 old->command->group = ctx->list_head;
Denys Vlasenko9d617c42009-06-09 18:40:52 +02002830 old->command->cmd_type = CMD_NORMAL;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002831# if !BB_MMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002832 o_addstr(&old->as_string, ctx->as_string.data);
2833 o_free_unsafe(&ctx->as_string);
2834 old->command->group_as_string = xstrdup(old->as_string.data);
2835 debug_printf_parse("pop, remembering as:'%s'\n",
2836 old->command->group_as_string);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002837# endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002838 *ctx = *old; /* physical copy */
2839 free(old);
2840 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00002841 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002842}
Denys Vlasenkoc0836532009-10-19 13:13:06 +02002843#endif /* HAS_KEYWORDS */
Eric Andersen25f27032001-04-26 23:22:31 +00002844
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002845/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002846 * Normal return is 0. Syntax errors return 1.
2847 * Note: on return, word is reset, but not o_free'd!
2848 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002849static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00002850{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002851 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00002852
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002853 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denys Vlasenko38292b62010-09-05 14:49:40 +02002854 if (word->length == 0 && !word->has_quoted_part) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002855 debug_printf_parse("done_word return 0: true null, ignored\n");
2856 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00002857 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00002858
Eric Andersen25f27032001-04-26 23:22:31 +00002859 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002860 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
2861 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002862 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
2863 * "2.7 Redirection
2864 * ...the word that follows the redirection operator
2865 * shall be subjected to tilde expansion, parameter expansion,
2866 * command substitution, arithmetic expansion, and quote
2867 * removal. Pathname expansion shall not be performed
2868 * on the word by a non-interactive shell; an interactive
2869 * shell may perform it, but shall do so only when
2870 * the expansion would result in one word."
2871 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002872 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002873 /* Cater for >\file case:
2874 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
2875 * Same with heredocs:
2876 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
2877 */
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02002878 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC) {
2879 unbackslash(ctx->pending_redirect->rd_filename);
2880 /* Is it <<"HEREDOC"? */
Denys Vlasenko38292b62010-09-05 14:49:40 +02002881 if (word->has_quoted_part) {
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02002882 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
2883 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002884 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002885 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00002886 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002887 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002888 /* If this word wasn't an assignment, next ones definitely
2889 * can't be assignments. Even if they look like ones. */
2890 if (word->o_assignment != DEFINITELY_ASSIGNMENT
2891 && word->o_assignment != WORD_IS_KEYWORD
2892 ) {
2893 word->o_assignment = NOT_ASSIGNMENT;
2894 } else {
2895 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
2896 command->assignment_cnt++;
2897 word->o_assignment = MAYBE_ASSIGNMENT;
2898 }
2899
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002900#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002901# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00002902 if (ctx->ctx_dsemicolon
2903 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
2904 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00002905 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002906 /* ctx->ctx_res_w = RES_MATCH; */
2907 ctx->ctx_dsemicolon = 0;
2908 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002909# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002910 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002911# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00002912 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
2913 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002914# endif
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02002915# if ENABLE_HUSH_CASE
2916 && ctx->ctx_res_w != RES_CASE
2917# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00002918 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00002919 debug_printf_parse("checking '%s' for reserved-ness\n", word->data);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002920 if (reserved_word(word, ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00002921 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002922 debug_printf_parse("done_word return %d\n",
2923 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002924 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002925 }
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02002926# if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko9d617c42009-06-09 18:40:52 +02002927 if (strcmp(word->data, "[[") == 0) {
2928 command->cmd_type = CMD_SINGLEWORD_NOGLOB;
2929 }
2930 /* fall through */
Denys Vlasenko9ca656b2009-06-10 13:39:35 +02002931# endif
Eric Andersen25f27032001-04-26 23:22:31 +00002932 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002933#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00002934 if (command->group) {
2935 /* "{ echo foo; } echo bar" - bad */
2936 syntax_error_at(word->data);
2937 debug_printf_parse("done_word return 1: syntax error, "
2938 "groups and arglists don't mix\n");
2939 return 1;
2940 }
Denys Vlasenko38292b62010-09-05 14:49:40 +02002941 if (word->has_quoted_part
Denis Vlasenko55789c62008-06-18 16:30:42 +00002942 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
2943 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00002944 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002945 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00002946 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00002947 char *p = word->data;
2948 while (p[0] == SPECIAL_VAR_SYMBOL
2949 && (p[1] & 0x7f) == '@'
2950 && p[2] == SPECIAL_VAR_SYMBOL
2951 ) {
2952 p += 3;
2953 }
2954 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00002955 /* saw no "$@", or not only "$@" but some
2956 * real text is there too */
2957 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00002958 * e.g. "", $empty"" etc to not disappear */
2959 o_addchr(word, SPECIAL_VAR_SYMBOL);
2960 o_addchr(word, SPECIAL_VAR_SYMBOL);
2961 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00002962 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002963 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002964 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002965 }
Eric Andersen25f27032001-04-26 23:22:31 +00002966
Denis Vlasenko06810332007-05-21 23:30:54 +00002967#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00002968 if (ctx->ctx_res_w == RES_FOR) {
Denys Vlasenko38292b62010-09-05 14:49:40 +02002969 if (word->has_quoted_part
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00002970 || !is_well_formed_var_name(command->argv[0], '\0')
2971 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002972 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00002973 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002974 return 1;
2975 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00002976 /* Force FOR to have just one word (variable name) */
2977 /* NB: basically, this makes hush see "for v in ..."
2978 * syntax as if it is "for v; in ...". FOR and IN become
2979 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002980 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00002981 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002982#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002983#if ENABLE_HUSH_CASE
2984 /* Force CASE to have just one word */
2985 if (ctx->ctx_res_w == RES_CASE) {
2986 done_pipe(ctx, PIPE_SEQ);
2987 }
2988#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00002989
Denis Vlasenko0b677d82009-04-10 13:49:10 +00002990 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00002991
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002992 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00002993 return 0;
2994}
2995
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002996
2997/* Peek ahead in the input to find out if we have a "&n" construct,
2998 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002999 * Return:
3000 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
3001 * REDIRFD_SYNTAX_ERR if syntax error,
3002 * REDIRFD_TO_FILE if no & was seen,
3003 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003004 */
3005#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003006#define parse_redir_right_fd(as_string, input) \
3007 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003008#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003009static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003010{
3011 int ch, d, ok;
3012
3013 ch = i_peek(input);
3014 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003015 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003016
3017 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003018 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003019 ch = i_peek(input);
3020 if (ch == '-') {
3021 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003022 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003023 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003024 }
3025 d = 0;
3026 ok = 0;
3027 while (ch != EOF && isdigit(ch)) {
3028 d = d*10 + (ch-'0');
3029 ok = 1;
3030 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003031 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003032 ch = i_peek(input);
3033 }
3034 if (ok) return d;
3035
3036//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
3037
3038 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003039 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003040}
3041
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003042/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003043 */
3044static int parse_redirect(struct parse_context *ctx,
3045 int fd,
3046 redir_type style,
3047 struct in_str *input)
3048{
3049 struct command *command = ctx->command;
3050 struct redir_struct *redir;
3051 struct redir_struct **redirp;
3052 int dup_num;
3053
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003054 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003055 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003056 /* Check for a '>&1' type redirect */
3057 dup_num = parse_redir_right_fd(&ctx->as_string, input);
3058 if (dup_num == REDIRFD_SYNTAX_ERR)
3059 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003060 } else {
3061 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003062 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003063 if (dup_num) { /* <<-... */
3064 ch = i_getch(input);
3065 nommu_addchr(&ctx->as_string, ch);
3066 ch = i_peek(input);
3067 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003068 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003069
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003070 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003071 int ch = i_peek(input);
3072 if (ch == '|') {
3073 /* >|FILE redirect ("clobbering" >).
3074 * Since we do not support "set -o noclobber" yet,
3075 * >| and > are the same for now. Just eat |.
3076 */
3077 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003078 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003079 }
3080 }
3081
3082 /* Create a new redir_struct and append it to the linked list */
3083 redirp = &command->redirects;
3084 while ((redir = *redirp) != NULL) {
3085 redirp = &(redir->next);
3086 }
3087 *redirp = redir = xzalloc(sizeof(*redir));
3088 /* redir->next = NULL; */
3089 /* redir->rd_filename = NULL; */
3090 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003091 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003092
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003093 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
3094 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003095
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003096 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003097 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003098 /* Erik had a check here that the file descriptor in question
3099 * is legit; I postpone that to "run time"
3100 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003101 debug_printf_parse("duplicating redirect '%d>&%d'\n",
3102 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003103 } else {
3104 /* Set ctx->pending_redirect, so we know what to do at the
3105 * end of the next parsed word. */
3106 ctx->pending_redirect = redir;
3107 }
3108 return 0;
3109}
3110
Eric Andersen25f27032001-04-26 23:22:31 +00003111/* If a redirect is immediately preceded by a number, that number is
3112 * supposed to tell which file descriptor to redirect. This routine
3113 * looks for such preceding numbers. In an ideal world this routine
3114 * needs to handle all the following classes of redirects...
3115 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3116 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3117 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3118 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003119 *
3120 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3121 * "2.7 Redirection
3122 * ... If n is quoted, the number shall not be recognized as part of
3123 * the redirection expression. For example:
3124 * echo \2>a
3125 * writes the character 2 into file a"
Denys Vlasenko38292b62010-09-05 14:49:40 +02003126 * We are getting it right by setting ->has_quoted_part on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003127 *
3128 * A -1 return means no valid number was found,
3129 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00003130 */
3131static int redirect_opt_num(o_string *o)
3132{
3133 int num;
3134
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003135 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003136 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003137 num = bb_strtou(o->data, NULL, 10);
3138 if (errno || num < 0)
3139 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003140 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00003141 return num;
3142}
3143
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003144#if BB_MMU
3145#define fetch_till_str(as_string, input, word, skip_tabs) \
3146 fetch_till_str(input, word, skip_tabs)
3147#endif
3148static char *fetch_till_str(o_string *as_string,
3149 struct in_str *input,
3150 const char *word,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003151 int heredoc_flags)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003152{
3153 o_string heredoc = NULL_O_STRING;
3154 int past_EOL = 0;
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003155 int prev = 0; /* not \ */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003156 int ch;
3157
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003158 goto jump_in;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003159 while (1) {
3160 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003161 nommu_addchr(as_string, ch);
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003162 if (ch == '\n'
Denys Vlasenko83b900f2010-09-06 11:47:55 +02003163 /* TODO: or EOF? (heredoc delimiter may end with <eof>, not only <eol>) */
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003164 && ((heredoc_flags & HEREDOC_QUOTED) || prev != '\\')
3165 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003166 if (strcmp(heredoc.data + past_EOL, word) == 0) {
3167 heredoc.data[past_EOL] = '\0';
3168 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
3169 return heredoc.data;
3170 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003171 do {
Denys Vlasenkoc3adfac2010-09-06 11:46:03 +02003172 o_addchr(&heredoc, '\n');
3173 prev = 0; /* not \ */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003174 past_EOL = heredoc.length;
3175 jump_in:
3176 do {
3177 ch = i_getch(input);
3178 nommu_addchr(as_string, ch);
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003179 } while ((heredoc_flags & HEREDOC_SKIPTABS) && ch == '\t');
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003180 } while (ch == '\n');
3181 }
3182 if (ch == EOF) {
3183 o_free_unsafe(&heredoc);
3184 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003185 }
3186 o_addchr(&heredoc, ch);
Denys Vlasenkoc3adfac2010-09-06 11:46:03 +02003187 if (prev == '\\' && ch == '\\')
3188 /* Correctly handle foo\\<eol> (not a line cont.) */
3189 prev = 0; /* not \ */
3190 else
3191 prev = ch;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003192 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003193 }
3194}
3195
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003196/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
3197 * and load them all. There should be exactly heredoc_cnt of them.
3198 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003199static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
3200{
3201 struct pipe *pi = ctx->list_head;
3202
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003203 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003204 int i;
3205 struct command *cmd = pi->cmds;
3206
3207 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
3208 pi->num_cmds,
3209 cmd->argv ? cmd->argv[0] : "NONE");
3210 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003211 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003212
3213 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
3214 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003215 while (redir) {
3216 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003217 char *p;
3218
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003219 redir->rd_type = REDIRECT_HEREDOC2;
Denys Vlasenko764b2f02009-06-07 16:05:04 +02003220 /* redir->rd_dup is (ab)used to indicate <<- */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003221 p = fetch_till_str(&ctx->as_string, input,
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003222 redir->rd_filename, redir->rd_dup);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003223 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003224 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003225 return 1;
3226 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003227 free(redir->rd_filename);
3228 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003229 heredoc_cnt--;
3230 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003231 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003232 }
3233 cmd++;
3234 }
3235 pi = pi->next;
3236 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003237#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003238 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003239 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003240 bb_error_msg_and_die("heredoc BUG 2");
3241#endif
3242 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003243}
3244
3245
Denys Vlasenkob36abf22010-09-05 14:50:59 +02003246static int run_list(struct pipe *pi);
3247#if BB_MMU
3248#define parse_stream(pstring, input, end_trigger) \
3249 parse_stream(input, end_trigger)
3250#endif
3251static struct pipe *parse_stream(char **pstring,
3252 struct in_str *input,
3253 int end_trigger);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003254
Eric Andersen25f27032001-04-26 23:22:31 +00003255
Denys Vlasenkoc2704542009-11-20 19:14:19 +01003256#if !ENABLE_HUSH_FUNCTIONS
3257#define parse_group(dest, ctx, input, ch) \
3258 parse_group(ctx, input, ch)
3259#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003260static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00003261 struct in_str *input, int ch)
3262{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003263 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00003264 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003265 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003266 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00003267 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003268 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003269
3270 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003271#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenko38292b62010-09-05 14:49:40 +02003272 if (ch == '(' && !dest->has_quoted_part) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003273 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00003274 if (done_word(dest, ctx))
3275 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003276 if (!command->argv)
3277 goto skip; /* (... */
3278 if (command->argv[1]) { /* word word ... (... */
3279 syntax_error_unexpected_ch('(');
3280 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003281 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003282 /* it is "word(..." or "word (..." */
3283 do
3284 ch = i_getch(input);
3285 while (ch == ' ' || ch == '\t');
3286 if (ch != ')') {
3287 syntax_error_unexpected_ch(ch);
3288 return 1;
3289 }
3290 nommu_addchr(&ctx->as_string, ch);
3291 do
3292 ch = i_getch(input);
3293 while (ch == ' ' || ch == '\t' || ch == '\n');
3294 if (ch != '{') {
3295 syntax_error_unexpected_ch(ch);
3296 return 1;
3297 }
3298 nommu_addchr(&ctx->as_string, ch);
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003299 command->cmd_type = CMD_FUNCDEF;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003300 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003301 }
3302#endif
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01003303
3304#if 0 /* Prevented by caller */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003305 if (command->argv /* word [word]{... */
3306 || dest->length /* word{... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003307 || dest->has_quoted_part /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003308 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003309 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003310 debug_printf_parse("parse_group return 1: "
3311 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003312 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003313 }
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01003314#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003315
3316#if ENABLE_HUSH_FUNCTIONS
3317 skip:
3318#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00003319 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003320 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00003321 endch = ')';
Denys Vlasenko9d617c42009-06-09 18:40:52 +02003322 command->cmd_type = CMD_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00003323 } else {
3324 /* bash does not allow "{echo...", requires whitespace */
3325 ch = i_getch(input);
3326 if (ch != ' ' && ch != '\t' && ch != '\n') {
3327 syntax_error_unexpected_ch(ch);
3328 return 1;
3329 }
3330 nommu_addchr(&ctx->as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003331 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003332
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003333 {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003334#if BB_MMU
3335# define as_string NULL
3336#else
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003337 char *as_string = NULL;
3338#endif
3339 pipe_list = parse_stream(&as_string, input, endch);
3340#if !BB_MMU
3341 if (as_string)
3342 o_addstr(&ctx->as_string, as_string);
3343#endif
3344 /* empty ()/{} or parse error? */
3345 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00003346 /* parse_stream already emitted error msg */
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003347 if (!BB_MMU)
3348 free(as_string);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003349 debug_printf_parse("parse_group return 1: "
3350 "parse_stream returned %p\n", pipe_list);
3351 return 1;
3352 }
3353 command->group = pipe_list;
3354#if !BB_MMU
3355 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
3356 command->group_as_string = as_string;
3357 debug_printf_parse("end of group, remembering as:'%s'\n",
3358 command->group_as_string);
3359#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003360#undef as_string
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003361 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003362 debug_printf_parse("parse_group return 0\n");
3363 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003364 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00003365}
3366
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003367#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_DOLLAR_OPS
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003368/* Subroutines for copying $(...) and `...` things */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003369static void add_till_backquote(o_string *dest, struct in_str *input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003370/* '...' */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003371static void add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003372{
3373 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003374 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003375 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00003376 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003377 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003378 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003379 if (ch == '\'')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003380 return;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003381 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003382 }
3383}
3384/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003385static void add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003386{
3387 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003388 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003389 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00003390 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003391 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003392 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003393 if (ch == '"')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003394 return;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003395 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003396 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003397 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003398 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003399 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003400 if (ch == '`') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003401 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003402 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003403 continue;
3404 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00003405 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003406 }
3407}
3408/* Process `cmd` - copy contents until "`" is seen. Complicated by
3409 * \` quoting.
3410 * "Within the backquoted style of command substitution, backslash
3411 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
3412 * The search for the matching backquote shall be satisfied by the first
3413 * backquote found without a preceding backslash; during this search,
3414 * if a non-escaped backquote is encountered within a shell comment,
3415 * a here-document, an embedded command substitution of the $(command)
3416 * form, or a quoted string, undefined results occur. A single-quoted
3417 * or double-quoted string that begins, but does not end, within the
3418 * "`...`" sequence produces undefined results."
3419 * Example Output
3420 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
3421 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003422static void add_till_backquote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003423{
3424 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003425 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003426 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00003427 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003428 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003429 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003430 if (ch == '`')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003431 return;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003432 if (ch == '\\') {
3433 /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003434 int ch2 = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003435 if (ch2 == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00003436 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003437 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003438 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003439 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003440 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003441 ch = ch2;
3442 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003443 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003444 }
3445}
3446/* Process $(cmd) - copy contents until ")" is seen. Complicated by
3447 * quoting and nested ()s.
3448 * "With the $(command) style of command substitution, all characters
3449 * following the open parenthesis to the matching closing parenthesis
3450 * constitute the command. Any valid shell script can be used for command,
3451 * except a script consisting solely of redirections which produces
3452 * unspecified results."
3453 * Example Output
3454 * echo $(echo '(TEST)' BEST) (TEST) BEST
3455 * echo $(echo 'TEST)' BEST) TEST) BEST
3456 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
Denys Vlasenko74369502010-05-21 19:52:01 +02003457 *
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003458 * Also adapted to eat ${var%...} and $((...)) constructs, since ... part
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003459 * can contain arbitrary constructs, just like $(cmd).
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003460 * In bash compat mode, it needs to also be able to stop on ':' or '/'
3461 * for ${var:N[:M]} and ${var/P[/R]} parsing.
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003462 */
Denys Vlasenko74369502010-05-21 19:52:01 +02003463#define DOUBLE_CLOSE_CHAR_FLAG 0x80
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003464static int add_till_closing_bracket(o_string *dest, struct in_str *input, unsigned end_ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003465{
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003466 int ch;
Denys Vlasenko74369502010-05-21 19:52:01 +02003467 char dbl = end_ch & DOUBLE_CLOSE_CHAR_FLAG;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003468# if ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003469 char end_char2 = end_ch >> 8;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003470# endif
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003471 end_ch &= (DOUBLE_CLOSE_CHAR_FLAG - 1);
3472
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003473 while (1) {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003474 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003475 if (ch == EOF) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003476 syntax_error_unterm_ch(end_ch);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003477 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003478 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003479 if (ch == end_ch IF_HUSH_BASH_COMPAT( || ch == end_char2)) {
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003480 if (!dbl)
3481 break;
3482 /* we look for closing )) of $((EXPR)) */
3483 if (i_peek(input) == end_ch) {
3484 i_getch(input); /* eat second ')' */
3485 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00003486 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003487 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003488 o_addchr(dest, ch);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003489 if (ch == '(' || ch == '{') {
3490 ch = (ch == '(' ? ')' : '}');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003491 add_till_closing_bracket(dest, input, ch);
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003492 o_addchr(dest, ch);
3493 continue;
3494 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003495 if (ch == '\'') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003496 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003497 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003498 continue;
3499 }
3500 if (ch == '"') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003501 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003502 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003503 continue;
3504 }
Denys Vlasenkoa6ad3972010-05-22 00:26:06 +02003505 if (ch == '`') {
3506 add_till_backquote(dest, input);
3507 o_addchr(dest, ch);
3508 continue;
3509 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003510 if (ch == '\\') {
3511 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003512 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003513 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00003514 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003515 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00003516 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003517 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003518 continue;
3519 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003520 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003521 return ch;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003522}
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003523#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_DOLLAR_OPS */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003524
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003525/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003526#if BB_MMU
Denys Vlasenko2e48d532010-05-22 17:30:39 +02003527#define parse_dollar(as_string, dest, input) \
3528 parse_dollar(dest, input)
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003529#define as_string NULL
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003530#endif
Denys Vlasenko2e48d532010-05-22 17:30:39 +02003531static int parse_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003532 o_string *dest,
3533 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00003534{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003535 int ch = i_peek(input); /* first character after the $ */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003536 unsigned char quote_mask = (dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS) ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003537
Denys Vlasenko2e48d532010-05-22 17:30:39 +02003538 debug_printf_parse("parse_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003539 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003540 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003541 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00003542 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003543 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003544 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003545 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003546 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003547 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003548 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003549 if (!isalnum(ch) && ch != '_')
3550 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003551 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003552 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003553 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003554 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003555 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003556 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003557 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003558 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003559 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003560 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003561 o_addchr(dest, ch | quote_mask);
3562 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003563 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003564 case '$': /* pid */
3565 case '!': /* last bg pid */
3566 case '?': /* last exit code */
3567 case '#': /* number of args */
3568 case '*': /* args */
3569 case '@': /* args */
3570 goto make_one_char_var;
3571 case '{': {
Mike Frysingeref3e7fd2009-06-01 14:13:39 -04003572 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3573
Denys Vlasenko74369502010-05-21 19:52:01 +02003574 ch = i_getch(input); /* eat '{' */
3575 nommu_addchr(as_string, ch);
3576
3577 ch = i_getch(input); /* first char after '{' */
3578 nommu_addchr(as_string, ch);
3579 /* It should be ${?}, or ${#var},
3580 * or even ${?+subst} - operator acting on a special variable,
3581 * or the beginning of variable name.
3582 */
Denys Vlasenkoe85248a2010-05-22 06:20:26 +02003583 if (!strchr(_SPECIAL_VARS_STR, ch) && !isalnum(ch)) { /* not one of those */
Denys Vlasenko74369502010-05-21 19:52:01 +02003584 bad_dollar_syntax:
3585 syntax_error_unterm_str("${name}");
Denys Vlasenko2e48d532010-05-22 17:30:39 +02003586 debug_printf_parse("parse_dollar return 1: unterminated ${name}\n");
Denys Vlasenko74369502010-05-21 19:52:01 +02003587 return 1;
3588 }
3589 ch |= quote_mask;
3590
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003591 /* It's possible to just call add_till_closing_bracket() at this point.
Denys Vlasenko74369502010-05-21 19:52:01 +02003592 * However, this regresses some of our testsuite cases
3593 * which check invalid constructs like ${%}.
3594 * Oh well... let's check that the var name part is fine... */
3595
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003596 while (1) {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003597 unsigned pos;
3598
Denys Vlasenko74369502010-05-21 19:52:01 +02003599 o_addchr(dest, ch);
3600 debug_printf_parse(": '%c'\n", ch);
3601
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003602 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003603 nommu_addchr(as_string, ch);
Denys Vlasenko74369502010-05-21 19:52:01 +02003604 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00003605 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00003606
Denys Vlasenko74369502010-05-21 19:52:01 +02003607 if (!isalnum(ch) && ch != '_') {
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003608 unsigned end_ch;
3609 unsigned char last_ch;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003610 /* handle parameter expansions
3611 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
3612 */
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003613 if (!strchr(VAR_SUBST_OPS, ch)) /* ${var<bad_char>... */
Denys Vlasenko74369502010-05-21 19:52:01 +02003614 goto bad_dollar_syntax;
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003615
3616 /* Eat everything until closing '}' (or ':') */
3617 end_ch = '}';
3618 if (ENABLE_HUSH_BASH_COMPAT
3619 && ch == ':'
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003620 && !strchr(MINUS_PLUS_EQUAL_QUESTION, i_peek(input))
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003621 ) {
3622 /* It's ${var:N[:M]} thing */
3623 end_ch = '}' * 0x100 + ':';
3624 }
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003625 if (ENABLE_HUSH_BASH_COMPAT
3626 && ch == '/'
3627 ) {
3628 /* It's ${var/[/]pattern[/repl]} thing */
3629 if (i_peek(input) == '/') { /* ${var//pattern[/repl]}? */
3630 i_getch(input);
3631 nommu_addchr(as_string, '/');
3632 ch = '\\';
3633 }
3634 end_ch = '}' * 0x100 + '/';
3635 }
3636 o_addchr(dest, ch);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003637 again:
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003638 if (!BB_MMU)
3639 pos = dest->length;
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003640#if ENABLE_HUSH_DOLLAR_OPS
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003641 last_ch = add_till_closing_bracket(dest, input, end_ch);
Denys Vlasenko9297dbc2010-07-05 21:37:12 +02003642#else
3643#error Simple code to only allow ${var} is not implemented
3644#endif
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003645 if (as_string) {
3646 o_addstr(as_string, dest->data + pos);
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003647 o_addchr(as_string, last_ch);
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003648 }
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003649
3650 if (ENABLE_HUSH_BASH_COMPAT && (end_ch & 0xff00)) {
3651 /* close the first block: */
3652 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003653 /* while parsing N from ${var:N[:M]}
3654 * or pattern from ${var/[/]pattern[/repl]} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003655 if ((end_ch & 0xff) == last_ch) {
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003656 /* got ':' or '/'- parse the rest */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003657 end_ch = '}';
3658 goto again;
3659 }
Denys Vlasenko36f774a2010-09-05 14:45:38 +02003660 /* got '}' */
3661 if (end_ch == '}' * 0x100 + ':') {
3662 /* it's ${var:N} - emulate :999999999 */
3663 o_addstr(dest, "999999999");
3664 } /* else: it's ${var/[/]pattern} */
Denys Vlasenko1e811b12010-05-22 03:12:29 +02003665 }
Denys Vlasenko74369502010-05-21 19:52:01 +02003666 break;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003667 }
Denys Vlasenko74369502010-05-21 19:52:01 +02003668 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003669 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3670 break;
3671 }
Denys Vlasenkoc0836532009-10-19 13:13:06 +02003672#if ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003673 case '(': {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003674 unsigned pos;
3675
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003676 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003677 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00003678# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003679 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003680 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003681 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003682 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3683 o_addchr(dest, /*quote_mask |*/ '+');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003684 if (!BB_MMU)
3685 pos = dest->length;
3686 add_till_closing_bracket(dest, input, ')' | DOUBLE_CLOSE_CHAR_FLAG);
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00003687 if (as_string) {
3688 o_addstr(as_string, dest->data + pos);
3689 o_addchr(as_string, ')');
3690 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00003691 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003692 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003693 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003694 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00003695# endif
3696# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003697 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3698 o_addchr(dest, quote_mask | '`');
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003699 if (!BB_MMU)
3700 pos = dest->length;
3701 add_till_closing_bracket(dest, input, ')');
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00003702 if (as_string) {
3703 o_addstr(as_string, dest->data + pos);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01003704 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00003705 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003706 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00003707# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003708 break;
3709 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00003710#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003711 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003712 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003713 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003714 ch = i_peek(input);
3715 if (isalnum(ch)) { /* it's $_name or $_123 */
3716 ch = '_';
3717 goto make_var;
3718 }
3719 /* else: it's $_ */
Denys Vlasenko69b1cef2009-09-21 10:21:44 +02003720 /* TODO: $_ and $-: */
3721 /* $_ Shell or shell script name; or last argument of last command
3722 * (if last command wasn't a pipe; if it was, bash sets $_ to "");
3723 * but in command's env, set to full pathname used to invoke it */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003724 /* $- Option flags set by set builtin or shell options (-i etc) */
3725 default:
3726 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00003727 }
Denys Vlasenko2e48d532010-05-22 17:30:39 +02003728 debug_printf_parse("parse_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003729 return 0;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003730#undef as_string
Eric Andersen25f27032001-04-26 23:22:31 +00003731}
3732
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003733#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00003734#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003735 parse_stream_dquoted(dest, input, dquote_end)
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003736#define as_string NULL
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003737#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00003738static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003739 o_string *dest,
3740 struct in_str *input,
3741 int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003742{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00003743 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003744 int next;
3745
3746 again:
3747 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003748 if (ch != EOF)
3749 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003750 if (ch == dquote_end) { /* may be only '"' or EOF */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003751 if (dest->o_assignment == NOT_ASSIGNMENT)
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003752 dest->o_expflags ^= EXP_FLAG_ESC_GLOB_CHARS;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003753 debug_printf_parse("parse_stream_dquoted return 0\n");
3754 return 0;
3755 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003756 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003757 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00003758 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003759 /*xfunc_die(); - redundant */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003760 }
3761 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003762 if (ch != '\n') {
3763 next = i_peek(input);
3764 }
Denys Vlasenkof37eb392009-10-18 11:46:35 +02003765 debug_printf_parse("\" ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003766 ch, ch, !!(dest->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003767 if (ch == '\\') {
3768 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003769 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003770 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003771 }
3772 /* bash:
3773 * "The backslash retains its special meaning [in "..."]
3774 * only when followed by one of the following characters:
3775 * $, `, ", \, or <newline>. A double quote may be quoted
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02003776 * within double quotes by preceding it with a backslash."
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003777 * NB: in (unquoted) heredoc, above does not apply to ".
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003778 */
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02003779 if (next == dquote_end || strchr("$`\\\n", next) != NULL) {
Denys Vlasenko850b15b2010-09-09 12:58:19 +02003780 ch = i_getch(input); /* eat next */
3781 if (ch == '\n')
3782 goto again; /* skip \<newline> */
3783 } /* else: ch remains == '\\', and we double it */
3784 o_addqchr(dest, ch);
3785 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003786 goto again;
3787 }
3788 if (ch == '$') {
Denys Vlasenko2e48d532010-05-22 17:30:39 +02003789 if (parse_dollar(as_string, dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003790 debug_printf_parse("parse_stream_dquoted return 1: "
Denys Vlasenko2e48d532010-05-22 17:30:39 +02003791 "parse_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003792 return 1;
3793 }
3794 goto again;
3795 }
3796#if ENABLE_HUSH_TICK
3797 if (ch == '`') {
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003798 //unsigned pos = dest->length;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003799 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3800 o_addchr(dest, 0x80 | '`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003801 add_till_backquote(dest, input);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003802 o_addchr(dest, SPECIAL_VAR_SYMBOL);
3803 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00003804 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003805 }
3806#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00003807 o_addQchr(dest, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003808 goto again;
Denys Vlasenkoddc62f62010-05-22 00:53:32 +02003809#undef as_string
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003810}
3811
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003812/*
3813 * Scan input until EOF or end_trigger char.
3814 * Return a list of pipes to execute, or NULL on EOF
3815 * or if end_trigger character is met.
3816 * On syntax error, exit is shell is not interactive,
3817 * reset parsing machinery and start parsing anew,
3818 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00003819 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003820static struct pipe *parse_stream(char **pstring,
3821 struct in_str *input,
3822 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00003823{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003824 struct parse_context ctx;
3825 o_string dest = NULL_O_STRING;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003826 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00003827
Denys Vlasenko77a7b552010-09-09 12:40:03 +02003828 /* Single-quote triggers a bypass of the main loop until its mate is
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003829 * found. When recursing, quote state is passed in via dest->o_expflags.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003830 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003831 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
Denys Vlasenko90a99042009-09-06 02:36:23 +02003832 end_trigger ? end_trigger : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003833 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003834
Denys Vlasenkof37eb392009-10-18 11:46:35 +02003835 /* If very first arg is "" or '', dest.data may end up NULL.
3836 * Preventing this: */
3837 o_addchr(&dest, '\0');
3838 dest.length = 0;
3839
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02003840 /* We used to separate words on $IFS here. This was wrong.
3841 * $IFS is used only for word splitting when $var is expanded,
Denys Vlasenko77a7b552010-09-09 12:40:03 +02003842 * here we should use blank chars as separators, not $IFS
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02003843 */
Denys Vlasenko77a7b552010-09-09 12:40:03 +02003844
3845 reset: /* we come back here only on syntax errors in interactive shell */
3846
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003847#if ENABLE_HUSH_INTERACTIVE
3848 input->promptmode = 0; /* PS1 */
3849#endif
Denys Vlasenko77a7b552010-09-09 12:40:03 +02003850 if (MAYBE_ASSIGNMENT != 0)
3851 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003852 initialize_context(&ctx);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003853 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003854 while (1) {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02003855 const char *is_blank;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00003856 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003857 int ch;
3858 int next;
3859 int redir_fd;
3860 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00003861
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003862 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00003863 debug_printf_parse(": ch=%c (%d) escape=%d\n",
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02003864 ch, ch, !!(dest.o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00003865 if (ch == EOF) {
3866 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003867
3868 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00003869 syntax_error_unterm_str("here document");
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02003870 goto parse_error;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003871 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02003872 /* end_trigger == '}' case errors out earlier,
3873 * checking only ')' */
3874 if (end_trigger == ')') {
3875 syntax_error_unterm_ch('('); /* exits */
3876 /* goto parse_error; */
3877 }
3878
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00003879 if (done_word(&dest, &ctx)) {
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02003880 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00003881 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00003882 o_free(&dest);
3883 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00003884 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003885 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00003886 /* (this makes bare "&" cmd a no-op.
3887 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00003888 if (pi->num_cmds == 0
3889 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
3890 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003891 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00003892 pi = NULL;
3893 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003894#if !BB_MMU
3895 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
3896 if (pstring)
3897 *pstring = ctx.as_string.data;
3898 else
3899 o_free_unsafe(&ctx.as_string);
3900#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003901 debug_leave();
3902 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00003903 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003904 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003905 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01003906
3907 next = '\0';
3908 if (ch != '\n')
3909 next = i_peek(input);
3910
3911 is_special = "{}<>;&|()#'" /* special outside of "str" */
3912 "\\$\"" IF_HUSH_TICK("`"); /* always special */
3913 /* Are { and } special here? */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02003914 if (ctx.command->argv /* word [word]{... - non-special */
3915 || dest.length /* word{... - non-special */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003916 || dest.has_quoted_part /* ""{... - non-special */
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02003917 || (next != ';' /* }; - special */
3918 && next != ')' /* }) - special */
3919 && next != '&' /* }& and }&& ... - special */
3920 && next != '|' /* }|| ... - special */
3921 && !strchr(defifs, next) /* {word - non-special */
Denys Vlasenko3227d3f2010-05-17 09:49:47 +02003922 )
Denys Vlasenkod8389ad2009-11-16 03:18:46 +01003923 ) {
3924 /* They are not special, skip "{}" */
3925 is_special += 2;
3926 }
3927 is_special = strchr(is_special, ch);
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02003928 is_blank = strchr(defifs, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00003929
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02003930 if (!is_special && !is_blank) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00003931 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003932 o_addQchr(&dest, ch);
3933 if ((dest.o_assignment == MAYBE_ASSIGNMENT
3934 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00003935 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003936 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00003937 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003938 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00003939 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003940 continue;
3941 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00003942
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02003943 if (is_blank) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003944 if (done_word(&dest, &ctx)) {
3945 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00003946 }
Denis Vlasenko37181682009-04-03 03:19:15 +00003947 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00003948#if ENABLE_HUSH_CASE
3949 /* "case ... in <newline> word) ..." -
3950 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003951 if (ctx.command->argv == NULL
3952 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00003953 ) {
3954 continue;
3955 }
3956#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00003957 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003958 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003959 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
3960 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003961 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003962 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00003963 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003964 heredoc_cnt = 0;
3965 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003966 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00003967 ch = ';';
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02003968 /* note: if (is_blank) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00003969 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003970 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003971 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00003972
3973 /* "cmd}" or "cmd }..." without semicolon or &:
3974 * } is an ordinary char in this case, even inside { cmd; }
3975 * Pathological example: { ""}; } should exec "}" cmd
3976 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00003977 if (ch == '}') {
3978 if (!IS_NULL_CMD(ctx.command) /* cmd } */
3979 || dest.length != 0 /* word} */
Denys Vlasenko38292b62010-09-05 14:49:40 +02003980 || dest.has_quoted_part /* ""} */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00003981 ) {
3982 goto ordinary_char;
3983 }
3984 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
3985 goto skip_end_trigger;
3986 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00003987 }
3988
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003989 if (end_trigger && end_trigger == ch
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003990 && (ch != ';' || heredoc_cnt == 0)
3991#if ENABLE_HUSH_CASE
3992 && (ch != ')'
3993 || ctx.ctx_res_w != RES_MATCH
Denys Vlasenko38292b62010-09-05 14:49:40 +02003994 || (!dest.has_quoted_part && strcmp(dest.data, "esac") == 0)
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02003995 )
3996#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003997 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003998 if (heredoc_cnt) {
3999 /* This is technically valid:
4000 * { cat <<HERE; }; echo Ok
4001 * heredoc
4002 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004003 * HERE
4004 * but we don't support this.
4005 * We require heredoc to be in enclosing {}/(),
4006 * if any.
4007 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004008 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004009 goto parse_error;
4010 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004011 if (done_word(&dest, &ctx)) {
4012 goto parse_error;
4013 }
4014 done_pipe(&ctx, PIPE_SEQ);
4015 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004016 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00004017 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004018 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00004019 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004020 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004021#if !BB_MMU
4022 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
4023 if (pstring)
4024 *pstring = ctx.as_string.data;
4025 else
4026 o_free_unsafe(&ctx.as_string);
4027#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004028 debug_leave();
4029 debug_printf_parse("parse_stream return %p: "
4030 "end_trigger char found\n",
4031 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004032 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004033 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004034 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00004035 skip_end_trigger:
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004036 if (is_blank)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004037 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004038
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004039 /* Catch <, > before deciding whether this word is
4040 * an assignment. a=1 2>z b=2: b=2 is still assignment */
4041 switch (ch) {
4042 case '>':
4043 redir_fd = redirect_opt_num(&dest);
4044 if (done_word(&dest, &ctx)) {
4045 goto parse_error;
4046 }
4047 redir_style = REDIRECT_OVERWRITE;
4048 if (next == '>') {
4049 redir_style = REDIRECT_APPEND;
4050 ch = i_getch(input);
4051 nommu_addchr(&ctx.as_string, ch);
4052 }
4053#if 0
4054 else if (next == '(') {
4055 syntax_error(">(process) not supported");
4056 goto parse_error;
4057 }
4058#endif
4059 if (parse_redirect(&ctx, redir_fd, redir_style, input))
4060 goto parse_error;
4061 continue; /* back to top of while (1) */
4062 case '<':
4063 redir_fd = redirect_opt_num(&dest);
4064 if (done_word(&dest, &ctx)) {
4065 goto parse_error;
4066 }
4067 redir_style = REDIRECT_INPUT;
4068 if (next == '<') {
4069 redir_style = REDIRECT_HEREDOC;
4070 heredoc_cnt++;
4071 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
4072 ch = i_getch(input);
4073 nommu_addchr(&ctx.as_string, ch);
4074 } else if (next == '>') {
4075 redir_style = REDIRECT_IO;
4076 ch = i_getch(input);
4077 nommu_addchr(&ctx.as_string, ch);
4078 }
4079#if 0
4080 else if (next == '(') {
4081 syntax_error("<(process) not supported");
4082 goto parse_error;
4083 }
4084#endif
4085 if (parse_redirect(&ctx, redir_fd, redir_style, input))
4086 goto parse_error;
4087 continue; /* back to top of while (1) */
4088 }
4089
4090 if (dest.o_assignment == MAYBE_ASSIGNMENT
4091 /* check that we are not in word in "a=1 2>word b=1": */
4092 && !ctx.pending_redirect
4093 ) {
4094 /* ch is a special char and thus this word
4095 * cannot be an assignment */
4096 dest.o_assignment = NOT_ASSIGNMENT;
4097 }
4098
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02004099 /* Note: nommu_addchr(&ctx.as_string, ch) is already done */
4100
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004101 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00004102 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004103 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004104 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004105 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004106 if (ch == EOF || ch == '\n')
4107 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004108 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004109 /* note: we do not add it to &ctx.as_string */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004110 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004111 nommu_addchr(&ctx.as_string, '\n');
Eric Andersen25f27032001-04-26 23:22:31 +00004112 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004113 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004114 }
4115 break;
4116 case '\\':
4117 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004118 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004119 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00004120 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004121 ch = i_getch(input);
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02004122 if (ch != '\n') {
4123 o_addchr(&dest, '\\');
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02004124 /*nommu_addchr(&ctx.as_string, '\\'); - already done */
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02004125 o_addchr(&dest, ch);
4126 nommu_addchr(&ctx.as_string, ch);
4127 /* Example: echo Hello \2>file
4128 * we need to know that word 2 is quoted */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004129 dest.has_quoted_part = 1;
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004130 }
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02004131#if !BB_MMU
Denys Vlasenkoc0836532009-10-19 13:13:06 +02004132 else {
Denys Vlasenkocbfe6ad2009-08-12 19:47:44 +02004133 /* It's "\<newline>". Remove trailing '\' from ctx.as_string */
4134 ctx.as_string.data[--ctx.as_string.length] = '\0';
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02004135 }
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02004136#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004137 break;
4138 case '$':
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004139 if (parse_dollar(&ctx.as_string, &dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004140 debug_printf_parse("parse_stream parse error: "
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004141 "parse_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004142 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004143 }
Eric Andersen25f27032001-04-26 23:22:31 +00004144 break;
4145 case '\'':
Denys Vlasenko38292b62010-09-05 14:49:40 +02004146 dest.has_quoted_part = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004147 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004148 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004149 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004150 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004151 /*xfunc_die(); - redundant */
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004152 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004153 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004154 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004155 break;
Denys Vlasenkoe640cb42009-05-28 16:49:11 +02004156 o_addqchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004157 }
Eric Andersen25f27032001-04-26 23:22:31 +00004158 break;
4159 case '"':
Denys Vlasenko38292b62010-09-05 14:49:40 +02004160 dest.has_quoted_part = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004161 if (dest.o_assignment == NOT_ASSIGNMENT)
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004162 dest.o_expflags ^= EXP_FLAG_ESC_GLOB_CHARS;
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004163 if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"'))
4164 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004165 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004166#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004167 case '`': {
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004168 unsigned pos;
4169
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004170 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4171 o_addchr(&dest, '`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004172 pos = dest.length;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004173 add_till_backquote(&dest, input);
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004174# if !BB_MMU
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004175 o_addstr(&ctx.as_string, dest.data + pos);
4176 o_addchr(&ctx.as_string, '`');
Denys Vlasenko2e48d532010-05-22 17:30:39 +02004177# endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004178 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4179 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00004180 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004181 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004182#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004183 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004184#if ENABLE_HUSH_CASE
4185 case_semi:
4186#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004187 if (done_word(&dest, &ctx)) {
4188 goto parse_error;
4189 }
4190 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004191#if ENABLE_HUSH_CASE
4192 /* Eat multiple semicolons, detect
4193 * whether it means something special */
4194 while (1) {
4195 ch = i_peek(input);
4196 if (ch != ';')
4197 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004198 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004199 nommu_addchr(&ctx.as_string, ch);
Denys Vlasenkoe9bda902009-05-23 16:50:07 +02004200 if (ctx.ctx_res_w == RES_CASE_BODY) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004201 ctx.ctx_dsemicolon = 1;
4202 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004203 break;
4204 }
4205 }
4206#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004207 new_cmd:
4208 /* We just finished a cmd. New one may start
4209 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004210 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00004211 break;
4212 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004213 if (done_word(&dest, &ctx)) {
4214 goto parse_error;
4215 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004216 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004217 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004218 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004219 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00004220 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004221 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00004222 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004223 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004224 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004225 if (done_word(&dest, &ctx)) {
4226 goto parse_error;
4227 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004228#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004229 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00004230 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004231#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004232 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004233 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004234 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004235 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00004236 } else {
4237 /* we could pick up a file descriptor choice here
4238 * with redirect_opt_num(), but bash doesn't do it.
4239 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004240 done_command(&ctx);
Denys Vlasenkob70cef72010-01-12 13:45:45 +01004241#if !BB_MMU
4242 o_reset_to_empty_unquoted(&ctx.as_string);
4243#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004244 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004245 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004246 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004247#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00004248 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004249 if (ctx.ctx_res_w == RES_MATCH
4250 && ctx.command->argv == NULL /* not (word|(... */
4251 && dest.length == 0 /* not word(... */
Denys Vlasenko38292b62010-09-05 14:49:40 +02004252 && dest.has_quoted_part == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004253 ) {
4254 continue;
4255 }
4256#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004257 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004258 if (parse_group(&dest, &ctx, input, ch) != 0) {
4259 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004260 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004261 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004262 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004263#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004264 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004265 goto case_semi;
4266#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004267 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004268 /* proper use of this character is caught by end_trigger:
4269 * if we see {, we call parse_group(..., end_trigger='}')
4270 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004271 syntax_error_unexpected_ch(ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004272 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004273 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004274 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004275 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004276 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004277 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004278
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004279 parse_error:
4280 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004281 struct parse_context *pctx;
4282 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004283
4284 /* Clean up allocated tree.
Denys Vlasenko764b2f02009-06-07 16:05:04 +02004285 * Sample for finding leaks on syntax error recovery path.
4286 * Run it from interactive shell, watch pmap `pidof hush`.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004287 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00004288 * Samples to catch leaks at execution:
4289 * while if (true | {true;}); then echo ok; fi; do break; done
4290 * 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 +00004291 */
4292 pctx = &ctx;
4293 do {
4294 /* Update pipe/command counts,
4295 * otherwise freeing may miss some */
4296 done_pipe(pctx, PIPE_SEQ);
4297 debug_printf_clean("freeing list %p from ctx %p\n",
4298 pctx->list_head, pctx);
4299 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004300 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004301 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004302#if !BB_MMU
4303 o_free_unsafe(&pctx->as_string);
4304#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004305 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004306 if (pctx != &ctx) {
4307 free(pctx);
4308 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004309 IF_HAS_KEYWORDS(pctx = p2;)
4310 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004311 /* Free text, clear all dest fields */
4312 o_free(&dest);
4313 /* If we are not in top-level parse, we return,
4314 * our caller will propagate error.
4315 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004316 if (end_trigger != ';') {
4317#if !BB_MMU
4318 if (pstring)
4319 *pstring = NULL;
4320#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004321 debug_leave();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004322 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004323 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004324 /* Discard cached input, force prompt */
4325 input->p = NULL;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00004326 IF_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004327 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004328 }
Eric Andersen25f27032001-04-26 23:22:31 +00004329}
4330
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004331
4332/*** Execution routines ***/
4333
4334/* Expansion can recurse, need forward decls: */
4335static char *expand_string_to_string(const char *str);
4336static int process_command_subs(o_string *dest, const char *s);
4337
4338/* expand_strvec_to_strvec() takes a list of strings, expands
4339 * all variable references within and returns a pointer to
4340 * a list of expanded strings, possibly with larger number
4341 * of strings. (Think VAR="a b"; echo $VAR).
4342 * This new list is allocated as a single malloc block.
4343 * NULL-terminated list of char* pointers is at the beginning of it,
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004344 * followed by strings themselves.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004345 * Caller can deallocate entire list by single free(list). */
4346
4347/* Store given string, finalizing the word and starting new one whenever
4348 * we encounter IFS char(s). This is used for expanding variable values.
4349 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
4350static int expand_on_ifs(o_string *output, int n, const char *str)
4351{
4352 while (1) {
4353 int word_len = strcspn(str, G.ifs);
4354 if (word_len) {
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004355 if (output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS)
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004356 o_addqblock(output, str, word_len);
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004357 else if (!(output->o_expflags & EXP_FLAG_GLOB))
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004358 o_addblock(output, str, word_len);
4359 else /* if (!escape && glob) */ {
4360 /* Protect backslashes against globbing up :)
4361 * Example: "v='\*'; echo b$v"
4362 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004363 o_addblock_duplicate_backslash(output, str, word_len);
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004364 /*/ Why can't we do it easier? */
4365 /*o_addblock(output, str, word_len); - WRONG: "v='\*'; echo Z$v" prints "Z*" instead of "Z\*" */
4366 /*o_addqblock(output, str, word_len); - WRONG: "v='*'; echo Z$v" prints "Z*" instead of Z* files */
4367 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004368 str += word_len;
4369 }
4370 if (!*str) /* EOL - do not finalize word */
4371 break;
4372 o_addchr(output, '\0');
4373 debug_print_list("expand_on_ifs", output, n);
4374 n = o_save_ptr(output, n);
4375 str += strspn(str, G.ifs); /* skip ifs chars */
4376 }
4377 debug_print_list("expand_on_ifs[1]", output, n);
4378 return n;
4379}
4380
4381/* Helper to expand $((...)) and heredoc body. These act as if
4382 * they are in double quotes, with the exception that they are not :).
4383 * Just the rules are similar: "expand only $var and `cmd`"
4384 *
4385 * Returns malloced string.
4386 * As an optimization, we return NULL if expansion is not needed.
4387 */
4388static char *expand_pseudo_dquoted(const char *str)
4389{
4390 char *exp_str;
4391 struct in_str input;
4392 o_string dest = NULL_O_STRING;
4393
4394 if (!strchr(str, '$')
Denys Vlasenko77b32cc2010-09-06 11:27:32 +02004395 && !strchr(str, '\\')
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004396#if ENABLE_HUSH_TICK
4397 && !strchr(str, '`')
4398#endif
4399 ) {
4400 return NULL;
4401 }
4402
4403 /* We need to expand. Example:
4404 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
4405 */
4406 setup_string_in_str(&input, str);
4407 parse_stream_dquoted(NULL, &dest, &input, EOF);
4408 //bb_error_msg("'%s' -> '%s'", str, dest.data);
4409 exp_str = expand_string_to_string(dest.data);
4410 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
4411 o_free_unsafe(&dest);
4412 return exp_str;
4413}
4414
4415#if ENABLE_SH_MATH_SUPPORT
4416static arith_t expand_and_evaluate_arith(const char *arg, int *errcode_p)
4417{
4418 arith_eval_hooks_t hooks;
4419 arith_t res;
4420 char *exp_str;
4421
4422 hooks.lookupvar = get_local_var_value;
4423 hooks.setvar = set_local_var_from_halves;
Denys Vlasenko8b2f13d2010-09-07 12:19:33 +02004424 //hooks.endofname = endofname;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004425 exp_str = expand_pseudo_dquoted(arg);
4426 res = arith(exp_str ? exp_str : arg, errcode_p, &hooks);
4427 free(exp_str);
4428 return res;
4429}
4430#endif
4431
4432#if ENABLE_HUSH_BASH_COMPAT
4433/* ${var/[/]pattern[/repl]} helpers */
4434static char *strstr_pattern(char *val, const char *pattern, int *size)
4435{
4436 while (1) {
4437 char *end = scan_and_match(val, pattern, SCAN_MOVE_FROM_RIGHT + SCAN_MATCH_LEFT_HALF);
4438 debug_printf_varexp("val:'%s' pattern:'%s' end:'%s'\n", val, pattern, end);
4439 if (end) {
4440 *size = end - val;
4441 return val;
4442 }
4443 if (*val == '\0')
4444 return NULL;
4445 /* Optimization: if "*pat" did not match the start of "string",
4446 * we know that "tring", "ring" etc will not match too:
4447 */
4448 if (pattern[0] == '*')
4449 return NULL;
4450 val++;
4451 }
4452}
4453static char *replace_pattern(char *val, const char *pattern, const char *repl, char exp_op)
4454{
4455 char *result = NULL;
4456 unsigned res_len = 0;
4457 unsigned repl_len = strlen(repl);
4458
4459 while (1) {
4460 int size;
4461 char *s = strstr_pattern(val, pattern, &size);
4462 if (!s)
4463 break;
4464
4465 result = xrealloc(result, res_len + (s - val) + repl_len + 1);
4466 memcpy(result + res_len, val, s - val);
4467 res_len += s - val;
4468 strcpy(result + res_len, repl);
4469 res_len += repl_len;
4470 debug_printf_varexp("val:'%s' s:'%s' result:'%s'\n", val, s, result);
4471
4472 val = s + size;
4473 if (exp_op == '/')
4474 break;
4475 }
4476 if (val[0] && result) {
4477 result = xrealloc(result, res_len + strlen(val) + 1);
4478 strcpy(result + res_len, val);
4479 debug_printf_varexp("val:'%s' result:'%s'\n", val, result);
4480 }
4481 debug_printf_varexp("result:'%s'\n", result);
4482 return result;
4483}
4484#endif
4485
4486/* Helper:
4487 * Handles <SPECIAL_VAR_SYMBOL>varname...<SPECIAL_VAR_SYMBOL> construct.
4488 */
4489static NOINLINE const char *expand_one_var(char **to_be_freed_pp, char *arg, char **pp, char first_ch)
4490{
4491 const char *val = NULL;
4492 char *to_be_freed = NULL;
4493 char *p = *pp;
4494 char *var;
4495 char first_char;
4496 char exp_op;
4497 char exp_save = exp_save; /* for compiler */
4498 char *exp_saveptr; /* points to expansion operator */
4499 char *exp_word = exp_word; /* for compiler */
4500
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004501 *p = '\0'; /* replace trailing SPECIAL_VAR_SYMBOL */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004502 var = arg;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004503 exp_saveptr = arg[1] ? strchr(VAR_ENCODED_SUBST_OPS, arg[1]) : NULL;
4504 first_char = arg[0] = first_ch & 0x7f;
4505 exp_op = 0;
4506
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004507 if (first_char == '#' /* ${#... */
4508 && arg[1] && !exp_saveptr /* not ${#} and not ${#<op_char>...} */
4509 ) {
4510 /* It must be length operator: ${#var} */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004511 var++;
4512 exp_op = 'L';
4513 } else {
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004514 /* Maybe handle parameter expansion */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004515 if (exp_saveptr /* if 2nd char is one of expansion operators */
4516 && strchr(NUMERIC_SPECVARS_STR, first_char) /* 1st char is special variable */
4517 ) {
4518 /* ${?:0}, ${#[:]%0} etc */
4519 exp_saveptr = var + 1;
4520 } else {
4521 /* ${?}, ${var}, ${var:0}, ${var[:]%0} etc */
4522 exp_saveptr = var+1 + strcspn(var+1, VAR_ENCODED_SUBST_OPS);
4523 }
4524 exp_op = exp_save = *exp_saveptr;
4525 if (exp_op) {
4526 exp_word = exp_saveptr + 1;
4527 if (exp_op == ':') {
4528 exp_op = *exp_word++;
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004529//TODO: try ${var:} and ${var:bogus} in non-bash config
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004530 if (ENABLE_HUSH_BASH_COMPAT
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004531 && (!exp_op || !strchr(MINUS_PLUS_EQUAL_QUESTION, exp_op))
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004532 ) {
4533 /* oops... it's ${var:N[:M]}, not ${var:?xxx} or some such */
4534 exp_op = ':';
4535 exp_word--;
4536 }
4537 }
4538 *exp_saveptr = '\0';
4539 } /* else: it's not an expansion op, but bare ${var} */
4540 }
4541
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004542 /* Look up the variable in question */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004543 if (isdigit(var[0])) {
Denys Vlasenko77a7b552010-09-09 12:40:03 +02004544 /* parse_dollar should have vetted var for us */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004545 int n = xatoi_positive(var);
4546 if (n < G.global_argc)
4547 val = G.global_argv[n];
4548 /* else val remains NULL: $N with too big N */
4549 } else {
4550 switch (var[0]) {
4551 case '$': /* pid */
4552 val = utoa(G.root_pid);
4553 break;
4554 case '!': /* bg pid */
4555 val = G.last_bg_pid ? utoa(G.last_bg_pid) : "";
4556 break;
4557 case '?': /* exitcode */
4558 val = utoa(G.last_exitcode);
4559 break;
4560 case '#': /* argc */
4561 val = utoa(G.global_argc ? G.global_argc-1 : 0);
4562 break;
4563 default:
4564 val = get_local_var_value(var);
4565 }
4566 }
4567
4568 /* Handle any expansions */
4569 if (exp_op == 'L') {
4570 debug_printf_expand("expand: length(%s)=", val);
4571 val = utoa(val ? strlen(val) : 0);
4572 debug_printf_expand("%s\n", val);
4573 } else if (exp_op) {
4574 if (exp_op == '%' || exp_op == '#') {
4575 /* Standard-mandated substring removal ops:
4576 * ${parameter%word} - remove smallest suffix pattern
4577 * ${parameter%%word} - remove largest suffix pattern
4578 * ${parameter#word} - remove smallest prefix pattern
4579 * ${parameter##word} - remove largest prefix pattern
4580 *
4581 * Word is expanded to produce a glob pattern.
4582 * Then var's value is matched to it and matching part removed.
4583 */
4584 if (val && val[0]) {
4585 char *exp_exp_word;
4586 char *loc;
4587 unsigned scan_flags = pick_scan(exp_op, *exp_word);
4588 if (exp_op == *exp_word) /* ## or %% */
4589 exp_word++;
4590//TODO: avoid xstrdup unless needed
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004591// (see HACK ALERT below for an example)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004592 val = to_be_freed = xstrdup(val);
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004593//TODO: fix expansion rules:
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004594 exp_exp_word = expand_pseudo_dquoted(exp_word);
4595 if (exp_exp_word)
4596 exp_word = exp_exp_word;
4597 loc = scan_and_match(to_be_freed, exp_word, scan_flags);
4598 //bb_error_msg("op:%c str:'%s' pat:'%s' res:'%s'",
4599 // exp_op, to_be_freed, exp_word, loc);
4600 free(exp_exp_word);
4601 if (loc) { /* match was found */
4602 if (scan_flags & SCAN_MATCH_LEFT_HALF) /* #[#] */
4603 val = loc;
4604 else /* %[%] */
4605 *loc = '\0';
4606 }
4607 }
4608 }
4609#if ENABLE_HUSH_BASH_COMPAT
4610 else if (exp_op == '/' || exp_op == '\\') {
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004611 /* It's ${var/[/]pattern[/repl]} thing.
4612 * Note that in encoded form it has TWO parts:
4613 * var/pattern<SPECIAL_VAR_SYMBOL>repl<SPECIAL_VAR_SYMBOL>
4614 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004615 /* Empty variable always gives nothing: */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004616 // "v=''; echo ${v/*/w}" prints "", not "w"
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004617 if (val && val[0]) {
4618 /* It's ${var/[/]pattern[/repl]} thing */
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004619 /*
4620 * Pattern is taken literally, while
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004621 * repl should be unbackslashed and globbed
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004622 * by the usual expansion rules:
4623 * >az; >bz;
4624 * v='a bz'; echo "${v/a*z/a*z}" prints "a*z"
4625 * v='a bz'; echo "${v/a*z/\z}" prints "\z"
4626 * v='a bz'; echo ${v/a*z/a*z} prints "az"
4627 * v='a bz'; echo ${v/a*z/\z} prints "z"
4628 * (note that a*z _pattern_ is never globbed!)
4629 */
4630//TODO: fix expansion rules:
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004631 char *pattern, *repl, *t;
4632 pattern = expand_pseudo_dquoted(exp_word);
4633 if (!pattern)
4634 pattern = xstrdup(exp_word);
4635 debug_printf_varexp("pattern:'%s'->'%s'\n", exp_word, pattern);
4636 *p++ = SPECIAL_VAR_SYMBOL;
4637 exp_word = p;
4638 p = strchr(p, SPECIAL_VAR_SYMBOL);
4639 *p = '\0';
4640 repl = expand_pseudo_dquoted(exp_word);
4641 debug_printf_varexp("repl:'%s'->'%s'\n", exp_word, repl);
4642 /* HACK ALERT. We depend here on the fact that
4643 * G.global_argv and results of utoa and get_local_var_value
4644 * are actually in writable memory:
4645 * replace_pattern momentarily stores NULs there. */
4646 t = (char*)val;
4647 to_be_freed = replace_pattern(t,
4648 pattern,
4649 (repl ? repl : exp_word),
4650 exp_op);
4651 if (to_be_freed) /* at least one replace happened */
4652 val = to_be_freed;
4653 free(pattern);
4654 free(repl);
4655 }
4656 }
4657#endif
4658 else if (exp_op == ':') {
4659#if ENABLE_HUSH_BASH_COMPAT && ENABLE_SH_MATH_SUPPORT
4660 /* It's ${var:N[:M]} bashism.
4661 * Note that in encoded form it has TWO parts:
4662 * var:N<SPECIAL_VAR_SYMBOL>M<SPECIAL_VAR_SYMBOL>
4663 */
4664 arith_t beg, len;
4665 int errcode = 0;
4666
4667 beg = expand_and_evaluate_arith(exp_word, &errcode);
4668 debug_printf_varexp("beg:'%s'=%lld\n", exp_word, (long long)beg);
4669 *p++ = SPECIAL_VAR_SYMBOL;
4670 exp_word = p;
4671 p = strchr(p, SPECIAL_VAR_SYMBOL);
4672 *p = '\0';
4673 len = expand_and_evaluate_arith(exp_word, &errcode);
4674 debug_printf_varexp("len:'%s'=%lld\n", exp_word, (long long)len);
4675
4676 if (errcode >= 0 && len >= 0) { /* bash compat: len < 0 is illegal */
4677 if (beg < 0) /* bash compat */
4678 beg = 0;
4679 debug_printf_varexp("from val:'%s'\n", val);
4680 if (len == 0 || !val || beg >= strlen(val))
4681 val = "";
4682 else {
4683 /* Paranoia. What if user entered 9999999999999
4684 * which fits in arith_t but not int? */
4685 if (len >= INT_MAX)
4686 len = INT_MAX;
4687 val = to_be_freed = xstrndup(val + beg, len);
4688 }
4689 debug_printf_varexp("val:'%s'\n", val);
4690 } else
4691#endif
4692 {
4693 die_if_script("malformed ${%s:...}", var);
4694 val = "";
4695 }
4696 } else { /* one of "-=+?" */
4697 /* Standard-mandated substitution ops:
4698 * ${var?word} - indicate error if unset
4699 * If var is unset, word (or a message indicating it is unset
4700 * if word is null) is written to standard error
4701 * and the shell exits with a non-zero exit status.
4702 * Otherwise, the value of var is substituted.
4703 * ${var-word} - use default value
4704 * If var is unset, word is substituted.
4705 * ${var=word} - assign and use default value
4706 * If var is unset, word is assigned to var.
4707 * In all cases, final value of var is substituted.
4708 * ${var+word} - use alternative value
4709 * If var is unset, null is substituted.
4710 * Otherwise, word is substituted.
4711 *
4712 * Word is subjected to tilde expansion, parameter expansion,
4713 * command substitution, and arithmetic expansion.
4714 * If word is not needed, it is not expanded.
4715 *
4716 * Colon forms (${var:-word}, ${var:=word} etc) do the same,
4717 * but also treat null var as if it is unset.
4718 */
4719 int use_word = (!val || ((exp_save == ':') && !val[0]));
4720 if (exp_op == '+')
4721 use_word = !use_word;
4722 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
4723 (exp_save == ':') ? "true" : "false", use_word);
4724 if (use_word) {
4725 to_be_freed = expand_pseudo_dquoted(exp_word);
4726 if (to_be_freed)
4727 exp_word = to_be_freed;
4728 if (exp_op == '?') {
4729 /* mimic bash message */
4730 die_if_script("%s: %s",
4731 var,
4732 exp_word[0] ? exp_word : "parameter null or not set"
4733 );
4734//TODO: how interactive bash aborts expansion mid-command?
4735 } else {
4736 val = exp_word;
4737 }
4738
4739 if (exp_op == '=') {
4740 /* ${var=[word]} or ${var:=[word]} */
4741 if (isdigit(var[0]) || var[0] == '#') {
4742 /* mimic bash message */
4743 die_if_script("$%s: cannot assign in this way", var);
4744 val = NULL;
4745 } else {
4746 char *new_var = xasprintf("%s=%s", var, val);
4747 set_local_var(new_var, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
4748 }
4749 }
4750 }
4751 } /* one of "-=+?" */
4752
4753 *exp_saveptr = exp_save;
4754 } /* if (exp_op) */
4755
4756 arg[0] = first_ch;
4757
4758 *pp = p;
4759 *to_be_freed_pp = to_be_freed;
4760 return val;
4761}
4762
4763/* Expand all variable references in given string, adding words to list[]
4764 * at n, n+1,... positions. Return updated n (so that list[n] is next one
4765 * to be filled). This routine is extremely tricky: has to deal with
4766 * variables/parameters with whitespace, $* and $@, and constructs like
4767 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02004768static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004769{
Denys Vlasenko95d48f22010-09-08 13:58:55 +02004770 /* output->o_expflags & EXP_FLAG_SINGLEWORD (0x80) if we are in
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004771 * expansion of right-hand side of assignment == 1-element expand.
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004772 */
4773 char ored_ch;
4774 char *p;
4775
4776 ored_ch = 0;
4777
Denys Vlasenko95d48f22010-09-08 13:58:55 +02004778 debug_printf_expand("expand_vars_to_list: arg:'%s' singleword:%x\n", arg,
4779 !!(output->o_expflags & EXP_FLAG_SINGLEWORD));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004780 debug_print_list("expand_vars_to_list", output, n);
4781 n = o_save_ptr(output, n);
4782 debug_print_list("expand_vars_to_list[0]", output, n);
4783
4784 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
4785 char first_ch;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004786 char *to_be_freed = NULL;
4787 const char *val = NULL;
4788#if ENABLE_HUSH_TICK
4789 o_string subst_result = NULL_O_STRING;
4790#endif
4791#if ENABLE_SH_MATH_SUPPORT
4792 char arith_buf[sizeof(arith_t)*3 + 2];
4793#endif
4794 o_addblock(output, arg, p - arg);
4795 debug_print_list("expand_vars_to_list[1]", output, n);
4796 arg = ++p;
4797 p = strchr(p, SPECIAL_VAR_SYMBOL);
4798
Denys Vlasenko95d48f22010-09-08 13:58:55 +02004799 first_ch = arg[0] | (output->o_expflags & EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004800 /* "$@" is special. Even if quoted, it can still
4801 * expand to nothing (not even an empty string) */
4802 if ((first_ch & 0x7f) != '@')
4803 ored_ch |= first_ch;
4804
4805 switch (first_ch & 0x7f) {
4806 /* Highest bit in first_ch indicates that var is double-quoted */
4807 case '*':
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004808 case '@': {
4809 int i;
4810 if (!G.global_argv[1])
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004811 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004812 i = 1;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004813 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
4814 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004815 int sv = output->o_expflags;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004816 /* unquoted var's contents should be globbed, so don't escape */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004817 output->o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004818 while (G.global_argv[i]) {
4819 n = expand_on_ifs(output, n, G.global_argv[i]);
4820 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
4821 if (G.global_argv[i++][0] && G.global_argv[i]) {
4822 /* this argv[] is not empty and not last:
4823 * put terminating NUL, start new word */
4824 o_addchr(output, '\0');
4825 debug_print_list("expand_vars_to_list[2]", output, n);
4826 n = o_save_ptr(output, n);
4827 debug_print_list("expand_vars_to_list[3]", output, n);
4828 }
4829 }
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004830 output->o_expflags = sv;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004831 } else
Denys Vlasenko95d48f22010-09-08 13:58:55 +02004832 /* If EXP_FLAG_SINGLEWORD, we handle assignment 'a=....$@.....'
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004833 * and in this case should treat it like '$*' - see 'else...' below */
Denys Vlasenko95d48f22010-09-08 13:58:55 +02004834 if (first_ch == ('@'|0x80) /* quoted $@ */
4835 && !(output->o_expflags & EXP_FLAG_SINGLEWORD)
4836 ) {
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004837 while (1) {
4838 o_addQstr(output, G.global_argv[i]);
4839 if (++i >= G.global_argc)
4840 break;
4841 o_addchr(output, '\0');
4842 debug_print_list("expand_vars_to_list[4]", output, n);
4843 n = o_save_ptr(output, n);
4844 }
4845 } else { /* quoted $*: add as one word */
4846 while (1) {
4847 o_addQstr(output, G.global_argv[i]);
4848 if (!G.global_argv[++i])
4849 break;
4850 if (G.ifs[0])
4851 o_addchr(output, G.ifs[0]);
4852 }
4853 }
4854 break;
Denys Vlasenkoc49d2d92010-09-06 10:26:37 +02004855 }
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004856 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
4857 /* "Empty variable", used to make "" etc to not disappear */
4858 arg++;
4859 ored_ch = 0x80;
4860 break;
4861#if ENABLE_HUSH_TICK
4862 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
4863 *p = '\0';
4864 arg++;
4865 /* Can't just stuff it into output o_string,
4866 * expanded result may need to be globbed
4867 * and $IFS-splitted */
4868 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
4869 G.last_exitcode = process_command_subs(&subst_result, arg);
4870 debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
4871 val = subst_result.data;
4872 goto store_val;
4873#endif
4874#if ENABLE_SH_MATH_SUPPORT
4875 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
4876 arith_t res;
4877 int errcode;
4878
4879 arg++; /* skip '+' */
4880 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
4881 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
4882 res = expand_and_evaluate_arith(arg, &errcode);
4883
4884 if (errcode < 0) {
4885 const char *msg = "error in arithmetic";
4886 switch (errcode) {
4887 case -3:
4888 msg = "exponent less than 0";
4889 break;
4890 case -2:
4891 msg = "divide by 0";
4892 break;
4893 case -5:
4894 msg = "expression recursion loop detected";
4895 break;
4896 }
4897 die_if_script(msg);
4898 }
4899 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
4900 sprintf(arith_buf, arith_t_fmt, res);
4901 val = arith_buf;
4902 break;
4903 }
4904#endif
4905 default:
4906 val = expand_one_var(&to_be_freed, arg, &p, first_ch);
4907 IF_HUSH_TICK(store_val:)
4908 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004909 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val,
4910 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004911 if (val && val[0]) {
4912 /* unquoted var's contents should be globbed, so don't escape */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004913 int sv = output->o_expflags;
4914 output->o_expflags &= ~EXP_FLAG_ESC_GLOB_CHARS;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004915 n = expand_on_ifs(output, n, val);
4916 val = NULL;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004917 output->o_expflags = sv;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004918 }
4919 } else { /* quoted $VAR, val will be appended below */
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004920 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val,
4921 !!(output->o_expflags & EXP_FLAG_ESC_GLOB_CHARS));
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004922 }
4923 break;
4924
4925 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
4926
4927 if (val && val[0]) {
4928 o_addQstr(output, val);
4929 }
4930 free(to_be_freed);
4931 /* Do the check to avoid writing to a const string */
4932 if (*p != SPECIAL_VAR_SYMBOL)
4933 *p = SPECIAL_VAR_SYMBOL;
4934
4935#if ENABLE_HUSH_TICK
4936 o_free(&subst_result);
4937#endif
4938 arg = ++p;
4939 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
4940
4941 if (arg[0]) {
4942 debug_print_list("expand_vars_to_list[a]", output, n);
4943 /* this part is literal, and it was already pre-quoted
4944 * if needed (much earlier), do not use o_addQstr here! */
4945 o_addstr_with_NUL(output, arg);
4946 debug_print_list("expand_vars_to_list[b]", output, n);
4947 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
4948 && !(ored_ch & 0x80) /* and all vars were not quoted. */
4949 ) {
4950 n--;
4951 /* allow to reuse list[n] later without re-growth */
4952 output->has_empty_slot = 1;
4953 } else {
4954 o_addchr(output, '\0');
4955 }
4956
4957 return n;
4958}
4959
Denys Vlasenko95d48f22010-09-08 13:58:55 +02004960static char **expand_variables(char **argv, unsigned expflags)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004961{
4962 int n;
4963 char **list;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004964 o_string output = NULL_O_STRING;
4965
Denys Vlasenko95d48f22010-09-08 13:58:55 +02004966 output.o_expflags = expflags;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004967
4968 n = 0;
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02004969 while (*argv) {
Denys Vlasenko95d48f22010-09-08 13:58:55 +02004970 n = expand_vars_to_list(&output, n, *argv);
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02004971 argv++;
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004972 }
4973 debug_print_list("expand_variables", &output, n);
4974
4975 /* output.data (malloced in one block) gets returned in "list" */
4976 list = o_finalize_list(&output, n);
4977 debug_print_strings("expand_variables[1]", list);
4978 return list;
4979}
4980
4981static char **expand_strvec_to_strvec(char **argv)
4982{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004983 return expand_variables(argv, EXP_FLAG_GLOB | EXP_FLAG_ESC_GLOB_CHARS);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004984}
4985
4986#if ENABLE_HUSH_BASH_COMPAT
4987static char **expand_strvec_to_strvec_singleword_noglob(char **argv)
4988{
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02004989 return expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004990}
4991#endif
4992
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02004993/* Used for expansion of right hand of assignments,
4994 * $((...)), heredocs, variable espansion parts.
4995 *
4996 * NB: should NOT do globbing!
4997 * "export v=/bin/c*; env | grep ^v=" outputs "v=/bin/c*"
4998 */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02004999static char *expand_string_to_string(const char *str)
5000{
5001 char *argv[2], **list;
5002
5003 /* This is generally an optimization, but it also
5004 * handles "", which otherwise trips over !list[0] check below.
5005 * (is this ever happens that we actually get str="" here?)
5006 */
5007 if (!strchr(str, SPECIAL_VAR_SYMBOL) && !strchr(str, '\\')) {
5008 //TODO: Can use on strings with \ too, just unbackslash() them?
5009 debug_printf_expand("string_to_string(fast)='%s'\n", str);
5010 return xstrdup(str);
5011 }
5012
5013 argv[0] = (char*)str;
5014 argv[1] = NULL;
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005015 list = expand_variables(argv, EXP_FLAG_ESC_GLOB_CHARS | EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005016 if (HUSH_DEBUG)
5017 if (!list[0] || list[1])
5018 bb_error_msg_and_die("BUG in varexp2");
5019 /* actually, just move string 2*sizeof(char*) bytes back */
5020 overlapping_strcpy((char*)list, list[0]);
5021 unbackslash((char*)list);
5022 debug_printf_expand("string_to_string='%s'\n", (char*)list);
5023 return (char*)list;
5024}
5025
5026/* Used for "eval" builtin */
5027static char* expand_strvec_to_string(char **argv)
5028{
5029 char **list;
5030
Denys Vlasenko5b686cb2010-09-08 13:44:34 +02005031 list = expand_variables(argv, EXP_FLAG_SINGLEWORD);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005032 /* Convert all NULs to spaces */
5033 if (list[0]) {
5034 int n = 1;
5035 while (list[n]) {
5036 if (HUSH_DEBUG)
5037 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
5038 bb_error_msg_and_die("BUG in varexp3");
5039 /* bash uses ' ' regardless of $IFS contents */
5040 list[n][-1] = ' ';
5041 n++;
5042 }
5043 }
5044 overlapping_strcpy((char*)list, list[0]);
5045 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
5046 return (char*)list;
5047}
5048
5049static char **expand_assignments(char **argv, int count)
5050{
5051 int i;
5052 char **p;
5053
5054 G.expanded_assignments = p = NULL;
5055 /* Expand assignments into one string each */
5056 for (i = 0; i < count; i++) {
5057 G.expanded_assignments = p = add_string_to_strings(p, expand_string_to_string(argv[i]));
5058 }
5059 G.expanded_assignments = NULL;
5060 return p;
5061}
5062
5063
5064#if BB_MMU
5065/* never called */
5066void re_execute_shell(char ***to_free, const char *s,
5067 char *g_argv0, char **g_argv,
5068 char **builtin_argv) NORETURN;
5069
5070static void reset_traps_to_defaults(void)
5071{
5072 /* This function is always called in a child shell
5073 * after fork (not vfork, NOMMU doesn't use this function).
5074 */
5075 unsigned sig;
5076 unsigned mask;
5077
5078 /* Child shells are not interactive.
5079 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
5080 * Testcase: (while :; do :; done) + ^Z should background.
5081 * Same goes for SIGTERM, SIGHUP, SIGINT.
5082 */
5083 if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS))
5084 return; /* already no traps and no SPECIAL_INTERACTIVE_SIGS */
5085
5086 /* Switching off SPECIAL_INTERACTIVE_SIGS.
5087 * Stupid. It can be done with *single* &= op, but we can't use
5088 * the fact that G.blocked_set is implemented as a bitmask
5089 * in libc... */
5090 mask = (SPECIAL_INTERACTIVE_SIGS >> 1);
5091 sig = 1;
5092 while (1) {
5093 if (mask & 1) {
5094 /* Careful. Only if no trap or trap is not "" */
5095 if (!G.traps || !G.traps[sig] || G.traps[sig][0])
5096 sigdelset(&G.blocked_set, sig);
5097 }
5098 mask >>= 1;
5099 if (!mask)
5100 break;
5101 sig++;
5102 }
5103 /* Our homegrown sig mask is saner to work with :) */
5104 G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS;
5105
5106 /* Resetting all traps to default except empty ones */
5107 mask = G.non_DFL_mask;
5108 if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) {
5109 if (!G.traps[sig] || !G.traps[sig][0])
5110 continue;
5111 free(G.traps[sig]);
5112 G.traps[sig] = NULL;
5113 /* There is no signal for 0 (EXIT) */
5114 if (sig == 0)
5115 continue;
5116 /* There was a trap handler, we just removed it.
5117 * But if sig still has non-DFL handling,
5118 * we should not unblock the sig. */
5119 if (mask & 1)
5120 continue;
5121 sigdelset(&G.blocked_set, sig);
5122 }
5123 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
5124}
5125
5126#else /* !BB_MMU */
5127
5128static void re_execute_shell(char ***to_free, const char *s,
5129 char *g_argv0, char **g_argv,
5130 char **builtin_argv) NORETURN;
5131static void re_execute_shell(char ***to_free, const char *s,
5132 char *g_argv0, char **g_argv,
5133 char **builtin_argv)
5134{
5135# define NOMMU_HACK_FMT ("-$%x:%x:%x:%x:%x:%llx" IF_HUSH_LOOPS(":%x"))
5136 /* delims + 2 * (number of bytes in printed hex numbers) */
5137 char param_buf[sizeof(NOMMU_HACK_FMT) + 2 * (sizeof(int)*6 + sizeof(long long)*1)];
5138 char *heredoc_argv[4];
5139 struct variable *cur;
5140# if ENABLE_HUSH_FUNCTIONS
5141 struct function *funcp;
5142# endif
5143 char **argv, **pp;
5144 unsigned cnt;
5145 unsigned long long empty_trap_mask;
5146
5147 if (!g_argv0) { /* heredoc */
5148 argv = heredoc_argv;
5149 argv[0] = (char *) G.argv0_for_re_execing;
5150 argv[1] = (char *) "-<";
5151 argv[2] = (char *) s;
5152 argv[3] = NULL;
5153 pp = &argv[3]; /* used as pointer to empty environment */
5154 goto do_exec;
5155 }
5156
5157 cnt = 0;
5158 pp = builtin_argv;
5159 if (pp) while (*pp++)
5160 cnt++;
5161
5162 empty_trap_mask = 0;
5163 if (G.traps) {
5164 int sig;
5165 for (sig = 1; sig < NSIG; sig++) {
5166 if (G.traps[sig] && !G.traps[sig][0])
5167 empty_trap_mask |= 1LL << sig;
5168 }
5169 }
5170
5171 sprintf(param_buf, NOMMU_HACK_FMT
5172 , (unsigned) G.root_pid
5173 , (unsigned) G.root_ppid
5174 , (unsigned) G.last_bg_pid
5175 , (unsigned) G.last_exitcode
5176 , cnt
5177 , empty_trap_mask
5178 IF_HUSH_LOOPS(, G.depth_of_loop)
5179 );
5180# undef NOMMU_HACK_FMT
5181 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<etc...> <vars...> <funcs...>
5182 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
5183 */
5184 cnt += 6;
5185 for (cur = G.top_var; cur; cur = cur->next) {
5186 if (!cur->flg_export || cur->flg_read_only)
5187 cnt += 2;
5188 }
5189# if ENABLE_HUSH_FUNCTIONS
5190 for (funcp = G.top_func; funcp; funcp = funcp->next)
5191 cnt += 3;
5192# endif
5193 pp = g_argv;
5194 while (*pp++)
5195 cnt++;
5196 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
5197 *pp++ = (char *) G.argv0_for_re_execing;
5198 *pp++ = param_buf;
5199 for (cur = G.top_var; cur; cur = cur->next) {
5200 if (strcmp(cur->varstr, hush_version_str) == 0)
5201 continue;
5202 if (cur->flg_read_only) {
5203 *pp++ = (char *) "-R";
5204 *pp++ = cur->varstr;
5205 } else if (!cur->flg_export) {
5206 *pp++ = (char *) "-V";
5207 *pp++ = cur->varstr;
5208 }
5209 }
5210# if ENABLE_HUSH_FUNCTIONS
5211 for (funcp = G.top_func; funcp; funcp = funcp->next) {
5212 *pp++ = (char *) "-F";
5213 *pp++ = funcp->name;
5214 *pp++ = funcp->body_as_string;
5215 }
5216# endif
5217 /* We can pass activated traps here. Say, -Tnn:trap_string
5218 *
5219 * However, POSIX says that subshells reset signals with traps
5220 * to SIG_DFL.
5221 * I tested bash-3.2 and it not only does that with true subshells
5222 * of the form ( list ), but with any forked children shells.
5223 * I set trap "echo W" WINCH; and then tried:
5224 *
5225 * { echo 1; sleep 20; echo 2; } &
5226 * while true; do echo 1; sleep 20; echo 2; break; done &
5227 * true | { echo 1; sleep 20; echo 2; } | cat
5228 *
5229 * In all these cases sending SIGWINCH to the child shell
5230 * did not run the trap. If I add trap "echo V" WINCH;
5231 * _inside_ group (just before echo 1), it works.
5232 *
5233 * I conclude it means we don't need to pass active traps here.
5234 * Even if we would use signal handlers instead of signal masking
5235 * in order to implement trap handling,
5236 * exec syscall below resets signals to SIG_DFL for us.
5237 */
5238 *pp++ = (char *) "-c";
5239 *pp++ = (char *) s;
5240 if (builtin_argv) {
5241 while (*++builtin_argv)
5242 *pp++ = *builtin_argv;
5243 *pp++ = (char *) "";
5244 }
5245 *pp++ = g_argv0;
5246 while (*g_argv)
5247 *pp++ = *g_argv++;
5248 /* *pp = NULL; - is already there */
5249 pp = environ;
5250
5251 do_exec:
5252 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
5253 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
5254 execve(bb_busybox_exec_path, argv, pp);
5255 /* Fallback. Useful for init=/bin/hush usage etc */
5256 if (argv[0][0] == '/')
5257 execve(argv[0], argv, pp);
5258 xfunc_error_retval = 127;
5259 bb_error_msg_and_die("can't re-execute the shell");
5260}
5261#endif /* !BB_MMU */
5262
5263
5264static int run_and_free_list(struct pipe *pi);
5265
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005266/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005267 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
5268 * end_trigger controls how often we stop parsing
5269 * NUL: parse all, execute, return
5270 * ';': parse till ';' or newline, execute, repeat till EOF
5271 */
5272static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005273{
Denys Vlasenko00243b02009-11-16 02:00:03 +01005274 /* Why we need empty flag?
5275 * An obscure corner case "false; ``; echo $?":
5276 * empty command in `` should still set $? to 0.
5277 * But we can't just set $? to 0 at the start,
5278 * this breaks "false; echo `echo $?`" case.
5279 */
5280 bool empty = 1;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005281 while (1) {
5282 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005283
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005284 pipe_list = parse_stream(NULL, inp, end_trigger);
Denys Vlasenko00243b02009-11-16 02:00:03 +01005285 if (!pipe_list) { /* EOF */
5286 if (empty)
5287 G.last_exitcode = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005288 break;
Denys Vlasenko00243b02009-11-16 02:00:03 +01005289 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005290 debug_print_tree(pipe_list, 0);
5291 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
5292 run_and_free_list(pipe_list);
Denys Vlasenko00243b02009-11-16 02:00:03 +01005293 empty = 0;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005294 }
Eric Andersen25f27032001-04-26 23:22:31 +00005295}
5296
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005297static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005298{
5299 struct in_str input;
5300 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005301 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00005302}
5303
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005304static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00005305{
Eric Andersen25f27032001-04-26 23:22:31 +00005306 struct in_str input;
5307 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005308 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00005309}
5310
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005311#if ENABLE_HUSH_TICK
5312static FILE *generate_stream_from_string(const char *s, pid_t *pid_p)
5313{
5314 pid_t pid;
5315 int channel[2];
5316# if !BB_MMU
5317 char **to_free = NULL;
5318# endif
5319
5320 xpipe(channel);
5321 pid = BB_MMU ? xfork() : xvfork();
5322 if (pid == 0) { /* child */
5323 disable_restore_tty_pgrp_on_exit();
5324 /* Process substitution is not considered to be usual
5325 * 'command execution'.
5326 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
5327 */
5328 bb_signals(0
5329 + (1 << SIGTSTP)
5330 + (1 << SIGTTIN)
5331 + (1 << SIGTTOU)
5332 , SIG_IGN);
5333 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
5334 close(channel[0]); /* NB: close _first_, then move fd! */
5335 xmove_fd(channel[1], 1);
5336 /* Prevent it from trying to handle ctrl-z etc */
5337 IF_HUSH_JOB(G.run_list_level = 1;)
5338 /* Awful hack for `trap` or $(trap).
5339 *
5340 * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
5341 * contains an example where "trap" is executed in a subshell:
5342 *
5343 * save_traps=$(trap)
5344 * ...
5345 * eval "$save_traps"
5346 *
5347 * Standard does not say that "trap" in subshell shall print
5348 * parent shell's traps. It only says that its output
5349 * must have suitable form, but then, in the above example
5350 * (which is not supposed to be normative), it implies that.
5351 *
5352 * bash (and probably other shell) does implement it
5353 * (traps are reset to defaults, but "trap" still shows them),
5354 * but as a result, "trap" logic is hopelessly messed up:
5355 *
5356 * # trap
5357 * trap -- 'echo Ho' SIGWINCH <--- we have a handler
5358 * # (trap) <--- trap is in subshell - no output (correct, traps are reset)
5359 * # true | trap <--- trap is in subshell - no output (ditto)
5360 * # echo `true | trap` <--- in subshell - output (but traps are reset!)
5361 * trap -- 'echo Ho' SIGWINCH
5362 * # echo `(trap)` <--- in subshell in subshell - output
5363 * trap -- 'echo Ho' SIGWINCH
5364 * # echo `true | (trap)` <--- in subshell in subshell in subshell - output!
5365 * trap -- 'echo Ho' SIGWINCH
5366 *
5367 * The rules when to forget and when to not forget traps
5368 * get really complex and nonsensical.
5369 *
5370 * Our solution: ONLY bare $(trap) or `trap` is special.
5371 */
5372 s = skip_whitespace(s);
5373 if (strncmp(s, "trap", 4) == 0
5374 && skip_whitespace(s + 4)[0] == '\0'
5375 ) {
5376 static const char *const argv[] = { NULL, NULL };
5377 builtin_trap((char**)argv);
5378 exit(0); /* not _exit() - we need to fflush */
5379 }
5380# if BB_MMU
5381 reset_traps_to_defaults();
5382 parse_and_run_string(s);
5383 _exit(G.last_exitcode);
5384# else
5385 /* We re-execute after vfork on NOMMU. This makes this script safe:
5386 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
5387 * huge=`cat BIG` # was blocking here forever
5388 * echo OK
5389 */
5390 re_execute_shell(&to_free,
5391 s,
5392 G.global_argv[0],
5393 G.global_argv + 1,
5394 NULL);
5395# endif
5396 }
5397
5398 /* parent */
5399 *pid_p = pid;
5400# if ENABLE_HUSH_FAST
5401 G.count_SIGCHLD++;
5402//bb_error_msg("[%d] fork in generate_stream_from_string:"
5403// " G.count_SIGCHLD:%d G.handled_SIGCHLD:%d",
5404// getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
5405# endif
5406 enable_restore_tty_pgrp_on_exit();
5407# if !BB_MMU
5408 free(to_free);
5409# endif
5410 close(channel[1]);
5411 close_on_exec_on(channel[0]);
5412 return xfdopen_for_read(channel[0]);
5413}
5414
5415/* Return code is exit status of the process that is run. */
5416static int process_command_subs(o_string *dest, const char *s)
5417{
5418 FILE *fp;
5419 struct in_str pipe_str;
5420 pid_t pid;
5421 int status, ch, eol_cnt;
5422
5423 fp = generate_stream_from_string(s, &pid);
5424
5425 /* Now send results of command back into original context */
5426 setup_file_in_str(&pipe_str, fp);
5427 eol_cnt = 0;
5428 while ((ch = i_getch(&pipe_str)) != EOF) {
5429 if (ch == '\n') {
5430 eol_cnt++;
5431 continue;
5432 }
5433 while (eol_cnt) {
5434 o_addchr(dest, '\n');
5435 eol_cnt--;
5436 }
5437 o_addQchr(dest, ch);
5438 }
5439
5440 debug_printf("done reading from `cmd` pipe, closing it\n");
5441 fclose(fp);
5442 /* We need to extract exitcode. Test case
5443 * "true; echo `sleep 1; false` $?"
5444 * should print 1 */
5445 safe_waitpid(pid, &status, 0);
5446 debug_printf("child exited. returning its exitcode:%d\n", WEXITSTATUS(status));
5447 return WEXITSTATUS(status);
5448}
5449#endif /* ENABLE_HUSH_TICK */
5450
5451
5452static void setup_heredoc(struct redir_struct *redir)
5453{
5454 struct fd_pair pair;
5455 pid_t pid;
5456 int len, written;
5457 /* the _body_ of heredoc (misleading field name) */
5458 const char *heredoc = redir->rd_filename;
5459 char *expanded;
5460#if !BB_MMU
5461 char **to_free;
5462#endif
5463
5464 expanded = NULL;
5465 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
5466 expanded = expand_pseudo_dquoted(heredoc);
5467 if (expanded)
5468 heredoc = expanded;
5469 }
5470 len = strlen(heredoc);
5471
5472 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
5473 xpiped_pair(pair);
5474 xmove_fd(pair.rd, redir->rd_fd);
5475
5476 /* Try writing without forking. Newer kernels have
5477 * dynamically growing pipes. Must use non-blocking write! */
5478 ndelay_on(pair.wr);
5479 while (1) {
5480 written = write(pair.wr, heredoc, len);
5481 if (written <= 0)
5482 break;
5483 len -= written;
5484 if (len == 0) {
5485 close(pair.wr);
5486 free(expanded);
5487 return;
5488 }
5489 heredoc += written;
5490 }
5491 ndelay_off(pair.wr);
5492
5493 /* Okay, pipe buffer was not big enough */
5494 /* Note: we must not create a stray child (bastard? :)
5495 * for the unsuspecting parent process. Child creates a grandchild
5496 * and exits before parent execs the process which consumes heredoc
5497 * (that exec happens after we return from this function) */
5498#if !BB_MMU
5499 to_free = NULL;
5500#endif
5501 pid = xvfork();
5502 if (pid == 0) {
5503 /* child */
5504 disable_restore_tty_pgrp_on_exit();
5505 pid = BB_MMU ? xfork() : xvfork();
5506 if (pid != 0)
5507 _exit(0);
5508 /* grandchild */
5509 close(redir->rd_fd); /* read side of the pipe */
5510#if BB_MMU
5511 full_write(pair.wr, heredoc, len); /* may loop or block */
5512 _exit(0);
5513#else
5514 /* Delegate blocking writes to another process */
5515 xmove_fd(pair.wr, STDOUT_FILENO);
5516 re_execute_shell(&to_free, heredoc, NULL, NULL, NULL);
5517#endif
5518 }
5519 /* parent */
5520#if ENABLE_HUSH_FAST
5521 G.count_SIGCHLD++;
5522//bb_error_msg("[%d] fork in setup_heredoc: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
5523#endif
5524 enable_restore_tty_pgrp_on_exit();
5525#if !BB_MMU
5526 free(to_free);
5527#endif
5528 close(pair.wr);
5529 free(expanded);
5530 wait(NULL); /* wait till child has died */
5531}
5532
5533/* squirrel != NULL means we squirrel away copies of stdin, stdout,
5534 * and stderr if they are redirected. */
5535static int setup_redirects(struct command *prog, int squirrel[])
5536{
5537 int openfd, mode;
5538 struct redir_struct *redir;
5539
5540 for (redir = prog->redirects; redir; redir = redir->next) {
5541 if (redir->rd_type == REDIRECT_HEREDOC2) {
5542 /* rd_fd<<HERE case */
5543 if (squirrel && redir->rd_fd < 3
5544 && squirrel[redir->rd_fd] < 0
5545 ) {
5546 squirrel[redir->rd_fd] = dup(redir->rd_fd);
5547 }
5548 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
5549 * of the heredoc */
5550 debug_printf_parse("set heredoc '%s'\n",
5551 redir->rd_filename);
5552 setup_heredoc(redir);
5553 continue;
5554 }
5555
5556 if (redir->rd_dup == REDIRFD_TO_FILE) {
5557 /* rd_fd<*>file case (<*> is <,>,>>,<>) */
5558 char *p;
5559 if (redir->rd_filename == NULL) {
5560 /* Something went wrong in the parse.
5561 * Pretend it didn't happen */
5562 bb_error_msg("bug in redirect parse");
5563 continue;
5564 }
5565 mode = redir_table[redir->rd_type].mode;
5566 p = expand_string_to_string(redir->rd_filename);
5567 openfd = open_or_warn(p, mode);
5568 free(p);
5569 if (openfd < 0) {
5570 /* this could get lost if stderr has been redirected, but
5571 * bash and ash both lose it as well (though zsh doesn't!) */
5572//what the above comment tries to say?
5573 return 1;
5574 }
5575 } else {
5576 /* rd_fd<*>rd_dup or rd_fd<*>- cases */
5577 openfd = redir->rd_dup;
5578 }
5579
5580 if (openfd != redir->rd_fd) {
5581 if (squirrel && redir->rd_fd < 3
5582 && squirrel[redir->rd_fd] < 0
5583 ) {
5584 squirrel[redir->rd_fd] = dup(redir->rd_fd);
5585 }
5586 if (openfd == REDIRFD_CLOSE) {
5587 /* "n>-" means "close me" */
5588 close(redir->rd_fd);
5589 } else {
5590 xdup2(openfd, redir->rd_fd);
5591 if (redir->rd_dup == REDIRFD_TO_FILE)
5592 close(openfd);
5593 }
5594 }
5595 }
5596 return 0;
5597}
5598
5599static void restore_redirects(int squirrel[])
5600{
5601 int i, fd;
5602 for (i = 0; i < 3; i++) {
5603 fd = squirrel[i];
5604 if (fd != -1) {
5605 /* We simply die on error */
5606 xmove_fd(fd, i);
5607 }
5608 }
5609}
5610
5611static char *find_in_path(const char *arg)
5612{
5613 char *ret = NULL;
5614 const char *PATH = get_local_var_value("PATH");
5615
5616 if (!PATH)
5617 return NULL;
5618
5619 while (1) {
5620 const char *end = strchrnul(PATH, ':');
5621 int sz = end - PATH; /* must be int! */
5622
5623 free(ret);
5624 if (sz != 0) {
5625 ret = xasprintf("%.*s/%s", sz, PATH, arg);
5626 } else {
5627 /* We have xxx::yyyy in $PATH,
5628 * it means "use current dir" */
5629 ret = xstrdup(arg);
5630 }
5631 if (access(ret, F_OK) == 0)
5632 break;
5633
5634 if (*end == '\0') {
5635 free(ret);
5636 return NULL;
5637 }
5638 PATH = end + 1;
5639 }
5640
5641 return ret;
5642}
5643
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005644static const struct built_in_command *find_builtin_helper(const char *name,
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005645 const struct built_in_command *x,
5646 const struct built_in_command *end)
5647{
5648 while (x != end) {
5649 if (strcmp(name, x->b_cmd) != 0) {
5650 x++;
5651 continue;
5652 }
5653 debug_printf_exec("found builtin '%s'\n", name);
5654 return x;
5655 }
5656 return NULL;
5657}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005658static const struct built_in_command *find_builtin1(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005659{
5660 return find_builtin_helper(name, bltins1, &bltins1[ARRAY_SIZE(bltins1)]);
5661}
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02005662static const struct built_in_command *find_builtin(const char *name)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02005663{
5664 const struct built_in_command *x = find_builtin1(name);
5665 if (x)
5666 return x;
5667 return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
5668}
5669
5670#if ENABLE_HUSH_FUNCTIONS
5671static struct function **find_function_slot(const char *name)
5672{
5673 struct function **funcpp = &G.top_func;
5674 while (*funcpp) {
5675 if (strcmp(name, (*funcpp)->name) == 0) {
5676 break;
5677 }
5678 funcpp = &(*funcpp)->next;
5679 }
5680 return funcpp;
5681}
5682
5683static const struct function *find_function(const char *name)
5684{
5685 const struct function *funcp = *find_function_slot(name);
5686 if (funcp)
5687 debug_printf_exec("found function '%s'\n", name);
5688 return funcp;
5689}
5690
5691/* Note: takes ownership on name ptr */
5692static struct function *new_function(char *name)
5693{
5694 struct function **funcpp = find_function_slot(name);
5695 struct function *funcp = *funcpp;
5696
5697 if (funcp != NULL) {
5698 struct command *cmd = funcp->parent_cmd;
5699 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
5700 if (!cmd) {
5701 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
5702 free(funcp->name);
5703 /* Note: if !funcp->body, do not free body_as_string!
5704 * This is a special case of "-F name body" function:
5705 * body_as_string was not malloced! */
5706 if (funcp->body) {
5707 free_pipe_list(funcp->body);
5708# if !BB_MMU
5709 free(funcp->body_as_string);
5710# endif
5711 }
5712 } else {
5713 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
5714 cmd->argv[0] = funcp->name;
5715 cmd->group = funcp->body;
5716# if !BB_MMU
5717 cmd->group_as_string = funcp->body_as_string;
5718# endif
5719 }
5720 } else {
5721 debug_printf_exec("remembering new function '%s'\n", name);
5722 funcp = *funcpp = xzalloc(sizeof(*funcp));
5723 /*funcp->next = NULL;*/
5724 }
5725
5726 funcp->name = name;
5727 return funcp;
5728}
5729
5730static void unset_func(const char *name)
5731{
5732 struct function **funcpp = find_function_slot(name);
5733 struct function *funcp = *funcpp;
5734
5735 if (funcp != NULL) {
5736 debug_printf_exec("freeing function '%s'\n", funcp->name);
5737 *funcpp = funcp->next;
5738 /* funcp is unlinked now, deleting it.
5739 * Note: if !funcp->body, the function was created by
5740 * "-F name body", do not free ->body_as_string
5741 * and ->name as they were not malloced. */
5742 if (funcp->body) {
5743 free_pipe_list(funcp->body);
5744 free(funcp->name);
5745# if !BB_MMU
5746 free(funcp->body_as_string);
5747# endif
5748 }
5749 free(funcp);
5750 }
5751}
5752
5753# if BB_MMU
5754#define exec_function(to_free, funcp, argv) \
5755 exec_function(funcp, argv)
5756# endif
5757static void exec_function(char ***to_free,
5758 const struct function *funcp,
5759 char **argv) NORETURN;
5760static void exec_function(char ***to_free,
5761 const struct function *funcp,
5762 char **argv)
5763{
5764# if BB_MMU
5765 int n = 1;
5766
5767 argv[0] = G.global_argv[0];
5768 G.global_argv = argv;
5769 while (*++argv)
5770 n++;
5771 G.global_argc = n;
5772 /* On MMU, funcp->body is always non-NULL */
5773 n = run_list(funcp->body);
5774 fflush_all();
5775 _exit(n);
5776# else
5777 re_execute_shell(to_free,
5778 funcp->body_as_string,
5779 G.global_argv[0],
5780 argv + 1,
5781 NULL);
5782# endif
5783}
5784
5785static int run_function(const struct function *funcp, char **argv)
5786{
5787 int rc;
5788 save_arg_t sv;
5789 smallint sv_flg;
5790
5791 save_and_replace_G_args(&sv, argv);
5792
5793 /* "we are in function, ok to use return" */
5794 sv_flg = G.flag_return_in_progress;
5795 G.flag_return_in_progress = -1;
5796# if ENABLE_HUSH_LOCAL
5797 G.func_nest_level++;
5798# endif
5799
5800 /* On MMU, funcp->body is always non-NULL */
5801# if !BB_MMU
5802 if (!funcp->body) {
5803 /* Function defined by -F */
5804 parse_and_run_string(funcp->body_as_string);
5805 rc = G.last_exitcode;
5806 } else
5807# endif
5808 {
5809 rc = run_list(funcp->body);
5810 }
5811
5812# if ENABLE_HUSH_LOCAL
5813 {
5814 struct variable *var;
5815 struct variable **var_pp;
5816
5817 var_pp = &G.top_var;
5818 while ((var = *var_pp) != NULL) {
5819 if (var->func_nest_level < G.func_nest_level) {
5820 var_pp = &var->next;
5821 continue;
5822 }
5823 /* Unexport */
5824 if (var->flg_export)
5825 bb_unsetenv(var->varstr);
5826 /* Remove from global list */
5827 *var_pp = var->next;
5828 /* Free */
5829 if (!var->max_len)
5830 free(var->varstr);
5831 free(var);
5832 }
5833 G.func_nest_level--;
5834 }
5835# endif
5836 G.flag_return_in_progress = sv_flg;
5837
5838 restore_G_args(&sv, argv);
5839
5840 return rc;
5841}
5842#endif /* ENABLE_HUSH_FUNCTIONS */
5843
5844
5845#if BB_MMU
5846#define exec_builtin(to_free, x, argv) \
5847 exec_builtin(x, argv)
5848#else
5849#define exec_builtin(to_free, x, argv) \
5850 exec_builtin(to_free, argv)
5851#endif
5852static void exec_builtin(char ***to_free,
5853 const struct built_in_command *x,
5854 char **argv) NORETURN;
5855static void exec_builtin(char ***to_free,
5856 const struct built_in_command *x,
5857 char **argv)
5858{
5859#if BB_MMU
5860 int rcode = x->b_function(argv);
5861 fflush_all();
5862 _exit(rcode);
5863#else
5864 /* On NOMMU, we must never block!
5865 * Example: { sleep 99 | read line; } & echo Ok
5866 */
5867 re_execute_shell(to_free,
5868 argv[0],
5869 G.global_argv[0],
5870 G.global_argv + 1,
5871 argv);
5872#endif
5873}
5874
5875
5876static void execvp_or_die(char **argv) NORETURN;
5877static void execvp_or_die(char **argv)
5878{
5879 debug_printf_exec("execing '%s'\n", argv[0]);
5880 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
5881 execvp(argv[0], argv);
5882 bb_perror_msg("can't execute '%s'", argv[0]);
5883 _exit(127); /* bash compat */
5884}
5885
5886#if ENABLE_HUSH_MODE_X
5887static void dump_cmd_in_x_mode(char **argv)
5888{
5889 if (G_x_mode && argv) {
5890 /* We want to output the line in one write op */
5891 char *buf, *p;
5892 int len;
5893 int n;
5894
5895 len = 3;
5896 n = 0;
5897 while (argv[n])
5898 len += strlen(argv[n++]) + 1;
5899 buf = xmalloc(len);
5900 buf[0] = '+';
5901 p = buf + 1;
5902 n = 0;
5903 while (argv[n])
5904 p += sprintf(p, " %s", argv[n++]);
5905 *p++ = '\n';
5906 *p = '\0';
5907 fputs(buf, stderr);
5908 free(buf);
5909 }
5910}
5911#else
5912# define dump_cmd_in_x_mode(argv) ((void)0)
5913#endif
5914
5915#if BB_MMU
5916#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
5917 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
5918#define pseudo_exec(nommu_save, command, argv_expanded) \
5919 pseudo_exec(command, argv_expanded)
5920#endif
5921
5922/* Called after [v]fork() in run_pipe, or from builtin_exec.
5923 * Never returns.
5924 * Don't exit() here. If you don't exec, use _exit instead.
5925 * The at_exit handlers apparently confuse the calling process,
5926 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
5927static void pseudo_exec_argv(nommu_save_t *nommu_save,
5928 char **argv, int assignment_cnt,
5929 char **argv_expanded) NORETURN;
5930static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save,
5931 char **argv, int assignment_cnt,
5932 char **argv_expanded)
5933{
5934 char **new_env;
5935
5936 new_env = expand_assignments(argv, assignment_cnt);
5937 dump_cmd_in_x_mode(new_env);
5938
5939 if (!argv[assignment_cnt]) {
5940 /* Case when we are here: ... | var=val | ...
5941 * (note that we do not exit early, i.e., do not optimize out
5942 * expand_assignments(): think about ... | var=`sleep 1` | ...
5943 */
5944 free_strings(new_env);
5945 _exit(EXIT_SUCCESS);
5946 }
5947
5948#if BB_MMU
5949 set_vars_and_save_old(new_env);
5950 free(new_env); /* optional */
5951 /* we can also destroy set_vars_and_save_old's return value,
5952 * to save memory */
5953#else
5954 nommu_save->new_env = new_env;
5955 nommu_save->old_vars = set_vars_and_save_old(new_env);
5956#endif
5957
5958 if (argv_expanded) {
5959 argv = argv_expanded;
5960 } else {
5961 argv = expand_strvec_to_strvec(argv + assignment_cnt);
5962#if !BB_MMU
5963 nommu_save->argv = argv;
5964#endif
5965 }
5966 dump_cmd_in_x_mode(argv);
5967
5968#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
5969 if (strchr(argv[0], '/') != NULL)
5970 goto skip;
5971#endif
5972
5973 /* Check if the command matches any of the builtins.
5974 * Depending on context, this might be redundant. But it's
5975 * easier to waste a few CPU cycles than it is to figure out
5976 * if this is one of those cases.
5977 */
5978 {
5979 /* On NOMMU, it is more expensive to re-execute shell
5980 * just in order to run echo or test builtin.
5981 * It's better to skip it here and run corresponding
5982 * non-builtin later. */
5983 const struct built_in_command *x;
5984 x = BB_MMU ? find_builtin(argv[0]) : find_builtin1(argv[0]);
5985 if (x) {
5986 exec_builtin(&nommu_save->argv_from_re_execing, x, argv);
5987 }
5988 }
5989#if ENABLE_HUSH_FUNCTIONS
5990 /* Check if the command matches any functions */
5991 {
5992 const struct function *funcp = find_function(argv[0]);
5993 if (funcp) {
5994 exec_function(&nommu_save->argv_from_re_execing, funcp, argv);
5995 }
5996 }
5997#endif
5998
5999#if ENABLE_FEATURE_SH_STANDALONE
6000 /* Check if the command matches any busybox applets */
6001 {
6002 int a = find_applet_by_name(argv[0]);
6003 if (a >= 0) {
6004# if BB_MMU /* see above why on NOMMU it is not allowed */
6005 if (APPLET_IS_NOEXEC(a)) {
6006 debug_printf_exec("running applet '%s'\n", argv[0]);
6007 run_applet_no_and_exit(a, argv);
6008 }
6009# endif
6010 /* Re-exec ourselves */
6011 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
6012 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
6013 execv(bb_busybox_exec_path, argv);
6014 /* If they called chroot or otherwise made the binary no longer
6015 * executable, fall through */
6016 }
6017 }
6018#endif
6019
6020#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
6021 skip:
6022#endif
6023 execvp_or_die(argv);
6024}
6025
6026/* Called after [v]fork() in run_pipe
6027 */
6028static void pseudo_exec(nommu_save_t *nommu_save,
6029 struct command *command,
6030 char **argv_expanded) NORETURN;
6031static void pseudo_exec(nommu_save_t *nommu_save,
6032 struct command *command,
6033 char **argv_expanded)
6034{
6035 if (command->argv) {
6036 pseudo_exec_argv(nommu_save, command->argv,
6037 command->assignment_cnt, argv_expanded);
6038 }
6039
6040 if (command->group) {
6041 /* Cases when we are here:
6042 * ( list )
6043 * { list } &
6044 * ... | ( list ) | ...
6045 * ... | { list } | ...
6046 */
6047#if BB_MMU
6048 int rcode;
6049 debug_printf_exec("pseudo_exec: run_list\n");
6050 reset_traps_to_defaults();
6051 rcode = run_list(command->group);
6052 /* OK to leak memory by not calling free_pipe_list,
6053 * since this process is about to exit */
6054 _exit(rcode);
6055#else
6056 re_execute_shell(&nommu_save->argv_from_re_execing,
6057 command->group_as_string,
6058 G.global_argv[0],
6059 G.global_argv + 1,
6060 NULL);
6061#endif
6062 }
6063
6064 /* Case when we are here: ... | >file */
6065 debug_printf_exec("pseudo_exec'ed null command\n");
6066 _exit(EXIT_SUCCESS);
6067}
6068
6069#if ENABLE_HUSH_JOB
6070static const char *get_cmdtext(struct pipe *pi)
6071{
6072 char **argv;
6073 char *p;
6074 int len;
6075
6076 /* This is subtle. ->cmdtext is created only on first backgrounding.
6077 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
6078 * On subsequent bg argv is trashed, but we won't use it */
6079 if (pi->cmdtext)
6080 return pi->cmdtext;
6081 argv = pi->cmds[0].argv;
6082 if (!argv || !argv[0]) {
6083 pi->cmdtext = xzalloc(1);
6084 return pi->cmdtext;
6085 }
6086
6087 len = 0;
6088 do {
6089 len += strlen(*argv) + 1;
6090 } while (*++argv);
6091 p = xmalloc(len);
6092 pi->cmdtext = p;
6093 argv = pi->cmds[0].argv;
6094 do {
6095 len = strlen(*argv);
6096 memcpy(p, *argv, len);
6097 p += len;
6098 *p++ = ' ';
6099 } while (*++argv);
6100 p[-1] = '\0';
6101 return pi->cmdtext;
6102}
6103
6104static void insert_bg_job(struct pipe *pi)
6105{
6106 struct pipe *job, **jobp;
6107 int i;
6108
6109 /* Linear search for the ID of the job to use */
6110 pi->jobid = 1;
6111 for (job = G.job_list; job; job = job->next)
6112 if (job->jobid >= pi->jobid)
6113 pi->jobid = job->jobid + 1;
6114
6115 /* Add job to the list of running jobs */
6116 jobp = &G.job_list;
6117 while ((job = *jobp) != NULL)
6118 jobp = &job->next;
6119 job = *jobp = xmalloc(sizeof(*job));
6120
6121 *job = *pi; /* physical copy */
6122 job->next = NULL;
6123 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
6124 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
6125 for (i = 0; i < pi->num_cmds; i++) {
6126 job->cmds[i].pid = pi->cmds[i].pid;
6127 /* all other fields are not used and stay zero */
6128 }
6129 job->cmdtext = xstrdup(get_cmdtext(pi));
6130
6131 if (G_interactive_fd)
6132 printf("[%d] %d %s\n", job->jobid, job->cmds[0].pid, job->cmdtext);
6133 G.last_jobid = job->jobid;
6134}
6135
6136static void remove_bg_job(struct pipe *pi)
6137{
6138 struct pipe *prev_pipe;
6139
6140 if (pi == G.job_list) {
6141 G.job_list = pi->next;
6142 } else {
6143 prev_pipe = G.job_list;
6144 while (prev_pipe->next != pi)
6145 prev_pipe = prev_pipe->next;
6146 prev_pipe->next = pi->next;
6147 }
6148 if (G.job_list)
6149 G.last_jobid = G.job_list->jobid;
6150 else
6151 G.last_jobid = 0;
6152}
6153
6154/* Remove a backgrounded job */
6155static void delete_finished_bg_job(struct pipe *pi)
6156{
6157 remove_bg_job(pi);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006158 free_pipe(pi);
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006159}
6160#endif /* JOB */
6161
6162/* Check to see if any processes have exited -- if they
6163 * have, figure out why and see if a job has completed */
Denys Vlasenko27c56f12010-09-07 09:56:34 +02006164static int checkjobs(struct pipe *fg_pipe)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006165{
6166 int attributes;
6167 int status;
6168#if ENABLE_HUSH_JOB
6169 struct pipe *pi;
6170#endif
6171 pid_t childpid;
6172 int rcode = 0;
6173
6174 debug_printf_jobs("checkjobs %p\n", fg_pipe);
6175
6176 attributes = WUNTRACED;
6177 if (fg_pipe == NULL)
6178 attributes |= WNOHANG;
6179
6180 errno = 0;
6181#if ENABLE_HUSH_FAST
6182 if (G.handled_SIGCHLD == G.count_SIGCHLD) {
6183//bb_error_msg("[%d] checkjobs: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d children?:%d fg_pipe:%p",
6184//getpid(), G.count_SIGCHLD, G.handled_SIGCHLD, G.we_have_children, fg_pipe);
6185 /* There was neither fork nor SIGCHLD since last waitpid */
6186 /* Avoid doing waitpid syscall if possible */
6187 if (!G.we_have_children) {
6188 errno = ECHILD;
6189 return -1;
6190 }
6191 if (fg_pipe == NULL) { /* is WNOHANG set? */
6192 /* We have children, but they did not exit
6193 * or stop yet (we saw no SIGCHLD) */
6194 return 0;
6195 }
6196 /* else: !WNOHANG, waitpid will block, can't short-circuit */
6197 }
6198#endif
6199
6200/* Do we do this right?
6201 * bash-3.00# sleep 20 | false
6202 * <ctrl-Z pressed>
6203 * [3]+ Stopped sleep 20 | false
6204 * bash-3.00# echo $?
6205 * 1 <========== bg pipe is not fully done, but exitcode is already known!
6206 * [hush 1.14.0: yes we do it right]
6207 */
6208 wait_more:
6209 while (1) {
6210 int i;
6211 int dead;
6212
6213#if ENABLE_HUSH_FAST
6214 i = G.count_SIGCHLD;
6215#endif
6216 childpid = waitpid(-1, &status, attributes);
6217 if (childpid <= 0) {
6218 if (childpid && errno != ECHILD)
6219 bb_perror_msg("waitpid");
6220#if ENABLE_HUSH_FAST
6221 else { /* Until next SIGCHLD, waitpid's are useless */
6222 G.we_have_children = (childpid == 0);
6223 G.handled_SIGCHLD = i;
6224//bb_error_msg("[%d] checkjobs: waitpid returned <= 0, G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6225 }
6226#endif
6227 break;
6228 }
6229 dead = WIFEXITED(status) || WIFSIGNALED(status);
6230
6231#if DEBUG_JOBS
6232 if (WIFSTOPPED(status))
6233 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
6234 childpid, WSTOPSIG(status), WEXITSTATUS(status));
6235 if (WIFSIGNALED(status))
6236 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
6237 childpid, WTERMSIG(status), WEXITSTATUS(status));
6238 if (WIFEXITED(status))
6239 debug_printf_jobs("pid %d exited, exitcode %d\n",
6240 childpid, WEXITSTATUS(status));
6241#endif
6242 /* Were we asked to wait for fg pipe? */
6243 if (fg_pipe) {
6244 for (i = 0; i < fg_pipe->num_cmds; i++) {
6245 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
6246 if (fg_pipe->cmds[i].pid != childpid)
6247 continue;
6248 if (dead) {
6249 fg_pipe->cmds[i].pid = 0;
6250 fg_pipe->alive_cmds--;
6251 if (i == fg_pipe->num_cmds - 1) {
6252 /* last process gives overall exitstatus */
6253 rcode = WEXITSTATUS(status);
6254 /* bash prints killer signal's name for *last*
6255 * process in pipe (prints just newline for SIGINT).
6256 * Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
6257 */
6258 if (WIFSIGNALED(status)) {
6259 int sig = WTERMSIG(status);
6260 printf("%s\n", sig == SIGINT ? "" : get_signame(sig));
6261 /* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
6262 * Maybe we need to use sig | 128? */
6263 rcode = sig + 128;
6264 }
6265 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
6266 }
6267 } else {
6268 fg_pipe->cmds[i].is_stopped = 1;
6269 fg_pipe->stopped_cmds++;
6270 }
6271 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
6272 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
6273 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
6274 /* All processes in fg pipe have exited or stopped */
6275/* Note: *non-interactive* bash does not continue if all processes in fg pipe
6276 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
6277 * and "killall -STOP cat" */
6278 if (G_interactive_fd) {
6279#if ENABLE_HUSH_JOB
6280 if (fg_pipe->alive_cmds)
6281 insert_bg_job(fg_pipe);
6282#endif
6283 return rcode;
6284 }
6285 if (!fg_pipe->alive_cmds)
6286 return rcode;
6287 }
6288 /* There are still running processes in the fg pipe */
6289 goto wait_more; /* do waitpid again */
6290 }
6291 /* it wasnt fg_pipe, look for process in bg pipes */
6292 }
6293
6294#if ENABLE_HUSH_JOB
6295 /* We asked to wait for bg or orphaned children */
6296 /* No need to remember exitcode in this case */
6297 for (pi = G.job_list; pi; pi = pi->next) {
6298 for (i = 0; i < pi->num_cmds; i++) {
6299 if (pi->cmds[i].pid == childpid)
6300 goto found_pi_and_prognum;
6301 }
6302 }
6303 /* Happens when shell is used as init process (init=/bin/sh) */
6304 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
6305 continue; /* do waitpid again */
6306
6307 found_pi_and_prognum:
6308 if (dead) {
6309 /* child exited */
6310 pi->cmds[i].pid = 0;
6311 pi->alive_cmds--;
6312 if (!pi->alive_cmds) {
6313 if (G_interactive_fd)
6314 printf(JOB_STATUS_FORMAT, pi->jobid,
6315 "Done", pi->cmdtext);
6316 delete_finished_bg_job(pi);
6317 }
6318 } else {
6319 /* child stopped */
6320 pi->cmds[i].is_stopped = 1;
6321 pi->stopped_cmds++;
6322 }
6323#endif
6324 } /* while (waitpid succeeds)... */
6325
6326 return rcode;
6327}
6328
6329#if ENABLE_HUSH_JOB
Denys Vlasenkoda463fb2010-09-07 09:53:50 +02006330static int checkjobs_and_fg_shell(struct pipe *fg_pipe)
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006331{
6332 pid_t p;
6333 int rcode = checkjobs(fg_pipe);
6334 if (G_saved_tty_pgrp) {
6335 /* Job finished, move the shell to the foreground */
6336 p = getpgrp(); /* our process group id */
6337 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
6338 tcsetpgrp(G_interactive_fd, p);
6339 }
6340 return rcode;
6341}
6342#endif
6343
6344/* Start all the jobs, but don't wait for anything to finish.
6345 * See checkjobs().
6346 *
6347 * Return code is normally -1, when the caller has to wait for children
6348 * to finish to determine the exit status of the pipe. If the pipe
6349 * is a simple builtin command, however, the action is done by the
6350 * time run_pipe returns, and the exit code is provided as the
6351 * return value.
6352 *
6353 * Returns -1 only if started some children. IOW: we have to
6354 * mask out retvals of builtins etc with 0xff!
6355 *
6356 * The only case when we do not need to [v]fork is when the pipe
6357 * is single, non-backgrounded, non-subshell command. Examples:
6358 * cmd ; ... { list } ; ...
6359 * cmd && ... { list } && ...
6360 * cmd || ... { list } || ...
6361 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
6362 * or (if SH_STANDALONE) an applet, and we can run the { list }
6363 * with run_list. If it isn't one of these, we fork and exec cmd.
6364 *
6365 * Cases when we must fork:
6366 * non-single: cmd | cmd
6367 * backgrounded: cmd & { list } &
6368 * subshell: ( list ) [&]
6369 */
6370#if !ENABLE_HUSH_MODE_X
6371#define redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel, char argv_expanded) \
6372 redirect_and_varexp_helper(new_env_p, old_vars_p, command, squirrel)
6373#endif
6374static int redirect_and_varexp_helper(char ***new_env_p,
6375 struct variable **old_vars_p,
6376 struct command *command,
6377 int squirrel[3],
6378 char **argv_expanded)
6379{
6380 /* setup_redirects acts on file descriptors, not FILEs.
6381 * This is perfect for work that comes after exec().
6382 * Is it really safe for inline use? Experimentally,
6383 * things seem to work. */
6384 int rcode = setup_redirects(command, squirrel);
6385 if (rcode == 0) {
6386 char **new_env = expand_assignments(command->argv, command->assignment_cnt);
6387 *new_env_p = new_env;
6388 dump_cmd_in_x_mode(new_env);
6389 dump_cmd_in_x_mode(argv_expanded);
6390 if (old_vars_p)
6391 *old_vars_p = set_vars_and_save_old(new_env);
6392 }
6393 return rcode;
6394}
6395static NOINLINE int run_pipe(struct pipe *pi)
6396{
6397 static const char *const null_ptr = NULL;
6398
6399 int cmd_no;
6400 int next_infd;
6401 struct command *command;
6402 char **argv_expanded;
6403 char **argv;
6404 /* it is not always needed, but we aim to smaller code */
6405 int squirrel[] = { -1, -1, -1 };
6406 int rcode;
6407
6408 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
6409 debug_enter();
6410
Denys Vlasenko1fd3d942010-09-08 13:31:53 +02006411 /* Testcase: set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*"
6412 * Result should be 3 lines: q w e, qwe, q w e
6413 */
6414 G.ifs = get_local_var_value("IFS");
6415 if (!G.ifs)
6416 G.ifs = defifs;
6417
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006418 IF_HUSH_JOB(pi->pgrp = -1;)
6419 pi->stopped_cmds = 0;
6420 command = &pi->cmds[0];
6421 argv_expanded = NULL;
6422
6423 if (pi->num_cmds != 1
6424 || pi->followup == PIPE_BG
6425 || command->cmd_type == CMD_SUBSHELL
6426 ) {
6427 goto must_fork;
6428 }
6429
6430 pi->alive_cmds = 1;
6431
6432 debug_printf_exec(": group:%p argv:'%s'\n",
6433 command->group, command->argv ? command->argv[0] : "NONE");
6434
6435 if (command->group) {
6436#if ENABLE_HUSH_FUNCTIONS
6437 if (command->cmd_type == CMD_FUNCDEF) {
6438 /* "executing" func () { list } */
6439 struct function *funcp;
6440
6441 funcp = new_function(command->argv[0]);
6442 /* funcp->name is already set to argv[0] */
6443 funcp->body = command->group;
6444# if !BB_MMU
6445 funcp->body_as_string = command->group_as_string;
6446 command->group_as_string = NULL;
6447# endif
6448 command->group = NULL;
6449 command->argv[0] = NULL;
6450 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
6451 funcp->parent_cmd = command;
6452 command->child_func = funcp;
6453
6454 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
6455 debug_leave();
6456 return EXIT_SUCCESS;
6457 }
6458#endif
6459 /* { list } */
6460 debug_printf("non-subshell group\n");
6461 rcode = 1; /* exitcode if redir failed */
6462 if (setup_redirects(command, squirrel) == 0) {
6463 debug_printf_exec(": run_list\n");
6464 rcode = run_list(command->group) & 0xff;
6465 }
6466 restore_redirects(squirrel);
6467 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
6468 debug_leave();
6469 debug_printf_exec("run_pipe: return %d\n", rcode);
6470 return rcode;
6471 }
6472
6473 argv = command->argv ? command->argv : (char **) &null_ptr;
6474 {
6475 const struct built_in_command *x;
6476#if ENABLE_HUSH_FUNCTIONS
6477 const struct function *funcp;
6478#else
6479 enum { funcp = 0 };
6480#endif
6481 char **new_env = NULL;
6482 struct variable *old_vars = NULL;
6483
6484 if (argv[command->assignment_cnt] == NULL) {
6485 /* Assignments, but no command */
6486 /* Ensure redirects take effect (that is, create files).
6487 * Try "a=t >file" */
6488#if 0 /* A few cases in testsuite fail with this code. FIXME */
6489 rcode = redirect_and_varexp_helper(&new_env, /*old_vars:*/ NULL, command, squirrel, /*argv_expanded:*/ NULL);
6490 /* Set shell variables */
6491 if (new_env) {
6492 argv = new_env;
6493 while (*argv) {
6494 set_local_var(*argv, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
6495 /* Do we need to flag set_local_var() errors?
6496 * "assignment to readonly var" and "putenv error"
6497 */
6498 argv++;
6499 }
6500 }
6501 /* Redirect error sets $? to 1. Otherwise,
6502 * if evaluating assignment value set $?, retain it.
6503 * Try "false; q=`exit 2`; echo $?" - should print 2: */
6504 if (rcode == 0)
6505 rcode = G.last_exitcode;
6506 /* Exit, _skipping_ variable restoring code: */
6507 goto clean_up_and_ret0;
6508
6509#else /* Older, bigger, but more correct code */
6510
6511 rcode = setup_redirects(command, squirrel);
6512 restore_redirects(squirrel);
6513 /* Set shell variables */
6514 if (G_x_mode)
6515 bb_putchar_stderr('+');
6516 while (*argv) {
6517 char *p = expand_string_to_string(*argv);
6518 if (G_x_mode)
6519 fprintf(stderr, " %s", p);
6520 debug_printf_exec("set shell var:'%s'->'%s'\n",
6521 *argv, p);
6522 set_local_var(p, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
6523 /* Do we need to flag set_local_var() errors?
6524 * "assignment to readonly var" and "putenv error"
6525 */
6526 argv++;
6527 }
6528 if (G_x_mode)
6529 bb_putchar_stderr('\n');
6530 /* Redirect error sets $? to 1. Otherwise,
6531 * if evaluating assignment value set $?, retain it.
6532 * Try "false; q=`exit 2`; echo $?" - should print 2: */
6533 if (rcode == 0)
6534 rcode = G.last_exitcode;
6535 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
6536 debug_leave();
6537 debug_printf_exec("run_pipe: return %d\n", rcode);
6538 return rcode;
6539#endif
6540 }
6541
6542 /* Expand the rest into (possibly) many strings each */
6543 if (0) {}
6544#if ENABLE_HUSH_BASH_COMPAT
6545 else if (command->cmd_type == CMD_SINGLEWORD_NOGLOB) {
6546 argv_expanded = expand_strvec_to_strvec_singleword_noglob(argv + command->assignment_cnt);
6547 }
6548#endif
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006549 else {
6550 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
6551 }
6552
6553 /* if someone gives us an empty string: `cmd with empty output` */
6554 if (!argv_expanded[0]) {
6555 free(argv_expanded);
6556 debug_leave();
6557 return G.last_exitcode;
6558 }
6559
6560 x = find_builtin(argv_expanded[0]);
6561#if ENABLE_HUSH_FUNCTIONS
6562 funcp = NULL;
6563 if (!x)
6564 funcp = find_function(argv_expanded[0]);
6565#endif
6566 if (x || funcp) {
6567 if (!funcp) {
6568 if (x->b_function == builtin_exec && argv_expanded[1] == NULL) {
6569 debug_printf("exec with redirects only\n");
6570 rcode = setup_redirects(command, NULL);
6571 goto clean_up_and_ret1;
6572 }
6573 }
6574 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
6575 if (rcode == 0) {
6576 if (!funcp) {
6577 debug_printf_exec(": builtin '%s' '%s'...\n",
6578 x->b_cmd, argv_expanded[1]);
6579 rcode = x->b_function(argv_expanded) & 0xff;
6580 fflush_all();
6581 }
6582#if ENABLE_HUSH_FUNCTIONS
6583 else {
6584# if ENABLE_HUSH_LOCAL
6585 struct variable **sv;
6586 sv = G.shadowed_vars_pp;
6587 G.shadowed_vars_pp = &old_vars;
6588# endif
6589 debug_printf_exec(": function '%s' '%s'...\n",
6590 funcp->name, argv_expanded[1]);
6591 rcode = run_function(funcp, argv_expanded) & 0xff;
6592# if ENABLE_HUSH_LOCAL
6593 G.shadowed_vars_pp = sv;
6594# endif
6595 }
6596#endif
6597 }
6598 clean_up_and_ret:
6599 unset_vars(new_env);
6600 add_vars(old_vars);
6601/* clean_up_and_ret0: */
6602 restore_redirects(squirrel);
6603 clean_up_and_ret1:
6604 free(argv_expanded);
6605 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
6606 debug_leave();
6607 debug_printf_exec("run_pipe return %d\n", rcode);
6608 return rcode;
6609 }
6610
6611 if (ENABLE_FEATURE_SH_STANDALONE) {
6612 int n = find_applet_by_name(argv_expanded[0]);
6613 if (n >= 0 && APPLET_IS_NOFORK(n)) {
6614 rcode = redirect_and_varexp_helper(&new_env, &old_vars, command, squirrel, argv_expanded);
6615 if (rcode == 0) {
6616 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
6617 argv_expanded[0], argv_expanded[1]);
6618 rcode = run_nofork_applet(n, argv_expanded);
6619 }
6620 goto clean_up_and_ret;
6621 }
6622 }
6623 /* It is neither builtin nor applet. We must fork. */
6624 }
6625
6626 must_fork:
6627 /* NB: argv_expanded may already be created, and that
6628 * might include `cmd` runs! Do not rerun it! We *must*
6629 * use argv_expanded if it's non-NULL */
6630
6631 /* Going to fork a child per each pipe member */
6632 pi->alive_cmds = 0;
6633 next_infd = 0;
6634
6635 cmd_no = 0;
6636 while (cmd_no < pi->num_cmds) {
6637 struct fd_pair pipefds;
6638#if !BB_MMU
6639 volatile nommu_save_t nommu_save;
6640 nommu_save.new_env = NULL;
6641 nommu_save.old_vars = NULL;
6642 nommu_save.argv = NULL;
6643 nommu_save.argv_from_re_execing = NULL;
6644#endif
6645 command = &pi->cmds[cmd_no];
6646 cmd_no++;
6647 if (command->argv) {
6648 debug_printf_exec(": pipe member '%s' '%s'...\n",
6649 command->argv[0], command->argv[1]);
6650 } else {
6651 debug_printf_exec(": pipe member with no argv\n");
6652 }
6653
6654 /* pipes are inserted between pairs of commands */
6655 pipefds.rd = 0;
6656 pipefds.wr = 1;
6657 if (cmd_no < pi->num_cmds)
6658 xpiped_pair(pipefds);
6659
6660 command->pid = BB_MMU ? fork() : vfork();
6661 if (!command->pid) { /* child */
6662#if ENABLE_HUSH_JOB
6663 disable_restore_tty_pgrp_on_exit();
6664 CLEAR_RANDOM_T(&G.random_gen); /* or else $RANDOM repeats in child */
6665
6666 /* Every child adds itself to new process group
6667 * with pgid == pid_of_first_child_in_pipe */
6668 if (G.run_list_level == 1 && G_interactive_fd) {
6669 pid_t pgrp;
6670 pgrp = pi->pgrp;
6671 if (pgrp < 0) /* true for 1st process only */
6672 pgrp = getpid();
6673 if (setpgid(0, pgrp) == 0
6674 && pi->followup != PIPE_BG
6675 && G_saved_tty_pgrp /* we have ctty */
6676 ) {
6677 /* We do it in *every* child, not just first,
6678 * to avoid races */
6679 tcsetpgrp(G_interactive_fd, pgrp);
6680 }
6681 }
6682#endif
6683 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
6684 /* 1st cmd in backgrounded pipe
6685 * should have its stdin /dev/null'ed */
6686 close(0);
6687 if (open(bb_dev_null, O_RDONLY))
6688 xopen("/", O_RDONLY);
6689 } else {
6690 xmove_fd(next_infd, 0);
6691 }
6692 xmove_fd(pipefds.wr, 1);
6693 if (pipefds.rd > 1)
6694 close(pipefds.rd);
6695 /* Like bash, explicit redirects override pipes,
6696 * and the pipe fd is available for dup'ing. */
6697 if (setup_redirects(command, NULL))
6698 _exit(1);
6699
6700 /* Restore default handlers just prior to exec */
6701 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
6702
6703 /* Stores to nommu_save list of env vars putenv'ed
6704 * (NOMMU, on MMU we don't need that) */
6705 /* cast away volatility... */
6706 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
6707 /* pseudo_exec() does not return */
6708 }
6709
6710 /* parent or error */
6711#if ENABLE_HUSH_FAST
6712 G.count_SIGCHLD++;
6713//bb_error_msg("[%d] fork in run_pipe: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
6714#endif
6715 enable_restore_tty_pgrp_on_exit();
6716#if !BB_MMU
6717 /* Clean up after vforked child */
6718 free(nommu_save.argv);
6719 free(nommu_save.argv_from_re_execing);
6720 unset_vars(nommu_save.new_env);
6721 add_vars(nommu_save.old_vars);
6722#endif
6723 free(argv_expanded);
6724 argv_expanded = NULL;
6725 if (command->pid < 0) { /* [v]fork failed */
6726 /* Clearly indicate, was it fork or vfork */
6727 bb_perror_msg(BB_MMU ? "vfork"+1 : "vfork");
6728 } else {
6729 pi->alive_cmds++;
6730#if ENABLE_HUSH_JOB
6731 /* Second and next children need to know pid of first one */
6732 if (pi->pgrp < 0)
6733 pi->pgrp = command->pid;
6734#endif
6735 }
6736
6737 if (cmd_no > 1)
6738 close(next_infd);
6739 if (cmd_no < pi->num_cmds)
6740 close(pipefds.wr);
6741 /* Pass read (output) pipe end to next iteration */
6742 next_infd = pipefds.rd;
6743 }
6744
6745 if (!pi->alive_cmds) {
6746 debug_leave();
6747 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
6748 return 1;
6749 }
6750
6751 debug_leave();
6752 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
6753 return -1;
6754}
6755
6756#ifndef debug_print_tree
6757static void debug_print_tree(struct pipe *pi, int lvl)
6758{
6759 static const char *const PIPE[] = {
6760 [PIPE_SEQ] = "SEQ",
6761 [PIPE_AND] = "AND",
6762 [PIPE_OR ] = "OR" ,
6763 [PIPE_BG ] = "BG" ,
6764 };
6765 static const char *RES[] = {
6766 [RES_NONE ] = "NONE" ,
6767# if ENABLE_HUSH_IF
6768 [RES_IF ] = "IF" ,
6769 [RES_THEN ] = "THEN" ,
6770 [RES_ELIF ] = "ELIF" ,
6771 [RES_ELSE ] = "ELSE" ,
6772 [RES_FI ] = "FI" ,
6773# endif
6774# if ENABLE_HUSH_LOOPS
6775 [RES_FOR ] = "FOR" ,
6776 [RES_WHILE] = "WHILE",
6777 [RES_UNTIL] = "UNTIL",
6778 [RES_DO ] = "DO" ,
6779 [RES_DONE ] = "DONE" ,
6780# endif
6781# if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
6782 [RES_IN ] = "IN" ,
6783# endif
6784# if ENABLE_HUSH_CASE
6785 [RES_CASE ] = "CASE" ,
6786 [RES_CASE_IN ] = "CASE_IN" ,
6787 [RES_MATCH] = "MATCH",
6788 [RES_CASE_BODY] = "CASE_BODY",
6789 [RES_ESAC ] = "ESAC" ,
6790# endif
6791 [RES_XXXX ] = "XXXX" ,
6792 [RES_SNTX ] = "SNTX" ,
6793 };
6794 static const char *const CMDTYPE[] = {
6795 "{}",
6796 "()",
6797 "[noglob]",
6798# if ENABLE_HUSH_FUNCTIONS
6799 "func()",
6800# endif
6801 };
6802
6803 int pin, prn;
6804
6805 pin = 0;
6806 while (pi) {
6807 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
6808 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
6809 prn = 0;
6810 while (prn < pi->num_cmds) {
6811 struct command *command = &pi->cmds[prn];
6812 char **argv = command->argv;
6813
6814 fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
6815 lvl*2, "", prn,
6816 command->assignment_cnt);
6817 if (command->group) {
6818 fprintf(stderr, " group %s: (argv=%p)%s%s\n",
6819 CMDTYPE[command->cmd_type],
6820 argv
6821# if !BB_MMU
6822 , " group_as_string:", command->group_as_string
6823# else
6824 , "", ""
6825# endif
6826 );
6827 debug_print_tree(command->group, lvl+1);
6828 prn++;
6829 continue;
6830 }
6831 if (argv) while (*argv) {
6832 fprintf(stderr, " '%s'", *argv);
6833 argv++;
6834 }
6835 fprintf(stderr, "\n");
6836 prn++;
6837 }
6838 pi = pi->next;
6839 pin++;
6840 }
6841}
6842#endif /* debug_print_tree */
6843
6844/* NB: called by pseudo_exec, and therefore must not modify any
6845 * global data until exec/_exit (we can be a child after vfork!) */
6846static int run_list(struct pipe *pi)
6847{
6848#if ENABLE_HUSH_CASE
6849 char *case_word = NULL;
6850#endif
6851#if ENABLE_HUSH_LOOPS
6852 struct pipe *loop_top = NULL;
6853 char **for_lcur = NULL;
6854 char **for_list = NULL;
6855#endif
6856 smallint last_followup;
6857 smalluint rcode;
6858#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
6859 smalluint cond_code = 0;
6860#else
6861 enum { cond_code = 0 };
6862#endif
6863#if HAS_KEYWORDS
Denys Vlasenko9b782552010-09-08 13:33:26 +02006864 smallint rword; /* RES_foo */
Denys Vlasenkob36abf22010-09-05 14:50:59 +02006865 smallint last_rword; /* ditto */
6866#endif
6867
6868 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
6869 debug_enter();
6870
6871#if ENABLE_HUSH_LOOPS
6872 /* Check syntax for "for" */
6873 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
6874 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
6875 continue;
6876 /* current word is FOR or IN (BOLD in comments below) */
6877 if (cpipe->next == NULL) {
6878 syntax_error("malformed for");
6879 debug_leave();
6880 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
6881 return 1;
6882 }
6883 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
6884 if (cpipe->next->res_word == RES_DO)
6885 continue;
6886 /* next word is not "do". It must be "in" then ("FOR v in ...") */
6887 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
6888 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
6889 ) {
6890 syntax_error("malformed for");
6891 debug_leave();
6892 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
6893 return 1;
6894 }
6895 }
6896#endif
6897
6898 /* Past this point, all code paths should jump to ret: label
6899 * in order to return, no direct "return" statements please.
6900 * This helps to ensure that no memory is leaked. */
6901
6902#if ENABLE_HUSH_JOB
6903 G.run_list_level++;
6904#endif
6905
6906#if HAS_KEYWORDS
6907 rword = RES_NONE;
6908 last_rword = RES_XXXX;
6909#endif
6910 last_followup = PIPE_SEQ;
6911 rcode = G.last_exitcode;
6912
6913 /* Go through list of pipes, (maybe) executing them. */
6914 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
6915 if (G.flag_SIGINT)
6916 break;
6917
6918 IF_HAS_KEYWORDS(rword = pi->res_word;)
6919 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
6920 rword, cond_code, last_rword);
6921#if ENABLE_HUSH_LOOPS
6922 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
6923 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
6924 ) {
6925 /* start of a loop: remember where loop starts */
6926 loop_top = pi;
6927 G.depth_of_loop++;
6928 }
6929#endif
6930 /* Still in the same "if...", "then..." or "do..." branch? */
6931 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
6932 if ((rcode == 0 && last_followup == PIPE_OR)
6933 || (rcode != 0 && last_followup == PIPE_AND)
6934 ) {
6935 /* It is "<true> || CMD" or "<false> && CMD"
6936 * and we should not execute CMD */
6937 debug_printf_exec("skipped cmd because of || or &&\n");
6938 last_followup = pi->followup;
6939 continue;
6940 }
6941 }
6942 last_followup = pi->followup;
6943 IF_HAS_KEYWORDS(last_rword = rword;)
6944#if ENABLE_HUSH_IF
6945 if (cond_code) {
6946 if (rword == RES_THEN) {
6947 /* if false; then ... fi has exitcode 0! */
6948 G.last_exitcode = rcode = EXIT_SUCCESS;
6949 /* "if <false> THEN cmd": skip cmd */
6950 continue;
6951 }
6952 } else {
6953 if (rword == RES_ELSE || rword == RES_ELIF) {
6954 /* "if <true> then ... ELSE/ELIF cmd":
6955 * skip cmd and all following ones */
6956 break;
6957 }
6958 }
6959#endif
6960#if ENABLE_HUSH_LOOPS
6961 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
6962 if (!for_lcur) {
6963 /* first loop through for */
6964
6965 static const char encoded_dollar_at[] ALIGN1 = {
6966 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
6967 }; /* encoded representation of "$@" */
6968 static const char *const encoded_dollar_at_argv[] = {
6969 encoded_dollar_at, NULL
6970 }; /* argv list with one element: "$@" */
6971 char **vals;
6972
6973 vals = (char**)encoded_dollar_at_argv;
6974 if (pi->next->res_word == RES_IN) {
6975 /* if no variable values after "in" we skip "for" */
6976 if (!pi->next->cmds[0].argv) {
6977 G.last_exitcode = rcode = EXIT_SUCCESS;
6978 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
6979 break;
6980 }
6981 vals = pi->next->cmds[0].argv;
6982 } /* else: "for var; do..." -> assume "$@" list */
6983 /* create list of variable values */
6984 debug_print_strings("for_list made from", vals);
6985 for_list = expand_strvec_to_strvec(vals);
6986 for_lcur = for_list;
6987 debug_print_strings("for_list", for_list);
6988 }
6989 if (!*for_lcur) {
6990 /* "for" loop is over, clean up */
6991 free(for_list);
6992 for_list = NULL;
6993 for_lcur = NULL;
6994 break;
6995 }
6996 /* Insert next value from for_lcur */
6997 /* note: *for_lcur already has quotes removed, $var expanded, etc */
6998 set_local_var(xasprintf("%s=%s", pi->cmds[0].argv[0], *for_lcur++), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
6999 continue;
7000 }
7001 if (rword == RES_IN) {
7002 continue; /* "for v IN list;..." - "in" has no cmds anyway */
7003 }
7004 if (rword == RES_DONE) {
7005 continue; /* "done" has no cmds too */
7006 }
7007#endif
7008#if ENABLE_HUSH_CASE
7009 if (rword == RES_CASE) {
7010 case_word = expand_strvec_to_string(pi->cmds->argv);
7011 continue;
7012 }
7013 if (rword == RES_MATCH) {
7014 char **argv;
7015
7016 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
7017 break;
7018 /* all prev words didn't match, does this one match? */
7019 argv = pi->cmds->argv;
7020 while (*argv) {
7021 char *pattern = expand_string_to_string(*argv);
7022 /* TODO: which FNM_xxx flags to use? */
7023 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
7024 free(pattern);
7025 if (cond_code == 0) { /* match! we will execute this branch */
7026 free(case_word); /* make future "word)" stop */
7027 case_word = NULL;
7028 break;
7029 }
7030 argv++;
7031 }
7032 continue;
7033 }
7034 if (rword == RES_CASE_BODY) { /* inside of a case branch */
7035 if (cond_code != 0)
7036 continue; /* not matched yet, skip this pipe */
7037 }
7038#endif
7039 /* Just pressing <enter> in shell should check for jobs.
7040 * OTOH, in non-interactive shell this is useless
7041 * and only leads to extra job checks */
7042 if (pi->num_cmds == 0) {
7043 if (G_interactive_fd)
7044 goto check_jobs_and_continue;
7045 continue;
7046 }
7047
7048 /* After analyzing all keywords and conditions, we decided
7049 * to execute this pipe. NB: have to do checkjobs(NULL)
7050 * after run_pipe to collect any background children,
7051 * even if list execution is to be stopped. */
7052 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
7053 {
7054 int r;
7055#if ENABLE_HUSH_LOOPS
7056 G.flag_break_continue = 0;
7057#endif
7058 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
7059 if (r != -1) {
7060 /* We ran a builtin, function, or group.
7061 * rcode is already known
7062 * and we don't need to wait for anything. */
7063 G.last_exitcode = rcode;
7064 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
7065 check_and_run_traps(0);
7066#if ENABLE_HUSH_LOOPS
7067 /* Was it "break" or "continue"? */
7068 if (G.flag_break_continue) {
7069 smallint fbc = G.flag_break_continue;
7070 /* We might fall into outer *loop*,
7071 * don't want to break it too */
7072 if (loop_top) {
7073 G.depth_break_continue--;
7074 if (G.depth_break_continue == 0)
7075 G.flag_break_continue = 0;
7076 /* else: e.g. "continue 2" should *break* once, *then* continue */
7077 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
7078 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
7079 goto check_jobs_and_break;
7080 /* "continue": simulate end of loop */
7081 rword = RES_DONE;
7082 continue;
7083 }
7084#endif
7085#if ENABLE_HUSH_FUNCTIONS
7086 if (G.flag_return_in_progress == 1) {
7087 /* same as "goto check_jobs_and_break" */
7088 checkjobs(NULL);
7089 break;
7090 }
7091#endif
7092 } else if (pi->followup == PIPE_BG) {
7093 /* What does bash do with attempts to background builtins? */
7094 /* even bash 3.2 doesn't do that well with nested bg:
7095 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
7096 * I'm NOT treating inner &'s as jobs */
7097 check_and_run_traps(0);
7098#if ENABLE_HUSH_JOB
7099 if (G.run_list_level == 1)
7100 insert_bg_job(pi);
7101#endif
7102 /* Last command's pid goes to $! */
7103 G.last_bg_pid = pi->cmds[pi->num_cmds - 1].pid;
7104 G.last_exitcode = rcode = EXIT_SUCCESS;
7105 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
7106 } else {
7107#if ENABLE_HUSH_JOB
7108 if (G.run_list_level == 1 && G_interactive_fd) {
7109 /* Waits for completion, then fg's main shell */
7110 rcode = checkjobs_and_fg_shell(pi);
7111 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
7112 check_and_run_traps(0);
7113 } else
7114#endif
7115 { /* This one just waits for completion */
7116 rcode = checkjobs(pi);
7117 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
7118 check_and_run_traps(0);
7119 }
7120 G.last_exitcode = rcode;
7121 }
7122 }
7123
7124 /* Analyze how result affects subsequent commands */
7125#if ENABLE_HUSH_IF
7126 if (rword == RES_IF || rword == RES_ELIF)
7127 cond_code = rcode;
7128#endif
7129#if ENABLE_HUSH_LOOPS
7130 /* Beware of "while false; true; do ..."! */
7131 if (pi->next && pi->next->res_word == RES_DO) {
7132 if (rword == RES_WHILE) {
7133 if (rcode) {
7134 /* "while false; do...done" - exitcode 0 */
7135 G.last_exitcode = rcode = EXIT_SUCCESS;
7136 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
7137 goto check_jobs_and_break;
7138 }
7139 }
7140 if (rword == RES_UNTIL) {
7141 if (!rcode) {
7142 debug_printf_exec(": until expr is true: breaking\n");
7143 check_jobs_and_break:
7144 checkjobs(NULL);
7145 break;
7146 }
7147 }
7148 }
7149#endif
7150
7151 check_jobs_and_continue:
7152 checkjobs(NULL);
7153 } /* for (pi) */
7154
7155#if ENABLE_HUSH_JOB
7156 G.run_list_level--;
7157#endif
7158#if ENABLE_HUSH_LOOPS
7159 if (loop_top)
7160 G.depth_of_loop--;
7161 free(for_list);
7162#endif
7163#if ENABLE_HUSH_CASE
7164 free(case_word);
7165#endif
7166 debug_leave();
7167 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
7168 return rcode;
7169}
7170
7171/* Select which version we will use */
7172static int run_and_free_list(struct pipe *pi)
7173{
7174 int rcode = 0;
7175 debug_printf_exec("run_and_free_list entered\n");
7176 if (!G.n_mode) {
7177 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
7178 rcode = run_list(pi);
7179 }
7180 /* free_pipe_list has the side effect of clearing memory.
7181 * In the long run that function can be merged with run_list,
7182 * but doing that now would hobble the debugging effort. */
7183 free_pipe_list(pi);
7184 debug_printf_exec("run_and_free_list return %d\n", rcode);
7185 return rcode;
7186}
7187
7188
Denis Vlasenkof9375282009-04-05 19:13:39 +00007189/* Called a few times only (or even once if "sh -c") */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007190static void init_sigmasks(void)
Eric Andersen52a97ca2001-06-22 06:49:26 +00007191{
Denis Vlasenkof9375282009-04-05 19:13:39 +00007192 unsigned sig;
7193 unsigned mask;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007194 sigset_t old_blocked_set;
7195
7196 if (!G.inherited_set_is_saved) {
7197 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
7198 G.inherited_set = G.blocked_set;
7199 }
7200 old_blocked_set = G.blocked_set;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00007201
Denis Vlasenkof9375282009-04-05 19:13:39 +00007202 mask = (1 << SIGQUIT);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007203 if (G_interactive_fd) {
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00007204 mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS;
Mike Frysinger38478a62009-05-20 04:48:06 -04007205 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007206 mask |= SPECIAL_JOB_SIGS;
7207 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007208 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00007209
Denis Vlasenkof9375282009-04-05 19:13:39 +00007210 sig = 0;
7211 while (mask) {
7212 if (mask & 1)
7213 sigaddset(&G.blocked_set, sig);
7214 mask >>= 1;
7215 sig++;
7216 }
7217 sigdelset(&G.blocked_set, SIGCHLD);
7218
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007219 if (memcmp(&old_blocked_set, &G.blocked_set, sizeof(old_blocked_set)) != 0)
7220 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7221
Denis Vlasenkof9375282009-04-05 19:13:39 +00007222 /* POSIX allows shell to re-enable SIGCHLD
7223 * even if it was SIG_IGN on entry */
Denys Vlasenko8d7be232009-05-25 16:38:32 +02007224#if ENABLE_HUSH_FAST
7225 G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007226 if (!G.inherited_set_is_saved)
Denys Vlasenko8d7be232009-05-25 16:38:32 +02007227 signal(SIGCHLD, SIGCHLD_handler);
7228#else
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007229 if (!G.inherited_set_is_saved)
Denys Vlasenko8d7be232009-05-25 16:38:32 +02007230 signal(SIGCHLD, SIG_DFL);
7231#endif
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007232
7233 G.inherited_set_is_saved = 1;
Denis Vlasenkof9375282009-04-05 19:13:39 +00007234}
7235
7236#if ENABLE_HUSH_JOB
7237/* helper */
7238static void maybe_set_to_sigexit(int sig)
7239{
7240 void (*handler)(int);
7241 /* non_DFL_mask'ed signals are, well, masked,
7242 * no need to set handler for them.
7243 */
7244 if (!((G.non_DFL_mask >> sig) & 1)) {
7245 handler = signal(sig, sigexit);
7246 if (handler == SIG_IGN) /* oops... restore back to IGN! */
7247 signal(sig, handler);
7248 }
7249}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007250/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00007251static void set_fatal_handlers(void)
7252{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00007253 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00007254 if (HUSH_DEBUG) {
7255 maybe_set_to_sigexit(SIGILL );
7256 maybe_set_to_sigexit(SIGFPE );
7257 maybe_set_to_sigexit(SIGBUS );
7258 maybe_set_to_sigexit(SIGSEGV);
7259 maybe_set_to_sigexit(SIGTRAP);
7260 } /* else: hush is perfect. what SEGV? */
7261 maybe_set_to_sigexit(SIGABRT);
7262 /* bash 3.2 seems to handle these just like 'fatal' ones */
7263 maybe_set_to_sigexit(SIGPIPE);
7264 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00007265 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00007266 * if we aren't interactive... but in this case
7267 * we never want to restore pgrp on exit, and this fn is not called */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00007268 /*maybe_set_to_sigexit(SIGHUP );*/
Denis Vlasenkof9375282009-04-05 19:13:39 +00007269 /*maybe_set_to_sigexit(SIGTERM);*/
7270 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00007271}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00007272#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00007273
Denis Vlasenkod5762932009-03-31 11:22:57 +00007274static int set_mode(const char cstate, const char mode)
7275{
7276 int state = (cstate == '-' ? 1 : 0);
7277 switch (mode) {
Denys Vlasenko202a2d12010-07-16 12:36:14 +02007278 case 'n': G.n_mode = state; break;
7279 case 'x': IF_HUSH_MODE_X(G_x_mode = state;) break;
Denis Vlasenkod5762932009-03-31 11:22:57 +00007280 default: return EXIT_FAILURE;
7281 }
7282 return EXIT_SUCCESS;
7283}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007284
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00007285int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00007286int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00007287{
7288 int opt;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007289 unsigned builtin_argc;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007290 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007291 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00007292
Denis Vlasenko574f2f42008-02-27 18:41:59 +00007293 INIT_G();
Denys Vlasenkocddbb612010-05-20 14:27:09 +02007294 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, it is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007295 G.last_exitcode = EXIT_SUCCESS;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007296#if !BB_MMU
7297 G.argv0_for_re_execing = argv[0];
7298#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00007299 /* Deal with HUSH_VERSION */
Denys Vlasenko36f774a2010-09-05 14:45:38 +02007300 G.shell_ver.flg_export = 1;
7301 G.shell_ver.flg_read_only = 1;
7302 /* Code which handles ${var/P/R} needs writable values for all variables,
7303 * therefore we xstrdup: */
7304 G.shell_ver.varstr = xstrdup(hush_version_str),
Denis Vlasenko87a86552008-07-29 19:43:10 +00007305 G.top_var = &G.shell_ver;
Denys Vlasenko605067b2010-09-06 12:10:51 +02007306 /* Create shell local variables from the values
7307 * currently living in the environment */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00007308 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00007309 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
Denis Vlasenko87a86552008-07-29 19:43:10 +00007310 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00007311 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007312 if (e) while (*e) {
7313 char *value = strchr(*e, '=');
7314 if (value) { /* paranoia */
7315 cur_var->next = xzalloc(sizeof(*cur_var));
7316 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00007317 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007318 cur_var->max_len = strlen(*e);
7319 cur_var->flg_export = 1;
7320 }
7321 e++;
7322 }
Denys Vlasenko605067b2010-09-06 12:10:51 +02007323 /* (Re)insert HUSH_VERSION into env (AFTER we scanned the env!) */
7324 debug_printf_env("putenv '%s'\n", G.shell_ver.varstr);
7325 putenv(G.shell_ver.varstr);
Denys Vlasenko6db47842009-09-05 20:15:17 +02007326
7327 /* Export PWD */
7328 set_pwd_var(/*exp:*/ 1);
7329 /* bash also exports SHLVL and _,
7330 * and sets (but doesn't export) the following variables:
7331 * BASH=/bin/bash
7332 * BASH_VERSINFO=([0]="3" [1]="2" [2]="0" [3]="1" [4]="release" [5]="i386-pc-linux-gnu")
7333 * BASH_VERSION='3.2.0(1)-release'
7334 * HOSTTYPE=i386
7335 * MACHTYPE=i386-pc-linux-gnu
7336 * OSTYPE=linux-gnu
7337 * HOSTNAME=<xxxxxxxxxx>
Denys Vlasenkodea47882009-10-09 15:40:49 +02007338 * PPID=<NNNNN> - we also do it elsewhere
Denys Vlasenko6db47842009-09-05 20:15:17 +02007339 * EUID=<NNNNN>
7340 * UID=<NNNNN>
7341 * GROUPS=()
7342 * LINES=<NNN>
7343 * COLUMNS=<NNN>
7344 * BASH_ARGC=()
7345 * BASH_ARGV=()
7346 * BASH_LINENO=()
7347 * BASH_SOURCE=()
7348 * DIRSTACK=()
7349 * PIPESTATUS=([0]="0")
7350 * HISTFILE=/<xxx>/.bash_history
7351 * HISTFILESIZE=500
7352 * HISTSIZE=500
7353 * MAILCHECK=60
7354 * PATH=/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:.
7355 * SHELL=/bin/bash
7356 * SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
7357 * TERM=dumb
7358 * OPTERR=1
7359 * OPTIND=1
7360 * IFS=$' \t\n'
7361 * PS1='\s-\v\$ '
7362 * PS2='> '
7363 * PS4='+ '
7364 */
7365
Denis Vlasenko38f63192007-01-22 09:03:07 +00007366#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00007367 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00007368#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00007369 G.global_argc = argc;
7370 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00007371 /* Initialize some more globals to non-zero values */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00007372 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00007373
Denis Vlasenkoed782372009-04-10 00:45:02 +00007374 if (setjmp(die_jmp)) {
7375 /* xfunc has failed! die die die */
7376 /* no EXIT traps, this is an escape hatch! */
7377 G.exiting = 1;
7378 hush_exit(xfunc_error_retval);
7379 }
7380
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00007381 /* Shell is non-interactive at first. We need to call
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007382 * init_sigmasks() if we are going to execute "sh <script>",
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007383 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007384 * If we later decide that we are interactive, we run init_sigmasks()
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00007385 * in order to intercept (more) signals.
7386 */
7387
7388 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00007389 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007390 builtin_argc = 0;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007391 while (1) {
Denys Vlasenkoa67a9622009-08-20 03:38:58 +02007392 opt = getopt(argc, argv, "+c:xins"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007393#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00007394 "<:$:R:V:"
7395# if ENABLE_HUSH_FUNCTIONS
7396 "F:"
7397# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007398#endif
7399 );
7400 if (opt <= 0)
7401 break;
Eric Andersen25f27032001-04-26 23:22:31 +00007402 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007403 case 'c':
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007404 /* Possibilities:
7405 * sh ... -c 'script'
7406 * sh ... -c 'script' ARG0 [ARG1...]
7407 * On NOMMU, if builtin_argc != 0,
Denys Vlasenko17323a62010-01-28 01:57:05 +01007408 * sh ... -c 'builtin' BARGV... "" ARG0 [ARG1...]
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007409 * "" needs to be replaced with NULL
7410 * and BARGV vector fed to builtin function.
Denys Vlasenko17323a62010-01-28 01:57:05 +01007411 * Note: the form without ARG0 never happens:
7412 * sh ... -c 'builtin' BARGV... ""
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007413 */
Denys Vlasenkodea47882009-10-09 15:40:49 +02007414 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007415 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02007416 G.root_ppid = getppid();
7417 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00007418 G.global_argv = argv + optind;
7419 G.global_argc = argc - optind;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007420 if (builtin_argc) {
7421 /* -c 'builtin' [BARGV...] "" ARG0 [ARG1...] */
7422 const struct built_in_command *x;
7423
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007424 init_sigmasks();
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007425 x = find_builtin(optarg);
7426 if (x) { /* paranoia */
7427 G.global_argc -= builtin_argc; /* skip [BARGV...] "" */
7428 G.global_argv += builtin_argc;
7429 G.global_argv[-1] = NULL; /* replace "" */
Denys Vlasenko17323a62010-01-28 01:57:05 +01007430 G.last_exitcode = x->b_function(argv + optind - 1);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007431 }
7432 goto final_return;
7433 }
7434 if (!G.global_argv[0]) {
7435 /* -c 'script' (no params): prevent empty $0 */
7436 G.global_argv--; /* points to argv[i] of 'script' */
7437 G.global_argv[0] = argv[0];
Denys Vlasenko5ae8f1c2010-05-22 06:32:11 +02007438 G.global_argc++;
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007439 } /* else -c 'script' ARG0 [ARG1...]: $0 is ARG0 */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007440 init_sigmasks();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007441 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007442 goto final_return;
7443 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00007444 /* Well, we cannot just declare interactiveness,
7445 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007446 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007447 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00007448 case 's':
7449 /* "-s" means "read from stdin", but this is how we always
7450 * operate, so simply do nothing here. */
7451 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007452#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00007453 case '<': /* "big heredoc" support */
Denys Vlasenko729ecb82010-06-07 14:14:26 +02007454 full_write1_str(optarg);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00007455 _exit(0);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007456 case '$': {
7457 unsigned long long empty_trap_mask;
7458
Denis Vlasenko34e573d2009-04-06 12:56:28 +00007459 G.root_pid = bb_strtou(optarg, &optarg, 16);
7460 optarg++;
Denys Vlasenkodea47882009-10-09 15:40:49 +02007461 G.root_ppid = bb_strtou(optarg, &optarg, 16);
7462 optarg++;
Denis Vlasenko34e573d2009-04-06 12:56:28 +00007463 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
7464 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007465 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007466 optarg++;
7467 builtin_argc = bb_strtou(optarg, &optarg, 16);
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007468 optarg++;
7469 empty_trap_mask = bb_strtoull(optarg, &optarg, 16);
7470 if (empty_trap_mask != 0) {
7471 int sig;
7472 init_sigmasks();
7473 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
7474 for (sig = 1; sig < NSIG; sig++) {
7475 if (empty_trap_mask & (1LL << sig)) {
7476 G.traps[sig] = xzalloc(1); /* == xstrdup(""); */
7477 sigaddset(&G.blocked_set, sig);
7478 }
7479 }
7480 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7481 }
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007482# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00007483 optarg++;
7484 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007485# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00007486 break;
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007487 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007488 case 'R':
7489 case 'V':
Denys Vlasenko295fef82009-06-03 12:47:26 +02007490 set_local_var(xstrdup(optarg), /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ opt == 'R');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007491 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00007492# if ENABLE_HUSH_FUNCTIONS
7493 case 'F': {
7494 struct function *funcp = new_function(optarg);
7495 /* funcp->name is already set to optarg */
7496 /* funcp->body is set to NULL. It's a special case. */
7497 funcp->body_as_string = argv[optind];
7498 optind++;
7499 break;
7500 }
7501# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00007502#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007503 case 'n':
7504 case 'x':
Denys Vlasenko889550b2010-07-14 19:01:25 +02007505 if (set_mode('-', opt) == 0) /* no error */
Mike Frysingerad88d5a2009-03-28 13:44:51 +00007506 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007507 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00007508#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007509 fprintf(stderr, "Usage: sh [FILE]...\n"
7510 " or: sh -c command [args]...\n\n");
7511 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00007512#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00007513 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00007514#endif
Eric Andersen25f27032001-04-26 23:22:31 +00007515 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007516 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007517
Denys Vlasenkodea47882009-10-09 15:40:49 +02007518 if (!G.root_pid) {
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007519 G.root_pid = getpid();
Denys Vlasenkodea47882009-10-09 15:40:49 +02007520 G.root_ppid = getppid();
7521 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007522
7523 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007524 if (argv[0] && argv[0][0] == '-') {
7525 FILE *input;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007526 debug_printf("sourcing /etc/profile\n");
7527 input = fopen_for_read("/etc/profile");
7528 if (input != NULL) {
7529 close_on_exec_on(fileno(input));
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007530 init_sigmasks();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007531 parse_and_run_file(input);
7532 fclose(input);
7533 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007534 /* bash: after sourcing /etc/profile,
7535 * tries to source (in the given order):
7536 * ~/.bash_profile, ~/.bash_login, ~/.profile,
Denys Vlasenko28a105d2009-06-01 11:26:30 +02007537 * stopping on first found. --noprofile turns this off.
Denis Vlasenkof9375282009-04-05 19:13:39 +00007538 * bash also sources ~/.bash_logout on exit.
7539 * If called as sh, skips .bash_XXX files.
7540 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00007541 }
7542
Denis Vlasenkof9375282009-04-05 19:13:39 +00007543 if (argv[optind]) {
7544 FILE *input;
7545 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00007546 * "bash <script>" (which is never interactive (unless -i?))
7547 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00007548 * If called as sh, does the same but with $ENV.
7549 */
7550 debug_printf("running script '%s'\n", argv[optind]);
7551 G.global_argv = argv + optind;
7552 G.global_argc = argc - optind;
7553 input = xfopen_for_read(argv[optind]);
7554 close_on_exec_on(fileno(input));
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007555 init_sigmasks();
Denis Vlasenkof9375282009-04-05 19:13:39 +00007556 parse_and_run_file(input);
7557#if ENABLE_FEATURE_CLEAN_UP
7558 fclose(input);
7559#endif
7560 goto final_return;
7561 }
7562
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00007563 /* Up to here, shell was non-interactive. Now it may become one.
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007564 * NB: don't forget to (re)run init_sigmasks() as needed.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00007565 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00007566
Denys Vlasenko28a105d2009-06-01 11:26:30 +02007567 /* A shell is interactive if the '-i' flag was given,
7568 * or if all of the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00007569 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00007570 * no arguments remaining or the -s flag given
7571 * standard input is a terminal
7572 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00007573 * Refer to Posix.2, the description of the 'sh' utility.
7574 */
7575#if ENABLE_HUSH_JOB
7576 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Mike Frysinger38478a62009-05-20 04:48:06 -04007577 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
7578 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
7579 if (G_saved_tty_pgrp < 0)
7580 G_saved_tty_pgrp = 0;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007581
7582 /* try to dup stdin to high fd#, >= 255 */
7583 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
7584 if (G_interactive_fd < 0) {
7585 /* try to dup to any fd */
7586 G_interactive_fd = dup(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007587 if (G_interactive_fd < 0) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007588 /* give up */
7589 G_interactive_fd = 0;
Mike Frysinger38478a62009-05-20 04:48:06 -04007590 G_saved_tty_pgrp = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00007591 }
7592 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007593// TODO: track & disallow any attempts of user
7594// to (inadvertently) close/redirect G_interactive_fd
Eric Andersen25f27032001-04-26 23:22:31 +00007595 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007596 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007597 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00007598 close_on_exec_on(G_interactive_fd);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007599
Mike Frysinger38478a62009-05-20 04:48:06 -04007600 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007601 /* If we were run as 'hush &', sleep until we are
7602 * in the foreground (tty pgrp == our pgrp).
7603 * If we get started under a job aware app (like bash),
7604 * make sure we are now in charge so we don't fight over
7605 * who gets the foreground */
7606 while (1) {
7607 pid_t shell_pgrp = getpgrp();
Mike Frysinger38478a62009-05-20 04:48:06 -04007608 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
7609 if (G_saved_tty_pgrp == shell_pgrp)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007610 break;
7611 /* send TTIN to ourself (should stop us) */
7612 kill(- shell_pgrp, SIGTTIN);
7613 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00007614 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007615
Denis Vlasenkof9375282009-04-05 19:13:39 +00007616 /* Block some signals */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007617 init_sigmasks();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007618
Mike Frysinger38478a62009-05-20 04:48:06 -04007619 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00007620 /* Set other signals to restore saved_tty_pgrp */
7621 set_fatal_handlers();
7622 /* Put ourselves in our own process group
7623 * (bash, too, does this only if ctty is available) */
7624 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
7625 /* Grab control of the terminal */
7626 tcsetpgrp(G_interactive_fd, getpid());
7627 }
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00007628 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00007629 * (we reset die_sleep = 0 whereever we [v]fork) */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00007630 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007631 } else {
7632 init_sigmasks();
7633 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007634#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00007635 /* No job control compiled in, only prompt/line editing */
7636 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007637 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
7638 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007639 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007640 G_interactive_fd = dup(STDIN_FILENO);
7641 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007642 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007643 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00007644 }
7645 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00007646 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00007647 close_on_exec_on(G_interactive_fd);
Denis Vlasenkof9375282009-04-05 19:13:39 +00007648 }
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007649 init_sigmasks();
Denis Vlasenkof9375282009-04-05 19:13:39 +00007650#else
7651 /* We have interactiveness code disabled */
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01007652 init_sigmasks();
Denis Vlasenkof9375282009-04-05 19:13:39 +00007653#endif
7654 /* bash:
7655 * if interactive but not a login shell, sources ~/.bashrc
7656 * (--norc turns this off, --rcfile <file> overrides)
7657 */
7658
7659 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Denys Vlasenkoc34c0332009-09-29 12:25:30 +02007660 /* note: ash and hush share this string */
7661 printf("\n\n%s %s\n"
7662 IF_HUSH_HELP("Enter 'help' for a list of built-in commands.\n")
7663 "\n",
7664 bb_banner,
7665 "hush - the humble shell"
7666 );
Mike Frysingerb2705e12009-03-23 08:44:02 +00007667 }
7668
Denis Vlasenkof9375282009-04-05 19:13:39 +00007669 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00007670
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007671 final_return:
Denis Vlasenko38f63192007-01-22 09:03:07 +00007672#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko87a86552008-07-29 19:43:10 +00007673 if (G.cwd != bb_msg_unknown)
7674 free((char*)G.cwd);
7675 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007676 while (cur_var) {
7677 struct variable *tmp = cur_var;
7678 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00007679 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00007680 cur_var = cur_var->next;
7681 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00007682 }
Eric Andersen25f27032001-04-26 23:22:31 +00007683#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007684 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00007685}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00007686
7687
Denys Vlasenko1cc4b132009-08-21 00:05:51 +02007688#if ENABLE_MSH
7689int msh_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
7690int msh_main(int argc, char **argv)
7691{
7692 //bb_error_msg("msh is deprecated, please use hush instead");
7693 return hush_main(argc, argv);
7694}
7695#endif
7696
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007697
7698/*
7699 * Built-ins
7700 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007701static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007702{
7703 return 0;
7704}
7705
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02007706static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007707{
7708 int argc = 0;
7709 while (*argv) {
7710 argc++;
7711 argv++;
7712 }
Denys Vlasenko8bc7f2c2009-10-19 13:20:52 +02007713 return applet_main_func(argc, argv - argc);
Mike Frysingerccb19592009-10-15 03:31:15 -04007714}
7715
7716static int FAST_FUNC builtin_test(char **argv)
7717{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02007718 return run_applet_main(argv, test_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007719}
7720
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007721static int FAST_FUNC builtin_echo(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007722{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02007723 return run_applet_main(argv, echo_main);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007724}
7725
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04007726#if ENABLE_PRINTF
7727static int FAST_FUNC builtin_printf(char **argv)
7728{
Denys Vlasenkoc0836532009-10-19 13:13:06 +02007729 return run_applet_main(argv, printf_main);
Mike Frysinger4ebc76c2009-10-15 03:32:39 -04007730}
7731#endif
7732
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007733static char **skip_dash_dash(char **argv)
7734{
7735 argv++;
7736 if (argv[0] && argv[0][0] == '-' && argv[0][1] == '-' && argv[0][2] == '\0')
7737 argv++;
7738 return argv;
7739}
7740
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007741static int FAST_FUNC builtin_eval(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007742{
7743 int rcode = EXIT_SUCCESS;
7744
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007745 argv = skip_dash_dash(argv);
7746 if (*argv) {
Denis Vlasenkob0a64782009-04-06 11:33:07 +00007747 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007748 /* bash:
7749 * eval "echo Hi; done" ("done" is syntax error):
7750 * "echo Hi" will not execute too.
7751 */
7752 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007753 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007754 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007755 }
7756 return rcode;
7757}
7758
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007759static int FAST_FUNC builtin_cd(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007760{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007761 const char *newdir;
7762
7763 argv = skip_dash_dash(argv);
7764 newdir = argv[0];
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007765 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007766 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00007767 * bash says "bash: cd: HOME not set" and does nothing
7768 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00007769 */
Denys Vlasenko90a99042009-09-06 02:36:23 +02007770 const char *home = get_local_var_value("HOME");
7771 newdir = home ? home : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00007772 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007773 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007774 /* Mimic bash message exactly */
7775 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007776 return EXIT_FAILURE;
7777 }
Denys Vlasenko6db47842009-09-05 20:15:17 +02007778 /* Read current dir (get_cwd(1) is inside) and set PWD.
7779 * Note: do not enforce exporting. If PWD was unset or unexported,
7780 * set it again, but do not export. bash does the same.
7781 */
7782 set_pwd_var(/*exp:*/ 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007783 return EXIT_SUCCESS;
7784}
7785
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007786static int FAST_FUNC builtin_exec(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007787{
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007788 argv = skip_dash_dash(argv);
7789 if (argv[0] == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007790 return EXIT_SUCCESS; /* bash does this */
Denys Vlasenkof37eb392009-10-18 11:46:35 +02007791
Denys Vlasenkof37eb392009-10-18 11:46:35 +02007792 /* Careful: we can end up here after [v]fork. Do not restore
7793 * tty pgrp then, only top-level shell process does that */
7794 if (G_saved_tty_pgrp && getpid() == G.root_pid)
7795 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
7796
Denys Vlasenko3ef4f772009-10-19 23:09:06 +02007797 /* TODO: if exec fails, bash does NOT exit! We do.
7798 * We'll need to undo sigprocmask (it's inside execvp_or_die)
7799 * and tcsetpgrp, and this is inherently racy.
7800 */
7801 execvp_or_die(argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007802}
7803
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007804static int FAST_FUNC builtin_exit(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007805{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00007806 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00007807
7808 /* interactive bash:
7809 * # trap "echo EEE" EXIT
7810 * # exit
7811 * exit
7812 * There are stopped jobs.
7813 * (if there are _stopped_ jobs, running ones don't count)
7814 * # exit
7815 * exit
7816 # EEE (then bash exits)
7817 *
7818 * we can use G.exiting = -1 as indicator "last cmd was exit"
7819 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00007820
7821 /* note: EXIT trap is run by hush_exit */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007822 argv = skip_dash_dash(argv);
7823 if (argv[0] == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00007824 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007825 /* mimic bash: exit 123abc == exit 255 + error msg */
7826 xfunc_error_retval = 255;
7827 /* bash: exit -2 == exit 254, no error msg */
Denys Vlasenkob131cce2010-05-20 03:39:43 +02007828 hush_exit(xatoi(argv[0]) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007829}
7830
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007831static void print_escaped(const char *s)
7832{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007833 if (*s == '\'')
7834 goto squote;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007835 do {
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02007836 const char *p = strchrnul(s, '\'');
7837 /* print 'xxxx', possibly just '' */
7838 printf("'%.*s'", (int)(p - s), s);
7839 if (*p == '\0')
7840 break;
7841 s = p;
7842 squote:
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007843 /* s points to '; print "'''...'''" */
7844 putchar('"');
7845 do putchar('\''); while (*++s == '\'');
7846 putchar('"');
7847 } while (*s);
7848}
7849
Denys Vlasenko295fef82009-06-03 12:47:26 +02007850#if !ENABLE_HUSH_LOCAL
7851#define helper_export_local(argv, exp, lvl) \
7852 helper_export_local(argv, exp)
7853#endif
7854static void helper_export_local(char **argv, int exp, int lvl)
7855{
7856 do {
7857 char *name = *argv;
Denys Vlasenko27c56f12010-09-07 09:56:34 +02007858 char *name_end = strchrnul(name, '=');
Denys Vlasenko295fef82009-06-03 12:47:26 +02007859
7860 /* So far we do not check that name is valid (TODO?) */
7861
Denys Vlasenko27c56f12010-09-07 09:56:34 +02007862 if (*name_end == '\0') {
7863 struct variable *var, **vpp;
Denys Vlasenko295fef82009-06-03 12:47:26 +02007864
Denys Vlasenko27c56f12010-09-07 09:56:34 +02007865 vpp = get_ptr_to_local_var(name, name_end - name);
7866 var = vpp ? *vpp : NULL;
7867
Denys Vlasenko295fef82009-06-03 12:47:26 +02007868 if (exp == -1) { /* unexporting? */
7869 /* export -n NAME (without =VALUE) */
7870 if (var) {
7871 var->flg_export = 0;
7872 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
7873 unsetenv(name);
7874 } /* else: export -n NOT_EXISTING_VAR: no-op */
7875 continue;
7876 }
7877 if (exp == 1) { /* exporting? */
7878 /* export NAME (without =VALUE) */
7879 if (var) {
7880 var->flg_export = 1;
7881 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
7882 putenv(var->varstr);
7883 continue;
7884 }
7885 }
7886 /* Exporting non-existing variable.
7887 * bash does not put it in environment,
7888 * but remembers that it is exported,
7889 * and does put it in env when it is set later.
7890 * We just set it to "" and export. */
7891 /* Or, it's "local NAME" (without =VALUE).
7892 * bash sets the value to "". */
7893 name = xasprintf("%s=", name);
7894 } else {
7895 /* (Un)exporting/making local NAME=VALUE */
7896 name = xstrdup(name);
7897 }
7898 set_local_var(name, /*exp:*/ exp, /*lvl:*/ lvl, /*ro:*/ 0);
7899 } while (*++argv);
7900}
7901
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007902static int FAST_FUNC builtin_export(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007903{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00007904 unsigned opt_unexport;
7905
Denys Vlasenkodf5131c2009-06-07 16:04:17 +02007906#if ENABLE_HUSH_EXPORT_N
7907 /* "!": do not abort on errors */
7908 opt_unexport = getopt32(argv, "!n");
7909 if (opt_unexport == (uint32_t)-1)
7910 return EXIT_FAILURE;
7911 argv += optind;
7912#else
7913 opt_unexport = 0;
7914 argv++;
7915#endif
7916
7917 if (argv[0] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007918 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00007919 if (e) {
7920 while (*e) {
7921#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007922 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00007923#else
7924 /* ash emits: export VAR='VAL'
7925 * bash: declare -x VAR="VAL"
7926 * we follow ash example */
7927 const char *s = *e++;
7928 const char *p = strchr(s, '=');
7929
7930 if (!p) /* wtf? take next variable */
7931 continue;
7932 /* export var= */
7933 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007934 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00007935 putchar('\n');
7936#endif
7937 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01007938 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00007939 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007940 return EXIT_SUCCESS;
7941 }
7942
Denys Vlasenko295fef82009-06-03 12:47:26 +02007943 helper_export_local(argv, (opt_unexport ? -1 : 1), 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007944
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007945 return EXIT_SUCCESS;
7946}
7947
Denys Vlasenko295fef82009-06-03 12:47:26 +02007948#if ENABLE_HUSH_LOCAL
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007949static int FAST_FUNC builtin_local(char **argv)
Denys Vlasenko295fef82009-06-03 12:47:26 +02007950{
7951 if (G.func_nest_level == 0) {
7952 bb_error_msg("%s: not in a function", argv[0]);
7953 return EXIT_FAILURE; /* bash compat */
7954 }
7955 helper_export_local(argv, 0, G.func_nest_level);
7956 return EXIT_SUCCESS;
7957}
7958#endif
7959
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007960static int FAST_FUNC builtin_trap(char **argv)
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007961{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007962 int sig;
7963 char *new_cmd;
7964
7965 if (!G.traps)
7966 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
7967
7968 argv++;
7969 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00007970 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007971 /* No args: print all trapped */
7972 for (i = 0; i < NSIG; ++i) {
7973 if (G.traps[i]) {
7974 printf("trap -- ");
7975 print_escaped(G.traps[i]);
Denys Vlasenkoe74aaf92009-09-27 02:05:45 +02007976 /* note: bash adds "SIG", but only if invoked
7977 * as "bash". If called as "sh", or if set -o posix,
7978 * then it prints short signal names.
7979 * We are printing short names: */
7980 printf(" %s\n", get_signame(i));
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007981 }
7982 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01007983 /*fflush_all(); - done after each builtin anyway */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007984 return EXIT_SUCCESS;
7985 }
7986
7987 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00007988 /* If first arg is a number: reset all specified signals */
7989 sig = bb_strtou(*argv, NULL, 10);
7990 if (errno == 0) {
7991 int ret;
7992 process_sig_list:
7993 ret = EXIT_SUCCESS;
7994 while (*argv) {
7995 sig = get_signum(*argv++);
7996 if (sig < 0 || sig >= NSIG) {
7997 ret = EXIT_FAILURE;
7998 /* Mimic bash message exactly */
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00007999 bb_perror_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008000 continue;
8001 }
8002
8003 free(G.traps[sig]);
8004 G.traps[sig] = xstrdup(new_cmd);
8005
Denys Vlasenkoe89a2412010-01-12 15:19:31 +01008006 debug_printf("trap: setting SIG%s (%i) to '%s'\n",
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008007 get_signame(sig), sig, G.traps[sig]);
8008
8009 /* There is no signal for 0 (EXIT) */
8010 if (sig == 0)
8011 continue;
8012
8013 if (new_cmd) {
8014 sigaddset(&G.blocked_set, sig);
8015 } else {
8016 /* There was a trap handler, we are removing it
8017 * (if sig has non-DFL handling,
8018 * we don't need to do anything) */
8019 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
8020 continue;
8021 sigdelset(&G.blocked_set, sig);
8022 }
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008023 }
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00008024 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00008025 return ret;
8026 }
8027
8028 if (!argv[1]) { /* no second arg */
8029 bb_error_msg("trap: invalid arguments");
8030 return EXIT_FAILURE;
8031 }
8032
8033 /* First arg is "-": reset all specified to default */
8034 /* First arg is "--": skip it, the rest is "handler SIGs..." */
8035 /* Everything else: set arg as signal handler
8036 * (includes "" case, which ignores signal) */
8037 if (argv[0][0] == '-') {
8038 if (argv[0][1] == '\0') { /* "-" */
8039 /* new_cmd remains NULL: "reset these sigs" */
8040 goto reset_traps;
8041 }
8042 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
8043 argv++;
8044 }
8045 /* else: "-something", no special meaning */
8046 }
8047 new_cmd = *argv;
8048 reset_traps:
8049 argv++;
8050 goto process_sig_list;
8051}
8052
Mike Frysinger93cadc22009-05-27 17:06:25 -04008053/* http://www.opengroup.org/onlinepubs/9699919799/utilities/type.html */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008054static int FAST_FUNC builtin_type(char **argv)
Mike Frysinger93cadc22009-05-27 17:06:25 -04008055{
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008056 int ret = EXIT_SUCCESS;
Mike Frysinger93cadc22009-05-27 17:06:25 -04008057
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008058 while (*++argv) {
Mike Frysinger93cadc22009-05-27 17:06:25 -04008059 const char *type;
Denys Vlasenko171932d2009-05-28 17:07:22 +02008060 char *path = NULL;
Mike Frysinger93cadc22009-05-27 17:06:25 -04008061
8062 if (0) {} /* make conditional compile easier below */
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008063 /*else if (find_alias(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04008064 type = "an alias";*/
8065#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008066 else if (find_function(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04008067 type = "a function";
8068#endif
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008069 else if (find_builtin(*argv))
Mike Frysinger93cadc22009-05-27 17:06:25 -04008070 type = "a shell builtin";
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008071 else if ((path = find_in_path(*argv)) != NULL)
8072 type = path;
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02008073 else {
Denys Vlasenkodd6b2112009-05-28 09:45:50 +02008074 bb_error_msg("type: %s: not found", *argv);
Mike Frysinger93cadc22009-05-27 17:06:25 -04008075 ret = EXIT_FAILURE;
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02008076 continue;
8077 }
Mike Frysinger93cadc22009-05-27 17:06:25 -04008078
Denys Vlasenko5d7cca22009-05-28 09:58:43 +02008079 printf("%s is %s\n", *argv, type);
8080 free(path);
Mike Frysinger93cadc22009-05-27 17:06:25 -04008081 }
8082
8083 return ret;
8084}
8085
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008086#if ENABLE_HUSH_JOB
8087/* built-in 'fg' and 'bg' handler */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008088static int FAST_FUNC builtin_fg_bg(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008089{
8090 int i, jobnum;
8091 struct pipe *pi;
8092
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008093 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008094 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00008095
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008096 /* If they gave us no args, assume they want the last backgrounded task */
8097 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00008098 for (pi = G.job_list; pi; pi = pi->next) {
8099 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008100 goto found;
8101 }
8102 }
8103 bb_error_msg("%s: no current job", argv[0]);
8104 return EXIT_FAILURE;
8105 }
8106 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
8107 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
8108 return EXIT_FAILURE;
8109 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008110 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008111 if (pi->jobid == jobnum) {
8112 goto found;
8113 }
8114 }
8115 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
8116 return EXIT_FAILURE;
8117 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00008118 /* TODO: bash prints a string representation
8119 * of job being foregrounded (like "sleep 1 | cat") */
Mike Frysinger38478a62009-05-20 04:48:06 -04008120 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008121 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00008122 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008123 }
8124
8125 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00008126 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
8127 for (i = 0; i < pi->num_cmds; i++) {
8128 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
8129 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008130 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00008131 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008132
8133 i = kill(- pi->pgrp, SIGCONT);
8134 if (i < 0) {
8135 if (errno == ESRCH) {
8136 delete_finished_bg_job(pi);
8137 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008138 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00008139 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008140 }
8141
Denis Vlasenko34d4d892009-04-04 20:24:37 +00008142 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008143 remove_bg_job(pi);
8144 return checkjobs_and_fg_shell(pi);
8145 }
8146 return EXIT_SUCCESS;
8147}
8148#endif
8149
8150#if ENABLE_HUSH_HELP
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008151static int FAST_FUNC builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008152{
8153 const struct built_in_command *x;
8154
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008155 printf(
Denis Vlasenko34d4d892009-04-04 20:24:37 +00008156 "Built-in commands:\n"
8157 "------------------\n");
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008158 for (x = bltins1; x != &bltins1[ARRAY_SIZE(bltins1)]; x++) {
Denys Vlasenko17323a62010-01-28 01:57:05 +01008159 if (x->b_descr)
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008160 printf("%-10s%s\n", x->b_cmd, x->b_descr);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008161 }
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008162 bb_putchar('\n');
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008163 return EXIT_SUCCESS;
8164}
8165#endif
8166
8167#if ENABLE_HUSH_JOB
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008168static int FAST_FUNC builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008169{
8170 struct pipe *job;
8171 const char *status_string;
8172
Denis Vlasenko87a86552008-07-29 19:43:10 +00008173 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00008174 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008175 status_string = "Stopped";
8176 else
8177 status_string = "Running";
8178
8179 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
8180 }
8181 return EXIT_SUCCESS;
8182}
8183#endif
8184
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00008185#if HUSH_DEBUG
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008186static int FAST_FUNC builtin_memleak(char **argv UNUSED_PARAM)
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00008187{
8188 void *p;
8189 unsigned long l;
8190
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008191# ifdef M_TRIM_THRESHOLD
Denys Vlasenko27726cb2009-09-12 14:48:33 +02008192 /* Optional. Reduces probability of false positives */
8193 malloc_trim(0);
Denys Vlasenkoc0836532009-10-19 13:13:06 +02008194# endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00008195 /* Crude attempt to find where "free memory" starts,
8196 * sans fragmentation. */
8197 p = malloc(240);
8198 l = (unsigned long)p;
8199 free(p);
8200 p = malloc(3400);
8201 if (l < (unsigned long)p) l = (unsigned long)p;
8202 free(p);
8203
8204 if (!G.memleak_value)
8205 G.memleak_value = l;
Denys Vlasenko9038d6f2009-07-15 20:02:19 +02008206
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00008207 l -= G.memleak_value;
8208 if ((long)l < 0)
8209 l = 0;
8210 l /= 1024;
8211 if (l > 127)
8212 l = 127;
8213
8214 /* Exitcode is "how many kilobytes we leaked since 1st call" */
8215 return l;
8216}
8217#endif
8218
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008219static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008220{
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +02008221 puts(get_cwd(0));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008222 return EXIT_SUCCESS;
8223}
8224
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008225static int FAST_FUNC builtin_read(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008226{
Denys Vlasenko03dad222010-01-12 23:29:57 +01008227 const char *r;
8228 char *opt_n = NULL;
8229 char *opt_p = NULL;
8230 char *opt_t = NULL;
8231 char *opt_u = NULL;
8232 int read_flags;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00008233
Denys Vlasenko03dad222010-01-12 23:29:57 +01008234 /* "!": do not abort on errors.
8235 * Option string must start with "sr" to match BUILTIN_READ_xxx
8236 */
8237 read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
8238 if (read_flags == (uint32_t)-1)
8239 return EXIT_FAILURE;
8240 argv += optind;
8241
8242 r = shell_builtin_read(set_local_var_from_halves,
8243 argv,
8244 get_local_var_value("IFS"), /* can be NULL */
8245 read_flags,
8246 opt_n,
8247 opt_p,
8248 opt_t,
8249 opt_u
8250 );
8251
8252 if ((uintptr_t)r > 1) {
8253 bb_error_msg("%s", r);
8254 r = (char*)(uintptr_t)1;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00008255 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008256
Denys Vlasenko03dad222010-01-12 23:29:57 +01008257 return (uintptr_t)r;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008258}
8259
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008260/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
8261 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008262 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008263 * set [-abCefhmnuvx] [-o option] [argument...]
8264 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008265 * set -- [argument...]
8266 * set -o
8267 * set +o
8268 * Implementations shall support the options in both their hyphen and
8269 * plus-sign forms. These options can also be specified as options to sh.
8270 * Examples:
8271 * Write out all variables and their values: set
8272 * Set $1, $2, and $3 and set "$#" to 3: set c a b
8273 * Turn on the -x and -v options: set -xv
8274 * Unset all positional parameters: set --
8275 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
8276 * Set the positional parameters to the expansion of x, even if x expands
8277 * with a leading '-' or '+': set -- $x
8278 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008279 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008280 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008281static int FAST_FUNC builtin_set(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008282{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008283 int n;
8284 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008285 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008286
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008287 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008288 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008289 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008290 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008291 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00008292 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008293
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008294 do {
8295 if (!strcmp(arg, "--")) {
8296 ++argv;
8297 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008298 }
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00008299 if (arg[0] != '+' && arg[0] != '-')
8300 break;
8301 for (n = 1; arg[n]; ++n)
8302 if (set_mode(arg[0], arg[n]))
8303 goto error;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008304 } while ((arg = *++argv) != NULL);
8305 /* Now argv[0] is 1st argument */
8306
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008307 if (arg == NULL)
8308 return EXIT_SUCCESS;
8309 set_argv:
8310
Denis Vlasenko424f79b2009-03-22 14:23:34 +00008311 /* NB: G.global_argv[0] ($0) is never freed/changed */
8312 g_argv = G.global_argv;
8313 if (G.global_args_malloced) {
8314 pp = g_argv;
8315 while (*++pp)
8316 free(*pp);
8317 g_argv[1] = NULL;
8318 } else {
8319 G.global_args_malloced = 1;
8320 pp = xzalloc(sizeof(pp[0]) * 2);
8321 pp[0] = g_argv[0]; /* retain $0 */
8322 g_argv = pp;
8323 }
8324 /* This realloc's G.global_argv */
8325 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
8326
8327 n = 1;
8328 while (*++pp)
8329 n++;
8330 G.global_argc = n;
8331
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008332 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00008333
8334 /* Nothing known, so abort */
8335 error:
8336 bb_error_msg("set: %s: invalid option", arg);
8337 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008338}
8339
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008340static int FAST_FUNC builtin_shift(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008341{
8342 int n = 1;
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008343 argv = skip_dash_dash(argv);
8344 if (argv[0]) {
8345 n = atoi(argv[0]);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008346 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008347 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00008348 if (G.global_args_malloced) {
8349 int m = 1;
8350 while (m <= n)
8351 free(G.global_argv[m++]);
8352 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008353 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00008354 memmove(&G.global_argv[1], &G.global_argv[n+1],
8355 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008356 return EXIT_SUCCESS;
8357 }
8358 return EXIT_FAILURE;
8359}
8360
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008361static int FAST_FUNC builtin_source(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008362{
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02008363 char *arg_path, *filename;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008364 FILE *input;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00008365 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00008366#if ENABLE_HUSH_FUNCTIONS
8367 smallint sv_flg;
8368#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008369
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008370 argv = skip_dash_dash(argv);
8371 filename = argv[0];
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02008372 if (!filename) {
8373 /* bash says: "bash: .: filename argument required" */
8374 return 2; /* bash compat */
8375 }
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008376 arg_path = NULL;
Denys Vlasenkoe66cf822010-05-18 09:12:53 +02008377 if (!strchr(filename, '/')) {
8378 arg_path = find_in_path(filename);
8379 if (arg_path)
8380 filename = arg_path;
8381 }
8382 input = fopen_or_warn(filename, "r");
8383 free(arg_path);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008384 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008385 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008386 return EXIT_FAILURE;
8387 }
8388 close_on_exec_on(fileno(input));
8389
Mike Frysinger885b6f22009-04-18 21:04:25 +00008390#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008391 sv_flg = G.flag_return_in_progress;
8392 /* "we are inside sourced file, ok to use return" */
8393 G.flag_return_in_progress = -1;
Mike Frysinger885b6f22009-04-18 21:04:25 +00008394#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00008395 save_and_replace_G_args(&sv, argv);
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008396
Denis Vlasenkob6e65562009-04-03 16:49:04 +00008397 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008398 fclose(input);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00008399
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008400 restore_G_args(&sv, argv);
Mike Frysinger885b6f22009-04-18 21:04:25 +00008401#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008402 G.flag_return_in_progress = sv_flg;
Mike Frysinger885b6f22009-04-18 21:04:25 +00008403#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008404
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00008405 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008406}
8407
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008408static int FAST_FUNC builtin_umask(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008409{
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008410 int rc;
8411 mode_t mask;
8412
8413 mask = umask(0);
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008414 argv = skip_dash_dash(argv);
8415 if (argv[0]) {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008416 mode_t old_mask = mask;
8417
8418 mask ^= 0777;
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008419 rc = bb_parse_mode(argv[0], &mask);
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008420 mask ^= 0777;
8421 if (rc == 0) {
8422 mask = old_mask;
8423 /* bash messages:
8424 * bash: umask: 'q': invalid symbolic mode operator
8425 * bash: umask: 999: octal number out of range
8426 */
Denys Vlasenko44c86ce2010-05-20 04:22:55 +02008427 bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008428 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008429 } else {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008430 rc = 1;
8431 /* Mimic bash */
8432 printf("%04o\n", (unsigned) mask);
8433 /* fall through and restore mask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008434 }
Denis Vlasenkoeb858492009-04-18 02:06:54 +00008435 umask(mask);
8436
8437 return !rc; /* rc != 0 - success */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008438}
8439
Mike Frysingerd690f682009-03-30 06:50:54 +00008440/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008441static int FAST_FUNC builtin_unset(char **argv)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008442{
Mike Frysingerd690f682009-03-30 06:50:54 +00008443 int ret;
Denis Vlasenko28e67962009-04-26 23:22:40 +00008444 unsigned opts;
Mike Frysingerd690f682009-03-30 06:50:54 +00008445
Denis Vlasenko28e67962009-04-26 23:22:40 +00008446 /* "!": do not abort on errors */
8447 /* "+": stop at 1st non-option */
8448 opts = getopt32(argv, "!+vf");
8449 if (opts == (unsigned)-1)
8450 return EXIT_FAILURE;
8451 if (opts == 3) {
8452 bb_error_msg("unset: -v and -f are exclusive");
8453 return EXIT_FAILURE;
Mike Frysingerd690f682009-03-30 06:50:54 +00008454 }
Denis Vlasenko28e67962009-04-26 23:22:40 +00008455 argv += optind;
Mike Frysingerd690f682009-03-30 06:50:54 +00008456
8457 ret = EXIT_SUCCESS;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008458 while (*argv) {
Denis Vlasenko28e67962009-04-26 23:22:40 +00008459 if (!(opts & 2)) { /* not -f */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008460 if (unset_local_var(*argv)) {
8461 /* unset <nonexistent_var> doesn't fail.
8462 * Error is when one tries to unset RO var.
8463 * Message was printed by unset_local_var. */
Mike Frysingerd690f682009-03-30 06:50:54 +00008464 ret = EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008465 }
Mike Frysingerd690f682009-03-30 06:50:54 +00008466 }
Denis Vlasenko40e84372009-04-18 11:23:38 +00008467#if ENABLE_HUSH_FUNCTIONS
8468 else {
8469 unset_func(*argv);
8470 }
8471#endif
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00008472 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00008473 }
8474 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00008475}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008476
Mike Frysinger56bdea12009-03-28 20:01:58 +00008477/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008478static int FAST_FUNC builtin_wait(char **argv)
Mike Frysinger56bdea12009-03-28 20:01:58 +00008479{
8480 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00008481 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00008482
Denys Vlasenkob131cce2010-05-20 03:39:43 +02008483 argv = skip_dash_dash(argv);
8484 if (argv[0] == NULL) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00008485 /* Don't care about wait results */
8486 /* Note 1: must wait until there are no more children */
8487 /* Note 2: must be interruptible */
8488 /* Examples:
8489 * $ sleep 3 & sleep 6 & wait
8490 * [1] 30934 sleep 3
8491 * [2] 30935 sleep 6
8492 * [1] Done sleep 3
8493 * [2] Done sleep 6
8494 * $ sleep 3 & sleep 6 & wait
8495 * [1] 30936 sleep 3
8496 * [2] 30937 sleep 6
8497 * [1] Done sleep 3
8498 * ^C <-- after ~4 sec from keyboard
8499 * $
8500 */
8501 sigaddset(&G.blocked_set, SIGCHLD);
8502 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
8503 while (1) {
8504 checkjobs(NULL);
8505 if (errno == ECHILD)
8506 break;
8507 /* Wait for SIGCHLD or any other signal of interest */
8508 /* sigtimedwait with infinite timeout: */
8509 sig = sigwaitinfo(&G.blocked_set, NULL);
8510 if (sig > 0) {
8511 sig = check_and_run_traps(sig);
8512 if (sig && sig != SIGCHLD) { /* see note 2 */
8513 ret = 128 + sig;
8514 break;
8515 }
8516 }
8517 }
8518 sigdelset(&G.blocked_set, SIGCHLD);
8519 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
8520 return ret;
8521 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00008522
Denis Vlasenko7566bae2009-03-31 17:24:49 +00008523 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00008524 while (*argv) {
8525 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00008526 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00008527 /* mimic bash message */
8528 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00008529 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00008530 }
8531 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00008532 if (WIFSIGNALED(status))
8533 ret = 128 + WTERMSIG(status);
8534 else if (WIFEXITED(status))
8535 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00008536 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00008537 ret = EXIT_FAILURE;
8538 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00008539 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00008540 ret = 127;
8541 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00008542 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00008543 }
8544
8545 return ret;
8546}
8547
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008548#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
8549static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
8550{
8551 if (argv[1]) {
8552 def = bb_strtou(argv[1], NULL, 10);
8553 if (errno || def < def_min || argv[2]) {
8554 bb_error_msg("%s: bad arguments", argv[0]);
8555 def = UINT_MAX;
8556 }
8557 }
8558 return def;
8559}
8560#endif
8561
Denis Vlasenkodadfb492008-07-29 10:16:05 +00008562#if ENABLE_HUSH_LOOPS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008563static int FAST_FUNC builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008564{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008565 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +00008566 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00008567 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00008568 return EXIT_SUCCESS; /* bash compat */
8569 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00008570 G.flag_break_continue++; /* BC_BREAK = 1 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008571
8572 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
8573 if (depth == UINT_MAX)
8574 G.flag_break_continue = BC_BREAK;
8575 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +00008576 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008577
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008578 return EXIT_SUCCESS;
8579}
8580
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008581static int FAST_FUNC builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008582{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00008583 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
8584 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00008585}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00008586#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008587
8588#if ENABLE_HUSH_FUNCTIONS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008589static int FAST_FUNC builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00008590{
8591 int rc;
8592
8593 if (G.flag_return_in_progress != -1) {
8594 bb_error_msg("%s: not in a function or sourced script", argv[0]);
8595 return EXIT_FAILURE; /* bash compat */
8596 }
8597
8598 G.flag_return_in_progress = 1;
8599
8600 /* bash:
8601 * out of range: wraps around at 256, does not error out
8602 * non-numeric param:
8603 * f() { false; return qwe; }; f; echo $?
8604 * bash: return: qwe: numeric argument required <== we do this
8605 * 255 <== we also do this
8606 */
8607 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
8608 return rc;
8609}
8610#endif