blob: 924d826cc4daf056ad56ccb2b0d3156838a050cd [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 *
Mike Frysinger25a6ca02009-03-28 13:59:26 +000040 * POSIX syntax not implemented:
Eric Andersen78a7c992001-05-15 16:30:25 +000041 * aliases
Eric Andersen25f27032001-04-26 23:22:31 +000042 * <(list) and >(list) Process Substitution
Mike Frysinger25a6ca02009-03-28 13:59:26 +000043 * Tilde Expansion
Mike Frysinger25a6ca02009-03-28 13:59:26 +000044 *
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000045 * Bash stuff (maybe optionally enable?):
Mike Frysinger25a6ca02009-03-28 13:59:26 +000046 * &> and >& redirection of stdout+stderr
47 * Brace expansion
48 * reserved words: [[ ]] function select
Mike Frysinger6379bb42009-03-28 18:55:03 +000049 * substrings ${var:1:5}
Mike Frysinger25a6ca02009-03-28 13:59:26 +000050 *
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000051 * TODOs:
52 * grep for "TODO" and fix (some of them are easy)
Eric Andersen83a2ae22001-05-07 17:59:25 +000053 * change { and } from special chars to reserved words
Denis Vlasenkofa4ca782009-04-16 12:00:15 +000054 * $var refs in function do not pick up values set by "var=val func"
Denis Vlasenko6b9e0532009-04-18 01:23:21 +000055 * builtins: ulimit
Eric Andersen25f27032001-04-26 23:22:31 +000056 * follow IFS rules more precisely, including update semantics
Eric Andersen25f27032001-04-26 23:22:31 +000057 * figure out what to do with backslash-newline
Eric Andersen25f27032001-04-26 23:22:31 +000058 * continuation lines, both explicit and implicit - done?
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000059 * separate job control from interactiveness
60 * (testcase: booting with init=/bin/hush does not show prompt (2009-04))
Eric Andersen25f27032001-04-26 23:22:31 +000061 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000062 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000063 */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000064#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denis Vlasenkobe709c22008-07-28 00:01:16 +000065#include <glob.h>
66/* #include <dmalloc.h> */
67#if ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +000068# include <fnmatch.h>
Denis Vlasenkobe709c22008-07-28 00:01:16 +000069#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000070#include "math.h"
Mike Frysingera4f331d2009-04-07 06:03:22 +000071#include "match.h"
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000072#ifndef PIPE_BUF
73# define PIPE_BUF 4096 /* amount of buffering in a pipe */
74#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000075
Denis Vlasenko1943aec2009-04-09 14:15:57 +000076
77/* Debug build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +000078#define LEAK_HUNTING 0
79#define BUILD_AS_NOMMU 0
80/* Enable/disable sanity checks. Ok to enable in production,
81 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
82 * Keeping 1 for now even in released versions.
83 */
84#define HUSH_DEBUG 1
Denis Vlasenko1943aec2009-04-09 14:15:57 +000085
86
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +000087#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +000088# undef BB_MMU
89# undef USE_FOR_NOMMU
90# undef USE_FOR_MMU
91# define BB_MMU 0
92# define USE_FOR_NOMMU(...) __VA_ARGS__
93# define USE_FOR_MMU(...)
94#endif
95
Denis Vlasenko61befda2008-11-25 01:36:03 +000096#if defined SINGLE_APPLET_MAIN
97/* STANDALONE does not make sense, and won't compile */
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +000098# undef CONFIG_FEATURE_SH_STANDALONE
99# undef ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000100# undef IF_FEATURE_SH_STANDALONE
101# define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000102# define ENABLE_FEATURE_SH_STANDALONE 0
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000103# define IF_FEATURE_SH_STANDALONE(...)
104# define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denis Vlasenko61befda2008-11-25 01:36:03 +0000105#endif
106
Denis Vlasenko05743d72008-02-10 12:10:08 +0000107#if !ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000108# undef ENABLE_FEATURE_EDITING
109# define ENABLE_FEATURE_EDITING 0
110# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
111# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000112#endif
113
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000114/* Do we support ANY keywords? */
115#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000116# define HAS_KEYWORDS 1
117# define IF_HAS_KEYWORDS(...) __VA_ARGS__
118# define IF_HAS_NO_KEYWORDS(...)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000119#else
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000120# define HAS_KEYWORDS 0
121# define IF_HAS_KEYWORDS(...)
122# define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000123#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000124
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000125/* If you comment out one of these below, it will be #defined later
126 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000127#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000128/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000129#define debug_printf_parse(...) do {} while (0)
130#define debug_print_tree(a, b) do {} while (0)
131#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000132#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000133#define debug_printf_jobs(...) do {} while (0)
134#define debug_printf_expand(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000135#define debug_printf_glob(...) do {} while (0)
136#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000137#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000138#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000139
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000140#define ERR_PTR ((void*)(long)1)
141
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000142#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000143
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000144#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000145
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000146static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
147
148/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000149 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000150 */
151#if !BB_MMU
152typedef struct nommu_save_t {
153 char **new_env;
154 char **old_env;
155 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000156 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000157} nommu_save_t;
158#endif
159
Denis Vlasenko55789c62008-06-18 16:30:42 +0000160/* The descrip member of this structure is only used to make
161 * debugging output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000162static const struct {
163 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000164 signed char default_fd;
165 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000166} redir_table[] = {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000167 { 0, 0, "??" },
Eric Andersen25f27032001-04-26 23:22:31 +0000168 { O_RDONLY, 0, "<" },
169 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
170 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000171 { O_RDONLY, 0, "<<" },
172 { O_CREAT|O_RDWR, 1, "<>" },
173/* Should not be needed. Bogus default_fd helps in debugging */
174/* { O_RDONLY, 77, "<<" }, */
Eric Andersen25f27032001-04-26 23:22:31 +0000175};
176
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000177typedef enum reserved_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000178 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000179#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000180 RES_IF ,
181 RES_THEN ,
182 RES_ELIF ,
183 RES_ELSE ,
184 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000185#endif
186#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000187 RES_FOR ,
188 RES_WHILE ,
189 RES_UNTIL ,
190 RES_DO ,
191 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000192#endif
193#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000194 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000195#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000196#if ENABLE_HUSH_CASE
197 RES_CASE ,
198 /* two pseudo-keywords support contrived "case" syntax: */
199 RES_MATCH , /* "word)" */
200 RES_CASEI , /* "this command is inside CASE" */
201 RES_ESAC ,
202#endif
203 RES_XXXX ,
204 RES_SNTX
Eric Andersen25f27032001-04-26 23:22:31 +0000205} reserved_style;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000206
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000207typedef struct o_string {
208 char *data;
209 int length; /* position where data is appended */
210 int maxlen;
211 /* Protect newly added chars against globbing
212 * (by prepending \ to *, ?, [, \) */
213 smallint o_escape;
214 smallint o_glob;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000215 /* At least some part of the string was inside '' or "",
216 * possibly empty one: word"", wo''rd etc. */
217 smallint o_quoted;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000218 smallint has_empty_slot;
219 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
220} o_string;
221enum {
222 MAYBE_ASSIGNMENT = 0,
223 DEFINITELY_ASSIGNMENT = 1,
224 NOT_ASSIGNMENT = 2,
225 WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
226};
227/* Used for initialization: o_string foo = NULL_O_STRING; */
228#define NULL_O_STRING { NULL }
229
230/* I can almost use ordinary FILE*. Is open_memstream() universally
231 * available? Where is it documented? */
232typedef struct in_str {
233 const char *p;
234 /* eof_flag=1: last char in ->p is really an EOF */
235 char eof_flag; /* meaningless if ->p == NULL */
236 char peek_buf[2];
237#if ENABLE_HUSH_INTERACTIVE
238 smallint promptme;
239 smallint promptmode; /* 0: PS1, 1: PS2 */
240#endif
241 FILE *file;
242 int (*get) (struct in_str *);
243 int (*peek) (struct in_str *);
244} in_str;
245#define i_getch(input) ((input)->get(input))
246#define i_peek(input) ((input)->peek(input))
247
Eric Andersen25f27032001-04-26 23:22:31 +0000248struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000249 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000250 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000251 int rd_fd; /* fd to redirect */
252 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
253 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000254 smallint rd_type; /* (enum redir_type) */
255 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000256 * and subsequently heredoc itself; and rd_dup is a bitmask:
257 * 1: do we need to trim leading tabs?
Denis Vlasenkoed055212009-04-11 10:37:10 +0000258 * 2: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000259 */
Eric Andersen25f27032001-04-26 23:22:31 +0000260};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000261typedef enum redir_type {
262 REDIRECT_INVALID = 0,
263 REDIRECT_INPUT = 1,
264 REDIRECT_OVERWRITE = 2,
265 REDIRECT_APPEND = 3,
266 REDIRECT_HEREDOC = 4,
267 REDIRECT_IO = 5,
268 REDIRECT_HEREDOC2 = 6, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000269
270 REDIRFD_CLOSE = -3,
271 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000272 REDIRFD_TO_FILE = -1,
273 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000274
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000275 HEREDOC_SKIPTABS = 1,
276 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000277} redir_type;
278
Eric Andersen25f27032001-04-26 23:22:31 +0000279
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000280struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000281 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000282 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000283 smallint is_stopped; /* is the command currently running? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000284 smallint grp_type; /* GRP_xxx */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000285#define GRP_NORMAL 0
286#define GRP_SUBSHELL 1
287#if ENABLE_HUSH_FUNCTIONS
288# define GRP_FUNCTION 2
289#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000290 struct pipe *group; /* if non-NULL, this "command" is { list },
291 * ( list ), or a compound statement */
292#if !BB_MMU
293 char *group_as_string;
294#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000295#if ENABLE_HUSH_FUNCTIONS
296 struct function *child_func;
297/* This field is used to prevent a bug here:
298 * while...do f1() {a;}; f1; f1 {b;}; f1; done
299 * When we execute "f1() {a;}" cmd, we create new function and clear
300 * cmd->group, cmd->group_as_string, cmd->argv[0].
301 * when we execute "f1 {b;}", we notice that f1 exists,
302 * and that it's "parent cmd" struct is still "alive",
303 * we put those fields back into cmd->xxx
304 * (struct function has ->parent_cmd ptr to facilitate that).
305 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
306 * Without this trick, loop would execute a;b;b;b;...
307 * instead of correct sequence a;b;a;b;...
308 * When command is freed, it severs the link
309 * (sets ->child_func->parent_cmd to NULL).
310 */
311#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000312 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000313/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
314 * and on execution these are substituted with their values.
315 * Substitution can make _several_ words out of one argv[n]!
316 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000317 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000318 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000319 struct redir_struct *redirects; /* I/O redirections */
320};
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000321/* Is there anything in this command at all? */
322#define IS_NULL_CMD(cmd) \
323 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
324
Eric Andersen25f27032001-04-26 23:22:31 +0000325
326struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000327 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000328 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000329 int alive_cmds; /* number of commands running (not exited) */
330 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000331#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000332 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000333 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000334 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000335#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000336 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000337 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000338 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
339 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000340};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000341typedef enum pipe_style {
342 PIPE_SEQ = 1,
343 PIPE_AND = 2,
344 PIPE_OR = 3,
345 PIPE_BG = 4,
346} pipe_style;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000347/* Is there anything in this pipe at all? */
348#define IS_NULL_PIPE(pi) \
349 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
Eric Andersen25f27032001-04-26 23:22:31 +0000350
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000351/* This holds pointers to the various results of parsing */
352struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000353 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000354 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000355 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000356 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000357 /* last command in pipe (being constructed right now) */
358 struct command *command;
359 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000360 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000361#if !BB_MMU
362 o_string as_string;
363#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000364#if HAS_KEYWORDS
365 smallint ctx_res_w;
366 smallint ctx_inverted; /* "! cmd | cmd" */
367#if ENABLE_HUSH_CASE
368 smallint ctx_dsemicolon; /* ";;" seen */
369#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000370 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
371 int old_flag;
372 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000373 * example: "if pipe1; pipe2; then pipe3; fi"
374 * when we see "if" or "then", we malloc and copy current context,
375 * and make ->stack point to it. then we parse pipeN.
376 * when closing "then" / fi" / whatever is found,
377 * we move list_head into ->stack->command->group,
378 * copy ->stack into current context, and delete ->stack.
379 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000380 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000381 struct parse_context *stack;
382#endif
383};
384
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000385/* On program start, environ points to initial environment.
386 * putenv adds new pointers into it, unsetenv removes them.
387 * Neither of these (de)allocates the strings.
388 * setenv allocates new strings in malloc space and does putenv,
389 * and thus setenv is unusable (leaky) for shell's purposes */
390#define setenv(...) setenv_is_leaky_dont_use()
391struct variable {
392 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000393 char *varstr; /* points to "name=" portion */
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000394 int max_len; /* if > 0, name is part of initial env; else name is malloced */
395 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000396 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000397};
398
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000399enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000400 BC_BREAK = 1,
401 BC_CONTINUE = 2,
402};
403
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000404#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000405struct function {
406 struct function *next;
407 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000408 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000409 struct pipe *body;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000410#if !BB_MMU
411 char *body_as_string;
412#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000413};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000414#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000415
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000416
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000417/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000418/* Sorted roughly by size (smaller offsets == smaller code) */
419struct globals {
420#if ENABLE_HUSH_INTERACTIVE
421 /* 'interactive_fd' is a fd# open to ctty, if we have one
422 * _AND_ if we decided to act interactively */
423 int interactive_fd;
424 const char *PS1;
425 const char *PS2;
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000426#define G_interactive_fd (G.interactive_fd)
427#else
428#define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000429#endif
430#if ENABLE_FEATURE_EDITING
431 line_input_t *line_input_state;
432#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000433 pid_t root_pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000434 pid_t last_bg_pid;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000435#if ENABLE_HUSH_JOB
436 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000437 pid_t saved_tty_pgrp;
438 int last_jobid;
439 struct pipe *job_list;
440 struct pipe *toplevel_list;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000441#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000442 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000443#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000444 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000445#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000446#if ENABLE_HUSH_FUNCTIONS
447 /* 0: outside of a function (or sourced file)
448 * -1: inside of a function, ok to use return builtin
449 * 1: return is invoked, skip all till end of func.
450 */
451 smallint flag_return_in_progress;
452#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000453 smallint fake_mode;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000454 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000455 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000456 smalluint last_exitcode;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000457 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000458 smalluint global_args_malloced;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000459 /* how many non-NULL argv's we have. NB: $# + 1 */
460 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000461 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000462#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000463 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000464#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000465#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000466 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000467 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000468#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000469 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000470 const char *cwd;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000471 struct variable *top_var; /* = &G.shell_ver (set in main()) */
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000472 struct variable shell_ver;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000473#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000474 struct function *top_func;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000475#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000476 /* Signal and trap handling */
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000477// unsigned count_SIGCHLD;
478// unsigned handled_SIGCHLD;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000479 /* which signals have non-DFL handler (even with no traps set)? */
480 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000481 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000482 sigset_t blocked_set;
483 sigset_t inherited_set;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000484#if HUSH_DEBUG
485 unsigned long memleak_value;
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000486 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000487#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000488 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000489};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000490#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000491/* Not #defining name to G.name - this quickly gets unwieldy
492 * (too many defines). Also, I actually prefer to see when a variable
493 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000494#define INIT_G() do { \
495 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
496} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000497
498
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000499/* Function prototypes for builtins */
500static int builtin_cd(char **argv);
501static int builtin_echo(char **argv);
502static int builtin_eval(char **argv);
503static int builtin_exec(char **argv);
504static int builtin_exit(char **argv);
505static int builtin_export(char **argv);
506#if ENABLE_HUSH_JOB
507static int builtin_fg_bg(char **argv);
508static int builtin_jobs(char **argv);
509#endif
510#if ENABLE_HUSH_HELP
511static int builtin_help(char **argv);
512#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000513#if HUSH_DEBUG
514static int builtin_memleak(char **argv);
515#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000516static int builtin_pwd(char **argv);
517static int builtin_read(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000518static int builtin_set(char **argv);
519static int builtin_shift(char **argv);
520static int builtin_source(char **argv);
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000521static int builtin_test(char **argv);
522static int builtin_trap(char **argv);
523static int builtin_true(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000524static int builtin_umask(char **argv);
525static int builtin_unset(char **argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +0000526static int builtin_wait(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000527#if ENABLE_HUSH_LOOPS
528static int builtin_break(char **argv);
529static int builtin_continue(char **argv);
530#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000531#if ENABLE_HUSH_FUNCTIONS
532static int builtin_return(char **argv);
533#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000534
535/* Table of built-in functions. They can be forked or not, depending on
536 * context: within pipes, they fork. As simple commands, they do not.
537 * When used in non-forking context, they can change global variables
538 * in the parent shell process. If forked, of course they cannot.
539 * For example, 'unset foo | whatever' will parse and run, but foo will
540 * still be set at the end. */
541struct built_in_command {
542 const char *cmd;
543 int (*function)(char **argv);
544#if ENABLE_HUSH_HELP
545 const char *descr;
546#define BLTIN(cmd, func, help) { cmd, func, help }
547#else
548#define BLTIN(cmd, func, help) { cmd, func }
549#endif
550};
551
552/* For now, echo and test are unconditionally enabled.
553 * Maybe make it configurable? */
554static const struct built_in_command bltins[] = {
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000555 BLTIN("." , builtin_source , "Run commands in a file"),
556 BLTIN(":" , builtin_true , "No-op"),
557 BLTIN("[" , builtin_test , "Test condition"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000558#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000559 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000560#endif
561#if ENABLE_HUSH_LOOPS
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000562 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000563#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000564 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000565#if ENABLE_HUSH_LOOPS
566 BLTIN("continue", builtin_continue, "Start new loop iteration"),
567#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000568 BLTIN("echo" , builtin_echo , "Write to stdout"),
569 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
570 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
571 BLTIN("exit" , builtin_exit , "Exit"),
572 BLTIN("export" , builtin_export , "Set environment variable"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000573#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000574 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000575#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000576#if ENABLE_HUSH_HELP
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000577 BLTIN("help" , builtin_help , "List shell built-in commands"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000578#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000579#if ENABLE_HUSH_JOB
580 BLTIN("jobs" , builtin_jobs , "List active jobs"),
581#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000582#if HUSH_DEBUG
583 BLTIN("memleak" , builtin_memleak , "Debug tool"),
584#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000585 BLTIN("pwd" , builtin_pwd , "Print current directory"),
586 BLTIN("read" , builtin_read , "Input environment variable"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000587#if ENABLE_HUSH_FUNCTIONS
588 BLTIN("return" , builtin_return , "Return from a function"),
589#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000590 BLTIN("set" , builtin_set , "Set/unset shell local variables"),
591 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
592 BLTIN("test" , builtin_test , "Test condition"),
593 BLTIN("trap" , builtin_trap , "Trap signals"),
594// BLTIN("ulimit" , builtin_return , "Control resource limits"),
595 BLTIN("umask" , builtin_umask , "Set file creation mask"),
596 BLTIN("unset" , builtin_unset , "Unset environment variable"),
597 BLTIN("wait" , builtin_wait , "Wait for process"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000598};
599
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000600
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000601/* Debug printouts.
602 */
603#if HUSH_DEBUG
604/* prevent disasters with G.debug_indent < 0 */
605# define indent() fprintf(stderr, "%*s", (G.debug_indent * 2) & 0xff, "")
606# define debug_enter() (G.debug_indent++)
607# define debug_leave() (G.debug_indent--)
608#else
609# define indent() ((void)0)
610# define debug_enter() ((void)0)
611# define debug_leave() ((void)0)
612#endif
613
614#ifndef debug_printf
615# define debug_printf(...) (indent(), fprintf(stderr, __VA_ARGS__))
616#endif
617
618#ifndef debug_printf_parse
619# define debug_printf_parse(...) (indent(), fprintf(stderr, __VA_ARGS__))
620#endif
621
622#ifndef debug_printf_exec
623#define debug_printf_exec(...) (indent(), fprintf(stderr, __VA_ARGS__))
624#endif
625
626#ifndef debug_printf_env
627# define debug_printf_env(...) (indent(), fprintf(stderr, __VA_ARGS__))
628#endif
629
630#ifndef debug_printf_jobs
631# define debug_printf_jobs(...) (indent(), fprintf(stderr, __VA_ARGS__))
632# define DEBUG_JOBS 1
633#else
634# define DEBUG_JOBS 0
635#endif
636
637#ifndef debug_printf_expand
638# define debug_printf_expand(...) (indent(), fprintf(stderr, __VA_ARGS__))
639# define DEBUG_EXPAND 1
640#else
641# define DEBUG_EXPAND 0
642#endif
643
644#ifndef debug_printf_glob
645# define debug_printf_glob(...) (indent(), fprintf(stderr, __VA_ARGS__))
646# define DEBUG_GLOB 1
647#else
648# define DEBUG_GLOB 0
649#endif
650
651#ifndef debug_printf_list
652# define debug_printf_list(...) (indent(), fprintf(stderr, __VA_ARGS__))
653#endif
654
655#ifndef debug_printf_subst
656# define debug_printf_subst(...) (indent(), fprintf(stderr, __VA_ARGS__))
657#endif
658
659#ifndef debug_printf_clean
660# define debug_printf_clean(...) (indent(), fprintf(stderr, __VA_ARGS__))
661# define DEBUG_CLEAN 1
662#else
663# define DEBUG_CLEAN 0
664#endif
665
666#if DEBUG_EXPAND
667static void debug_print_strings(const char *prefix, char **vv)
668{
669 indent();
670 fprintf(stderr, "%s:\n", prefix);
671 while (*vv)
672 fprintf(stderr, " '%s'\n", *vv++);
673}
674#else
675#define debug_print_strings(prefix, vv) ((void)0)
676#endif
677
678
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000679/* Leak hunting. Use hush_leaktool.sh for post-processing.
680 */
681#if LEAK_HUNTING
682static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000683{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000684 void *ptr = xmalloc((size + 0xff) & ~0xff);
685 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
686 return ptr;
687}
688static void *xxrealloc(int lineno, void *ptr, size_t size)
689{
690 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
691 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
692 return ptr;
693}
694static char *xxstrdup(int lineno, const char *str)
695{
696 char *ptr = xstrdup(str);
697 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
698 return ptr;
699}
700static void xxfree(void *ptr)
701{
702 fdprintf(2, "free %p\n", ptr);
703 free(ptr);
704}
705#define xmalloc(s) xxmalloc(__LINE__, s)
706#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
707#define xstrdup(s) xxstrdup(__LINE__, s)
708#define free(p) xxfree(p)
709#endif
710
711
712/* Syntax and runtime errors. They always abort scripts.
713 * In interactive use they usually discard unparsed and/or unexecuted commands
714 * and return to the prompt.
715 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
716 */
717#if HUSH_DEBUG < 2
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000718# define die_if_script(lineno, fmt...) die_if_script(fmt)
719# define syntax_error(lineno, msg) syntax_error(msg)
720# define syntax_error_at(lineno, msg) syntax_error_at(msg)
721# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
722# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
723# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000724#endif
725
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000726static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000727{
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000728 va_list p;
729
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000730#if HUSH_DEBUG >= 2
731 bb_error_msg("hush.c:%u", lineno);
732#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000733 va_start(p, fmt);
734 bb_verror_msg(fmt, p, NULL);
735 va_end(p);
736 if (!G_interactive_fd)
737 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +0000738}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000739
740static void syntax_error(unsigned lineno, const char *msg)
741{
742 if (msg)
743 die_if_script(lineno, "syntax error: %s", msg);
744 else
745 die_if_script(lineno, "syntax error", NULL);
746}
747
748static void syntax_error_at(unsigned lineno, const char *msg)
749{
750 die_if_script(lineno, "syntax error at '%s'", msg);
751}
752
Denis Vlasenko0b677d82009-04-10 13:49:10 +0000753/* It so happens that all such cases are totally fatal
754 * even if shell is interactive: EOF while looking for closing
755 * delimiter. There is nowhere to read stuff from after that,
756 * it's EOF! The only choice is to terminate.
757 */
758static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN;
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000759static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000760{
761 char msg[2];
762 msg[0] = ch;
763 msg[1] = '\0';
764 die_if_script(lineno, "syntax error: unterminated %s", msg);
Denis Vlasenko0b677d82009-04-10 13:49:10 +0000765 xfunc_die();
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000766}
767
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000768static void syntax_error_unterm_str(unsigned lineno, const char *s)
769{
770 die_if_script(lineno, "syntax error: unterminated %s", s);
771}
772
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000773static void syntax_error_unexpected_ch(unsigned lineno, char ch)
774{
775 char msg[2];
776 msg[0] = ch;
777 msg[1] = '\0';
778 die_if_script(lineno, "syntax error: unexpected %s", msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000779}
780
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000781#if HUSH_DEBUG < 2
782# undef die_if_script
783# undef syntax_error
784# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000785# undef syntax_error_unterm_ch
786# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000787# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000788#else
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000789# define die_if_script(fmt...) die_if_script(__LINE__, fmt)
790# define syntax_error(msg) syntax_error(__LINE__, msg)
791# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
792# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
793# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
794# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000795#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000796
Denis Vlasenko552433b2009-04-04 19:29:21 +0000797
Mike Frysinger67c1c7b2009-04-24 06:26:18 +0000798#if ENABLE_HUSH_INTERACTIVE
799static void cmdedit_update_prompt(void);
800#else
801# define cmdedit_update_prompt()
802#endif
803
804
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000805/* Utility functions
806 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000807static int glob_needed(const char *s)
808{
809 while (*s) {
810 if (*s == '\\')
811 s++;
812 if (*s == '*' || *s == '[' || *s == '?')
813 return 1;
814 s++;
815 }
816 return 0;
817}
818
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000819static int is_well_formed_var_name(const char *s, char terminator)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000820{
Denis Vlasenkod4981312008-07-31 10:34:48 +0000821 if (!s || !(isalpha(*s) || *s == '_'))
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000822 return 0;
823 s++;
824 while (isalnum(*s) || *s == '_')
825 s++;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000826 return *s == terminator;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000827}
828
Denis Vlasenko55789c62008-06-18 16:30:42 +0000829/* Replace each \x with x in place, return ptr past NUL. */
830static char *unbackslash(char *src)
831{
832 char *dst = src;
833 while (1) {
834 if (*src == '\\')
835 src++;
836 if ((*dst++ = *src++) == '\0')
837 break;
838 }
839 return dst;
840}
841
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000842static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000843{
844 int i;
845 unsigned count1;
846 unsigned count2;
847 char **v;
848
849 v = strings;
850 count1 = 0;
851 if (v) {
852 while (*v) {
853 count1++;
854 v++;
855 }
856 }
857 count2 = 0;
858 v = add;
859 while (*v) {
860 count2++;
861 v++;
862 }
863 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
864 v[count1 + count2] = NULL;
865 i = count2;
866 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000867 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000868 return v;
869}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000870#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000871static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
872{
873 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
874 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
875 return ptr;
876}
877#define add_strings_to_strings(strings, add, need_to_dup) \
878 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
879#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000880
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000881static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000882{
883 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000884 v[0] = add;
885 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000886 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000887}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000888#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000889static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
890{
891 char **ptr = add_string_to_strings(strings, add);
892 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
893 return ptr;
894}
895#define add_string_to_strings(strings, add) \
896 xx_add_string_to_strings(__LINE__, strings, add)
897#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000898
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000899static void putenv_all(char **strings)
900{
901 if (!strings)
902 return;
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000903 while (*strings) {
904 debug_printf_env("putenv '%s'\n", *strings);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000905 putenv(*strings++);
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000906 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000907}
908
909static char **putenv_all_and_save_old(char **strings)
910{
911 char **old = NULL;
912 char **s = strings;
913
914 if (!strings)
915 return old;
916 while (*strings) {
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000917 char *v, *eq;
918
919 eq = strchr(*strings, '=');
920 if (eq) {
921 *eq = '\0';
922 v = getenv(*strings);
923 *eq = '=';
924 if (v) {
925 /* v points to VAL in VAR=VAL, go back to VAR */
926 v -= (eq - *strings) + 1;
927 old = add_string_to_strings(old, v);
928 }
929 }
930 strings++;
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000931 }
932 putenv_all(s);
933 return old;
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000934}
935
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000936static void free_strings_and_unsetenv(char **strings, int unset)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000937{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000938 char **v;
939
940 if (!strings)
941 return;
942
943 v = strings;
944 while (*v) {
945 if (unset) {
Denis Vlasenko76ddc2e2008-12-30 05:05:31 +0000946 debug_printf_env("unsetenv '%s'\n", *v);
947 bb_unsetenv(*v);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000948 }
949 free(*v++);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000950 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000951 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000952}
953
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000954static void free_strings(char **strings)
Denis Vlasenko76d50412008-06-10 16:19:39 +0000955{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000956 free_strings_and_unsetenv(strings, 0);
Denis Vlasenko76d50412008-06-10 16:19:39 +0000957}
Denis Vlasenko76d50412008-06-10 16:19:39 +0000958
959
Denis Vlasenko270b1c32009-04-17 18:54:50 +0000960/* Helpers for setting new $n and restoring them back
961 */
962typedef struct save_arg_t {
963 char *sv_argv0;
964 char **sv_g_argv;
965 int sv_g_argc;
966 smallint sv_g_malloced;
967} save_arg_t;
968
969static void save_and_replace_G_args(save_arg_t *sv, char **argv)
970{
971 int n;
972
973 sv->sv_argv0 = argv[0];
974 sv->sv_g_argv = G.global_argv;
975 sv->sv_g_argc = G.global_argc;
976 sv->sv_g_malloced = G.global_args_malloced;
977
978 argv[0] = G.global_argv[0]; /* retain $0 */
979 G.global_argv = argv;
980 G.global_args_malloced = 0;
981
982 n = 1;
983 while (*++argv)
984 n++;
985 G.global_argc = n;
986}
987
988static void restore_G_args(save_arg_t *sv, char **argv)
989{
990 char **pp;
991
992 if (G.global_args_malloced) {
993 /* someone ran "set -- arg1 arg2 ...", undo */
994 pp = G.global_argv;
995 while (*++pp) /* note: does not free $0 */
996 free(*pp);
997 free(G.global_argv);
998 }
999 argv[0] = sv->sv_argv0;
1000 G.global_argv = sv->sv_g_argv;
1001 G.global_argc = sv->sv_g_argc;
1002 G.global_args_malloced = sv->sv_g_malloced;
1003}
1004
1005
Denis Vlasenkod5762932009-03-31 11:22:57 +00001006/* Basic theory of signal handling in shell
1007 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001008 * This does not describe what hush does, rather, it is current understanding
1009 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001010 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1011 *
1012 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1013 * is finished or backgrounded. It is the same in interactive and
1014 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001015 * a user trap handler is installed or a shell special one is in effect.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001016 * ^C or ^Z from keyboard seem to execute "at once" because it usually
1017 * backgrounds (i.e. stops) or kills all members of currently running
1018 * pipe.
1019 *
1020 * Wait builtin in interruptible by signals for which user trap is set
1021 * or by SIGINT in interactive shell.
1022 *
1023 * Trap handlers will execute even within trap handlers. (right?)
1024 *
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001025 * User trap handlers are forgotten when subshell ("(cmd)") is entered.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001026 *
1027 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001028 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001029 *
1030 * Commands run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001031 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001032 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001033 * Ordinary commands have signals set to SIG_IGN/DFL set as inherited
1034 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001035 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001036 * Siganls which differ from SIG_DFL action
1037 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001038 *
1039 * SIGQUIT: ignore
1040 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001041 * SIGHUP (interactive):
1042 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001043 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001044 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1045 * that all pipe members are stopped. Try this in bash:
1046 * while :; do :; done - ^Z does not background it
1047 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001048 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001049 * of the command line, show prompt. NB: ^C does not send SIGINT
1050 * to interactive shell while shell is waiting for a pipe,
1051 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001052 * Example 1: this waits 5 sec, but does not execute ls:
1053 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1054 * Example 2: this does not wait and does not execute ls:
1055 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1056 * Example 3: this does not wait 5 sec, but executes ls:
1057 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001058 *
1059 * (What happens to signals which are IGN on shell start?)
1060 * (What happens with signal mask on shell start?)
1061 *
1062 * Implementation in hush
1063 * ======================
1064 * We use in-kernel pending signal mask to determine which signals were sent.
1065 * We block all signals which we don't want to take action immediately,
1066 * i.e. we block all signals which need to have special handling as described
1067 * above, and all signals which have traps set.
1068 * After each pipe execution, we extract any pending signals via sigtimedwait()
1069 * and act on them.
1070 *
1071 * unsigned non_DFL_mask: a mask of such "special" signals
1072 * sigset_t blocked_set: current blocked signal set
1073 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001074 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +00001075 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001076 * "trap 'cmd' SIGxxx":
1077 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001078 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001079 * unblock signals with special interactive handling
1080 * (child shell is not interactive),
1081 * unset all traps (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001082 * after [v]fork, if we plan to exec:
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001083 * POSIX says pending signal mask is cleared in child - no need to clear it.
1084 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001085 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001086 * Note: as a result, we do not use signal handlers much. The only uses
1087 * are to count SIGCHLDs [disabled - bug somewhere, + bloat]
1088 * and to restore tty pgrp on signal-induced exit.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001089 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001090enum {
1091 SPECIAL_INTERACTIVE_SIGS = 0
1092#if ENABLE_HUSH_JOB
1093 | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001094 | (1 << SIGHUP)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001095#endif
1096 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001097 | (1 << SIGINT)
1098};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001099
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001100//static void SIGCHLD_handler(int sig UNUSED_PARAM)
1101//{
1102// G.count_SIGCHLD++;
1103//}
1104
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001105#if ENABLE_HUSH_JOB
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001106
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001107/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
1108#define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001109/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001110#define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
1111
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001112/* Restores tty foreground process group, and exits.
1113 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001114 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001115 * or called directly with -EXITCODE.
1116 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001117static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001118static void sigexit(int sig)
1119{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001120 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001121 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001122
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001123 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001124 * tty pgrp then, only top-level shell process does that */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001125 if (G_interactive_fd && getpid() == G.root_pid)
1126 tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001127
1128 /* Not a signal, just exit */
1129 if (sig <= 0)
1130 _exit(- sig);
1131
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001132 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001133}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001134#else
1135
1136#define disable_restore_tty_pgrp_on_exit() ((void)0)
1137#define enable_restore_tty_pgrp_on_exit() ((void)0)
1138
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001139#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001140
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001141/* Restores tty foreground process group, and exits. */
1142static void hush_exit(int exitcode) NORETURN;
1143static void hush_exit(int exitcode)
1144{
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001145 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1146 /* Prevent recursion:
1147 * trap "echo Hi; exit" EXIT; exit
1148 */
1149 char *argv[] = { NULL, G.traps[0], NULL };
1150 G.traps[0] = NULL;
1151 G.exiting = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001152 builtin_eval(argv);
1153 free(argv[1]);
1154 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001155
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001156#if ENABLE_HUSH_JOB
1157 fflush(NULL); /* flush all streams */
1158 sigexit(- (exitcode & 0xff));
1159#else
1160 exit(exitcode);
1161#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001162}
1163
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001164static int check_and_run_traps(int sig)
1165{
1166 static const struct timespec zero_timespec = { 0, 0 };
1167 smalluint save_rcode;
1168 int last_sig = 0;
1169
1170 if (sig)
1171 goto jump_in;
1172 while (1) {
1173 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
1174 if (sig <= 0)
1175 break;
1176 jump_in:
1177 last_sig = sig;
1178 if (G.traps && G.traps[sig]) {
1179 if (G.traps[sig][0]) {
1180 /* We have user-defined handler */
1181 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
1182 save_rcode = G.last_exitcode;
1183 builtin_eval(argv);
1184 free(argv[1]);
1185 G.last_exitcode = save_rcode;
1186 } /* else: "" trap, ignoring signal */
1187 continue;
1188 }
1189 /* not a trap: special action */
1190 switch (sig) {
1191// case SIGCHLD:
1192// G.count_SIGCHLD++;
1193// break;
1194 case SIGINT:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001195 /* Builtin was ^C'ed, make it look prettier: */
1196 bb_putchar('\n');
1197 G.flag_SIGINT = 1;
1198 break;
1199#if ENABLE_HUSH_JOB
1200 case SIGHUP: {
1201 struct pipe *job;
1202 /* bash is observed to signal whole process groups,
1203 * not individual processes */
1204 for (job = G.job_list; job; job = job->next) {
1205 if (job->pgrp <= 0)
1206 continue;
1207 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1208 if (kill(- job->pgrp, SIGHUP) == 0)
1209 kill(- job->pgrp, SIGCONT);
1210 }
1211 sigexit(SIGHUP);
1212 }
1213#endif
1214 default: /* ignored: */
1215 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
1216 break;
1217 }
1218 }
1219 return last_sig;
1220}
1221
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001222
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001223static const char *set_cwd(void)
1224{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001225 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1226 * we must not try to free(bb_msg_unknown) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00001227 if (G.cwd == bb_msg_unknown)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001228 G.cwd = NULL;
Denis Vlasenko87a86552008-07-29 19:43:10 +00001229 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1230 if (!G.cwd)
1231 G.cwd = bb_msg_unknown;
1232 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001233}
1234
Denis Vlasenko83506862007-11-23 13:11:42 +00001235
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001236/* Get/check local shell variables */
1237static struct variable *get_local_var(const char *name)
1238{
1239 struct variable *cur;
1240 int len;
1241
1242 if (!name)
1243 return NULL;
1244 len = strlen(name);
1245 for (cur = G.top_var; cur; cur = cur->next) {
1246 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
1247 return cur;
1248 }
1249 return NULL;
1250}
1251
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001252static const char *get_local_var_value(const char *src)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001253{
1254 struct variable *var = get_local_var(src);
1255 if (var)
1256 return strchr(var->varstr, '=') + 1;
1257 return NULL;
1258}
1259
1260/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001261 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001262 * flg_export:
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001263 * 0: do not change export flag
1264 * (if creating new variable, flag will be 0)
1265 * 1: set export flag and putenv the variable
1266 * -1: clear export flag and unsetenv the variable
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001267 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001268 */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001269#if BB_MMU
1270#define set_local_var(str, flg_export, flg_read_only) \
1271 set_local_var(str, flg_export)
1272#endif
1273static int set_local_var(char *str, int flg_export, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001274{
1275 struct variable *cur;
Denis Vlasenko950bd722009-04-21 11:23:56 +00001276 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001277 int name_len;
1278
Denis Vlasenko950bd722009-04-21 11:23:56 +00001279 eq_sign = strchr(str, '=');
1280 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001281 free(str);
1282 return -1;
1283 }
1284
Denis Vlasenko950bd722009-04-21 11:23:56 +00001285 name_len = eq_sign - str + 1; /* including '=' */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001286 cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
1287 while (1) {
1288 if (strncmp(cur->varstr, str, name_len) != 0) {
1289 if (!cur->next) {
1290 /* Bail out. Note that now cur points
1291 * to last var in linked list */
1292 break;
1293 }
1294 cur = cur->next;
1295 continue;
1296 }
1297 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001298 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001299#if !BB_MMU
1300 if (!flg_read_only)
1301#endif
1302 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001303 free(str);
1304 return -1;
1305 }
Denis Vlasenko950bd722009-04-21 11:23:56 +00001306 if (flg_export == -1) {
1307 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1308 *eq_sign = '\0';
1309 unsetenv(str);
1310 *eq_sign = '=';
1311 }
1312 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001313 free_and_exp:
1314 free(str);
1315 goto exp;
1316 }
1317 if (cur->max_len >= strlen(str)) {
1318 /* This one is from startup env, reuse space */
1319 strcpy(cur->varstr, str);
1320 goto free_and_exp;
1321 }
1322 /* max_len == 0 signifies "malloced" var, which we can
1323 * (and has to) free */
1324 if (!cur->max_len)
1325 free(cur->varstr);
1326 cur->max_len = 0;
1327 goto set_str_and_exp;
1328 }
1329
1330 /* Not found - create next variable struct */
1331 cur->next = xzalloc(sizeof(*cur));
1332 cur = cur->next;
1333
1334 set_str_and_exp:
1335 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001336#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001337 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001338#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001339 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001340 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001341 cur->flg_export = 1;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001342 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1343 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001344 if (cur->flg_export) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001345 if (flg_export == -1) {
1346 cur->flg_export = 0;
1347 /* unsetenv was already done */
1348 } else {
1349 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1350 return putenv(cur->varstr);
1351 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001352 }
1353 return 0;
1354}
1355
Mike Frysingerd690f682009-03-30 06:50:54 +00001356static int unset_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001357{
1358 struct variable *cur;
1359 struct variable *prev = prev; /* for gcc */
1360 int name_len;
1361
1362 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001363 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001364 name_len = strlen(name);
1365 cur = G.top_var;
1366 while (cur) {
1367 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1368 if (cur->flg_read_only) {
1369 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001370 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001371 }
1372 /* prev is ok to use here because 1st variable, HUSH_VERSION,
1373 * is ro, and we cannot reach this code on the 1st pass */
1374 prev->next = cur->next;
1375 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1376 bb_unsetenv(cur->varstr);
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001377 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1378 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001379 if (!cur->max_len)
1380 free(cur->varstr);
1381 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001382 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001383 }
1384 prev = cur;
1385 cur = cur->next;
1386 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001387 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001388}
1389
Mike Frysinger98c52642009-04-02 10:02:37 +00001390#if ENABLE_SH_MATH_SUPPORT
1391#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1392#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1393static char *endofname(const char *name)
1394{
1395 char *p;
1396
1397 p = (char *) name;
1398 if (!is_name(*p))
1399 return p;
1400 while (*++p) {
1401 if (!is_in_name(*p))
1402 break;
1403 }
1404 return p;
1405}
1406
1407static void arith_set_local_var(const char *name, const char *val, int flags)
1408{
1409 /* arith code doesnt malloc space, so do it for it */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001410 char *var = xasprintf("%s=%s", name, val);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001411 set_local_var(var, flags, 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001412}
1413#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001414
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001415
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001416/*
1417 * in_str support
1418 */
1419static int static_get(struct in_str *i)
1420{
1421 int ch = *i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001422 if (ch != '\0')
1423 return ch;
1424 i->p--;
1425 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001426}
1427
1428static int static_peek(struct in_str *i)
1429{
1430 return *i->p;
1431}
1432
1433#if ENABLE_HUSH_INTERACTIVE
1434
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001435static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001436{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001437 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001438 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00001439 if (G.PS1 == NULL)
1440 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001441 G.PS2 = get_local_var_value("PS2");
Mike Frysingerec2c6552009-03-28 12:24:44 +00001442 } else
1443 G.PS1 = NULL;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001444 if (G.PS2 == NULL)
1445 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001446}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001447
1448static const char* setup_prompt_string(int promptmode)
1449{
1450 const char *prompt_str;
1451 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001452 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1453 /* Set up the prompt */
1454 if (promptmode == 0) { /* PS1 */
1455 free((char*)G.PS1);
1456 G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#');
1457 prompt_str = G.PS1;
1458 } else
1459 prompt_str = G.PS2;
1460 } else
1461 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001462 debug_printf("result '%s'\n", prompt_str);
1463 return prompt_str;
1464}
1465
1466static void get_user_input(struct in_str *i)
1467{
1468 int r;
1469 const char *prompt_str;
1470
1471 prompt_str = setup_prompt_string(i->promptmode);
1472#if ENABLE_FEATURE_EDITING
1473 /* Enable command line editing only while a command line
1474 * is actually being read */
1475 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001476 G.flag_SIGINT = 0;
1477 /* buglet: SIGINT will not make new prompt to appear _at once_,
1478 * only after <Enter>. (^C will work) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001479 r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001480 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001481 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001482 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001483 i->eof_flag = (r < 0);
1484 if (i->eof_flag) { /* EOF/error detected */
1485 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1486 G.user_input_buf[1] = '\0';
1487 }
1488#else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001489 do {
1490 G.flag_SIGINT = 0;
1491 fputs(prompt_str, stdout);
1492 fflush(stdout);
1493 G.user_input_buf[0] = r = fgetc(i->file);
1494 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001495//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001496 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001497 i->eof_flag = (r == EOF);
1498#endif
1499 i->p = G.user_input_buf;
1500}
1501
1502#endif /* INTERACTIVE */
1503
1504/* This is the magic location that prints prompts
1505 * and gets data back from the user */
1506static int file_get(struct in_str *i)
1507{
1508 int ch;
1509
1510 /* If there is data waiting, eat it up */
1511 if (i->p && *i->p) {
1512#if ENABLE_HUSH_INTERACTIVE
1513 take_cached:
1514#endif
1515 ch = *i->p++;
1516 if (i->eof_flag && !*i->p)
1517 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001518 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001519 } else {
1520 /* need to double check i->file because we might be doing something
1521 * more complicated by now, like sourcing or substituting. */
1522#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001523 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001524 do {
1525 get_user_input(i);
1526 } while (!*i->p); /* need non-empty line */
1527 i->promptmode = 1; /* PS2 */
1528 i->promptme = 0;
1529 goto take_cached;
1530 }
1531#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001532 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001533 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001534 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001535#if ENABLE_HUSH_INTERACTIVE
1536 if (ch == '\n')
1537 i->promptme = 1;
1538#endif
1539 return ch;
1540}
1541
Denis Vlasenko913a2012009-04-05 22:17:04 +00001542/* All callers guarantee this routine will never
1543 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001544 */
1545static int file_peek(struct in_str *i)
1546{
1547 int ch;
1548 if (i->p && *i->p) {
1549 if (i->eof_flag && !i->p[1])
1550 return EOF;
1551 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001552 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001553 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001554 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001555 i->eof_flag = (ch == EOF);
1556 i->peek_buf[0] = ch;
1557 i->peek_buf[1] = '\0';
1558 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001559 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001560 return ch;
1561}
1562
1563static void setup_file_in_str(struct in_str *i, FILE *f)
1564{
1565 i->peek = file_peek;
1566 i->get = file_get;
1567#if ENABLE_HUSH_INTERACTIVE
1568 i->promptme = 1;
1569 i->promptmode = 0; /* PS1 */
1570#endif
1571 i->file = f;
1572 i->p = NULL;
1573}
1574
1575static void setup_string_in_str(struct in_str *i, const char *s)
1576{
1577 i->peek = static_peek;
1578 i->get = static_get;
1579#if ENABLE_HUSH_INTERACTIVE
1580 i->promptme = 1;
1581 i->promptmode = 0; /* PS1 */
1582#endif
1583 i->p = s;
1584 i->eof_flag = 0;
1585}
1586
1587
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001588/*
1589 * o_string support
1590 */
1591#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001592
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001593static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001594{
1595 o->length = 0;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001596 o->o_quoted = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001597 if (o->data)
1598 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001599}
1600
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001601static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001602{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001603 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001604 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001605}
1606
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001607static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1608{
1609 free(o->data);
1610}
1611
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001612static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001613{
1614 if (o->length + len > o->maxlen) {
1615 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1616 o->data = xrealloc(o->data, 1 + o->maxlen);
1617 }
1618}
1619
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001620static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001621{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001622 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1623 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001624 o->data[o->length] = ch;
1625 o->length++;
1626 o->data[o->length] = '\0';
1627}
1628
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001629static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001630{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001631 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001632 memcpy(&o->data[o->length], str, len);
1633 o->length += len;
1634 o->data[o->length] = '\0';
1635}
1636
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001637#if !BB_MMU
1638static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00001639{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001640 o_addblock(o, str, strlen(str));
1641}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001642static void nommu_addchr(o_string *o, int ch)
1643{
1644 if (o)
1645 o_addchr(o, ch);
1646}
1647#else
1648#define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001649#endif
1650
1651static void o_addstr_with_NUL(o_string *o, const char *str)
1652{
1653 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00001654}
1655
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001656static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
Denis Vlasenko55789c62008-06-18 16:30:42 +00001657{
1658 while (len) {
1659 o_addchr(o, *str);
1660 if (*str++ == '\\'
1661 && (*str != '*' && *str != '?' && *str != '[')
1662 ) {
1663 o_addchr(o, '\\');
1664 }
1665 len--;
1666 }
1667}
1668
Eric Andersen25f27032001-04-26 23:22:31 +00001669/* My analysis of quoting semantics tells me that state information
1670 * is associated with a destination, not a source.
1671 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001672static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001673{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001674 int sz = 1;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001675 char *found = strchr("*?[\\", ch);
1676 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001677 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001678 o_grow_by(o, sz);
1679 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001680 o->data[o->length] = '\\';
1681 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001682 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001683 o->data[o->length] = ch;
1684 o->length++;
1685 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001686}
1687
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001688static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001689{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001690 int sz = 1;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001691 if (o->o_escape && strchr("*?[\\", ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001692 sz++;
1693 o->data[o->length] = '\\';
1694 o->length++;
1695 }
1696 o_grow_by(o, sz);
1697 o->data[o->length] = ch;
1698 o->length++;
1699 o->data[o->length] = '\0';
1700}
1701
1702static void o_addQstr(o_string *o, const char *str, int len)
1703{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001704 if (!o->o_escape) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001705 o_addblock(o, str, len);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001706 return;
1707 }
1708 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001709 char ch;
1710 int sz;
1711 int ordinary_cnt = strcspn(str, "*?[\\");
1712 if (ordinary_cnt > len) /* paranoia */
1713 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001714 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001715 if (ordinary_cnt == len)
1716 return;
1717 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001718 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001719
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001720 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001721 sz = 1;
1722 if (ch) { /* it is necessarily one of "*?[\\" */
1723 sz++;
1724 o->data[o->length] = '\\';
1725 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001726 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001727 o_grow_by(o, sz);
1728 o->data[o->length] = ch;
1729 o->length++;
1730 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001731 }
1732}
1733
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001734/* A special kind of o_string for $VAR and `cmd` expansion.
1735 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001736 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001737 * list[i] contains an INDEX (int!) into this string data.
1738 * It means that if list[] needs to grow, data needs to be moved higher up
1739 * but list[i]'s need not be modified.
1740 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001741 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001742 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1743 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001744#if DEBUG_EXPAND || DEBUG_GLOB
1745static void debug_print_list(const char *prefix, o_string *o, int n)
1746{
1747 char **list = (char**)o->data;
1748 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1749 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001750
1751 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001752 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1753 prefix, list, n, string_start, o->length, o->maxlen);
1754 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001755 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001756 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1757 o->data + (int)list[i] + string_start,
1758 o->data + (int)list[i] + string_start);
1759 i++;
1760 }
1761 if (n) {
1762 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001763 indent();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001764 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001765 }
1766}
1767#else
1768#define debug_print_list(prefix, o, n) ((void)0)
1769#endif
1770
1771/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1772 * in list[n] so that it points past last stored byte so far.
1773 * It returns n+1. */
1774static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001775{
1776 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001777 int string_start;
1778 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001779
1780 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001781 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1782 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001783 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001784 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001785 /* list[n] points to string_start, make space for 16 more pointers */
1786 o->maxlen += 0x10 * sizeof(list[0]);
1787 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00001788 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001789 memmove(list + n + 0x10, list + n, string_len);
1790 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001791 } else {
1792 debug_printf_list("list[%d]=%d string_start=%d\n",
1793 n, string_len, string_start);
1794 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001795 } else {
1796 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001797 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1798 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001799 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
1800 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001801 o->has_empty_slot = 0;
1802 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001803 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001804 return n + 1;
1805}
1806
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001807/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001808static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001809{
1810 char **list = (char**)o->data;
1811 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1812
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001813 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001814}
1815
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001816/* o_glob performs globbing on last list[], saving each result
Denis Vlasenko55789c62008-06-18 16:30:42 +00001817 * as a new list[]. */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001818static int o_glob(o_string *o, int n)
1819{
1820 glob_t globdata;
1821 int gr;
1822 char *pattern;
1823
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001824 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001825 if (!o->data)
1826 return o_save_ptr_helper(o, n);
1827 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001828 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001829 if (!glob_needed(pattern)) {
1830 literal:
1831 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001832 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001833 return o_save_ptr_helper(o, n);
1834 }
1835
1836 memset(&globdata, 0, sizeof(globdata));
1837 gr = glob(pattern, 0, NULL, &globdata);
1838 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1839 if (gr == GLOB_NOSPACE)
1840 bb_error_msg_and_die("out of memory during glob");
1841 if (gr == GLOB_NOMATCH) {
1842 globfree(&globdata);
1843 goto literal;
1844 }
1845 if (gr != 0) { /* GLOB_ABORTED ? */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00001846 /* TODO: testcase for bad glob pattern behavior */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001847 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1848 }
1849 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1850 char **argv = globdata.gl_pathv;
1851 o->length = pattern - o->data; /* "forget" pattern */
1852 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001853 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001854 n = o_save_ptr_helper(o, n);
1855 argv++;
1856 if (!*argv)
1857 break;
1858 }
1859 }
1860 globfree(&globdata);
1861 if (DEBUG_GLOB)
1862 debug_print_list("o_glob returning", o, n);
1863 return n;
1864}
1865
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001866/* If o->o_glob == 1, glob the string so far remembered.
1867 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001868static int o_save_ptr(o_string *o, int n)
1869{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00001870 if (o->o_glob) { /* if globbing is requested */
1871 /* If o->has_empty_slot, list[n] was already globbed
1872 * (if it was requested back then when it was filled)
1873 * so don't do that again! */
1874 if (!o->has_empty_slot)
1875 return o_glob(o, n); /* o_save_ptr_helper is inside */
1876 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001877 return o_save_ptr_helper(o, n);
1878}
1879
1880/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001881static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001882{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001883 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001884 int string_start;
1885
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001886 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
1887 if (DEBUG_EXPAND)
1888 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001889 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001890 list = (char**)o->data;
1891 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1892 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001893 while (n) {
1894 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001895 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001896 }
1897 return list;
1898}
1899
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001900
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001901/* Expansion can recurse */
1902#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001903static int process_command_subs(o_string *dest, const char *s);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001904#endif
1905static char *expand_string_to_string(const char *str);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001906#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001907#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001908 parse_stream_dquoted(dest, input, dquote_end)
1909#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001910static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001911 o_string *dest,
1912 struct in_str *input,
1913 int dquote_end);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001914
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001915/* expand_strvec_to_strvec() takes a list of strings, expands
1916 * all variable references within and returns a pointer to
1917 * a list of expanded strings, possibly with larger number
1918 * of strings. (Think VAR="a b"; echo $VAR).
1919 * This new list is allocated as a single malloc block.
1920 * NULL-terminated list of char* pointers is at the beginning of it,
1921 * followed by strings themself.
1922 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00001923
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001924/* Store given string, finalizing the word and starting new one whenever
1925 * we encounter IFS char(s). This is used for expanding variable values.
1926 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
1927static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00001928{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001929 while (1) {
1930 int word_len = strcspn(str, G.ifs);
1931 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001932 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001933 o_addQstr(output, str, word_len);
1934 else /* protect backslashes against globbing up :) */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001935 o_addblock_duplicate_backslash(output, str, word_len);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001936 str += word_len;
1937 }
1938 if (!*str) /* EOL - do not finalize word */
1939 break;
1940 o_addchr(output, '\0');
1941 debug_print_list("expand_on_ifs", output, n);
1942 n = o_save_ptr(output, n);
1943 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00001944 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001945 debug_print_list("expand_on_ifs[1]", output, n);
1946 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001947}
1948
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001949/* Helper to expand $((...)) and heredoc body. These act as if
1950 * they are in double quotes, with the exception that they are not :).
1951 * Just the rules are similar: "expand only $var and `cmd`"
1952 *
1953 * Returns malloced string.
1954 * As an optimization, we return NULL if expansion is not needed.
1955 */
1956static char *expand_pseudo_dquoted(const char *str)
1957{
1958 char *exp_str;
1959 struct in_str input;
1960 o_string dest = NULL_O_STRING;
1961
1962 if (strchr(str, '$') == NULL
1963#if ENABLE_HUSH_TICK
1964 && strchr(str, '`') == NULL
1965#endif
1966 ) {
1967 return NULL;
1968 }
1969
1970 /* We need to expand. Example:
1971 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
1972 */
1973 setup_string_in_str(&input, str);
1974 parse_stream_dquoted(NULL, &dest, &input, EOF);
1975 //bb_error_msg("'%s' -> '%s'", str, dest.data);
1976 exp_str = expand_string_to_string(dest.data);
1977 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
1978 o_free_unsafe(&dest);
1979 return exp_str;
1980}
1981
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001982/* Expand all variable references in given string, adding words to list[]
1983 * at n, n+1,... positions. Return updated n (so that list[n] is next one
1984 * to be filled). This routine is extremely tricky: has to deal with
1985 * variables/parameters with whitespace, $* and $@, and constructs like
1986 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
1987static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00001988{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001989 /* or_mask is either 0 (normal case) or 0x80
1990 * (expansion of right-hand side of assignment == 1-element expand.
1991 * It will also do no globbing, and thus we must not backslash-quote!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001992
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001993 char first_ch, ored_ch;
1994 int i;
1995 const char *val;
Mike Frysingera4f331d2009-04-07 06:03:22 +00001996 char *dyn_val, *p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001997
Mike Frysingera4f331d2009-04-07 06:03:22 +00001998 dyn_val = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001999 ored_ch = 0;
2000
2001 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
2002 debug_print_list("expand_vars_to_list", output, n);
2003 n = o_save_ptr(output, n);
2004 debug_print_list("expand_vars_to_list[0]", output, n);
2005
2006 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
2007#if ENABLE_HUSH_TICK
2008 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00002009#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002010#if ENABLE_SH_MATH_SUPPORT
2011 char arith_buf[sizeof(arith_t)*3 + 2];
2012#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002013 o_addblock(output, arg, p - arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002014 debug_print_list("expand_vars_to_list[1]", output, n);
2015 arg = ++p;
2016 p = strchr(p, SPECIAL_VAR_SYMBOL);
2017
2018 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
2019 /* "$@" is special. Even if quoted, it can still
2020 * expand to nothing (not even an empty string) */
2021 if ((first_ch & 0x7f) != '@')
2022 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002023
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002024 val = NULL;
2025 switch (first_ch & 0x7f) {
2026 /* Highest bit in first_ch indicates that var is double-quoted */
2027 case '$': /* pid */
2028 val = utoa(G.root_pid);
2029 break;
2030 case '!': /* bg pid */
2031 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
2032 break;
2033 case '?': /* exitcode */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00002034 val = utoa(G.last_exitcode);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002035 break;
2036 case '#': /* argc */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002037 if (arg[1] != SPECIAL_VAR_SYMBOL)
2038 /* actually, it's a ${#var} */
2039 goto case_default;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002040 val = utoa(G.global_argc ? G.global_argc-1 : 0);
2041 break;
2042 case '*':
2043 case '@':
2044 i = 1;
2045 if (!G.global_argv[i])
2046 break;
2047 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
2048 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002049 smallint sv = output->o_escape;
2050 /* unquoted var's contents should be globbed, so don't escape */
2051 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002052 while (G.global_argv[i]) {
2053 n = expand_on_ifs(output, n, G.global_argv[i]);
2054 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
2055 if (G.global_argv[i++][0] && G.global_argv[i]) {
2056 /* this argv[] is not empty and not last:
2057 * put terminating NUL, start new word */
2058 o_addchr(output, '\0');
2059 debug_print_list("expand_vars_to_list[2]", output, n);
2060 n = o_save_ptr(output, n);
2061 debug_print_list("expand_vars_to_list[3]", output, n);
2062 }
2063 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002064 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002065 } else
2066 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
2067 * and in this case should treat it like '$*' - see 'else...' below */
2068 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
2069 while (1) {
2070 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
2071 if (++i >= G.global_argc)
2072 break;
2073 o_addchr(output, '\0');
2074 debug_print_list("expand_vars_to_list[4]", output, n);
2075 n = o_save_ptr(output, n);
2076 }
2077 } else { /* quoted $*: add as one word */
2078 while (1) {
2079 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
2080 if (!G.global_argv[++i])
2081 break;
2082 if (G.ifs[0])
2083 o_addchr(output, G.ifs[0]);
2084 }
2085 }
2086 break;
2087 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
2088 /* "Empty variable", used to make "" etc to not disappear */
2089 arg++;
2090 ored_ch = 0x80;
2091 break;
2092#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002093 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002094 *p = '\0';
2095 arg++;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002096 /* Can't just stuff it into output o_string,
2097 * expanded result may need to be globbed
2098 * and $IFS-splitted */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002099 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002100 process_command_subs(&subst_result, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002101 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
2102 val = subst_result.data;
2103 goto store_val;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00002104#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00002105#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002106 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002107 arith_eval_hooks_t hooks;
Mike Frysinger98c52642009-04-02 10:02:37 +00002108 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00002109 int errcode;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002110 char *exp_str;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002111
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002112 arg++; /* skip '+' */
2113 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00002114 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002115
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002116 exp_str = expand_pseudo_dquoted(arg);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002117 hooks.lookupvar = get_local_var_value;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002118 hooks.setvar = arith_set_local_var;
2119 hooks.endofname = endofname;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002120 res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
2121 free(exp_str);
2122
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002123 if (errcode < 0) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002124 const char *msg = "error in arithmetic";
Mike Frysinger98c52642009-04-02 10:02:37 +00002125 switch (errcode) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002126 case -3:
2127 msg = "exponent less than 0";
2128 break;
2129 case -2:
2130 msg = "divide by 0";
2131 break;
2132 case -5:
2133 msg = "expression recursion loop detected";
2134 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00002135 }
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002136 die_if_script(msg);
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002137 }
Mike Frysinger98c52642009-04-02 10:02:37 +00002138 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002139 sprintf(arith_buf, arith_t_fmt, res);
2140 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00002141 break;
2142 }
2143#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002144 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002145 case_default: {
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002146 bool exp_len = false;
2147 bool exp_null = false;
2148 char *var = arg;
2149 char exp_save = exp_save; /* for compiler */
2150 char exp_op = exp_op; /* for compiler */
2151 char *exp_word = exp_word; /* for compiler */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002152 size_t exp_off = 0;
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002153
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002154 *p = '\0';
2155 arg[0] = first_ch & 0x7f;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002156
2157 /* prepare for expansions */
2158 if (var[0] == '#') {
2159 /* handle length expansion ${#var} */
2160 exp_len = true;
2161 ++var;
2162 } else {
2163 /* maybe handle parameter expansion */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002164 exp_off = strcspn(var, ":-=+?%#");
Mike Frysinger6379bb42009-03-28 18:55:03 +00002165 if (!var[exp_off])
2166 exp_off = 0;
2167 if (exp_off) {
2168 exp_save = var[exp_off];
2169 exp_null = exp_save == ':';
2170 exp_word = var + exp_off;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002171 if (exp_null)
2172 ++exp_word;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002173 exp_op = *exp_word++;
2174 var[exp_off] = '\0';
2175 }
2176 }
2177
2178 /* lookup the variable in question */
2179 if (isdigit(var[0])) {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00002180 /* handle_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002181 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002182 if (i < G.global_argc)
2183 val = G.global_argv[i];
2184 /* else val remains NULL: $N with too big N */
2185 } else
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002186 val = get_local_var_value(var);
Mike Frysinger6379bb42009-03-28 18:55:03 +00002187
2188 /* handle any expansions */
2189 if (exp_len) {
2190 debug_printf_expand("expand: length of '%s' = ", val);
2191 val = utoa(val ? strlen(val) : 0);
2192 debug_printf_expand("%s\n", val);
2193 } else if (exp_off) {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002194 if (exp_op == '%' || exp_op == '#') {
Mike Frysinger57e74672009-04-09 23:00:33 +00002195 if (val) {
2196 /* we need to do a pattern match */
2197 bool zero;
2198 char *loc;
2199 scan_t scan = pick_scan(exp_op, *exp_word, &zero);
2200 if (exp_op == *exp_word) /* ## or %% */
2201 ++exp_word;
2202 val = dyn_val = xstrdup(val);
2203 loc = scan(dyn_val, exp_word, zero);
2204 if (zero)
2205 val = loc;
2206 else
2207 *loc = '\0';
2208 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002209 } else {
2210 /* we need to do an expansion */
2211 int exp_test = (!val || (exp_null && !val[0]));
2212 if (exp_op == '+')
2213 exp_test = !exp_test;
2214 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
2215 exp_null ? "true" : "false", exp_test);
2216 if (exp_test) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002217 if (exp_op == '?') {
2218//TODO: how interactive bash aborts expansion mid-command?
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002219 /* ${var?[error_msg_if_unset]} */
2220 /* ${var:?[error_msg_if_unset_or_null]} */
2221 /* mimic bash message */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002222 die_if_script("%s: %s",
2223 var,
2224 exp_word[0] ? exp_word : "parameter null or not set"
2225 );
2226 } else {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002227 val = exp_word;
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002228 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002229
Mike Frysingera4f331d2009-04-07 06:03:22 +00002230 if (exp_op == '=') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002231 /* ${var=[word]} or ${var:=[word]} */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002232 if (isdigit(var[0]) || var[0] == '#') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002233 /* mimic bash message */
2234 die_if_script("$%s: cannot assign in this way", var);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002235 val = NULL;
2236 } else {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002237 char *new_var = xasprintf("%s=%s", var, val);
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002238 set_local_var(new_var, 0, 0);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002239 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002240 }
2241 }
2242 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002243
Mike Frysinger6379bb42009-03-28 18:55:03 +00002244 var[exp_off] = exp_save;
2245 }
2246
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002247 arg[0] = first_ch;
2248#if ENABLE_HUSH_TICK
2249 store_val:
2250#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002251 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002252 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002253 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002254 /* unquoted var's contents should be globbed, so don't escape */
2255 smallint sv = output->o_escape;
2256 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002257 n = expand_on_ifs(output, n, val);
2258 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002259 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002260 }
2261 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002262 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002263 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002264 } /* default: */
2265 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002266 if (val) {
2267 o_addQstr(output, val, strlen(val));
2268 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002269 free(dyn_val);
2270 dyn_val = NULL;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002271 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002272 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00002273 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002274
2275#if ENABLE_HUSH_TICK
2276 o_free(&subst_result);
2277#endif
2278 arg = ++p;
2279 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
2280
2281 if (arg[0]) {
2282 debug_print_list("expand_vars_to_list[a]", output, n);
2283 /* this part is literal, and it was already pre-quoted
2284 * if needed (much earlier), do not use o_addQstr here! */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002285 o_addstr_with_NUL(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002286 debug_print_list("expand_vars_to_list[b]", output, n);
2287 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2288 && !(ored_ch & 0x80) /* and all vars were not quoted. */
2289 ) {
2290 n--;
2291 /* allow to reuse list[n] later without re-growth */
2292 output->has_empty_slot = 1;
2293 } else {
2294 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00002295 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002296 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00002297}
2298
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002299static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002300{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002301 int n;
2302 char **list;
2303 char **v;
2304 o_string output = NULL_O_STRING;
2305
2306 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002307 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002308 /* (unquoted $var will temporarily switch it off) */
2309 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002310 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002311
2312 n = 0;
2313 v = argv;
2314 while (*v) {
2315 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
2316 v++;
2317 }
2318 debug_print_list("expand_variables", &output, n);
2319
2320 /* output.data (malloced in one block) gets returned in "list" */
2321 list = o_finalize_list(&output, n);
2322 debug_print_strings("expand_variables[1]", list);
2323 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00002324}
2325
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002326static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002327{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002328 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00002329}
2330
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002331/* Used for expansion of right hand of assignments */
2332/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2333 * "v=/bin/c*" */
2334static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002335{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002336 char *argv[2], **list;
2337
2338 argv[0] = (char*)str;
2339 argv[1] = NULL;
2340 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2341 if (HUSH_DEBUG)
2342 if (!list[0] || list[1])
2343 bb_error_msg_and_die("BUG in varexp2");
2344 /* actually, just move string 2*sizeof(char*) bytes back */
2345 overlapping_strcpy((char*)list, list[0]);
2346 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2347 return (char*)list;
2348}
2349
2350/* Used for "eval" builtin */
2351static char* expand_strvec_to_string(char **argv)
2352{
2353 char **list;
2354
2355 list = expand_variables(argv, 0x80);
2356 /* Convert all NULs to spaces */
2357 if (list[0]) {
2358 int n = 1;
2359 while (list[n]) {
2360 if (HUSH_DEBUG)
2361 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2362 bb_error_msg_and_die("BUG in varexp3");
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00002363 /* bash uses ' ' regardless of $IFS contents */
2364 list[n][-1] = ' ';
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002365 n++;
2366 }
2367 }
2368 overlapping_strcpy((char*)list, list[0]);
2369 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2370 return (char*)list;
2371}
2372
2373static char **expand_assignments(char **argv, int count)
2374{
2375 int i;
2376 char **p = NULL;
2377 /* Expand assignments into one string each */
2378 for (i = 0; i < count; i++) {
2379 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2380 }
2381 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002382}
2383
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002384
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002385#if BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002386/* never called */
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002387void re_execute_shell(char ***to_free, const char *s, char *argv0, char **argv);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002388
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002389static void reset_traps_to_defaults(void)
2390{
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002391 /* This function is always called in a child shell
2392 * after fork (not vfork, NOMMU doesn't use this function).
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002393 * Child shells are not interactive.
2394 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
2395 * Testcase: (while :; do :; done) + ^Z should background.
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002396 * Same goes for SIGTERM, SIGHUP, SIGINT.
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002397 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002398 unsigned sig;
2399 unsigned mask;
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002400
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002401 if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS))
2402 return;
2403
2404 /* Stupid. It can be done with *single* &= op, but we can't use
2405 * the fact that G.blocked_set is implemented as a bitmask... */
2406 mask = (SPECIAL_INTERACTIVE_SIGS >> 1);
2407 sig = 1;
2408 while (1) {
2409 if (mask & 1)
2410 sigdelset(&G.blocked_set, sig);
2411 mask >>= 1;
2412 if (!mask)
2413 break;
2414 sig++;
2415 }
2416
2417 G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS;
2418 mask = G.non_DFL_mask;
2419 if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) {
2420 if (!G.traps[sig])
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002421 continue;
2422 free(G.traps[sig]);
2423 G.traps[sig] = NULL;
2424 /* There is no signal for 0 (EXIT) */
2425 if (sig == 0)
2426 continue;
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002427 /* There was a trap handler, we are removing it.
2428 * But if sig still has non-DFL handling,
2429 * we should not unblock it. */
2430 if (mask & 1)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002431 continue;
2432 sigdelset(&G.blocked_set, sig);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002433 }
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002434 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002435}
2436
2437#else /* !BB_MMU */
2438
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002439static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv) NORETURN;
2440static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002441{
2442 char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4];
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002443 char *heredoc_argv[4];
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002444 struct variable *cur;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002445#if ENABLE_HUSH_FUNCTIONS
2446 struct function *funcp;
2447#endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002448 char **argv, **pp;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002449 unsigned cnt;
2450
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002451 if (!g_argv0) { /* heredoc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002452 argv = heredoc_argv;
2453 argv[0] = (char *) G.argv0_for_re_execing;
2454 argv[1] = (char *) "-<";
2455 argv[2] = (char *) s;
2456 argv[3] = NULL;
Denis Vlasenkof50caac2009-04-09 01:40:15 +00002457 pp = &argv[3]; /* used as pointer to empty environment */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002458 goto do_exec;
2459 }
2460
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002461 sprintf(param_buf, "-$%x:%x:%x" IF_HUSH_LOOPS(":%x")
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002462 , (unsigned) G.root_pid
2463 , (unsigned) G.last_bg_pid
2464 , (unsigned) G.last_exitcode
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002465 IF_HUSH_LOOPS(, G.depth_of_loop)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002466 );
Denis Vlasenkobc569742009-04-12 20:35:19 +00002467 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...> <funcs...>
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002468 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002469 */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002470 cnt = 6;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002471 for (cur = G.top_var; cur; cur = cur->next) {
2472 if (!cur->flg_export || cur->flg_read_only)
2473 cnt += 2;
2474 }
Denis Vlasenkobc569742009-04-12 20:35:19 +00002475#if ENABLE_HUSH_FUNCTIONS
2476 for (funcp = G.top_func; funcp; funcp = funcp->next)
2477 cnt += 3;
2478#endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002479 pp = g_argv;
2480 while (*pp++)
2481 cnt++;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002482 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002483 *pp++ = (char *) G.argv0_for_re_execing;
2484 *pp++ = param_buf;
2485 for (cur = G.top_var; cur; cur = cur->next) {
2486 if (cur->varstr == hush_version_str)
2487 continue;
2488 if (cur->flg_read_only) {
2489 *pp++ = (char *) "-R";
2490 *pp++ = cur->varstr;
2491 } else if (!cur->flg_export) {
2492 *pp++ = (char *) "-V";
2493 *pp++ = cur->varstr;
2494 }
2495 }
Denis Vlasenkobc569742009-04-12 20:35:19 +00002496#if ENABLE_HUSH_FUNCTIONS
2497 for (funcp = G.top_func; funcp; funcp = funcp->next) {
2498 *pp++ = (char *) "-F";
2499 *pp++ = funcp->name;
2500 *pp++ = funcp->body_as_string;
2501 }
2502#endif
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002503 /* We can pass activated traps here. Say, -Tnn:trap_string
2504 *
2505 * However, POSIX says that subshells reset signals with traps
2506 * to SIG_DFL.
2507 * I tested bash-3.2 and it not only does that with true subshells
2508 * of the form ( list ), but with any forked children shells.
2509 * I set trap "echo W" WINCH; and then tried:
2510 *
2511 * { echo 1; sleep 20; echo 2; } &
2512 * while true; do echo 1; sleep 20; echo 2; break; done &
2513 * true | { echo 1; sleep 20; echo 2; } | cat
2514 *
2515 * In all these cases sending SIGWINCH to the child shell
2516 * did not run the trap. If I add trap "echo V" WINCH;
2517 * _inside_ group (just before echo 1), it works.
2518 *
2519 * I conclude it means we don't need to pass active traps here.
2520 * exec syscall below resets them to SIG_DFL for us.
2521 */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002522 *pp++ = (char *) "-c";
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002523 *pp++ = (char *) s;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002524 *pp++ = g_argv0;
2525 while (*g_argv)
2526 *pp++ = *g_argv++;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002527 /* *pp = NULL; - is already there */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002528 pp = environ;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002529
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002530 do_exec:
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002531 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
2532 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002533 execve(bb_busybox_exec_path, argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002534 /* Fallback. Useful for init=/bin/hush usage etc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002535 if (argv[0][0] == '/')
2536 execve(argv[0], argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002537 xfunc_error_retval = 127;
2538 bb_error_msg_and_die("can't re-execute the shell");
2539}
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002540#endif /* !BB_MMU */
2541
2542
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002543static void setup_heredoc(struct redir_struct *redir)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002544{
2545 struct fd_pair pair;
2546 pid_t pid;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002547 int len, written;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002548 /* the _body_ of heredoc (misleading field name) */
2549 const char *heredoc = redir->rd_filename;
2550 char *expanded;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002551#if !BB_MMU
2552 char **to_free;
2553#endif
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002554
2555 expanded = NULL;
2556 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
2557 expanded = expand_pseudo_dquoted(heredoc);
2558 if (expanded)
2559 heredoc = expanded;
2560 }
2561 len = strlen(heredoc);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002562
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002563 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002564 xpiped_pair(pair);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002565 xmove_fd(pair.rd, redir->rd_fd);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002566
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002567 /* Try writing without forking. Newer kernels have
2568 * dynamically growing pipes. Must use non-blocking write! */
2569 ndelay_on(pair.wr);
2570 while (1) {
2571 written = write(pair.wr, heredoc, len);
2572 if (written <= 0)
2573 break;
2574 len -= written;
2575 if (len == 0) {
2576 close(pair.wr);
Denis Vlasenko1943aec2009-04-09 14:15:57 +00002577 free(expanded);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002578 return;
2579 }
2580 heredoc += written;
2581 }
2582 ndelay_off(pair.wr);
2583
2584 /* Okay, pipe buffer was not big enough */
2585 /* Note: we must not create a stray child (bastard? :)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002586 * for the unsuspecting parent process. Child creates a grandchild
2587 * and exits before parent execs the process which consumes heredoc
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002588 * (that exec happens after we return from this function) */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00002589#if !BB_MMU
2590 to_free = NULL;
2591#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002592 pid = vfork();
2593 if (pid < 0)
2594 bb_perror_msg_and_die("vfork");
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002595 if (pid == 0) {
2596 /* child */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00002597 disable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002598 pid = BB_MMU ? fork() : vfork();
2599 if (pid < 0)
2600 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
2601 if (pid != 0)
2602 _exit(0);
2603 /* grandchild */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002604 close(redir->rd_fd); /* read side of the pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002605#if BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002606 full_write(pair.wr, heredoc, len); /* may loop or block */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002607 _exit(0);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002608#else
2609 /* Delegate blocking writes to another process */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002610 xmove_fd(pair.wr, STDOUT_FILENO);
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002611 re_execute_shell(&to_free, heredoc, NULL, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002612#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002613 }
2614 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002615 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002616#if !BB_MMU
2617 free(to_free);
2618#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002619 close(pair.wr);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002620 free(expanded);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002621 wait(NULL); /* wait till child has died */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002622}
2623
Eric Andersen25f27032001-04-26 23:22:31 +00002624/* squirrel != NULL means we squirrel away copies of stdin, stdout,
2625 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002626static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00002627{
2628 int openfd, mode;
2629 struct redir_struct *redir;
2630
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002631 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002632 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002633 /* rd_fd<<HERE case */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002634 if (squirrel && redir->rd_fd < 3) {
2635 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002636 }
2637 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
2638 * of the heredoc */
2639 debug_printf_parse("set heredoc '%s'\n",
2640 redir->rd_filename);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002641 setup_heredoc(redir);
Eric Andersen817e73c2001-06-06 17:56:09 +00002642 continue;
2643 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002644
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002645 if (redir->rd_dup == REDIRFD_TO_FILE) {
2646 /* rd_fd<*>file case (<*> is <,>,>>,<>) */
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002647 char *p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002648 if (redir->rd_filename == NULL) {
2649 /* Something went wrong in the parse.
2650 * Pretend it didn't happen */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002651 bb_error_msg("bug in redirect parse");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002652 continue;
2653 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00002654 mode = redir_table[redir->rd_type].mode;
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002655 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002656 openfd = open_or_warn(p, mode);
2657 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00002658 if (openfd < 0) {
2659 /* this could get lost if stderr has been redirected, but
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002660 * bash and ash both lose it as well (though zsh doesn't!) */
2661//what the above comment tries to say?
Eric Andersen25f27032001-04-26 23:22:31 +00002662 return 1;
2663 }
2664 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002665 /* rd_fd<*>rd_dup or rd_fd<*>- cases */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002666 openfd = redir->rd_dup;
Eric Andersen25f27032001-04-26 23:22:31 +00002667 }
2668
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002669 if (openfd != redir->rd_fd) {
2670 if (squirrel && redir->rd_fd < 3) {
2671 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Eric Andersen25f27032001-04-26 23:22:31 +00002672 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002673 if (openfd == REDIRFD_CLOSE) {
2674 /* "n>-" means "close me" */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002675 close(redir->rd_fd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002676 } else {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002677 xdup2(openfd, redir->rd_fd);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002678 if (redir->rd_dup == REDIRFD_TO_FILE)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002679 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002680 }
Eric Andersen25f27032001-04-26 23:22:31 +00002681 }
2682 }
2683 return 0;
2684}
2685
2686static void restore_redirects(int squirrel[])
2687{
2688 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002689 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002690 fd = squirrel[i];
2691 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002692 /* We simply die on error */
2693 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00002694 }
2695 }
2696}
2697
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002698
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002699static void free_pipe_list(struct pipe *head);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002700
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002701/* Return code is the exit status of the pipe */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002702static void free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002703{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002704 char **p;
2705 struct command *command;
2706 struct redir_struct *r, *rnext;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002707 int a, i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002708
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002709 if (pi->stopped_cmds > 0) /* why? */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002710 return;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002711 debug_printf_clean("run pipe: (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002712 for (i = 0; i < pi->num_cmds; i++) {
2713 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002714 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002715 if (command->argv) {
2716 for (a = 0, p = command->argv; *p; a++, p++) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002717 debug_printf_clean(" argv[%d] = %s\n", a, *p);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002718 }
2719 free_strings(command->argv);
2720 command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002721 }
2722 /* not "else if": on syntax error, we may have both! */
2723 if (command->group) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002724 debug_printf_clean(" begin group (grp_type:%d)\n",
2725 command->grp_type);
2726 free_pipe_list(command->group);
2727 debug_printf_clean(" end group\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002728 command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002729 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00002730 /* else is crucial here.
2731 * If group != NULL, child_func is meaningless */
2732#if ENABLE_HUSH_FUNCTIONS
2733 else if (command->child_func) {
2734 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
2735 command->child_func->parent_cmd = NULL;
2736 }
2737#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002738#if !BB_MMU
2739 free(command->group_as_string);
2740 command->group_as_string = NULL;
2741#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002742 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002743 debug_printf_clean(" redirect %d%s",
2744 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002745 /* guard against the case >$FOO, where foo is unset or blank */
2746 if (r->rd_filename) {
2747 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
2748 free(r->rd_filename);
2749 r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002750 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002751 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002752 rnext = r->next;
2753 free(r);
2754 }
2755 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002756 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002757 free(pi->cmds); /* children are an array, they get freed all at once */
2758 pi->cmds = NULL;
2759#if ENABLE_HUSH_JOB
2760 free(pi->cmdtext);
2761 pi->cmdtext = NULL;
2762#endif
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002763}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002764
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002765static void free_pipe_list(struct pipe *head)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002766{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002767 struct pipe *pi, *next;
2768
2769 for (pi = head; pi; pi = next) {
2770#if HAS_KEYWORDS
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002771 debug_printf_clean(" pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002772#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002773 free_pipe(pi);
2774 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002775 next = pi->next;
2776 /*pi->next = NULL;*/
2777 free(pi);
2778 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002779}
2780
2781
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002782static int run_list(struct pipe *pi);
Denis Vlasenkobc569742009-04-12 20:35:19 +00002783#if BB_MMU
2784#define parse_stream(pstring, input, end_trigger) \
2785 parse_stream(input, end_trigger)
2786#endif
2787static struct pipe *parse_stream(char **pstring,
2788 struct in_str *input,
2789 int end_trigger);
2790static void parse_and_run_string(const char *s);
2791
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002792
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002793static const struct built_in_command* find_builtin(const char *name)
2794{
2795 const struct built_in_command *x;
2796 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
2797 if (strcmp(name, x->cmd) != 0)
2798 continue;
2799 debug_printf_exec("found builtin '%s'\n", name);
2800 return x;
2801 }
2802 return NULL;
2803}
2804
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002805#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002806static const struct function *find_function(const char *name)
2807{
2808 const struct function *funcp = G.top_func;
2809 while (funcp) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002810 if (strcmp(name, funcp->name) == 0) {
2811 break;
2812 }
2813 funcp = funcp->next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002814 }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002815 if (funcp)
2816 debug_printf_exec("found function '%s'\n", name);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002817 return funcp;
2818}
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002819
Denis Vlasenkobc569742009-04-12 20:35:19 +00002820/* Note: takes ownership on name ptr */
2821static struct function *new_function(char *name)
2822{
2823 struct function *funcp;
2824 struct function **funcpp = &G.top_func;
2825
2826 while ((funcp = *funcpp) != NULL) {
2827 struct command *cmd;
2828
2829 if (strcmp(funcp->name, name) != 0) {
2830 funcpp = &funcp->next;
2831 continue;
2832 }
2833
2834 cmd = funcp->parent_cmd;
2835 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
2836 if (!cmd) {
2837 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
2838 free(funcp->name);
2839 /* Note: if !funcp->body, do not free body_as_string!
2840 * This is a special case of "-F name body" function:
2841 * body_as_string was not malloced! */
2842 if (funcp->body) {
2843 free_pipe_list(funcp->body);
2844#if !BB_MMU
2845 free(funcp->body_as_string);
2846#endif
2847 }
2848 } else {
2849 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
2850 cmd->argv[0] = funcp->name;
2851 cmd->group = funcp->body;
2852#if !BB_MMU
2853 cmd->group_as_string = funcp->body_as_string;
2854#endif
2855 }
2856 goto skip;
2857 }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002858 debug_printf_exec("remembering new function '%s'\n", name);
Denis Vlasenkobc569742009-04-12 20:35:19 +00002859 funcp = *funcpp = xzalloc(sizeof(*funcp));
2860 /*funcp->next = NULL;*/
2861 skip:
2862 funcp->name = name;
2863 return funcp;
2864}
2865
Denis Vlasenko40e84372009-04-18 11:23:38 +00002866static void unset_func(const char *name)
2867{
2868 struct function *funcp;
2869 struct function **funcpp = &G.top_func;
2870
2871 while ((funcp = *funcpp) != NULL) {
2872 if (strcmp(funcp->name, name) == 0) {
2873 *funcpp = funcp->next;
2874 /* funcp is unlinked now, deleting it */
2875 free(funcp->name);
2876 /* Note: if !funcp->body, do not free body_as_string!
2877 * This is a special case of "-F name body" function:
2878 * body_as_string was not malloced! */
2879 if (funcp->body) {
2880 free_pipe_list(funcp->body);
2881#if !BB_MMU
2882 free(funcp->body_as_string);
2883#endif
2884 }
2885 free(funcp);
2886 break;
2887 }
Denis Vlasenko73010672009-04-18 11:25:18 +00002888 funcpp = &funcp->next;
Denis Vlasenko40e84372009-04-18 11:23:38 +00002889 }
2890}
2891
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002892#if BB_MMU
2893#define exec_function(nommu_save, funcp, argv) \
2894 exec_function(funcp, argv)
2895#endif
2896static void exec_function(nommu_save_t *nommu_save,
2897 const struct function *funcp,
2898 char **argv) NORETURN;
2899static void exec_function(nommu_save_t *nommu_save,
2900 const struct function *funcp,
2901 char **argv)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002902{
2903# if BB_MMU
2904 int n = 1;
2905
2906 argv[0] = G.global_argv[0];
2907 G.global_argv = argv;
2908 while (*++argv)
2909 n++;
2910 G.global_argc = n;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002911 /* On MMU, funcp->body is always non-NULL */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002912 n = run_list(funcp->body);
2913 fflush(NULL);
2914 _exit(n);
2915# else
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002916 re_execute_shell(&nommu_save->argv_from_re_execing,
2917 funcp->body_as_string,
2918 G.global_argv[0],
2919 argv + 1);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002920# endif
2921}
2922
2923static int run_function(const struct function *funcp, char **argv)
2924{
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002925 int rc;
2926 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00002927#if ENABLE_HUSH_FUNCTIONS
2928 smallint sv_flg;
2929#endif
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002930
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002931 save_and_replace_G_args(&sv, argv);
Mike Frysinger885b6f22009-04-18 21:04:25 +00002932#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00002933 /* "we are in function, ok to use return" */
2934 sv_flg = G.flag_return_in_progress;
2935 G.flag_return_in_progress = -1;
Mike Frysinger885b6f22009-04-18 21:04:25 +00002936#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00002937
Denis Vlasenkobc569742009-04-12 20:35:19 +00002938 /* On MMU, funcp->body is always non-NULL */
2939#if !BB_MMU
2940 if (!funcp->body) {
2941 /* Function defined by -F */
2942 parse_and_run_string(funcp->body_as_string);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002943 rc = G.last_exitcode;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002944 } else
2945#endif
2946 {
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002947 rc = run_list(funcp->body);
Denis Vlasenkobc569742009-04-12 20:35:19 +00002948 }
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00002949
Mike Frysinger885b6f22009-04-18 21:04:25 +00002950#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00002951 G.flag_return_in_progress = sv_flg;
Mike Frysinger885b6f22009-04-18 21:04:25 +00002952#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002953 restore_G_args(&sv, argv);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002954
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002955 return rc;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002956}
2957#endif
2958
2959
Denis Vlasenkocc90f442009-04-08 16:40:34 +00002960#if BB_MMU
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002961#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
2962 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
2963#define pseudo_exec(nommu_save, command, argv_expanded) \
2964 pseudo_exec(command, argv_expanded)
2965#endif
2966
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002967/* Called after [v]fork() in run_pipe, or from builtin_exec.
Denis Vlasenko8412d792007-10-01 09:59:47 +00002968 * Never returns.
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00002969 * Don't exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00002970 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002971 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002972static void pseudo_exec_argv(nommu_save_t *nommu_save,
2973 char **argv, int assignment_cnt,
2974 char **argv_expanded) NORETURN;
2975static void pseudo_exec_argv(nommu_save_t *nommu_save,
2976 char **argv, int assignment_cnt,
2977 char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00002978{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002979 char **new_env;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002980
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002981 /* Case when we are here: ... | var=val | ... */
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002982 if (!argv[assignment_cnt])
Denis Vlasenko1359da62007-04-21 23:27:30 +00002983 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002984
Denis Vlasenko9504e442008-10-29 01:19:15 +00002985 new_env = expand_assignments(argv, assignment_cnt);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002986#if BB_MMU
2987 putenv_all(new_env);
2988 free(new_env); /* optional */
2989#else
2990 nommu_save->new_env = new_env;
2991 nommu_save->old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002992#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002993 if (argv_expanded) {
2994 argv = argv_expanded;
2995 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00002996 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002997#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002998 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002999#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003000 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00003001
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003002#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
3003 if (strchr(argv[0], '/') != NULL)
3004 goto skip;
3005#endif
3006
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003007 /* On NOMMU, we must never block!
3008 * Example: { sleep 99999 | read line } & echo Ok
3009 * read builtin will block on read syscall, leaving parent blocked
3010 * in vfork. Therefore we can't do this:
3011 */
3012#if BB_MMU
3013 /* Check if the command matches any of the builtins.
Denis Vlasenko1359da62007-04-21 23:27:30 +00003014 * Depending on context, this might be redundant. But it's
3015 * easier to waste a few CPU cycles than it is to figure out
3016 * if this is one of those cases.
3017 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003018 {
3019 int rcode;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003020 const struct built_in_command *x = find_builtin(argv[0]);
3021 if (x) {
3022 rcode = x->function(argv);
3023 fflush(NULL);
3024 _exit(rcode);
Eric Andersen94ac2442001-05-22 19:05:18 +00003025 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00003026 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003027#endif
3028#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003029 /* Check if the command matches any functions */
3030 {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003031 const struct function *funcp = find_function(argv[0]);
3032 if (funcp) {
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003033 exec_function(nommu_save, funcp, argv);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003034 }
3035 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003036#endif
Eric Andersen78a7c992001-05-15 16:30:25 +00003037
Denis Vlasenko80d14be2007-04-10 23:03:30 +00003038#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003039 /* Check if the command matches any busybox applets */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003040 {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003041 int a = find_applet_by_name(argv[0]);
3042 if (a >= 0) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003043# if BB_MMU /* see above why on NOMMU it is not allowed */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003044 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003045 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003046 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003047 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003048# endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003049 /* Re-exec ourselves */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003050 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003051 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
3052 execv(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003053 /* If they called chroot or otherwise made the binary no longer
3054 * executable, fall through */
3055 }
3056 }
Eric Andersenaac75e52001-04-30 18:18:45 +00003057#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003058
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003059#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003060 skip:
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003061#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003062 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003063 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003064 execvp(argv[0], argv);
Denis Vlasenkof9d4fc32009-04-21 20:40:51 +00003065 bb_perror_msg("can't execute '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00003066 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003067}
3068
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003069/* Called after [v]fork() in run_pipe
Denis Vlasenko8412d792007-10-01 09:59:47 +00003070 */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003071static void pseudo_exec(nommu_save_t *nommu_save,
3072 struct command *command,
3073 char **argv_expanded) NORETURN;
3074static void pseudo_exec(nommu_save_t *nommu_save,
3075 struct command *command,
3076 char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00003077{
Denis Vlasenko552433b2009-04-04 19:29:21 +00003078 if (command->argv) {
3079 pseudo_exec_argv(nommu_save, command->argv,
3080 command->assignment_cnt, argv_expanded);
3081 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003082
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003083 if (command->group) {
Denis Vlasenko552433b2009-04-04 19:29:21 +00003084 /* Cases when we are here:
3085 * ( list )
3086 * { list } &
3087 * ... | ( list ) | ...
3088 * ... | { list } | ...
3089 */
3090#if BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00003091 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003092 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00003093 reset_traps_to_defaults();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003094 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00003095 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00003096 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00003097 _exit(rcode);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003098#else
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003099 re_execute_shell(&nommu_save->argv_from_re_execing,
3100 command->group_as_string,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003101 G.global_argv[0],
3102 G.global_argv + 1);
Denis Vlasenko8412d792007-10-01 09:59:47 +00003103#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003104 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003105
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003106 /* Case when we are here: ... | >file */
3107 debug_printf_exec("pseudo_exec'ed null command\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003108 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00003109}
3110
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003111#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003112static const char *get_cmdtext(struct pipe *pi)
3113{
3114 char **argv;
3115 char *p;
3116 int len;
3117
3118 /* This is subtle. ->cmdtext is created only on first backgrounding.
3119 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003120 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003121 if (pi->cmdtext)
3122 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003123 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003124 if (!argv || !argv[0]) {
3125 pi->cmdtext = xzalloc(1);
3126 return pi->cmdtext;
3127 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003128
3129 len = 0;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003130 do {
3131 len += strlen(*argv) + 1;
3132 } while (*++argv);
3133 p = xmalloc(len);
3134 pi->cmdtext = p;// = xmalloc(len);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003135 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003136 do {
3137 len = strlen(*argv);
3138 memcpy(p, *argv, len);
3139 p += len;
3140 *p++ = ' ';
3141 } while (*++argv);
3142 p[-1] = '\0';
3143 return pi->cmdtext;
3144}
3145
Eric Andersenbafd94f2001-05-02 16:11:59 +00003146static void insert_bg_job(struct pipe *pi)
3147{
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003148 struct pipe *job, **jobp;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003149 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003150
3151 /* Linear search for the ID of the job to use */
3152 pi->jobid = 1;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003153 for (job = G.job_list; job; job = job->next)
3154 if (job->jobid >= pi->jobid)
3155 pi->jobid = job->jobid + 1;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003156
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003157 /* Add job to the list of running jobs */
3158 jobp = &G.job_list;
3159 while ((job = *jobp) != NULL)
3160 jobp = &job->next;
3161 job = *jobp = xmalloc(sizeof(*job));
Eric Andersenbafd94f2001-05-02 16:11:59 +00003162
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003163 *job = *pi; /* physical copy */
3164 job->next = NULL;
3165 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
3166 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003167 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003168 job->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003169 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003170 }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003171 job->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00003172
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003173 if (G_interactive_fd)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003174 printf("[%d] %d %s\n", job->jobid, job->cmds[0].pid, job->cmdtext);
3175 /* Last command's pid goes to $! */
3176 G.last_bg_pid = job->cmds[job->num_cmds - 1].pid;
3177 G.last_jobid = job->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003178}
3179
Eric Andersenbafd94f2001-05-02 16:11:59 +00003180static void remove_bg_job(struct pipe *pi)
3181{
3182 struct pipe *prev_pipe;
3183
Denis Vlasenko87a86552008-07-29 19:43:10 +00003184 if (pi == G.job_list) {
3185 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003186 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003187 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003188 while (prev_pipe->next != pi)
3189 prev_pipe = prev_pipe->next;
3190 prev_pipe->next = pi->next;
3191 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00003192 if (G.job_list)
3193 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00003194 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00003195 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00003196}
Eric Andersen028b65b2001-06-28 01:10:11 +00003197
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003198/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00003199static void delete_finished_bg_job(struct pipe *pi)
3200{
3201 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003202 pi->stopped_cmds = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003203 free_pipe(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00003204 free(pi);
3205}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003206#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00003207
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003208/* Check to see if any processes have exited -- if they
3209 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00003210static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00003211{
Eric Andersenc798b072001-06-22 06:23:03 +00003212 int attributes;
3213 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003214#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00003215 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003216#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00003217 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003218 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003219
Denis Vlasenkod5762932009-03-31 11:22:57 +00003220 debug_printf_jobs("checkjobs %p\n", fg_pipe);
3221
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003222 errno = 0;
3223// if (G.handled_SIGCHLD == G.count_SIGCHLD)
3224// /* avoid doing syscall, nothing there anyway */
3225// return rcode;
3226
Eric Andersenc798b072001-06-22 06:23:03 +00003227 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003228 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00003229 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00003230
Denis Vlasenko1359da62007-04-21 23:27:30 +00003231/* Do we do this right?
3232 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003233 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00003234 * [3]+ Stopped sleep 20 | false
3235 * bash-3.00# echo $?
3236 * 1 <========== bg pipe is not fully done, but exitcode is already known!
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003237 * [hush 1.14.0: yes we do it right]
Denis Vlasenko1359da62007-04-21 23:27:30 +00003238 */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003239 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003240 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003241 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003242 int dead;
3243
3244// i = G.count_SIGCHLD;
3245 childpid = waitpid(-1, &status, attributes);
3246 if (childpid <= 0) {
3247 if (childpid && errno != ECHILD)
3248 bb_perror_msg("waitpid");
3249// else /* Until next SIGCHLD, waitpid's are useless */
3250// G.handled_SIGCHLD = i;
3251 break;
3252 }
3253 dead = WIFEXITED(status) || WIFSIGNALED(status);
3254
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003255#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00003256 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003257 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003258 childpid, WSTOPSIG(status), WEXITSTATUS(status));
3259 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003260 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003261 childpid, WTERMSIG(status), WEXITSTATUS(status));
3262 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003263 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003264 childpid, WEXITSTATUS(status));
3265#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003266 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00003267 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003268 for (i = 0; i < fg_pipe->num_cmds; i++) {
3269 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
3270 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003271 continue;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003272 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003273 fg_pipe->cmds[i].pid = 0;
3274 fg_pipe->alive_cmds--;
3275 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003276 /* last process gives overall exitstatus */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003277 /* Note: is WIFSIGNALED, WEXITSTATUS = sig + 128 */
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003278 rcode = WEXITSTATUS(status);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003279 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko40e84372009-04-18 11:23:38 +00003280 /* bash prints killing signal's name for *last*
3281 * process in pipe (prints just newline for SIGINT).
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003282 * Mimic this. Example: "sleep 5" + ^\
Denis Vlasenko40e84372009-04-18 11:23:38 +00003283 */
3284 if (WIFSIGNALED(status)) {
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003285 int sig = WTERMSIG(status);
3286 printf("%s\n", sig == SIGINT ? "" : get_signame(sig));
Denis Vlasenko40e84372009-04-18 11:23:38 +00003287 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00003288 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003289 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003290 fg_pipe->cmds[i].is_stopped = 1;
3291 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00003292 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003293 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
3294 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
3295 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003296 /* All processes in fg pipe have exited or stopped */
3297/* Note: *non-interactive* bash does not continue if all processes in fg pipe
3298 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
3299 * and "killall -STOP cat" */
3300 if (G_interactive_fd) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003301#if ENABLE_HUSH_JOB
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003302 if (fg_pipe->alive_cmds)
3303 insert_bg_job(fg_pipe);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003304#endif
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003305 return rcode;
3306 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003307 }
3308 /* There are still running processes in the fg pipe */
3309 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00003310 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003311 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00003312 }
3313
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003314#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003315 /* We asked to wait for bg or orphaned children */
3316 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003317 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003318 for (i = 0; i < pi->num_cmds; i++) {
3319 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003320 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00003321 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00003322 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003323 /* Happens when shell is used as init process (init=/bin/sh) */
3324 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003325 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00003326
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003327 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00003328 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00003329 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003330 pi->cmds[i].pid = 0;
3331 pi->alive_cmds--;
3332 if (!pi->alive_cmds) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003333 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00003334 printf(JOB_STATUS_FORMAT, pi->jobid,
3335 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003336 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00003337 }
3338 } else {
3339 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003340 pi->cmds[i].is_stopped = 1;
3341 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003342 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003343#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003344 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00003345
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003346 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00003347}
3348
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003349#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00003350static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
3351{
3352 pid_t p;
3353 int rcode = checkjobs(fg_pipe);
3354 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00003355 p = getpgid(0); /* pgid of our process */
3356 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003357 tcsetpgrp(G_interactive_fd, p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00003358 return rcode;
3359}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003360#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00003361
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003362/* Start all the jobs, but don't wait for anything to finish.
3363 * See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00003364 *
Denis Vlasenko552433b2009-04-04 19:29:21 +00003365 * Return code is normally -1, when the caller has to wait for children
Eric Andersen25f27032001-04-26 23:22:31 +00003366 * to finish to determine the exit status of the pipe. If the pipe
3367 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00003368 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00003369 * return value.
3370 *
Denis Vlasenko170435c2007-05-23 13:01:10 +00003371 * Returns -1 only if started some children. IOW: we have to
3372 * mask out retvals of builtins etc with 0xff!
Denis Vlasenko552433b2009-04-04 19:29:21 +00003373 *
3374 * The only case when we do not need to [v]fork is when the pipe
3375 * is single, non-backgrounded, non-subshell command. Examples:
3376 * cmd ; ... { list } ; ...
3377 * cmd && ... { list } && ...
3378 * cmd || ... { list } || ...
3379 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
3380 * or (if SH_STANDALONE) an applet, and we can run the { list }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003381 * with run_list. If it isn't one of these, we fork and exec cmd.
Denis Vlasenko552433b2009-04-04 19:29:21 +00003382 *
3383 * Cases when we must fork:
3384 * non-single: cmd | cmd
3385 * backgrounded: cmd & { list } &
3386 * subshell: ( list ) [&]
Eric Andersen25f27032001-04-26 23:22:31 +00003387 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003388static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003389{
Denis Vlasenko552433b2009-04-04 19:29:21 +00003390 static const char *const null_ptr = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003391 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003392 int nextin;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003393 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003394 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003395 char **argv;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003396 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003397 /* it is not always needed, but we aim to smaller code */
3398 int squirrel[] = { -1, -1, -1 };
3399 int rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003400
Denis Vlasenko552433b2009-04-04 19:29:21 +00003401 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003402 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003403
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00003404 IF_HUSH_JOB(pi->pgrp = -1;)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003405 pi->stopped_cmds = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003406 command = &(pi->cmds[0]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003407 argv_expanded = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003408
Denis Vlasenko552433b2009-04-04 19:29:21 +00003409 if (pi->num_cmds != 1
3410 || pi->followup == PIPE_BG
3411 || command->grp_type == GRP_SUBSHELL
3412 ) {
3413 goto must_fork;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003414 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003415
Denis Vlasenko552433b2009-04-04 19:29:21 +00003416 pi->alive_cmds = 1;
3417
3418 debug_printf_exec(": group:%p argv:'%s'\n",
3419 command->group, command->argv ? command->argv[0] : "NONE");
3420
3421 if (command->group) {
3422#if ENABLE_HUSH_FUNCTIONS
3423 if (command->grp_type == GRP_FUNCTION) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003424 /* "executing" func () { list } */
3425 struct function *funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003426
Denis Vlasenkobc569742009-04-12 20:35:19 +00003427 funcp = new_function(command->argv[0]);
3428 /* funcp->name is already set to argv[0] */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003429 funcp->body = command->group;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003430#if !BB_MMU
3431 funcp->body_as_string = command->group_as_string;
3432 command->group_as_string = NULL;
3433#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003434 command->group = NULL;
3435 command->argv[0] = NULL;
Denis Vlasenkoed055212009-04-11 10:37:10 +00003436 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
3437 funcp->parent_cmd = command;
3438 command->child_func = funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003439
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003440 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
3441 debug_leave();
Denis Vlasenko552433b2009-04-04 19:29:21 +00003442 return EXIT_SUCCESS;
3443 }
3444#endif
3445 /* { list } */
3446 debug_printf("non-subshell group\n");
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003447 rcode = 1; /* exitcode if redir failed */
3448 if (setup_redirects(command, squirrel) == 0) {
3449 debug_printf_exec(": run_list\n");
3450 rcode = run_list(command->group) & 0xff;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003451 }
Eric Andersen04407e52001-06-07 16:42:05 +00003452 restore_redirects(squirrel);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003453 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003454 debug_leave();
3455 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003456 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003457 }
3458
Denis Vlasenko552433b2009-04-04 19:29:21 +00003459 argv = command->argv ? command->argv : (char **) &null_ptr;
3460 {
3461 const struct built_in_command *x;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003462#if ENABLE_HUSH_FUNCTIONS
3463 const struct function *funcp;
3464#else
3465 enum { funcp = 0 };
3466#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003467 char **new_env = NULL;
3468 char **old_env = NULL;
3469
Denis Vlasenko552433b2009-04-04 19:29:21 +00003470 if (argv[command->assignment_cnt] == NULL) {
3471 /* Assignments, but no command */
3472 /* Ensure redirects take effect. Try "a=t >file" */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003473 rcode = setup_redirects(command, squirrel);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003474 restore_redirects(squirrel);
3475 /* Set shell variables */
3476 while (*argv) {
3477 p = expand_string_to_string(*argv);
3478 debug_printf_exec("set shell var:'%s'->'%s'\n",
3479 *argv, p);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00003480 set_local_var(p, 0, 0);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003481 argv++;
Eric Andersen78a7c992001-05-15 16:30:25 +00003482 }
Denis Vlasenko552433b2009-04-04 19:29:21 +00003483 /* Do we need to flag set_local_var() errors?
3484 * "assignment to readonly var" and "putenv error"
3485 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003486 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003487 debug_leave();
3488 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003489 return rcode;
Eric Andersen78a7c992001-05-15 16:30:25 +00003490 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003491
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003492 /* Expand the rest into (possibly) many strings each */
Denis Vlasenko552433b2009-04-04 19:29:21 +00003493 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003494
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003495 x = find_builtin(argv_expanded[0]);
3496#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003497 funcp = NULL;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003498 if (!x)
3499 funcp = find_function(argv_expanded[0]);
3500#endif
3501 if (x || funcp) {
3502 if (!funcp) {
3503 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
3504 debug_printf("exec with redirects only\n");
3505 rcode = setup_redirects(command, NULL);
3506 goto clean_up_and_ret1;
3507 }
Eric Andersen25f27032001-04-26 23:22:31 +00003508 }
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003509 /* setup_redirects acts on file descriptors, not FILEs.
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003510 * This is perfect for work that comes after exec().
3511 * Is it really safe for inline use? Experimentally,
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003512 * things seem to work. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003513 rcode = setup_redirects(command, squirrel);
3514 if (rcode == 0) {
3515 new_env = expand_assignments(argv, command->assignment_cnt);
3516 old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003517 if (!funcp) {
3518 debug_printf_exec(": builtin '%s' '%s'...\n",
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003519 x->cmd, argv_expanded[1]);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003520 rcode = x->function(argv_expanded) & 0xff;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003521 fflush(NULL);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003522 }
3523#if ENABLE_HUSH_FUNCTIONS
3524 else {
3525 debug_printf_exec(": function '%s' '%s'...\n",
3526 funcp->name, argv_expanded[1]);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003527 rcode = run_function(funcp, argv_expanded) & 0xff;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003528 }
3529#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003530 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003531#if ENABLE_FEATURE_SH_STANDALONE
3532 clean_up_and_ret:
3533#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003534 restore_redirects(squirrel);
3535 free_strings_and_unsetenv(new_env, 1);
3536 putenv_all(old_env);
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003537 /* Free the pointers, but the strings themselves
3538 * are in environ now, don't use free_strings! */
3539 free(old_env);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003540 clean_up_and_ret1:
3541 free(argv_expanded);
3542 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003543 debug_leave();
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003544 debug_printf_exec("run_pipe return %d\n", rcode);
3545 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003546 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003547
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003548#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003549 i = find_applet_by_name(argv_expanded[0]);
3550 if (i >= 0 && APPLET_IS_NOFORK(i)) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003551 rcode = setup_redirects(command, squirrel);
3552 if (rcode == 0) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003553 new_env = expand_assignments(argv, command->assignment_cnt);
3554 old_env = putenv_all_and_save_old(new_env);
3555 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003556 argv_expanded[0], argv_expanded[1]);
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003557 rcode = run_nofork_applet(i, argv_expanded);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003558 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003559 goto clean_up_and_ret;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003560 }
3561#endif
Denis Vlasenko552433b2009-04-04 19:29:21 +00003562 /* It is neither builtin nor applet. We must fork. */
Eric Andersen25f27032001-04-26 23:22:31 +00003563 }
3564
Denis Vlasenko552433b2009-04-04 19:29:21 +00003565 must_fork:
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003566 /* NB: argv_expanded may already be created, and that
3567 * might include `cmd` runs! Do not rerun it! We *must*
3568 * use argv_expanded if it's non-NULL */
3569
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003570 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003571 pi->alive_cmds = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003572 nextin = 0;
3573
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003574 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003575 struct fd_pair pipefds;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003576#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003577 volatile nommu_save_t nommu_save;
3578 nommu_save.new_env = NULL;
3579 nommu_save.old_env = NULL;
3580 nommu_save.argv = NULL;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003581 nommu_save.argv_from_re_execing = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003582#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003583 command = &(pi->cmds[i]);
3584 if (command->argv) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003585 debug_printf_exec(": pipe member '%s' '%s'...\n",
3586 command->argv[0], command->argv[1]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003587 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003588 debug_printf_exec(": pipe member with no argv\n");
Denis Vlasenko552433b2009-04-04 19:29:21 +00003589 }
Eric Andersen25f27032001-04-26 23:22:31 +00003590
3591 /* pipes are inserted between pairs of commands */
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003592 pipefds.rd = 0;
3593 pipefds.wr = 1;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003594 if ((i + 1) < pi->num_cmds)
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003595 xpiped_pair(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00003596
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003597 command->pid = BB_MMU ? fork() : vfork();
3598 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003599#if ENABLE_HUSH_JOB
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003600 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkod5762932009-03-31 11:22:57 +00003601
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003602 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00003603 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003604 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00003605 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003606 pgrp = pi->pgrp;
3607 if (pgrp < 0) /* true for 1st process only */
3608 pgrp = getpid();
3609 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003610 /* We do it in *every* child, not just first,
3611 * to avoid races */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003612 tcsetpgrp(G_interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003613 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003614 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003615#endif
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003616 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
3617 /* 1st cmd in backgrounded pipe
3618 * should have its stdin /dev/null'ed */
3619 close(0);
3620 if (open(bb_dev_null, O_RDONLY))
3621 xopen("/", O_RDONLY);
3622 } else {
3623 xmove_fd(nextin, 0);
3624 }
3625 xmove_fd(pipefds.wr, 1);
3626 if (pipefds.rd > 1)
3627 close(pipefds.rd);
Eric Andersen25f27032001-04-26 23:22:31 +00003628 /* Like bash, explicit redirects override pipes,
3629 * and the pipe fd is available for dup'ing. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003630 if (setup_redirects(command, NULL))
3631 _exit(1);
Eric Andersen52a97ca2001-06-22 06:49:26 +00003632
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003633 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003634 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
3635
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003636 /* Stores to nommu_save list of env vars putenv'ed
3637 * (NOMMU, on MMU we don't need that) */
3638 /* cast away volatility... */
3639 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003640 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00003641 }
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003642
Denis Vlasenkof9375282009-04-05 19:13:39 +00003643 /* parent or error */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003644 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003645#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003646 /* Clean up after vforked child */
3647 free(nommu_save.argv);
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003648 free(nommu_save.argv_from_re_execing);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003649 free_strings_and_unsetenv(nommu_save.new_env, 1);
3650 putenv_all(nommu_save.old_env);
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003651 /* Free the pointers, but the strings themselves
3652 * are in environ now, don't use free_strings! */
3653 free(nommu_save.old_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003654#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003655 free(argv_expanded);
3656 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003657 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003658 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko82604e92008-07-01 15:59:42 +00003659 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003660 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003661 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003662#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003663 /* Second and next children need to know pid of first one */
3664 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003665 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003666#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003667 }
Eric Andersen25f27032001-04-26 23:22:31 +00003668
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003669 if (i)
3670 close(nextin);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003671 if ((i + 1) < pi->num_cmds)
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003672 close(pipefds.wr);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003673 /* Pass read (output) pipe end to next iteration */
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003674 nextin = pipefds.rd;
Eric Andersen25f27032001-04-26 23:22:31 +00003675 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003676
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003677 if (!pi->alive_cmds) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003678 debug_leave();
Denis Vlasenko05743d72008-02-10 12:10:08 +00003679 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
3680 return 1;
3681 }
3682
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003683 debug_leave();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003684 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00003685 return -1;
3686}
3687
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003688#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003689static void debug_print_tree(struct pipe *pi, int lvl)
3690{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003691 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003692 [PIPE_SEQ] = "SEQ",
3693 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003694 [PIPE_OR ] = "OR" ,
3695 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003696 };
3697 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003698 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003699#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003700 [RES_IF ] = "IF" ,
3701 [RES_THEN ] = "THEN" ,
3702 [RES_ELIF ] = "ELIF" ,
3703 [RES_ELSE ] = "ELSE" ,
3704 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003705#endif
3706#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003707 [RES_FOR ] = "FOR" ,
3708 [RES_WHILE] = "WHILE",
3709 [RES_UNTIL] = "UNTIL",
3710 [RES_DO ] = "DO" ,
3711 [RES_DONE ] = "DONE" ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003712#endif
3713#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003714 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003715#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003716#if ENABLE_HUSH_CASE
3717 [RES_CASE ] = "CASE" ,
3718 [RES_MATCH] = "MATCH",
3719 [RES_CASEI] = "CASEI",
3720 [RES_ESAC ] = "ESAC" ,
3721#endif
Denis Vlasenko06810332007-05-21 23:30:54 +00003722 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003723 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003724 };
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003725 static const char *const GRPTYPE[] = {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003726 "{}",
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00003727 "()",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003728#if ENABLE_HUSH_FUNCTIONS
3729 "func()",
3730#endif
3731 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003732
3733 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003734
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003735 pin = 0;
3736 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003737 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
3738 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003739 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003740 while (prn < pi->num_cmds) {
3741 struct command *command = &pi->cmds[prn];
3742 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003743
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003744 fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003745 lvl*2, "", prn,
3746 command->assignment_cnt);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003747 if (command->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003748 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003749 GRPTYPE[command->grp_type],
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003750 argv);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003751 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003752 prn++;
3753 continue;
3754 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003755 if (argv) while (*argv) {
3756 fprintf(stderr, " '%s'", *argv);
3757 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003758 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003759 fprintf(stderr, "\n");
3760 prn++;
3761 }
3762 pi = pi->next;
3763 pin++;
3764 }
3765}
3766#endif
3767
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003768/* NB: called by pseudo_exec, and therefore must not modify any
3769 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003770static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003771{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003772#if ENABLE_HUSH_CASE
3773 char *case_word = NULL;
3774#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003775#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003776 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003777 char *for_varname = NULL;
3778 char **for_lcur = NULL;
3779 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00003780#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003781 smallint last_followup;
3782 smalluint rcode;
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003783#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003784 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003785#else
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003786 enum { cond_code = 0 };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003787#endif
Denis Vlasenko0e151382009-04-06 18:40:31 +00003788#if HAS_KEYWORDS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003789 smallint rword; /* enum reserved_style */
3790 smallint last_rword; /* ditto */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003791#endif
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003792
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003793 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003794 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003795
Denis Vlasenko06810332007-05-21 23:30:54 +00003796#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003797 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003798 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
3799 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003800 continue;
3801 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003802 if (cpipe->next == NULL) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003803 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003804 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00003805 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003806 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003807 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003808 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003809 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003810 continue;
3811 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003812 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
3813 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003814 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003815 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003816 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00003817 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003818 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003819 }
3820 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003821#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003822
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003823 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00003824 * in order to return, no direct "return" statements please.
3825 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003826
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003827#if ENABLE_HUSH_JOB
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003828 G.run_list_level++;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003829#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003830
Denis Vlasenko0e151382009-04-06 18:40:31 +00003831#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003832 rword = RES_NONE;
3833 last_rword = RES_XXXX;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003834#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003835 last_followup = PIPE_SEQ;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003836 rcode = G.last_exitcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003837
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003838 /* Go through list of pipes, (maybe) executing them. */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00003839 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00003840 if (G.flag_SIGINT)
3841 break;
3842
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003843 IF_HAS_KEYWORDS(rword = pi->res_word;)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003844 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
3845 rword, cond_code, last_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00003846#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00003847 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003848 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00003849 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003850 /* start of a loop: remember where loop starts */
3851 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003852 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003853 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003854#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003855 /* Still in the same "if...", "then..." or "do..." branch? */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003856 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003857 if ((rcode == 0 && last_followup == PIPE_OR)
3858 || (rcode != 0 && last_followup == PIPE_AND)
3859 ) {
3860 /* It is "<true> || CMD" or "<false> && CMD"
3861 * and we should not execute CMD */
3862 debug_printf_exec("skipped cmd because of || or &&\n");
3863 last_followup = pi->followup;
3864 continue;
3865 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003866 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003867 last_followup = pi->followup;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003868 IF_HAS_KEYWORDS(last_rword = rword;)
Denis Vlasenko06810332007-05-21 23:30:54 +00003869#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003870 if (cond_code) {
3871 if (rword == RES_THEN) {
Denis Vlasenko0e151382009-04-06 18:40:31 +00003872 /* if false; then ... fi has exitcode 0! */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003873 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003874 /* "if <false> THEN cmd": skip cmd */
3875 continue;
3876 }
3877 } else {
3878 if (rword == RES_ELSE || rword == RES_ELIF) {
3879 /* "if <true> then ... ELSE/ELIF cmd":
3880 * skip cmd and all following ones */
3881 break;
3882 }
3883 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003884#endif
3885#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003886 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003887 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003888 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003889
3890 static const char encoded_dollar_at[] ALIGN1 = {
3891 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
3892 }; /* encoded representation of "$@" */
3893 static const char *const encoded_dollar_at_argv[] = {
3894 encoded_dollar_at, NULL
3895 }; /* argv list with one element: "$@" */
3896 char **vals;
3897
3898 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003899 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003900 /* if no variable values after "in" we skip "for" */
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003901 if (!pi->next->cmds[0].argv) {
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003902 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003903 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003904 break;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003905 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003906 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003907 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003908 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003909 debug_print_strings("for_list made from", vals);
3910 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003911 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003912 debug_print_strings("for_list", for_list);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003913 for_varname = pi->cmds[0].argv[0];
3914 pi->cmds[0].argv[0] = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003915 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003916 free(pi->cmds[0].argv[0]);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003917 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00003918 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003919 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003920 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003921 for_lcur = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003922 pi->cmds[0].argv[0] = for_varname;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003923 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003924 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003925 /* Insert next value from for_lcur */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003926 /* note: *for_lcur already has quotes removed, $var expanded, etc */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003927 pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
3928 pi->cmds[0].assignment_cnt = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003929 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003930 if (rword == RES_IN) {
3931 continue; /* "for v IN list;..." - "in" has no cmds anyway */
3932 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003933 if (rword == RES_DONE) {
3934 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003935 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003936#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003937#if ENABLE_HUSH_CASE
3938 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003939 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003940 continue;
3941 }
3942 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003943 char **argv;
3944
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003945 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
3946 break;
3947 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003948 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003949 while (*argv) {
3950 char *pattern = expand_string_to_string(*argv);
3951 /* TODO: which FNM_xxx flags to use? */
3952 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
3953 free(pattern);
3954 if (cond_code == 0) { /* match! we will execute this branch */
3955 free(case_word); /* make future "word)" stop */
3956 case_word = NULL;
3957 break;
3958 }
3959 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003960 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003961 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003962 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003963 if (rword == RES_CASEI) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003964 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003965 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003966 }
3967#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003968 /* Just pressing <enter> in shell should check for jobs.
3969 * OTOH, in non-interactive shell this is useless
3970 * and only leads to extra job checks */
3971 if (pi->num_cmds == 0) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003972 if (G_interactive_fd)
Denis Vlasenkod5762932009-03-31 11:22:57 +00003973 goto check_jobs_and_continue;
3974 continue;
3975 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003976
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003977 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00003978 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003979 * after run_pipe to collect any background children,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003980 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003981 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003982 {
3983 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003984#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00003985 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003986#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003987 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
3988 if (r != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00003989 /* We ran a builtin, function, or group.
3990 * rcode is already known
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003991 * and we don't need to wait for anything. */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003992 G.last_exitcode = rcode;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003993 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003994 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003995#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003996 /* Was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003997 if (G.flag_break_continue) {
3998 smallint fbc = G.flag_break_continue;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003999 /* We might fall into outer *loop*,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004000 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004001 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00004002 G.depth_break_continue--;
4003 if (G.depth_break_continue == 0)
4004 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00004005 /* else: e.g. "continue 2" should *break* once, *then* continue */
4006 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004007 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00004008 goto check_jobs_and_break;
4009 /* "continue": simulate end of loop */
4010 rword = RES_DONE;
4011 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004012 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00004013#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00004014#if ENABLE_HUSH_FUNCTIONS
4015 if (G.flag_return_in_progress == 1)
4016 goto check_jobs_and_break;
4017#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004018 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004019 /* What does bash do with attempts to background builtins? */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004020 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004021 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
4022 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004023 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004024#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00004025 if (G.run_list_level == 1)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00004026{
4027debug_printf_exec("insert_bg_job1\n");
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004028 insert_bg_job(pi);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00004029debug_printf_exec("insert_bg_job2\n");
4030}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004031#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004032 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004033 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004034 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004035#if ENABLE_HUSH_JOB
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004036 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004037 /* Waits for completion, then fg's main shell */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004038 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004039 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004040 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004041 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004042#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004043 { /* This one just waits for completion */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004044 rcode = checkjobs(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004045 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004046 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004047 }
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004048 G.last_exitcode = rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00004049 }
4050 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004051
4052 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00004053#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00004054 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004055 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00004056#endif
4057#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004058 /* Beware of "while false; true; do ..."! */
4059 if (pi->next && pi->next->res_word == RES_DO) {
4060 if (rword == RES_WHILE) {
4061 if (rcode) {
4062 /* "while false; do...done" - exitcode 0 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004063 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004064 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
4065 goto check_jobs_and_break;
4066 }
Denis Vlasenko918a34b2008-07-28 23:17:31 +00004067 }
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004068 if (rword == RES_UNTIL) {
4069 if (!rcode) {
4070 debug_printf_exec(": until expr is true: breaking\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004071 check_jobs_and_break:
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004072 checkjobs(NULL);
4073 break;
4074 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004075 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004076 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004077#endif
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00004078
4079 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00004080 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004081 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004082
4083#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00004084 G.run_list_level--;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004085#endif
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004086#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00004087 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00004088 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004089 free(for_list);
4090#endif
4091#if ENABLE_HUSH_CASE
4092 free(case_word);
4093#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004094 debug_leave();
4095 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00004096 return rcode;
4097}
4098
Eric Andersen25f27032001-04-26 23:22:31 +00004099/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00004100static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00004101{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004102 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00004103 debug_printf_exec("run_and_free_list entered\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00004104 if (!G.fake_mode) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004105 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00004106 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004107 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004108 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00004109 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00004110 * but doing that now would hobble the debugging effort. */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004111 free_pipe_list(pi);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00004112 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00004113 return rcode;
4114}
4115
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004116
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00004117static struct pipe *new_pipe(void)
4118{
Eric Andersen25f27032001-04-26 23:22:31 +00004119 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00004120 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004121 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004122 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00004123 return pi;
4124}
4125
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004126/* Command (member of a pipe) is complete, or we start a new pipe
4127 * if ctx->command is NULL.
4128 * No errors possible here.
4129 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004130static int done_command(struct parse_context *ctx)
4131{
4132 /* The command is really already in the pipe structure, so
4133 * advance the pipe counter and make a new, null command. */
4134 struct pipe *pi = ctx->pipe;
4135 struct command *command = ctx->command;
4136
4137 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004138 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004139 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004140 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004141 }
4142 pi->num_cmds++;
4143 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004144 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004145 } else {
4146 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
4147 }
4148
4149 /* Only real trickiness here is that the uncommitted
4150 * command structure is not counted in pi->num_cmds. */
4151 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004152 ctx->command = command = &pi->cmds[pi->num_cmds];
4153 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004154 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004155 return pi->num_cmds; /* used only for 0/nonzero check */
4156}
4157
4158static void done_pipe(struct parse_context *ctx, pipe_style type)
4159{
4160 int not_null;
4161
4162 debug_printf_parse("done_pipe entered, followup %d\n", type);
4163 /* Close previous command */
4164 not_null = done_command(ctx);
4165 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004166#if HAS_KEYWORDS
4167 ctx->pipe->pi_inverted = ctx->ctx_inverted;
4168 ctx->ctx_inverted = 0;
4169 ctx->pipe->res_word = ctx->ctx_res_w;
4170#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004171
4172 /* Without this check, even just <enter> on command line generates
4173 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004174 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004175 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00004176#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004177 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00004178#endif
4179#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004180 || ctx->ctx_res_w == RES_DONE
4181 || ctx->ctx_res_w == RES_FOR
4182 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00004183#endif
4184#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004185 || ctx->ctx_res_w == RES_ESAC
4186#endif
4187 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004188 struct pipe *new_p;
4189 debug_printf_parse("done_pipe: adding new pipe: "
4190 "not_null:%d ctx->ctx_res_w:%d\n",
4191 not_null, ctx->ctx_res_w);
4192 new_p = new_pipe();
4193 ctx->pipe->next = new_p;
4194 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004195 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004196 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004197 * This is used to control execution.
4198 * RES_FOR and RES_IN are NOT sticky (needed to support
4199 * cases where variable or value happens to match a keyword):
4200 */
4201#if ENABLE_HUSH_LOOPS
4202 if (ctx->ctx_res_w == RES_FOR
4203 || ctx->ctx_res_w == RES_IN)
4204 ctx->ctx_res_w = RES_NONE;
4205#endif
4206#if ENABLE_HUSH_CASE
4207 if (ctx->ctx_res_w == RES_MATCH)
4208 ctx->ctx_res_w = RES_CASEI;
4209#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004210 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004211 /* Create the memory for command, roughly:
4212 * ctx->pipe->cmds = new struct command;
4213 * ctx->command = &ctx->pipe->cmds[0];
4214 */
4215 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004216 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004217 }
4218 debug_printf_parse("done_pipe return\n");
4219}
4220
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004221static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00004222{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004223 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00004224 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004225 /* Create the memory for command, roughly:
4226 * ctx->pipe->cmds = new struct command;
4227 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004228 */
4229 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00004230}
4231
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004232/* If a reserved word is found and processed, parse context is modified
4233 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00004234 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004235#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004236struct reserved_combo {
4237 char literal[6];
4238 unsigned char res;
4239 unsigned char assignment_flag;
4240 int flag;
4241};
4242enum {
4243 FLAG_END = (1 << RES_NONE ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004244#if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004245 FLAG_IF = (1 << RES_IF ),
4246 FLAG_THEN = (1 << RES_THEN ),
4247 FLAG_ELIF = (1 << RES_ELIF ),
4248 FLAG_ELSE = (1 << RES_ELSE ),
4249 FLAG_FI = (1 << RES_FI ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004250#endif
4251#if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004252 FLAG_FOR = (1 << RES_FOR ),
4253 FLAG_WHILE = (1 << RES_WHILE),
4254 FLAG_UNTIL = (1 << RES_UNTIL),
4255 FLAG_DO = (1 << RES_DO ),
4256 FLAG_DONE = (1 << RES_DONE ),
4257 FLAG_IN = (1 << RES_IN ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004258#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004259#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004260 FLAG_MATCH = (1 << RES_MATCH),
4261 FLAG_ESAC = (1 << RES_ESAC ),
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004262#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004263 FLAG_START = (1 << RES_XXXX ),
4264};
4265
4266static const struct reserved_combo* match_reserved_word(o_string *word)
4267{
Eric Andersen25f27032001-04-26 23:22:31 +00004268 /* Mostly a list of accepted follow-up reserved words.
4269 * FLAG_END means we are done with the sequence, and are ready
4270 * to turn the compound list into a command.
4271 * FLAG_START means the word must start a new compound list.
4272 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004273 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00004274#if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004275 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
4276 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
4277 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
4278 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
4279 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
4280 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00004281#endif
4282#if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004283 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
4284 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4285 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4286 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
4287 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
4288 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004289#endif
4290#if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004291 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
4292 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00004293#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004294 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004295 const struct reserved_combo *r;
4296
4297 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
4298 if (strcmp(word->data, r->literal) == 0)
4299 return r;
4300 }
4301 return NULL;
4302}
Denis Vlasenkobb929512009-04-16 10:59:40 +00004303/* Return 0: not a keyword, 1: keyword
4304 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004305static int reserved_word(o_string *word, struct parse_context *ctx)
4306{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004307#if ENABLE_HUSH_CASE
4308 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004309 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004310 };
4311#endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004312 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004313
Denis Vlasenkobb929512009-04-16 10:59:40 +00004314 if (word->o_quoted)
4315 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004316 r = match_reserved_word(word);
4317 if (!r)
4318 return 0;
4319
4320 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004321#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004322 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE)
4323 /* "case word IN ..." - IN part starts first match part */
4324 r = &reserved_match;
4325 else
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004326#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004327 if (r->flag == 0) { /* '!' */
4328 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004329 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00004330 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00004331 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004332 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004333 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004334 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004335 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004336 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004337
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004338 old = xmalloc(sizeof(*old));
4339 debug_printf_parse("push stack %p\n", old);
4340 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004341 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004342 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004343 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004344 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004345 ctx->ctx_res_w = RES_SNTX;
4346 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004347 } else {
4348 /* "{...} fi" is ok. "{...} if" is not
4349 * Example:
4350 * if { echo foo; } then { echo bar; } fi */
4351 if (ctx->command->group)
4352 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004353 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00004354
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004355 ctx->ctx_res_w = r->res;
4356 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004357 word->o_assignment = r->assignment_flag;
4358
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004359 if (ctx->old_flag & FLAG_END) {
4360 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004361
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004362 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004363 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004364 old = ctx->stack;
4365 old->command->group = ctx->list_head;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004366 old->command->grp_type = GRP_NORMAL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004367#if !BB_MMU
4368 o_addstr(&old->as_string, ctx->as_string.data);
4369 o_free_unsafe(&ctx->as_string);
4370 old->command->group_as_string = xstrdup(old->as_string.data);
4371 debug_printf_parse("pop, remembering as:'%s'\n",
4372 old->command->group_as_string);
4373#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004374 *ctx = *old; /* physical copy */
4375 free(old);
4376 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004377 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004378}
Denis Vlasenko06810332007-05-21 23:30:54 +00004379#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004380
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004381/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004382 * Normal return is 0. Syntax errors return 1.
4383 * Note: on return, word is reset, but not o_free'd!
4384 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004385static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00004386{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004387 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00004388
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004389 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004390 if (word->length == 0 && word->o_quoted == 0) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004391 debug_printf_parse("done_word return 0: true null, ignored\n");
4392 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004393 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004394
Eric Andersen25f27032001-04-26 23:22:31 +00004395 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004396 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
4397 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004398 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4399 * "2.7 Redirection
4400 * ...the word that follows the redirection operator
4401 * shall be subjected to tilde expansion, parameter expansion,
4402 * command substitution, arithmetic expansion, and quote
4403 * removal. Pathname expansion shall not be performed
4404 * on the word by a non-interactive shell; an interactive
4405 * shell may perform it, but shall do so only when
4406 * the expansion would result in one word."
4407 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004408 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004409 /* Cater for >\file case:
4410 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
4411 * Same with heredocs:
4412 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
4413 */
4414 unbackslash(ctx->pending_redirect->rd_filename);
4415 /* Is it <<"HEREDOC"? */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004416 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC
4417 && word->o_quoted
4418 ) {
4419 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
4420 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004421 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004422 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00004423 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004424 /* If this word wasn't an assignment, next ones definitely
4425 * can't be assignments. Even if they look like ones. */
4426 if (word->o_assignment != DEFINITELY_ASSIGNMENT
4427 && word->o_assignment != WORD_IS_KEYWORD
4428 ) {
4429 word->o_assignment = NOT_ASSIGNMENT;
4430 } else {
4431 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
4432 command->assignment_cnt++;
4433 word->o_assignment = MAYBE_ASSIGNMENT;
4434 }
4435
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004436#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004437# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00004438 if (ctx->ctx_dsemicolon
4439 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
4440 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00004441 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004442 /* ctx->ctx_res_w = RES_MATCH; */
4443 ctx->ctx_dsemicolon = 0;
4444 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004445# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004446 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004447# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004448 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
4449 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004450# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004451 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004452 debug_printf_parse("checking '%s' for reserved-ness\n", word->data);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004453 if (reserved_word(word, ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004454 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004455 debug_printf_parse("done_word return %d\n",
4456 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004457 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004458 }
Eric Andersen25f27032001-04-26 23:22:31 +00004459 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004460#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00004461 if (command->group) {
4462 /* "{ echo foo; } echo bar" - bad */
4463 syntax_error_at(word->data);
4464 debug_printf_parse("done_word return 1: syntax error, "
4465 "groups and arglists don't mix\n");
4466 return 1;
4467 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004468 if (word->o_quoted /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00004469 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
4470 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004471 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004472 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004473 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004474 char *p = word->data;
4475 while (p[0] == SPECIAL_VAR_SYMBOL
4476 && (p[1] & 0x7f) == '@'
4477 && p[2] == SPECIAL_VAR_SYMBOL
4478 ) {
4479 p += 3;
4480 }
4481 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004482 /* saw no "$@", or not only "$@" but some
4483 * real text is there too */
4484 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004485 * e.g. "", $empty"" etc to not disappear */
4486 o_addchr(word, SPECIAL_VAR_SYMBOL);
4487 o_addchr(word, SPECIAL_VAR_SYMBOL);
4488 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00004489 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004490 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004491 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004492 }
Eric Andersen25f27032001-04-26 23:22:31 +00004493
Denis Vlasenko06810332007-05-21 23:30:54 +00004494#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004495 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004496 if (word->o_quoted
4497 || !is_well_formed_var_name(command->argv[0], '\0')
4498 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004499 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004500 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004501 return 1;
4502 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004503 /* Force FOR to have just one word (variable name) */
4504 /* NB: basically, this makes hush see "for v in ..."
4505 * syntax as if it is "for v; in ...". FOR and IN become
4506 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004507 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004508 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004509#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004510#if ENABLE_HUSH_CASE
4511 /* Force CASE to have just one word */
4512 if (ctx->ctx_res_w == RES_CASE) {
4513 done_pipe(ctx, PIPE_SEQ);
4514 }
4515#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004516
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004517 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004518
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004519 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004520 return 0;
4521}
4522
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004523
4524/* Peek ahead in the input to find out if we have a "&n" construct,
4525 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004526 * Return:
4527 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
4528 * REDIRFD_SYNTAX_ERR if syntax error,
4529 * REDIRFD_TO_FILE if no & was seen,
4530 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004531 */
4532#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004533#define parse_redir_right_fd(as_string, input) \
4534 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004535#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004536static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004537{
4538 int ch, d, ok;
4539
4540 ch = i_peek(input);
4541 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004542 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004543
4544 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004545 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004546 ch = i_peek(input);
4547 if (ch == '-') {
4548 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004549 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004550 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004551 }
4552 d = 0;
4553 ok = 0;
4554 while (ch != EOF && isdigit(ch)) {
4555 d = d*10 + (ch-'0');
4556 ok = 1;
4557 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004558 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004559 ch = i_peek(input);
4560 }
4561 if (ok) return d;
4562
4563//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
4564
4565 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004566 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004567}
4568
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004569/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004570 */
4571static int parse_redirect(struct parse_context *ctx,
4572 int fd,
4573 redir_type style,
4574 struct in_str *input)
4575{
4576 struct command *command = ctx->command;
4577 struct redir_struct *redir;
4578 struct redir_struct **redirp;
4579 int dup_num;
4580
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004581 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004582 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004583 /* Check for a '>&1' type redirect */
4584 dup_num = parse_redir_right_fd(&ctx->as_string, input);
4585 if (dup_num == REDIRFD_SYNTAX_ERR)
4586 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004587 } else {
4588 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004589 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004590 if (dup_num) { /* <<-... */
4591 ch = i_getch(input);
4592 nommu_addchr(&ctx->as_string, ch);
4593 ch = i_peek(input);
4594 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004595 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004596
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004597 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004598 int ch = i_peek(input);
4599 if (ch == '|') {
4600 /* >|FILE redirect ("clobbering" >).
4601 * Since we do not support "set -o noclobber" yet,
4602 * >| and > are the same for now. Just eat |.
4603 */
4604 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004605 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004606 }
4607 }
4608
4609 /* Create a new redir_struct and append it to the linked list */
4610 redirp = &command->redirects;
4611 while ((redir = *redirp) != NULL) {
4612 redirp = &(redir->next);
4613 }
4614 *redirp = redir = xzalloc(sizeof(*redir));
4615 /* redir->next = NULL; */
4616 /* redir->rd_filename = NULL; */
4617 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004618 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004619
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004620 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
4621 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004622
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004623 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004624 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004625 /* Erik had a check here that the file descriptor in question
4626 * is legit; I postpone that to "run time"
4627 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004628 debug_printf_parse("duplicating redirect '%d>&%d'\n",
4629 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004630 } else {
4631 /* Set ctx->pending_redirect, so we know what to do at the
4632 * end of the next parsed word. */
4633 ctx->pending_redirect = redir;
4634 }
4635 return 0;
4636}
4637
Eric Andersen25f27032001-04-26 23:22:31 +00004638/* If a redirect is immediately preceded by a number, that number is
4639 * supposed to tell which file descriptor to redirect. This routine
4640 * looks for such preceding numbers. In an ideal world this routine
4641 * needs to handle all the following classes of redirects...
4642 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
4643 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
4644 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
4645 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004646 *
4647 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4648 * "2.7 Redirection
4649 * ... If n is quoted, the number shall not be recognized as part of
4650 * the redirection expression. For example:
4651 * echo \2>a
4652 * writes the character 2 into file a"
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004653 * We are getting it right by setting ->o_quoted on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004654 *
4655 * A -1 return means no valid number was found,
4656 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00004657 */
4658static int redirect_opt_num(o_string *o)
4659{
4660 int num;
4661
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004662 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004663 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004664 num = bb_strtou(o->data, NULL, 10);
4665 if (errno || num < 0)
4666 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004667 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00004668 return num;
4669}
4670
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004671#if BB_MMU
4672#define fetch_till_str(as_string, input, word, skip_tabs) \
4673 fetch_till_str(input, word, skip_tabs)
4674#endif
4675static char *fetch_till_str(o_string *as_string,
4676 struct in_str *input,
4677 const char *word,
4678 int skip_tabs)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004679{
4680 o_string heredoc = NULL_O_STRING;
4681 int past_EOL = 0;
4682 int ch;
4683
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004684 goto jump_in;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004685 while (1) {
4686 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004687 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004688 if (ch == '\n') {
4689 if (strcmp(heredoc.data + past_EOL, word) == 0) {
4690 heredoc.data[past_EOL] = '\0';
4691 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
4692 return heredoc.data;
4693 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004694 do {
4695 o_addchr(&heredoc, ch);
4696 past_EOL = heredoc.length;
4697 jump_in:
4698 do {
4699 ch = i_getch(input);
4700 nommu_addchr(as_string, ch);
4701 } while (skip_tabs && ch == '\t');
4702 } while (ch == '\n');
4703 }
4704 if (ch == EOF) {
4705 o_free_unsafe(&heredoc);
4706 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004707 }
4708 o_addchr(&heredoc, ch);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004709 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004710 }
4711}
4712
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004713/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
4714 * and load them all. There should be exactly heredoc_cnt of them.
4715 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004716static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
4717{
4718 struct pipe *pi = ctx->list_head;
4719
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004720 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004721 int i;
4722 struct command *cmd = pi->cmds;
4723
4724 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
4725 pi->num_cmds,
4726 cmd->argv ? cmd->argv[0] : "NONE");
4727 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004728 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004729
4730 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
4731 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004732 while (redir) {
4733 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004734 char *p;
4735
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004736 redir->rd_type = REDIRECT_HEREDOC2;
4737 /* redir->dup is (ab)used to indicate <<- */
4738 p = fetch_till_str(&ctx->as_string, input,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004739 redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004740 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004741 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004742 return 1;
4743 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004744 free(redir->rd_filename);
4745 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004746 heredoc_cnt--;
4747 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004748 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004749 }
4750 cmd++;
4751 }
4752 pi = pi->next;
4753 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004754#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004755 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004756 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004757 bb_error_msg_and_die("heredoc BUG 2");
4758#endif
4759 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004760}
4761
4762
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004763#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004764static FILE *generate_stream_from_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004765{
4766 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004767 int pid, channel[2];
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004768#if !BB_MMU
4769 char **to_free;
4770#endif
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004771
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00004772 xpipe(channel);
Denis Vlasenko82604e92008-07-01 15:59:42 +00004773 pid = BB_MMU ? fork() : vfork();
4774 if (pid < 0)
4775 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004776
Denis Vlasenko05743d72008-02-10 12:10:08 +00004777 if (pid == 0) { /* child */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004778 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004779 /* Process substitution is not considered to be usual
4780 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00004781 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
4782 */
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00004783 bb_signals(0
4784 + (1 << SIGTSTP)
4785 + (1 << SIGTTIN)
4786 + (1 << SIGTTOU)
4787 , SIG_IGN);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004788 close(channel[0]); /* NB: close _first_, then move fd! */
4789 xmove_fd(channel[1], 1);
4790 /* Prevent it from trying to handle ctrl-z etc */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00004791 IF_HUSH_JOB(G.run_list_level = 1;)
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004792#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004793 reset_traps_to_defaults();
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004794 parse_and_run_string(s);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004795 _exit(G.last_exitcode);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004796#else
4797 /* We re-execute after vfork on NOMMU. This makes this script safe:
Denis Vlasenkof9375282009-04-05 19:13:39 +00004798 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
4799 * huge=`cat BIG` # was blocking here forever
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004800 * echo OK
4801 */
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004802 re_execute_shell(&to_free,
4803 s,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004804 G.global_argv[0],
4805 G.global_argv + 1);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004806#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004807 }
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004808
4809 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004810 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004811#if !BB_MMU
4812 free(to_free);
4813#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004814 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00004815 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00004816 return pf;
4817}
4818
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004819/* Return code is exit status of the process that is run. */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004820static int process_command_subs(o_string *dest, const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004821{
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004822 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004823 struct in_str pipe_str;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004824 int ch, eol_cnt;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004825
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004826 pf = generate_stream_from_string(s);
4827 if (pf == NULL)
Denis Vlasenko05743d72008-02-10 12:10:08 +00004828 return 1;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004829 close_on_exec_on(fileno(pf));
Eric Andersen25f27032001-04-26 23:22:31 +00004830
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004831 /* Now send results of command back into original context */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004832 setup_file_in_str(&pipe_str, pf);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004833 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004834 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004835 if (ch == '\n') {
4836 eol_cnt++;
4837 continue;
4838 }
4839 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00004840 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004841 eol_cnt--;
4842 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00004843 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004844 }
4845
4846 debug_printf("done reading from pipe, pclose()ing\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004847 /* Note: we got EOF, and we just close the read end of the pipe.
4848 * We do not wait for the `cmd` child to terminate. bash and ash do.
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004849 * Try these:
4850 * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
4851 * `false`; echo $? - bash outputs "1"
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004852 */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004853 fclose(pf);
4854 debug_printf("closed FILE from child. return 0\n");
4855 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004856}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004857#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004858
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004859static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004860 struct in_str *input, int ch)
4861{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004862 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004863 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004864 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004865 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004866 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004867 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004868
4869 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004870#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004871 if (ch == '(' && !dest->o_quoted) {
4872 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00004873 if (done_word(dest, ctx))
4874 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004875 if (!command->argv)
4876 goto skip; /* (... */
4877 if (command->argv[1]) { /* word word ... (... */
4878 syntax_error_unexpected_ch('(');
4879 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004880 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004881 /* it is "word(..." or "word (..." */
4882 do
4883 ch = i_getch(input);
4884 while (ch == ' ' || ch == '\t');
4885 if (ch != ')') {
4886 syntax_error_unexpected_ch(ch);
4887 return 1;
4888 }
4889 nommu_addchr(&ctx->as_string, ch);
4890 do
4891 ch = i_getch(input);
4892 while (ch == ' ' || ch == '\t' || ch == '\n');
4893 if (ch != '{') {
4894 syntax_error_unexpected_ch(ch);
4895 return 1;
4896 }
4897 nommu_addchr(&ctx->as_string, ch);
4898 command->grp_type = GRP_FUNCTION;
4899 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004900 }
4901#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004902 if (command->argv /* word [word]{... */
4903 || dest->length /* word{... */
4904 || dest->o_quoted /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004905 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004906 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004907 debug_printf_parse("parse_group return 1: "
4908 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004909 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004910 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004911
4912#if ENABLE_HUSH_FUNCTIONS
4913 skip:
4914#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004915 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004916 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004917 endch = ')';
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004918 command->grp_type = GRP_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004919 } else {
4920 /* bash does not allow "{echo...", requires whitespace */
4921 ch = i_getch(input);
4922 if (ch != ' ' && ch != '\t' && ch != '\n') {
4923 syntax_error_unexpected_ch(ch);
4924 return 1;
4925 }
4926 nommu_addchr(&ctx->as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004927 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004928
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004929 {
4930#if !BB_MMU
4931 char *as_string = NULL;
4932#endif
4933 pipe_list = parse_stream(&as_string, input, endch);
4934#if !BB_MMU
4935 if (as_string)
4936 o_addstr(&ctx->as_string, as_string);
4937#endif
4938 /* empty ()/{} or parse error? */
4939 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00004940 /* parse_stream already emitted error msg */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004941#if !BB_MMU
4942 free(as_string);
4943#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004944 debug_printf_parse("parse_group return 1: "
4945 "parse_stream returned %p\n", pipe_list);
4946 return 1;
4947 }
4948 command->group = pipe_list;
4949#if !BB_MMU
4950 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4951 command->group_as_string = as_string;
4952 debug_printf_parse("end of group, remembering as:'%s'\n",
4953 command->group_as_string);
4954#endif
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004955 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004956 debug_printf_parse("parse_group return 0\n");
4957 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004958 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004959}
4960
Mike Frysinger98c52642009-04-02 10:02:37 +00004961#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004962/* Subroutines for copying $(...) and `...` things */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004963static void add_till_backquote(o_string *dest, struct in_str *input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004964/* '...' */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004965static void add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004966{
4967 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004968 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004969 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004970 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004971 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004972 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004973 if (ch == '\'')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004974 return;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004975 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004976 }
4977}
4978/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004979static void add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004980{
4981 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004982 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004983 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004984 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004985 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004986 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004987 if (ch == '"')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004988 return;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004989 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004990 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004991 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004992 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004993 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004994 if (ch == '`') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004995 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004996 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004997 continue;
4998 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004999 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005000 }
5001}
5002/* Process `cmd` - copy contents until "`" is seen. Complicated by
5003 * \` quoting.
5004 * "Within the backquoted style of command substitution, backslash
5005 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
5006 * The search for the matching backquote shall be satisfied by the first
5007 * backquote found without a preceding backslash; during this search,
5008 * if a non-escaped backquote is encountered within a shell comment,
5009 * a here-document, an embedded command substitution of the $(command)
5010 * form, or a quoted string, undefined results occur. A single-quoted
5011 * or double-quoted string that begins, but does not end, within the
5012 * "`...`" sequence produces undefined results."
5013 * Example Output
5014 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
5015 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005016static void add_till_backquote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005017{
5018 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005019 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005020 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005021 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005022 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005023 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005024 if (ch == '`')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005025 return;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005026 if (ch == '\\') {
5027 /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005028 int ch2 = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005029 if (ch2 == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005030 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005031 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005032 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005033 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005034 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005035 ch = ch2;
5036 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005037 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005038 }
5039}
5040/* Process $(cmd) - copy contents until ")" is seen. Complicated by
5041 * quoting and nested ()s.
5042 * "With the $(command) style of command substitution, all characters
5043 * following the open parenthesis to the matching closing parenthesis
5044 * constitute the command. Any valid shell script can be used for command,
5045 * except a script consisting solely of redirections which produces
5046 * unspecified results."
5047 * Example Output
5048 * echo $(echo '(TEST)' BEST) (TEST) BEST
5049 * echo $(echo 'TEST)' BEST) TEST) BEST
5050 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
5051 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005052static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005053{
5054 int count = 0;
5055 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005056 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005057 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005058 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005059 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005060 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005061 if (ch == '(')
5062 count++;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005063 if (ch == ')') {
Mike Frysinger98c52642009-04-02 10:02:37 +00005064 if (--count < 0) {
5065 if (!dbl)
5066 break;
5067 if (i_peek(input) == ')') {
5068 i_getch(input);
5069 break;
5070 }
5071 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005072 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005073 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005074 if (ch == '\'') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005075 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005076 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005077 continue;
5078 }
5079 if (ch == '"') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005080 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005081 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005082 continue;
5083 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005084 if (ch == '\\') {
5085 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005086 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005087 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005088 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005089 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005090 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005091 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005092 continue;
5093 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005094 }
5095}
Mike Frysinger98c52642009-04-02 10:02:37 +00005096#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005097
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005098/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005099#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005100#define handle_dollar(as_string, dest, input) \
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005101 handle_dollar(dest, input)
5102#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005103static int handle_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005104 o_string *dest,
5105 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00005106{
Mike Frysinger6379bb42009-03-28 18:55:03 +00005107 int expansion;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005108 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005109 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005110
5111 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00005112 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005113 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005114 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00005115 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005116 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005117 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005118 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005119 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00005120 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005121 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005122 if (!isalnum(ch) && ch != '_')
5123 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005124 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005125 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005126 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005127 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005128 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005129 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005130 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005131 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005132 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005133 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005134 o_addchr(dest, ch | quote_mask);
5135 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005136 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005137 case '$': /* pid */
5138 case '!': /* last bg pid */
5139 case '?': /* last exit code */
5140 case '#': /* number of args */
5141 case '*': /* args */
5142 case '@': /* args */
5143 goto make_one_char_var;
5144 case '{': {
5145 bool first_char, all_digits;
Mike Frysinger6379bb42009-03-28 18:55:03 +00005146
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005147 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005148 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005149 nommu_addchr(as_string, ch);
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00005150 /* TODO: maybe someone will try to escape the '}' */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005151 expansion = 0;
5152 first_char = true;
5153 all_digits = false;
5154 while (1) {
5155 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005156 nommu_addchr(as_string, ch);
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005157 if (ch == '}') {
Mike Frysinger98c52642009-04-02 10:02:37 +00005158 break;
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005159 }
Mike Frysinger98c52642009-04-02 10:02:37 +00005160
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005161 if (first_char) {
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005162 if (ch == '#') {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005163 /* ${#var}: length of var contents */
5164 goto char_ok;
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005165 }
5166 if (isdigit(ch)) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005167 all_digits = true;
5168 goto char_ok;
5169 }
5170 }
5171
5172 if (expansion < 2
5173 && ( (all_digits && !isdigit(ch))
5174 || (!all_digits && !isalnum(ch) && ch != '_')
5175 )
5176 ) {
5177 /* handle parameter expansions
5178 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
5179 */
5180 if (first_char)
5181 goto case_default;
5182 switch (ch) {
5183 case ':': /* null modifier */
5184 if (expansion == 0) {
5185 debug_printf_parse(": null modifier\n");
5186 ++expansion;
5187 break;
5188 }
5189 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005190 case '#': /* remove prefix */
5191 case '%': /* remove suffix */
5192 if (expansion == 0) {
5193 debug_printf_parse(": remove suffix/prefix\n");
5194 expansion = 2;
5195 break;
5196 }
5197 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005198 case '-': /* default value */
5199 case '=': /* assign default */
5200 case '+': /* alternative */
5201 case '?': /* error indicate */
5202 debug_printf_parse(": parameter expansion\n");
5203 expansion = 2;
5204 break;
5205 default:
5206 case_default:
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005207 syntax_error_unterm_str("${name}");
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005208 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
5209 return 1;
5210 }
5211 }
5212 char_ok:
5213 debug_printf_parse(": '%c'\n", ch);
5214 o_addchr(dest, ch | quote_mask);
5215 quote_mask = 0;
5216 first_char = false;
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005217 } /* while (1) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005218 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5219 break;
5220 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005221#if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK)
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005222 case '(': {
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005223# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005224 int pos;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005225# endif
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005226 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005227 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005228# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005229 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005230 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005231 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005232 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5233 o_addchr(dest, /*quote_mask |*/ '+');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005234# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005235 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005236# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005237 add_till_closing_paren(dest, input, true);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005238# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005239 if (as_string) {
5240 o_addstr(as_string, dest->data + pos);
5241 o_addchr(as_string, ')');
5242 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005243 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005244# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005245 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005246 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005247 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005248# endif
5249# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005250 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5251 o_addchr(dest, quote_mask | '`');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005252# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005253 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005254# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005255 add_till_closing_paren(dest, input, false);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005256# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005257 if (as_string) {
5258 o_addstr(as_string, dest->data + pos);
5259 o_addchr(as_string, '`');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005260 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005261# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005262 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005263# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005264 break;
5265 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005266#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005267 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005268 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005269 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005270 ch = i_peek(input);
5271 if (isalnum(ch)) { /* it's $_name or $_123 */
5272 ch = '_';
5273 goto make_var;
5274 }
5275 /* else: it's $_ */
5276 /* TODO: */
5277 /* $_ Shell or shell script name; or last cmd name */
5278 /* $- Option flags set by set builtin or shell options (-i etc) */
5279 default:
5280 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00005281 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005282 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00005283 return 0;
5284}
5285
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005286#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005287#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005288 parse_stream_dquoted(dest, input, dquote_end)
5289#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005290static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005291 o_string *dest,
5292 struct in_str *input,
5293 int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005294{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005295 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005296 int next;
5297
5298 again:
5299 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005300 if (ch != EOF)
5301 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005302 if (ch == dquote_end) { /* may be only '"' or EOF */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005303 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005304 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005305 debug_printf_parse("parse_stream_dquoted return 0\n");
5306 return 0;
5307 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005308 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005309 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005310 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005311 /*xfunc_die(); - redundant */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005312 }
5313 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005314 if (ch != '\n') {
5315 next = i_peek(input);
5316 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005317 debug_printf_parse(": ch=%c (%d) escape=%d\n",
5318 ch, ch, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005319 if (ch == '\\') {
5320 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005321 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005322 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005323 }
5324 /* bash:
5325 * "The backslash retains its special meaning [in "..."]
5326 * only when followed by one of the following characters:
5327 * $, `, ", \, or <newline>. A double quote may be quoted
5328 * within double quotes by preceding it with a backslash.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005329 */
5330 if (strchr("$`\"\\", next) != NULL) {
5331 o_addqchr(dest, i_getch(input));
5332 } else {
5333 o_addqchr(dest, '\\');
5334 }
5335 goto again;
5336 }
5337 if (ch == '$') {
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005338 if (handle_dollar(as_string, dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005339 debug_printf_parse("parse_stream_dquoted return 1: "
5340 "handle_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005341 return 1;
5342 }
5343 goto again;
5344 }
5345#if ENABLE_HUSH_TICK
5346 if (ch == '`') {
5347 //int pos = dest->length;
5348 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5349 o_addchr(dest, 0x80 | '`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005350 add_till_backquote(dest, input);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005351 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5352 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00005353 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005354 }
5355#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00005356 o_addQchr(dest, ch);
5357 if (ch == '='
5358 && (dest->o_assignment == MAYBE_ASSIGNMENT
5359 || dest->o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005360 && is_well_formed_var_name(dest->data, '=')
Denis Vlasenkof328e002009-04-02 16:55:38 +00005361 ) {
5362 dest->o_assignment = DEFINITELY_ASSIGNMENT;
5363 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005364 goto again;
5365}
5366
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005367/*
5368 * Scan input until EOF or end_trigger char.
5369 * Return a list of pipes to execute, or NULL on EOF
5370 * or if end_trigger character is met.
5371 * On syntax error, exit is shell is not interactive,
5372 * reset parsing machinery and start parsing anew,
5373 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005374 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005375static struct pipe *parse_stream(char **pstring,
5376 struct in_str *input,
5377 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005378{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005379 struct parse_context ctx;
5380 o_string dest = NULL_O_STRING;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005381 int is_in_dquote;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005382 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00005383
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005384 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00005385 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005386 * found. When recursing, quote state is passed in via dest->o_escape.
5387 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005388 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
5389 end_trigger ? : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005390 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005391
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005392 G.ifs = get_local_var_value("IFS");
5393 if (G.ifs == NULL)
5394 G.ifs = " \t\n";
5395
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005396 reset:
5397#if ENABLE_HUSH_INTERACTIVE
5398 input->promptmode = 0; /* PS1 */
5399#endif
5400 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
5401 initialize_context(&ctx);
5402 is_in_dquote = 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005403 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005404 while (1) {
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005405 const char *is_ifs;
5406 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005407 int ch;
5408 int next;
5409 int redir_fd;
5410 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005411
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005412 if (is_in_dquote) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005413 /* dest.o_quoted = 1; - already is (see below) */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005414 if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005415 goto parse_error;
5416 }
5417 /* We reached closing '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005418 is_in_dquote = 0;
5419 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005420 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005421 debug_printf_parse(": ch=%c (%d) escape=%d\n",
5422 ch, ch, dest.o_escape);
5423 if (ch == EOF) {
5424 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005425
5426 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005427 syntax_error_unterm_str("here document");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005428 xfunc_die();
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005429 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005430 if (done_word(&dest, &ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005431 xfunc_die();
Denis Vlasenko55789c62008-06-18 16:30:42 +00005432 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005433 o_free(&dest);
5434 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005435 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005436 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005437 /* (this makes bare "&" cmd a no-op.
5438 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005439 if (pi->num_cmds == 0
5440 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
5441 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005442 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005443 pi = NULL;
5444 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005445#if !BB_MMU
5446 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5447 if (pstring)
5448 *pstring = ctx.as_string.data;
5449 else
5450 o_free_unsafe(&ctx.as_string);
5451#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005452 debug_leave();
5453 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005454 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005455 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005456 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005457 is_ifs = strchr(G.ifs, ch);
5458 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00005459 "\\$\"" IF_HUSH_TICK("`") /* always special */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005460 , ch);
5461
5462 if (!is_special && !is_ifs) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005463 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005464 o_addQchr(&dest, ch);
5465 if ((dest.o_assignment == MAYBE_ASSIGNMENT
5466 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00005467 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005468 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00005469 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005470 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005471 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005472 continue;
5473 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00005474
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005475 if (is_ifs) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005476 if (done_word(&dest, &ctx)) {
5477 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00005478 }
Denis Vlasenko37181682009-04-03 03:19:15 +00005479 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00005480#if ENABLE_HUSH_CASE
5481 /* "case ... in <newline> word) ..." -
5482 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005483 if (ctx.command->argv == NULL
5484 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00005485 ) {
5486 continue;
5487 }
5488#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00005489 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005490 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005491 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
5492 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005493 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005494 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005495 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005496 heredoc_cnt = 0;
5497 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005498 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005499 ch = ';';
Denis Vlasenko7c986122009-04-04 12:15:42 +00005500 /* note: if (is_ifs) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005501 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005502 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005503 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00005504
5505 /* "cmd}" or "cmd }..." without semicolon or &:
5506 * } is an ordinary char in this case, even inside { cmd; }
5507 * Pathological example: { ""}; } should exec "}" cmd
5508 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00005509 if (ch == '}') {
5510 if (!IS_NULL_CMD(ctx.command) /* cmd } */
5511 || dest.length != 0 /* word} */
5512 || dest.o_quoted /* ""} */
5513 ) {
5514 goto ordinary_char;
5515 }
5516 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
5517 goto skip_end_trigger;
5518 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00005519 }
5520
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005521 if (end_trigger && end_trigger == ch
5522 && (heredoc_cnt == 0 || end_trigger != ';')
5523 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005524 if (heredoc_cnt) {
5525 /* This is technically valid:
5526 * { cat <<HERE; }; echo Ok
5527 * heredoc
5528 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005529 * HERE
5530 * but we don't support this.
5531 * We require heredoc to be in enclosing {}/(),
5532 * if any.
5533 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005534 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005535 goto parse_error;
5536 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005537 if (done_word(&dest, &ctx)) {
5538 goto parse_error;
5539 }
5540 done_pipe(&ctx, PIPE_SEQ);
5541 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005542 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00005543 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005544 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00005545 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005546 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005547#if !BB_MMU
5548 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5549 if (pstring)
5550 *pstring = ctx.as_string.data;
5551 else
5552 o_free_unsafe(&ctx.as_string);
5553#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005554 debug_leave();
5555 debug_printf_parse("parse_stream return %p: "
5556 "end_trigger char found\n",
5557 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005558 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005559 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005560 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00005561 skip_end_trigger:
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005562 if (is_ifs)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005563 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005564
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005565 next = '\0';
5566 if (ch != '\n') {
5567 next = i_peek(input);
5568 }
5569
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005570 /* Catch <, > before deciding whether this word is
5571 * an assignment. a=1 2>z b=2: b=2 is still assignment */
5572 switch (ch) {
5573 case '>':
5574 redir_fd = redirect_opt_num(&dest);
5575 if (done_word(&dest, &ctx)) {
5576 goto parse_error;
5577 }
5578 redir_style = REDIRECT_OVERWRITE;
5579 if (next == '>') {
5580 redir_style = REDIRECT_APPEND;
5581 ch = i_getch(input);
5582 nommu_addchr(&ctx.as_string, ch);
5583 }
5584#if 0
5585 else if (next == '(') {
5586 syntax_error(">(process) not supported");
5587 goto parse_error;
5588 }
5589#endif
5590 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5591 goto parse_error;
5592 continue; /* back to top of while (1) */
5593 case '<':
5594 redir_fd = redirect_opt_num(&dest);
5595 if (done_word(&dest, &ctx)) {
5596 goto parse_error;
5597 }
5598 redir_style = REDIRECT_INPUT;
5599 if (next == '<') {
5600 redir_style = REDIRECT_HEREDOC;
5601 heredoc_cnt++;
5602 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
5603 ch = i_getch(input);
5604 nommu_addchr(&ctx.as_string, ch);
5605 } else if (next == '>') {
5606 redir_style = REDIRECT_IO;
5607 ch = i_getch(input);
5608 nommu_addchr(&ctx.as_string, ch);
5609 }
5610#if 0
5611 else if (next == '(') {
5612 syntax_error("<(process) not supported");
5613 goto parse_error;
5614 }
5615#endif
5616 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5617 goto parse_error;
5618 continue; /* back to top of while (1) */
5619 }
5620
5621 if (dest.o_assignment == MAYBE_ASSIGNMENT
5622 /* check that we are not in word in "a=1 2>word b=1": */
5623 && !ctx.pending_redirect
5624 ) {
5625 /* ch is a special char and thus this word
5626 * cannot be an assignment */
5627 dest.o_assignment = NOT_ASSIGNMENT;
5628 }
5629
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005630 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00005631 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005632 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005633 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005634 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005635 if (ch == EOF || ch == '\n')
5636 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005637 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005638 /* note: we do not add it to &ctx.as_string */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005639 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005640 nommu_addchr(&ctx.as_string, '\n');
Eric Andersen25f27032001-04-26 23:22:31 +00005641 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005642 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005643 }
5644 break;
5645 case '\\':
5646 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005647 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005648 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00005649 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005650 o_addchr(&dest, '\\');
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005651 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005652 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005653 o_addchr(&dest, ch);
5654 /* Example: echo Hello \2>file
5655 * we need to know that word 2 is quoted */
5656 dest.o_quoted = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005657 break;
5658 case '$':
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005659 if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005660 debug_printf_parse("parse_stream parse error: "
5661 "handle_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005662 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005663 }
Eric Andersen25f27032001-04-26 23:22:31 +00005664 break;
5665 case '\'':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005666 dest.o_quoted = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005667 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005668 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005669 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005670 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005671 /*xfunc_die(); - redundant */
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005672 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005673 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005674 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005675 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005676 if (dest.o_assignment == NOT_ASSIGNMENT)
5677 o_addqchr(&dest, ch);
Denis Vlasenko55789c62008-06-18 16:30:42 +00005678 else
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005679 o_addchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005680 }
Eric Andersen25f27032001-04-26 23:22:31 +00005681 break;
5682 case '"':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005683 dest.o_quoted = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005684 is_in_dquote ^= 1; /* invert */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005685 if (dest.o_assignment == NOT_ASSIGNMENT)
5686 dest.o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005687 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005688#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005689 case '`': {
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005690#if !BB_MMU
5691 int pos;
5692#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005693 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5694 o_addchr(&dest, '`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005695#if !BB_MMU
5696 pos = dest.length;
5697#endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005698 add_till_backquote(&dest, input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005699#if !BB_MMU
5700 o_addstr(&ctx.as_string, dest.data + pos);
5701 o_addchr(&ctx.as_string, '`');
5702#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005703 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5704 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00005705 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005706 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005707#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005708 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005709#if ENABLE_HUSH_CASE
5710 case_semi:
5711#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005712 if (done_word(&dest, &ctx)) {
5713 goto parse_error;
5714 }
5715 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005716#if ENABLE_HUSH_CASE
5717 /* Eat multiple semicolons, detect
5718 * whether it means something special */
5719 while (1) {
5720 ch = i_peek(input);
5721 if (ch != ';')
5722 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005723 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005724 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005725 if (ctx.ctx_res_w == RES_CASEI) {
5726 ctx.ctx_dsemicolon = 1;
5727 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005728 break;
5729 }
5730 }
5731#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005732 new_cmd:
5733 /* We just finished a cmd. New one may start
5734 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005735 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00005736 break;
5737 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005738 if (done_word(&dest, &ctx)) {
5739 goto parse_error;
5740 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005741 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005742 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005743 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005744 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005745 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005746 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005747 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005748 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005749 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005750 if (done_word(&dest, &ctx)) {
5751 goto parse_error;
5752 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005753#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005754 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005755 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005756#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005757 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005758 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005759 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005760 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005761 } else {
5762 /* we could pick up a file descriptor choice here
5763 * with redirect_opt_num(), but bash doesn't do it.
5764 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005765 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005766 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005767 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005768 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005769#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005770 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005771 if (ctx.ctx_res_w == RES_MATCH
5772 && ctx.command->argv == NULL /* not (word|(... */
5773 && dest.length == 0 /* not word(... */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005774 && dest.o_quoted == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005775 ) {
5776 continue;
5777 }
5778#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005779 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005780 if (parse_group(&dest, &ctx, input, ch) != 0) {
5781 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005782 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005783 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005784 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005785#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005786 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005787 goto case_semi;
5788#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005789 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005790 /* proper use of this character is caught by end_trigger:
5791 * if we see {, we call parse_group(..., end_trigger='}')
5792 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005793 syntax_error_unexpected_ch(ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005794 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005795 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005796 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005797 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005798 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005799 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005800
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005801 parse_error:
5802 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005803 struct parse_context *pctx;
5804 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005805
5806 /* Clean up allocated tree.
5807 * Samples for finding leaks on syntax error recovery path.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005808 * Run them from interactive shell, watch pmap `pidof hush`.
5809 * while if false; then false; fi do break; done
5810 * (bash accepts it)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005811 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005812 * Samples to catch leaks at execution:
5813 * while if (true | {true;}); then echo ok; fi; do break; done
5814 * 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 +00005815 */
5816 pctx = &ctx;
5817 do {
5818 /* Update pipe/command counts,
5819 * otherwise freeing may miss some */
5820 done_pipe(pctx, PIPE_SEQ);
5821 debug_printf_clean("freeing list %p from ctx %p\n",
5822 pctx->list_head, pctx);
5823 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005824 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005825 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005826#if !BB_MMU
5827 o_free_unsafe(&pctx->as_string);
5828#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005829 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005830 if (pctx != &ctx) {
5831 free(pctx);
5832 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005833 IF_HAS_KEYWORDS(pctx = p2;)
5834 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005835 /* Free text, clear all dest fields */
5836 o_free(&dest);
5837 /* If we are not in top-level parse, we return,
5838 * our caller will propagate error.
5839 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005840 if (end_trigger != ';') {
5841#if !BB_MMU
5842 if (pstring)
5843 *pstring = NULL;
5844#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005845 debug_leave();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005846 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005847 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005848 /* Discard cached input, force prompt */
5849 input->p = NULL;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00005850 IF_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005851 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005852 }
Eric Andersen25f27032001-04-26 23:22:31 +00005853}
5854
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005855/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005856 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
5857 * end_trigger controls how often we stop parsing
5858 * NUL: parse all, execute, return
5859 * ';': parse till ';' or newline, execute, repeat till EOF
5860 */
5861static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005862{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005863 while (1) {
5864 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005865
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005866 pipe_list = parse_stream(NULL, inp, end_trigger);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005867 if (!pipe_list) /* EOF */
5868 break;
5869 debug_print_tree(pipe_list, 0);
5870 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
5871 run_and_free_list(pipe_list);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005872 }
Eric Andersen25f27032001-04-26 23:22:31 +00005873}
5874
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005875static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005876{
5877 struct in_str input;
5878 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005879 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00005880}
5881
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005882static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00005883{
Eric Andersen25f27032001-04-26 23:22:31 +00005884 struct in_str input;
5885 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005886 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00005887}
5888
Denis Vlasenkof9375282009-04-05 19:13:39 +00005889/* Called a few times only (or even once if "sh -c") */
5890static void block_signals(int second_time)
Eric Andersen52a97ca2001-06-22 06:49:26 +00005891{
Denis Vlasenkof9375282009-04-05 19:13:39 +00005892 unsigned sig;
5893 unsigned mask;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005894
Denis Vlasenkof9375282009-04-05 19:13:39 +00005895 mask = (1 << SIGQUIT);
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00005896 if (G_interactive_fd)
5897 mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS;
Denis Vlasenkof9375282009-04-05 19:13:39 +00005898 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00005899
Denis Vlasenkof9375282009-04-05 19:13:39 +00005900 if (!second_time)
5901 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
5902 sig = 0;
5903 while (mask) {
5904 if (mask & 1)
5905 sigaddset(&G.blocked_set, sig);
5906 mask >>= 1;
5907 sig++;
5908 }
5909 sigdelset(&G.blocked_set, SIGCHLD);
5910
5911 sigprocmask(SIG_SETMASK, &G.blocked_set,
5912 second_time ? NULL : &G.inherited_set);
5913 /* POSIX allows shell to re-enable SIGCHLD
5914 * even if it was SIG_IGN on entry */
5915// G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
5916 if (!second_time)
5917 signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler);
5918}
5919
5920#if ENABLE_HUSH_JOB
5921/* helper */
5922static void maybe_set_to_sigexit(int sig)
5923{
5924 void (*handler)(int);
5925 /* non_DFL_mask'ed signals are, well, masked,
5926 * no need to set handler for them.
5927 */
5928 if (!((G.non_DFL_mask >> sig) & 1)) {
5929 handler = signal(sig, sigexit);
5930 if (handler == SIG_IGN) /* oops... restore back to IGN! */
5931 signal(sig, handler);
5932 }
5933}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005934/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005935static void set_fatal_handlers(void)
5936{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00005937 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005938 if (HUSH_DEBUG) {
5939 maybe_set_to_sigexit(SIGILL );
5940 maybe_set_to_sigexit(SIGFPE );
5941 maybe_set_to_sigexit(SIGBUS );
5942 maybe_set_to_sigexit(SIGSEGV);
5943 maybe_set_to_sigexit(SIGTRAP);
5944 } /* else: hush is perfect. what SEGV? */
5945 maybe_set_to_sigexit(SIGABRT);
5946 /* bash 3.2 seems to handle these just like 'fatal' ones */
5947 maybe_set_to_sigexit(SIGPIPE);
5948 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00005949 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00005950 * if we aren't interactive... but in this case
5951 * we never want to restore pgrp on exit, and this fn is not called */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00005952 /*maybe_set_to_sigexit(SIGHUP );*/
Denis Vlasenkof9375282009-04-05 19:13:39 +00005953 /*maybe_set_to_sigexit(SIGTERM);*/
5954 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00005955}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00005956#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00005957
Denis Vlasenkod5762932009-03-31 11:22:57 +00005958static int set_mode(const char cstate, const char mode)
5959{
5960 int state = (cstate == '-' ? 1 : 0);
5961 switch (mode) {
5962 case 'n': G.fake_mode = state; break;
5963 case 'x': /*G.debug_mode = state;*/ break;
5964 default: return EXIT_FAILURE;
5965 }
5966 return EXIT_SUCCESS;
5967}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005968
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00005969int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00005970int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00005971{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005972 static const struct variable const_shell_ver = {
5973 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005974 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005975 .max_len = 1, /* 0 can provoke free(name) */
5976 .flg_export = 1,
5977 .flg_read_only = 1,
5978 };
Denis Vlasenkof9375282009-04-05 19:13:39 +00005979 int signal_mask_is_inited = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00005980 int opt;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005981 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005982 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00005983
Denis Vlasenko574f2f42008-02-27 18:41:59 +00005984 INIT_G();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005985 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005986 G.last_exitcode = EXIT_SUCCESS;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005987#if !BB_MMU
5988 G.argv0_for_re_execing = argv[0];
5989#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005990 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005991 G.shell_ver = const_shell_ver; /* copying struct here */
5992 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005993 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005994 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
5995 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005996 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005997 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005998 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005999 if (e) while (*e) {
6000 char *value = strchr(*e, '=');
6001 if (value) { /* paranoia */
6002 cur_var->next = xzalloc(sizeof(*cur_var));
6003 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00006004 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006005 cur_var->max_len = strlen(*e);
6006 cur_var->flg_export = 1;
6007 }
6008 e++;
6009 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00006010 debug_printf_env("putenv '%s'\n", hush_version_str);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00006011 putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
Denis Vlasenko38f63192007-01-22 09:03:07 +00006012#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00006013 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00006014#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00006015 G.global_argc = argc;
6016 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00006017 /* Initialize some more globals to non-zero values */
6018 set_cwd();
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00006019 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00006020
Denis Vlasenkoed782372009-04-10 00:45:02 +00006021 if (setjmp(die_jmp)) {
6022 /* xfunc has failed! die die die */
6023 /* no EXIT traps, this is an escape hatch! */
6024 G.exiting = 1;
6025 hush_exit(xfunc_error_retval);
6026 }
6027
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006028 /* Shell is non-interactive at first. We need to call
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006029 * block_signals(0) if we are going to execute "sh <script>",
6030 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006031 * If we later decide that we are interactive, we run block_signals(0)
6032 * (or re-run block_signals(1) if we ran block_signals(0) before)
6033 * in order to intercept (more) signals.
6034 */
6035
6036 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00006037 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006038 while (1) {
6039 opt = getopt(argc, argv, "c:xins"
6040#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00006041 "<:$:R:V:"
6042# if ENABLE_HUSH_FUNCTIONS
6043 "F:"
6044# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006045#endif
6046 );
6047 if (opt <= 0)
6048 break;
Eric Andersen25f27032001-04-26 23:22:31 +00006049 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006050 case 'c':
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006051 if (!G.root_pid)
6052 G.root_pid = getpid();
Denis Vlasenko87a86552008-07-29 19:43:10 +00006053 G.global_argv = argv + optind;
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00006054 if (!argv[optind]) {
6055 /* -c 'script' (no params): prevent empty $0 */
6056 *--G.global_argv = argv[0];
6057 optind--;
6058 } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */
Denis Vlasenko87a86552008-07-29 19:43:10 +00006059 G.global_argc = argc - optind;
Denis Vlasenkof9375282009-04-05 19:13:39 +00006060 block_signals(0); /* 0: called 1st time */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006061 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006062 goto final_return;
6063 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00006064 /* Well, we cannot just declare interactiveness,
6065 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006066 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006067 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00006068 case 's':
6069 /* "-s" means "read from stdin", but this is how we always
6070 * operate, so simply do nothing here. */
6071 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006072#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00006073 case '<': /* "big heredoc" support */
6074 full_write(STDOUT_FILENO, optarg, strlen(optarg));
6075 _exit(0);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006076 case '$':
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006077 G.root_pid = bb_strtou(optarg, &optarg, 16);
6078 optarg++;
6079 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
6080 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006081 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006082# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006083 optarg++;
6084 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006085# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006086 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006087 case 'R':
6088 case 'V':
6089 set_local_var(xstrdup(optarg), 0, opt == 'R');
6090 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00006091# if ENABLE_HUSH_FUNCTIONS
6092 case 'F': {
6093 struct function *funcp = new_function(optarg);
6094 /* funcp->name is already set to optarg */
6095 /* funcp->body is set to NULL. It's a special case. */
6096 funcp->body_as_string = argv[optind];
6097 optind++;
6098 break;
6099 }
6100# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006101#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006102 case 'n':
6103 case 'x':
Denis Vlasenkod5762932009-03-31 11:22:57 +00006104 if (!set_mode('-', opt))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006105 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006106 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006107#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006108 fprintf(stderr, "Usage: sh [FILE]...\n"
6109 " or: sh -c command [args]...\n\n");
6110 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006111#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006112 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006113#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006114 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006115 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006116
6117 if (!G.root_pid)
6118 G.root_pid = getpid();
Denis Vlasenkof9375282009-04-05 19:13:39 +00006119
6120 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006121 if (argv[0] && argv[0][0] == '-') {
6122 FILE *input;
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00006123 /* TODO: what should argv be while sourcing /etc/profile? */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006124 debug_printf("sourcing /etc/profile\n");
6125 input = fopen_for_read("/etc/profile");
6126 if (input != NULL) {
6127 close_on_exec_on(fileno(input));
Denis Vlasenkof9375282009-04-05 19:13:39 +00006128 block_signals(0); /* 0: called 1st time */
6129 signal_mask_is_inited = 1;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006130 parse_and_run_file(input);
6131 fclose(input);
6132 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006133 /* bash: after sourcing /etc/profile,
6134 * tries to source (in the given order):
6135 * ~/.bash_profile, ~/.bash_login, ~/.profile,
6136 * stopping of first found. --noprofile turns this off.
6137 * bash also sources ~/.bash_logout on exit.
6138 * If called as sh, skips .bash_XXX files.
6139 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006140 }
6141
Denis Vlasenkof9375282009-04-05 19:13:39 +00006142 if (argv[optind]) {
6143 FILE *input;
6144 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006145 * "bash <script>" (which is never interactive (unless -i?))
6146 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00006147 * If called as sh, does the same but with $ENV.
6148 */
6149 debug_printf("running script '%s'\n", argv[optind]);
6150 G.global_argv = argv + optind;
6151 G.global_argc = argc - optind;
6152 input = xfopen_for_read(argv[optind]);
6153 close_on_exec_on(fileno(input));
6154 if (!signal_mask_is_inited)
6155 block_signals(0); /* 0: called 1st time */
6156 parse_and_run_file(input);
6157#if ENABLE_FEATURE_CLEAN_UP
6158 fclose(input);
6159#endif
6160 goto final_return;
6161 }
6162
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006163 /* Up to here, shell was non-interactive. Now it may become one.
6164 * NB: don't forget to (re)run block_signals(0/1) as needed.
6165 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006166
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006167 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00006168 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00006169 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00006170 * no arguments remaining or the -s flag given
6171 * standard input is a terminal
6172 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00006173 * Refer to Posix.2, the description of the 'sh' utility.
6174 */
6175#if ENABLE_HUSH_JOB
6176 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006177 G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
Denis Vlasenkof9375282009-04-05 19:13:39 +00006178 debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006179//TODO: "interactive" and "have job control" are two different things.
6180//If tcgetpgrp fails here, "have job control" is false, but "interactive"
6181//should stay on! Currently, we mix these into one.
Denis Vlasenko87a86552008-07-29 19:43:10 +00006182 if (G.saved_tty_pgrp >= 0) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006183 /* try to dup stdin to high fd#, >= 255 */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006184 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6185 if (G_interactive_fd < 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006186 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006187 G_interactive_fd = dup(STDIN_FILENO);
6188 if (G_interactive_fd < 0)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006189 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006190 G_interactive_fd = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006191 }
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006192// TODO: track & disallow any attempts of user
6193// to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006194 }
Eric Andersen25f27032001-04-26 23:22:31 +00006195 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006196 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006197 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006198 pid_t shell_pgrp;
6199
6200 /* We are indeed interactive shell, and we will perform
6201 * job control. Setting up for that. */
6202
6203 close_on_exec_on(G_interactive_fd);
6204 /* If we were run as 'hush &', sleep until we are
6205 * in the foreground (tty pgrp == our pgrp).
6206 * If we get started under a job aware app (like bash),
6207 * make sure we are now in charge so we don't fight over
6208 * who gets the foreground */
6209 while (1) {
6210 shell_pgrp = getpgrp();
6211 G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
6212 if (G.saved_tty_pgrp == shell_pgrp)
6213 break;
6214 /* send TTIN to ourself (should stop us) */
6215 kill(- shell_pgrp, SIGTTIN);
6216 }
6217 /* Block some signals */
6218 block_signals(signal_mask_is_inited);
6219 /* Set other signals to restore saved_tty_pgrp */
6220 set_fatal_handlers();
6221 /* Put ourselves in our own process group */
6222 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
6223 /* Grab control of the terminal */
6224 tcsetpgrp(G_interactive_fd, getpid());
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00006225 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00006226 * (we reset die_sleep = 0 whereever we [v]fork) */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006227 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006228 } else if (!signal_mask_is_inited) {
6229 block_signals(0); /* 0: called 1st time */
6230 } /* else: block_signals(0) was done before */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006231#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00006232 /* No job control compiled in, only prompt/line editing */
6233 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006234 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6235 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006236 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006237 G_interactive_fd = dup(STDIN_FILENO);
6238 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006239 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006240 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006241 }
6242 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006243 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006244 close_on_exec_on(G_interactive_fd);
6245 block_signals(signal_mask_is_inited);
6246 } else if (!signal_mask_is_inited) {
6247 block_signals(0);
6248 }
6249#else
6250 /* We have interactiveness code disabled */
6251 if (!signal_mask_is_inited) {
6252 block_signals(0);
6253 }
6254#endif
6255 /* bash:
6256 * if interactive but not a login shell, sources ~/.bashrc
6257 * (--norc turns this off, --rcfile <file> overrides)
6258 */
6259
6260 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Mike Frysinger258275d2009-04-05 21:19:43 +00006261 printf("\n\n%s hush - the humble shell\n", bb_banner);
Mike Frysingerb2705e12009-03-23 08:44:02 +00006262 printf("Enter 'help' for a list of built-in commands.\n\n");
6263 }
6264
Denis Vlasenkof9375282009-04-05 19:13:39 +00006265 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00006266
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006267 final_return:
Denis Vlasenko38f63192007-01-22 09:03:07 +00006268#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko87a86552008-07-29 19:43:10 +00006269 if (G.cwd != bb_msg_unknown)
6270 free((char*)G.cwd);
6271 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006272 while (cur_var) {
6273 struct variable *tmp = cur_var;
6274 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00006275 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006276 cur_var = cur_var->next;
6277 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00006278 }
Eric Andersen25f27032001-04-26 23:22:31 +00006279#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006280 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00006281}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00006282
6283
6284#if ENABLE_LASH
6285int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
6286int lash_main(int argc, char **argv)
6287{
6288 //bb_error_msg("lash is deprecated, please use hush instead");
6289 return hush_main(argc, argv);
6290}
6291#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006292
6293
6294/*
6295 * Built-ins
6296 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006297static int builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006298{
6299 return 0;
6300}
6301
6302static int builtin_test(char **argv)
6303{
6304 int argc = 0;
6305 while (*argv) {
6306 argc++;
6307 argv++;
6308 }
6309 return test_main(argc, argv - argc);
6310}
6311
6312static int builtin_echo(char **argv)
6313{
6314 int argc = 0;
6315 while (*argv) {
6316 argc++;
6317 argv++;
6318 }
6319 return echo_main(argc, argv - argc);
6320}
6321
6322static int builtin_eval(char **argv)
6323{
6324 int rcode = EXIT_SUCCESS;
6325
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006326 if (*++argv) {
6327 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006328 /* bash:
6329 * eval "echo Hi; done" ("done" is syntax error):
6330 * "echo Hi" will not execute too.
6331 */
6332 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006333 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006334 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006335 }
6336 return rcode;
6337}
6338
6339static int builtin_cd(char **argv)
6340{
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006341 const char *newdir = argv[1];
6342 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006343 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006344 * bash says "bash: cd: HOME not set" and does nothing
6345 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006346 */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00006347 newdir = get_local_var_value("HOME") ? : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006348 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006349 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006350 /* Mimic bash message exactly */
6351 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006352 return EXIT_FAILURE;
6353 }
6354 set_cwd();
6355 return EXIT_SUCCESS;
6356}
6357
6358static int builtin_exec(char **argv)
6359{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006360 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006361 return EXIT_SUCCESS; /* bash does this */
6362 {
6363#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00006364 nommu_save_t dummy;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006365#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006366 /* TODO: if exec fails, bash does NOT exit! We do... */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006367 pseudo_exec_argv(&dummy, argv, 0, NULL);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006368 /* never returns */
6369 }
6370}
6371
6372static int builtin_exit(char **argv)
6373{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00006374 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00006375
6376 /* interactive bash:
6377 * # trap "echo EEE" EXIT
6378 * # exit
6379 * exit
6380 * There are stopped jobs.
6381 * (if there are _stopped_ jobs, running ones don't count)
6382 * # exit
6383 * exit
6384 # EEE (then bash exits)
6385 *
6386 * we can use G.exiting = -1 as indicator "last cmd was exit"
6387 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00006388
6389 /* note: EXIT trap is run by hush_exit */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006390 if (*++argv == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006391 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006392 /* mimic bash: exit 123abc == exit 255 + error msg */
6393 xfunc_error_retval = 255;
6394 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006395 hush_exit(xatoi(*argv) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006396}
6397
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006398static void print_escaped(const char *s)
6399{
6400 do {
6401 if (*s != '\'') {
6402 const char *p;
6403
6404 p = strchrnul(s, '\'');
6405 /* print 'xxxx', possibly just '' */
6406 printf("'%.*s'", (int)(p - s), s);
6407 if (*p == '\0')
6408 break;
6409 s = p;
6410 }
6411 /* s points to '; print "'''...'''" */
6412 putchar('"');
6413 do putchar('\''); while (*++s == '\'');
6414 putchar('"');
6415 } while (*s);
6416}
6417
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006418static int builtin_export(char **argv)
6419{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006420 unsigned opt_unexport;
6421
6422 if (argv[1] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006423 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006424 if (e) {
6425 while (*e) {
6426#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006427 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006428#else
6429 /* ash emits: export VAR='VAL'
6430 * bash: declare -x VAR="VAL"
6431 * we follow ash example */
6432 const char *s = *e++;
6433 const char *p = strchr(s, '=');
6434
6435 if (!p) /* wtf? take next variable */
6436 continue;
6437 /* export var= */
6438 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006439 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006440 putchar('\n');
6441#endif
6442 }
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006443 /*fflush(stdout); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006444 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006445 return EXIT_SUCCESS;
6446 }
6447
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006448#if ENABLE_HUSH_EXPORT_N
6449 opt_unexport = getopt32(argv, "+n"); /* "+": stop at 1st non-option */
6450 argv += optind;
6451#else
6452 opt_unexport = 0;
6453 argv++;
6454#endif
6455
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006456 do {
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006457 char *name = *argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006458
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006459 /* So far we do not check that name is valid (TODO?) */
6460
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006461 if (strchr(name, '=') == NULL) {
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006462 struct variable *var;
6463
6464 var = get_local_var(name);
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006465 if (opt_unexport) {
6466 /* export -n NAME (without =VALUE) */
6467 if (var) {
6468 var->flg_export = 0;
6469 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
6470 unsetenv(name);
6471 } /* else: export -n NOT_EXISTING_VAR: no-op */
6472 continue;
6473 }
6474 /* export NAME (without =VALUE) */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006475 if (var) {
6476 var->flg_export = 1;
6477 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
6478 putenv(var->varstr);
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006479 continue;
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006480 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006481 /* Exporting non-existing variable.
6482 * bash does not put it in environment,
6483 * but remembers that it is exported,
6484 * and does put it in env when it is set later.
6485 * We just set it to "" and export. */
6486 name = xasprintf("%s=", name);
6487 } else {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006488 /* (Un)exporting NAME=VALUE */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006489 name = xstrdup(name);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006490 }
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006491 set_local_var(name,
6492 /*export:*/ (opt_unexport ? -1 : 1),
6493 /*readonly:*/ 0
6494 );
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006495 } while (*++argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006496
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006497 return EXIT_SUCCESS;
6498}
6499
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006500static int builtin_trap(char **argv)
6501{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006502 int sig;
6503 char *new_cmd;
6504
6505 if (!G.traps)
6506 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
6507
6508 argv++;
6509 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00006510 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006511 /* No args: print all trapped */
6512 for (i = 0; i < NSIG; ++i) {
6513 if (G.traps[i]) {
6514 printf("trap -- ");
6515 print_escaped(G.traps[i]);
6516 printf(" %s\n", get_signame(i));
6517 }
6518 }
6519 /*fflush(stdout); - done after each builtin anyway */
6520 return EXIT_SUCCESS;
6521 }
6522
6523 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006524 /* If first arg is a number: reset all specified signals */
6525 sig = bb_strtou(*argv, NULL, 10);
6526 if (errno == 0) {
6527 int ret;
6528 process_sig_list:
6529 ret = EXIT_SUCCESS;
6530 while (*argv) {
6531 sig = get_signum(*argv++);
6532 if (sig < 0 || sig >= NSIG) {
6533 ret = EXIT_FAILURE;
6534 /* Mimic bash message exactly */
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00006535 bb_perror_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006536 continue;
6537 }
6538
6539 free(G.traps[sig]);
6540 G.traps[sig] = xstrdup(new_cmd);
6541
6542 debug_printf("trap: setting SIG%s (%i) to '%s'",
6543 get_signame(sig), sig, G.traps[sig]);
6544
6545 /* There is no signal for 0 (EXIT) */
6546 if (sig == 0)
6547 continue;
6548
6549 if (new_cmd) {
6550 sigaddset(&G.blocked_set, sig);
6551 } else {
6552 /* There was a trap handler, we are removing it
6553 * (if sig has non-DFL handling,
6554 * we don't need to do anything) */
6555 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
6556 continue;
6557 sigdelset(&G.blocked_set, sig);
6558 }
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006559 }
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00006560 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006561 return ret;
6562 }
6563
6564 if (!argv[1]) { /* no second arg */
6565 bb_error_msg("trap: invalid arguments");
6566 return EXIT_FAILURE;
6567 }
6568
6569 /* First arg is "-": reset all specified to default */
6570 /* First arg is "--": skip it, the rest is "handler SIGs..." */
6571 /* Everything else: set arg as signal handler
6572 * (includes "" case, which ignores signal) */
6573 if (argv[0][0] == '-') {
6574 if (argv[0][1] == '\0') { /* "-" */
6575 /* new_cmd remains NULL: "reset these sigs" */
6576 goto reset_traps;
6577 }
6578 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
6579 argv++;
6580 }
6581 /* else: "-something", no special meaning */
6582 }
6583 new_cmd = *argv;
6584 reset_traps:
6585 argv++;
6586 goto process_sig_list;
6587}
6588
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006589#if ENABLE_HUSH_JOB
6590/* built-in 'fg' and 'bg' handler */
6591static int builtin_fg_bg(char **argv)
6592{
6593 int i, jobnum;
6594 struct pipe *pi;
6595
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006596 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006597 return EXIT_FAILURE;
6598 /* If they gave us no args, assume they want the last backgrounded task */
6599 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006600 for (pi = G.job_list; pi; pi = pi->next) {
6601 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006602 goto found;
6603 }
6604 }
6605 bb_error_msg("%s: no current job", argv[0]);
6606 return EXIT_FAILURE;
6607 }
6608 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
6609 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
6610 return EXIT_FAILURE;
6611 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006612 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006613 if (pi->jobid == jobnum) {
6614 goto found;
6615 }
6616 }
6617 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
6618 return EXIT_FAILURE;
6619 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006620 /* TODO: bash prints a string representation
6621 * of job being foregrounded (like "sleep 1 | cat") */
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006622 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006623 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006624 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006625 }
6626
6627 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006628 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
6629 for (i = 0; i < pi->num_cmds; i++) {
6630 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
6631 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006632 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006633 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006634
6635 i = kill(- pi->pgrp, SIGCONT);
6636 if (i < 0) {
6637 if (errno == ESRCH) {
6638 delete_finished_bg_job(pi);
6639 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006640 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006641 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006642 }
6643
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006644 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006645 remove_bg_job(pi);
6646 return checkjobs_and_fg_shell(pi);
6647 }
6648 return EXIT_SUCCESS;
6649}
6650#endif
6651
6652#if ENABLE_HUSH_HELP
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006653static int builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006654{
6655 const struct built_in_command *x;
6656
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006657 printf("\n"
6658 "Built-in commands:\n"
6659 "------------------\n");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006660 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
6661 printf("%s\t%s\n", x->cmd, x->descr);
6662 }
6663 printf("\n\n");
6664 return EXIT_SUCCESS;
6665}
6666#endif
6667
6668#if ENABLE_HUSH_JOB
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006669static int builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006670{
6671 struct pipe *job;
6672 const char *status_string;
6673
Denis Vlasenko87a86552008-07-29 19:43:10 +00006674 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006675 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006676 status_string = "Stopped";
6677 else
6678 status_string = "Running";
6679
6680 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
6681 }
6682 return EXIT_SUCCESS;
6683}
6684#endif
6685
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00006686#if HUSH_DEBUG
6687static int builtin_memleak(char **argv UNUSED_PARAM)
6688{
6689 void *p;
6690 unsigned long l;
6691
6692 /* Crude attempt to find where "free memory" starts,
6693 * sans fragmentation. */
6694 p = malloc(240);
6695 l = (unsigned long)p;
6696 free(p);
6697 p = malloc(3400);
6698 if (l < (unsigned long)p) l = (unsigned long)p;
6699 free(p);
6700
6701 if (!G.memleak_value)
6702 G.memleak_value = l;
6703
6704 l -= G.memleak_value;
6705 if ((long)l < 0)
6706 l = 0;
6707 l /= 1024;
6708 if (l > 127)
6709 l = 127;
6710
6711 /* Exitcode is "how many kilobytes we leaked since 1st call" */
6712 return l;
6713}
6714#endif
6715
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006716static int builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006717{
6718 puts(set_cwd());
6719 return EXIT_SUCCESS;
6720}
6721
6722static int builtin_read(char **argv)
6723{
6724 char *string;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006725 const char *name = "REPLY";
6726
6727 if (argv[1]) {
6728 name = argv[1];
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00006729 /* bash (3.2.33(1)) bug: "read 0abcd" will execute,
6730 * and _after_ that_ it will complain */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006731 if (!is_well_formed_var_name(name, '\0')) {
6732 /* Mimic bash message */
6733 bb_error_msg("read: '%s': not a valid identifier", name);
6734 return 1;
6735 }
6736 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006737
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00006738//TODO: bash unbackslashes input, splits words and puts them in argv[i]
6739
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006740 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006741 return set_local_var(string, 0, 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006742}
6743
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006744/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
6745 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006746 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006747 * set [-abCefhmnuvx] [-o option] [argument...]
6748 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006749 * set -- [argument...]
6750 * set -o
6751 * set +o
6752 * Implementations shall support the options in both their hyphen and
6753 * plus-sign forms. These options can also be specified as options to sh.
6754 * Examples:
6755 * Write out all variables and their values: set
6756 * Set $1, $2, and $3 and set "$#" to 3: set c a b
6757 * Turn on the -x and -v options: set -xv
6758 * Unset all positional parameters: set --
6759 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
6760 * Set the positional parameters to the expansion of x, even if x expands
6761 * with a leading '-' or '+': set -- $x
6762 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006763 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006764 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006765static int builtin_set(char **argv)
6766{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006767 int n;
6768 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006769 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006770
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006771 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006772 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00006773 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006774 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006775 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006776 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006777
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006778 do {
6779 if (!strcmp(arg, "--")) {
6780 ++argv;
6781 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006782 }
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00006783 if (arg[0] != '+' && arg[0] != '-')
6784 break;
6785 for (n = 1; arg[n]; ++n)
6786 if (set_mode(arg[0], arg[n]))
6787 goto error;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006788 } while ((arg = *++argv) != NULL);
6789 /* Now argv[0] is 1st argument */
6790
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006791 if (arg == NULL)
6792 return EXIT_SUCCESS;
6793 set_argv:
6794
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006795 /* NB: G.global_argv[0] ($0) is never freed/changed */
6796 g_argv = G.global_argv;
6797 if (G.global_args_malloced) {
6798 pp = g_argv;
6799 while (*++pp)
6800 free(*pp);
6801 g_argv[1] = NULL;
6802 } else {
6803 G.global_args_malloced = 1;
6804 pp = xzalloc(sizeof(pp[0]) * 2);
6805 pp[0] = g_argv[0]; /* retain $0 */
6806 g_argv = pp;
6807 }
6808 /* This realloc's G.global_argv */
6809 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
6810
6811 n = 1;
6812 while (*++pp)
6813 n++;
6814 G.global_argc = n;
6815
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006816 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006817
6818 /* Nothing known, so abort */
6819 error:
6820 bb_error_msg("set: %s: invalid option", arg);
6821 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006822}
6823
6824static int builtin_shift(char **argv)
6825{
6826 int n = 1;
6827 if (argv[1]) {
6828 n = atoi(argv[1]);
6829 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006830 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006831 if (G.global_args_malloced) {
6832 int m = 1;
6833 while (m <= n)
6834 free(G.global_argv[m++]);
6835 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006836 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006837 memmove(&G.global_argv[1], &G.global_argv[n+1],
6838 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006839 return EXIT_SUCCESS;
6840 }
6841 return EXIT_FAILURE;
6842}
6843
6844static int builtin_source(char **argv)
6845{
6846 FILE *input;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00006847 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00006848#if ENABLE_HUSH_FUNCTIONS
6849 smallint sv_flg;
6850#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006851
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006852 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006853 return EXIT_FAILURE;
6854
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006855// TODO: search through $PATH is missing
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006856 input = fopen_or_warn(*argv, "r");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006857 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006858 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006859 return EXIT_FAILURE;
6860 }
6861 close_on_exec_on(fileno(input));
6862
Mike Frysinger885b6f22009-04-18 21:04:25 +00006863#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006864 sv_flg = G.flag_return_in_progress;
6865 /* "we are inside sourced file, ok to use return" */
6866 G.flag_return_in_progress = -1;
Mike Frysinger885b6f22009-04-18 21:04:25 +00006867#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00006868 save_and_replace_G_args(&sv, argv);
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006869
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006870 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006871 fclose(input);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00006872
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006873 restore_G_args(&sv, argv);
Mike Frysinger885b6f22009-04-18 21:04:25 +00006874#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006875 G.flag_return_in_progress = sv_flg;
Mike Frysinger885b6f22009-04-18 21:04:25 +00006876#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006877
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006878 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006879}
6880
6881static int builtin_umask(char **argv)
6882{
Denis Vlasenkoeb858492009-04-18 02:06:54 +00006883 int rc;
6884 mode_t mask;
6885
6886 mask = umask(0);
6887 if (argv[1]) {
6888 mode_t old_mask = mask;
6889
6890 mask ^= 0777;
6891 rc = bb_parse_mode(argv[1], &mask);
6892 mask ^= 0777;
6893 if (rc == 0) {
6894 mask = old_mask;
6895 /* bash messages:
6896 * bash: umask: 'q': invalid symbolic mode operator
6897 * bash: umask: 999: octal number out of range
6898 */
6899 bb_error_msg("%s: '%s' invalid mode", argv[0], argv[1]);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006900 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006901 } else {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00006902 rc = 1;
6903 /* Mimic bash */
6904 printf("%04o\n", (unsigned) mask);
6905 /* fall through and restore mask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006906 }
Denis Vlasenkoeb858492009-04-18 02:06:54 +00006907 umask(mask);
6908
6909 return !rc; /* rc != 0 - success */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006910}
6911
Mike Frysingerd690f682009-03-30 06:50:54 +00006912/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006913static int builtin_unset(char **argv)
6914{
Mike Frysingerd690f682009-03-30 06:50:54 +00006915 int ret;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006916 char var;
Denis Vlasenko40e84372009-04-18 11:23:38 +00006917 char *arg;
Mike Frysingerd690f682009-03-30 06:50:54 +00006918
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006919 if (!*++argv)
Mike Frysingerd690f682009-03-30 06:50:54 +00006920 return EXIT_SUCCESS;
6921
Denis Vlasenko40e84372009-04-18 11:23:38 +00006922 var = 0;
6923 while ((arg = *argv) != NULL && arg[0] == '-') {
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00006924 arg++;
6925 do {
Denis Vlasenko40e84372009-04-18 11:23:38 +00006926 switch (*arg) {
6927 case 'v':
6928 case 'f':
6929 if (var == 0 || var == *arg) {
6930 var = *arg;
6931 break;
6932 }
6933 /* else: unset -vf, which is illegal.
6934 * fall through */
6935 default:
6936 bb_error_msg("unset: %s: invalid option", *argv);
6937 return EXIT_FAILURE;
6938 }
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00006939 } while (*++arg);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006940 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006941 }
6942
6943 ret = EXIT_SUCCESS;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006944 while (*argv) {
Denis Vlasenko40e84372009-04-18 11:23:38 +00006945 if (var != 'f') {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006946 if (unset_local_var(*argv)) {
6947 /* unset <nonexistent_var> doesn't fail.
6948 * Error is when one tries to unset RO var.
6949 * Message was printed by unset_local_var. */
Mike Frysingerd690f682009-03-30 06:50:54 +00006950 ret = EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006951 }
Mike Frysingerd690f682009-03-30 06:50:54 +00006952 }
Denis Vlasenko40e84372009-04-18 11:23:38 +00006953#if ENABLE_HUSH_FUNCTIONS
6954 else {
6955 unset_func(*argv);
6956 }
6957#endif
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006958 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006959 }
6960 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006961}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006962
Mike Frysinger56bdea12009-03-28 20:01:58 +00006963/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
6964static int builtin_wait(char **argv)
6965{
6966 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006967 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00006968
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006969 if (*++argv == NULL) {
6970 /* Don't care about wait results */
6971 /* Note 1: must wait until there are no more children */
6972 /* Note 2: must be interruptible */
6973 /* Examples:
6974 * $ sleep 3 & sleep 6 & wait
6975 * [1] 30934 sleep 3
6976 * [2] 30935 sleep 6
6977 * [1] Done sleep 3
6978 * [2] Done sleep 6
6979 * $ sleep 3 & sleep 6 & wait
6980 * [1] 30936 sleep 3
6981 * [2] 30937 sleep 6
6982 * [1] Done sleep 3
6983 * ^C <-- after ~4 sec from keyboard
6984 * $
6985 */
6986 sigaddset(&G.blocked_set, SIGCHLD);
6987 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6988 while (1) {
6989 checkjobs(NULL);
6990 if (errno == ECHILD)
6991 break;
6992 /* Wait for SIGCHLD or any other signal of interest */
6993 /* sigtimedwait with infinite timeout: */
6994 sig = sigwaitinfo(&G.blocked_set, NULL);
6995 if (sig > 0) {
6996 sig = check_and_run_traps(sig);
6997 if (sig && sig != SIGCHLD) { /* see note 2 */
6998 ret = 128 + sig;
6999 break;
7000 }
7001 }
7002 }
7003 sigdelset(&G.blocked_set, SIGCHLD);
7004 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7005 return ret;
7006 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00007007
Denis Vlasenko7566bae2009-03-31 17:24:49 +00007008 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00007009 while (*argv) {
7010 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00007011 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00007012 /* mimic bash message */
7013 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00007014 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00007015 }
7016 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00007017 if (WIFSIGNALED(status))
7018 ret = 128 + WTERMSIG(status);
7019 else if (WIFEXITED(status))
7020 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00007021 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00007022 ret = EXIT_FAILURE;
7023 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00007024 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00007025 ret = 127;
7026 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00007027 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00007028 }
7029
7030 return ret;
7031}
7032
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007033#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
7034static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
7035{
7036 if (argv[1]) {
7037 def = bb_strtou(argv[1], NULL, 10);
7038 if (errno || def < def_min || argv[2]) {
7039 bb_error_msg("%s: bad arguments", argv[0]);
7040 def = UINT_MAX;
7041 }
7042 }
7043 return def;
7044}
7045#endif
7046
Denis Vlasenkodadfb492008-07-29 10:16:05 +00007047#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00007048static int builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007049{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007050 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +00007051 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00007052 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00007053 return EXIT_SUCCESS; /* bash compat */
7054 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00007055 G.flag_break_continue++; /* BC_BREAK = 1 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007056
7057 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
7058 if (depth == UINT_MAX)
7059 G.flag_break_continue = BC_BREAK;
7060 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +00007061 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007062
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007063 return EXIT_SUCCESS;
7064}
7065
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00007066static int builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007067{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00007068 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
7069 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007070}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00007071#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007072
7073#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko7b9e5c52009-04-17 23:53:15 +00007074static int builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007075{
7076 int rc;
7077
7078 if (G.flag_return_in_progress != -1) {
7079 bb_error_msg("%s: not in a function or sourced script", argv[0]);
7080 return EXIT_FAILURE; /* bash compat */
7081 }
7082
7083 G.flag_return_in_progress = 1;
7084
7085 /* bash:
7086 * out of range: wraps around at 256, does not error out
7087 * non-numeric param:
7088 * f() { false; return qwe; }; f; echo $?
7089 * bash: return: qwe: numeric argument required <== we do this
7090 * 255 <== we also do this
7091 */
7092 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
7093 return rc;
7094}
7095#endif