blob: 53b1f3f8bbf22f5b63461706a3ce47a9b6ac86b1 [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
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000798/* Utility functions
799 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000800static int glob_needed(const char *s)
801{
802 while (*s) {
803 if (*s == '\\')
804 s++;
805 if (*s == '*' || *s == '[' || *s == '?')
806 return 1;
807 s++;
808 }
809 return 0;
810}
811
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000812static int is_well_formed_var_name(const char *s, char terminator)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000813{
Denis Vlasenkod4981312008-07-31 10:34:48 +0000814 if (!s || !(isalpha(*s) || *s == '_'))
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000815 return 0;
816 s++;
817 while (isalnum(*s) || *s == '_')
818 s++;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000819 return *s == terminator;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000820}
821
Denis Vlasenko55789c62008-06-18 16:30:42 +0000822/* Replace each \x with x in place, return ptr past NUL. */
823static char *unbackslash(char *src)
824{
825 char *dst = src;
826 while (1) {
827 if (*src == '\\')
828 src++;
829 if ((*dst++ = *src++) == '\0')
830 break;
831 }
832 return dst;
833}
834
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000835static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000836{
837 int i;
838 unsigned count1;
839 unsigned count2;
840 char **v;
841
842 v = strings;
843 count1 = 0;
844 if (v) {
845 while (*v) {
846 count1++;
847 v++;
848 }
849 }
850 count2 = 0;
851 v = add;
852 while (*v) {
853 count2++;
854 v++;
855 }
856 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
857 v[count1 + count2] = NULL;
858 i = count2;
859 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000860 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000861 return v;
862}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000863#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000864static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
865{
866 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
867 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
868 return ptr;
869}
870#define add_strings_to_strings(strings, add, need_to_dup) \
871 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
872#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000873
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000874static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000875{
876 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000877 v[0] = add;
878 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000879 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000880}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000881#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000882static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
883{
884 char **ptr = add_string_to_strings(strings, add);
885 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
886 return ptr;
887}
888#define add_string_to_strings(strings, add) \
889 xx_add_string_to_strings(__LINE__, strings, add)
890#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000891
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000892static void putenv_all(char **strings)
893{
894 if (!strings)
895 return;
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000896 while (*strings) {
897 debug_printf_env("putenv '%s'\n", *strings);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000898 putenv(*strings++);
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000899 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000900}
901
902static char **putenv_all_and_save_old(char **strings)
903{
904 char **old = NULL;
905 char **s = strings;
906
907 if (!strings)
908 return old;
909 while (*strings) {
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000910 char *v, *eq;
911
912 eq = strchr(*strings, '=');
913 if (eq) {
914 *eq = '\0';
915 v = getenv(*strings);
916 *eq = '=';
917 if (v) {
918 /* v points to VAL in VAR=VAL, go back to VAR */
919 v -= (eq - *strings) + 1;
920 old = add_string_to_strings(old, v);
921 }
922 }
923 strings++;
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000924 }
925 putenv_all(s);
926 return old;
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000927}
928
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000929static void free_strings_and_unsetenv(char **strings, int unset)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000930{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000931 char **v;
932
933 if (!strings)
934 return;
935
936 v = strings;
937 while (*v) {
938 if (unset) {
Denis Vlasenko76ddc2e2008-12-30 05:05:31 +0000939 debug_printf_env("unsetenv '%s'\n", *v);
940 bb_unsetenv(*v);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000941 }
942 free(*v++);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000943 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000944 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000945}
946
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000947static void free_strings(char **strings)
Denis Vlasenko76d50412008-06-10 16:19:39 +0000948{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000949 free_strings_and_unsetenv(strings, 0);
Denis Vlasenko76d50412008-06-10 16:19:39 +0000950}
Denis Vlasenko76d50412008-06-10 16:19:39 +0000951
952
Denis Vlasenko270b1c32009-04-17 18:54:50 +0000953/* Helpers for setting new $n and restoring them back
954 */
955typedef struct save_arg_t {
956 char *sv_argv0;
957 char **sv_g_argv;
958 int sv_g_argc;
959 smallint sv_g_malloced;
960} save_arg_t;
961
962static void save_and_replace_G_args(save_arg_t *sv, char **argv)
963{
964 int n;
965
966 sv->sv_argv0 = argv[0];
967 sv->sv_g_argv = G.global_argv;
968 sv->sv_g_argc = G.global_argc;
969 sv->sv_g_malloced = G.global_args_malloced;
970
971 argv[0] = G.global_argv[0]; /* retain $0 */
972 G.global_argv = argv;
973 G.global_args_malloced = 0;
974
975 n = 1;
976 while (*++argv)
977 n++;
978 G.global_argc = n;
979}
980
981static void restore_G_args(save_arg_t *sv, char **argv)
982{
983 char **pp;
984
985 if (G.global_args_malloced) {
986 /* someone ran "set -- arg1 arg2 ...", undo */
987 pp = G.global_argv;
988 while (*++pp) /* note: does not free $0 */
989 free(*pp);
990 free(G.global_argv);
991 }
992 argv[0] = sv->sv_argv0;
993 G.global_argv = sv->sv_g_argv;
994 G.global_argc = sv->sv_g_argc;
995 G.global_args_malloced = sv->sv_g_malloced;
996}
997
998
Denis Vlasenkod5762932009-03-31 11:22:57 +0000999/* Basic theory of signal handling in shell
1000 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001001 * This does not describe what hush does, rather, it is current understanding
1002 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001003 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1004 *
1005 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1006 * is finished or backgrounded. It is the same in interactive and
1007 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001008 * a user trap handler is installed or a shell special one is in effect.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001009 * ^C or ^Z from keyboard seem to execute "at once" because it usually
1010 * backgrounds (i.e. stops) or kills all members of currently running
1011 * pipe.
1012 *
1013 * Wait builtin in interruptible by signals for which user trap is set
1014 * or by SIGINT in interactive shell.
1015 *
1016 * Trap handlers will execute even within trap handlers. (right?)
1017 *
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001018 * User trap handlers are forgotten when subshell ("(cmd)") is entered.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001019 *
1020 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001021 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001022 *
1023 * Commands run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001024 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001025 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001026 * Ordinary commands have signals set to SIG_IGN/DFL set as inherited
1027 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001028 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001029 * Siganls which differ from SIG_DFL action
1030 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001031 *
1032 * SIGQUIT: ignore
1033 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001034 * SIGHUP (interactive):
1035 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001036 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001037 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1038 * that all pipe members are stopped. Try this in bash:
1039 * while :; do :; done - ^Z does not background it
1040 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001041 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001042 * of the command line, show prompt. NB: ^C does not send SIGINT
1043 * to interactive shell while shell is waiting for a pipe,
1044 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001045 * Example 1: this waits 5 sec, but does not execute ls:
1046 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1047 * Example 2: this does not wait and does not execute ls:
1048 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1049 * Example 3: this does not wait 5 sec, but executes ls:
1050 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001051 *
1052 * (What happens to signals which are IGN on shell start?)
1053 * (What happens with signal mask on shell start?)
1054 *
1055 * Implementation in hush
1056 * ======================
1057 * We use in-kernel pending signal mask to determine which signals were sent.
1058 * We block all signals which we don't want to take action immediately,
1059 * i.e. we block all signals which need to have special handling as described
1060 * above, and all signals which have traps set.
1061 * After each pipe execution, we extract any pending signals via sigtimedwait()
1062 * and act on them.
1063 *
1064 * unsigned non_DFL_mask: a mask of such "special" signals
1065 * sigset_t blocked_set: current blocked signal set
1066 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001067 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +00001068 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001069 * "trap 'cmd' SIGxxx":
1070 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001071 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001072 * unblock signals with special interactive handling
1073 * (child shell is not interactive),
1074 * unset all traps (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001075 * after [v]fork, if we plan to exec:
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001076 * POSIX says pending signal mask is cleared in child - no need to clear it.
1077 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001078 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001079 * Note: as a result, we do not use signal handlers much. The only uses
1080 * are to count SIGCHLDs [disabled - bug somewhere, + bloat]
1081 * and to restore tty pgrp on signal-induced exit.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001082 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001083enum {
1084 SPECIAL_INTERACTIVE_SIGS = 0
1085#if ENABLE_HUSH_JOB
1086 | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001087 | (1 << SIGHUP)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001088#endif
1089 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001090 | (1 << SIGINT)
1091};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001092
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001093//static void SIGCHLD_handler(int sig UNUSED_PARAM)
1094//{
1095// G.count_SIGCHLD++;
1096//}
1097
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001098#if ENABLE_HUSH_JOB
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001099
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001100/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
1101#define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001102/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001103#define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
1104
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001105/* Restores tty foreground process group, and exits.
1106 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001107 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001108 * or called directly with -EXITCODE.
1109 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001110static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001111static void sigexit(int sig)
1112{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001113 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001114 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001115
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001116 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001117 * tty pgrp then, only top-level shell process does that */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001118 if (G_interactive_fd && getpid() == G.root_pid)
1119 tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001120
1121 /* Not a signal, just exit */
1122 if (sig <= 0)
1123 _exit(- sig);
1124
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001125 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001126}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001127#else
1128
1129#define disable_restore_tty_pgrp_on_exit() ((void)0)
1130#define enable_restore_tty_pgrp_on_exit() ((void)0)
1131
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001132#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001133
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001134/* Restores tty foreground process group, and exits. */
1135static void hush_exit(int exitcode) NORETURN;
1136static void hush_exit(int exitcode)
1137{
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001138 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1139 /* Prevent recursion:
1140 * trap "echo Hi; exit" EXIT; exit
1141 */
1142 char *argv[] = { NULL, G.traps[0], NULL };
1143 G.traps[0] = NULL;
1144 G.exiting = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001145 builtin_eval(argv);
1146 free(argv[1]);
1147 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001148
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001149#if ENABLE_HUSH_JOB
1150 fflush(NULL); /* flush all streams */
1151 sigexit(- (exitcode & 0xff));
1152#else
1153 exit(exitcode);
1154#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001155}
1156
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001157static int check_and_run_traps(int sig)
1158{
1159 static const struct timespec zero_timespec = { 0, 0 };
1160 smalluint save_rcode;
1161 int last_sig = 0;
1162
1163 if (sig)
1164 goto jump_in;
1165 while (1) {
1166 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
1167 if (sig <= 0)
1168 break;
1169 jump_in:
1170 last_sig = sig;
1171 if (G.traps && G.traps[sig]) {
1172 if (G.traps[sig][0]) {
1173 /* We have user-defined handler */
1174 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
1175 save_rcode = G.last_exitcode;
1176 builtin_eval(argv);
1177 free(argv[1]);
1178 G.last_exitcode = save_rcode;
1179 } /* else: "" trap, ignoring signal */
1180 continue;
1181 }
1182 /* not a trap: special action */
1183 switch (sig) {
1184// case SIGCHLD:
1185// G.count_SIGCHLD++;
1186// break;
1187 case SIGINT:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001188 /* Builtin was ^C'ed, make it look prettier: */
1189 bb_putchar('\n');
1190 G.flag_SIGINT = 1;
1191 break;
1192#if ENABLE_HUSH_JOB
1193 case SIGHUP: {
1194 struct pipe *job;
1195 /* bash is observed to signal whole process groups,
1196 * not individual processes */
1197 for (job = G.job_list; job; job = job->next) {
1198 if (job->pgrp <= 0)
1199 continue;
1200 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1201 if (kill(- job->pgrp, SIGHUP) == 0)
1202 kill(- job->pgrp, SIGCONT);
1203 }
1204 sigexit(SIGHUP);
1205 }
1206#endif
1207 default: /* ignored: */
1208 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
1209 break;
1210 }
1211 }
1212 return last_sig;
1213}
1214
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001215
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001216static const char *set_cwd(void)
1217{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001218 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1219 * we must not try to free(bb_msg_unknown) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00001220 if (G.cwd == bb_msg_unknown)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001221 G.cwd = NULL;
Denis Vlasenko87a86552008-07-29 19:43:10 +00001222 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1223 if (!G.cwd)
1224 G.cwd = bb_msg_unknown;
1225 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001226}
1227
Denis Vlasenko83506862007-11-23 13:11:42 +00001228
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001229/* Get/check local shell variables */
1230static struct variable *get_local_var(const char *name)
1231{
1232 struct variable *cur;
1233 int len;
1234
1235 if (!name)
1236 return NULL;
1237 len = strlen(name);
1238 for (cur = G.top_var; cur; cur = cur->next) {
1239 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
1240 return cur;
1241 }
1242 return NULL;
1243}
1244
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001245static const char *get_local_var_value(const char *src)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001246{
1247 struct variable *var = get_local_var(src);
1248 if (var)
1249 return strchr(var->varstr, '=') + 1;
1250 return NULL;
1251}
1252
1253/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001254 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001255 * flg_export:
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001256 * 0: do not change export flag
1257 * (if creating new variable, flag will be 0)
1258 * 1: set export flag and putenv the variable
1259 * -1: clear export flag and unsetenv the variable
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001260 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001261 */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001262#if BB_MMU
1263#define set_local_var(str, flg_export, flg_read_only) \
1264 set_local_var(str, flg_export)
1265#endif
1266static int set_local_var(char *str, int flg_export, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001267{
1268 struct variable *cur;
Denis Vlasenko950bd722009-04-21 11:23:56 +00001269 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001270 int name_len;
1271
Denis Vlasenko950bd722009-04-21 11:23:56 +00001272 eq_sign = strchr(str, '=');
1273 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001274 free(str);
1275 return -1;
1276 }
1277
Denis Vlasenko950bd722009-04-21 11:23:56 +00001278 name_len = eq_sign - str + 1; /* including '=' */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001279 cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
1280 while (1) {
1281 if (strncmp(cur->varstr, str, name_len) != 0) {
1282 if (!cur->next) {
1283 /* Bail out. Note that now cur points
1284 * to last var in linked list */
1285 break;
1286 }
1287 cur = cur->next;
1288 continue;
1289 }
1290 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001291 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001292#if !BB_MMU
1293 if (!flg_read_only)
1294#endif
1295 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001296 free(str);
1297 return -1;
1298 }
Denis Vlasenko950bd722009-04-21 11:23:56 +00001299 if (flg_export == -1) {
1300 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1301 *eq_sign = '\0';
1302 unsetenv(str);
1303 *eq_sign = '=';
1304 }
1305 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001306 free_and_exp:
1307 free(str);
1308 goto exp;
1309 }
1310 if (cur->max_len >= strlen(str)) {
1311 /* This one is from startup env, reuse space */
1312 strcpy(cur->varstr, str);
1313 goto free_and_exp;
1314 }
1315 /* max_len == 0 signifies "malloced" var, which we can
1316 * (and has to) free */
1317 if (!cur->max_len)
1318 free(cur->varstr);
1319 cur->max_len = 0;
1320 goto set_str_and_exp;
1321 }
1322
1323 /* Not found - create next variable struct */
1324 cur->next = xzalloc(sizeof(*cur));
1325 cur = cur->next;
1326
1327 set_str_and_exp:
1328 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001329#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001330 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001331#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001332 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001333 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001334 cur->flg_export = 1;
1335 if (cur->flg_export) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001336 if (flg_export == -1) {
1337 cur->flg_export = 0;
1338 /* unsetenv was already done */
1339 } else {
1340 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1341 return putenv(cur->varstr);
1342 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001343 }
1344 return 0;
1345}
1346
Mike Frysingerd690f682009-03-30 06:50:54 +00001347static int unset_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001348{
1349 struct variable *cur;
1350 struct variable *prev = prev; /* for gcc */
1351 int name_len;
1352
1353 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001354 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001355 name_len = strlen(name);
1356 cur = G.top_var;
1357 while (cur) {
1358 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1359 if (cur->flg_read_only) {
1360 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001361 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001362 }
1363 /* prev is ok to use here because 1st variable, HUSH_VERSION,
1364 * is ro, and we cannot reach this code on the 1st pass */
1365 prev->next = cur->next;
1366 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1367 bb_unsetenv(cur->varstr);
1368 if (!cur->max_len)
1369 free(cur->varstr);
1370 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001371 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001372 }
1373 prev = cur;
1374 cur = cur->next;
1375 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001376 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001377}
1378
Mike Frysinger98c52642009-04-02 10:02:37 +00001379#if ENABLE_SH_MATH_SUPPORT
1380#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1381#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1382static char *endofname(const char *name)
1383{
1384 char *p;
1385
1386 p = (char *) name;
1387 if (!is_name(*p))
1388 return p;
1389 while (*++p) {
1390 if (!is_in_name(*p))
1391 break;
1392 }
1393 return p;
1394}
1395
1396static void arith_set_local_var(const char *name, const char *val, int flags)
1397{
1398 /* arith code doesnt malloc space, so do it for it */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001399 char *var = xasprintf("%s=%s", name, val);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001400 set_local_var(var, flags, 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001401}
1402#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001403
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001404
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001405/*
1406 * in_str support
1407 */
1408static int static_get(struct in_str *i)
1409{
1410 int ch = *i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001411 if (ch != '\0')
1412 return ch;
1413 i->p--;
1414 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001415}
1416
1417static int static_peek(struct in_str *i)
1418{
1419 return *i->p;
1420}
1421
1422#if ENABLE_HUSH_INTERACTIVE
1423
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001424static void cmdedit_set_initial_prompt(void)
1425{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001426 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1427 G.PS1 = getenv("PS1");
1428 if (G.PS1 == NULL)
1429 G.PS1 = "\\w \\$ ";
1430 } else
1431 G.PS1 = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001432}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001433
1434static const char* setup_prompt_string(int promptmode)
1435{
1436 const char *prompt_str;
1437 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001438 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1439 /* Set up the prompt */
1440 if (promptmode == 0) { /* PS1 */
1441 free((char*)G.PS1);
1442 G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#');
1443 prompt_str = G.PS1;
1444 } else
1445 prompt_str = G.PS2;
1446 } else
1447 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001448 debug_printf("result '%s'\n", prompt_str);
1449 return prompt_str;
1450}
1451
1452static void get_user_input(struct in_str *i)
1453{
1454 int r;
1455 const char *prompt_str;
1456
1457 prompt_str = setup_prompt_string(i->promptmode);
1458#if ENABLE_FEATURE_EDITING
1459 /* Enable command line editing only while a command line
1460 * is actually being read */
1461 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001462 G.flag_SIGINT = 0;
1463 /* buglet: SIGINT will not make new prompt to appear _at once_,
1464 * only after <Enter>. (^C will work) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001465 r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001466 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001467 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001468 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001469 i->eof_flag = (r < 0);
1470 if (i->eof_flag) { /* EOF/error detected */
1471 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1472 G.user_input_buf[1] = '\0';
1473 }
1474#else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001475 do {
1476 G.flag_SIGINT = 0;
1477 fputs(prompt_str, stdout);
1478 fflush(stdout);
1479 G.user_input_buf[0] = r = fgetc(i->file);
1480 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001481//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001482 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001483 i->eof_flag = (r == EOF);
1484#endif
1485 i->p = G.user_input_buf;
1486}
1487
1488#endif /* INTERACTIVE */
1489
1490/* This is the magic location that prints prompts
1491 * and gets data back from the user */
1492static int file_get(struct in_str *i)
1493{
1494 int ch;
1495
1496 /* If there is data waiting, eat it up */
1497 if (i->p && *i->p) {
1498#if ENABLE_HUSH_INTERACTIVE
1499 take_cached:
1500#endif
1501 ch = *i->p++;
1502 if (i->eof_flag && !*i->p)
1503 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001504 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001505 } else {
1506 /* need to double check i->file because we might be doing something
1507 * more complicated by now, like sourcing or substituting. */
1508#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001509 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001510 do {
1511 get_user_input(i);
1512 } while (!*i->p); /* need non-empty line */
1513 i->promptmode = 1; /* PS2 */
1514 i->promptme = 0;
1515 goto take_cached;
1516 }
1517#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001518 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001519 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001520 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001521#if ENABLE_HUSH_INTERACTIVE
1522 if (ch == '\n')
1523 i->promptme = 1;
1524#endif
1525 return ch;
1526}
1527
Denis Vlasenko913a2012009-04-05 22:17:04 +00001528/* All callers guarantee this routine will never
1529 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001530 */
1531static int file_peek(struct in_str *i)
1532{
1533 int ch;
1534 if (i->p && *i->p) {
1535 if (i->eof_flag && !i->p[1])
1536 return EOF;
1537 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001538 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001539 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001540 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001541 i->eof_flag = (ch == EOF);
1542 i->peek_buf[0] = ch;
1543 i->peek_buf[1] = '\0';
1544 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001545 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001546 return ch;
1547}
1548
1549static void setup_file_in_str(struct in_str *i, FILE *f)
1550{
1551 i->peek = file_peek;
1552 i->get = file_get;
1553#if ENABLE_HUSH_INTERACTIVE
1554 i->promptme = 1;
1555 i->promptmode = 0; /* PS1 */
1556#endif
1557 i->file = f;
1558 i->p = NULL;
1559}
1560
1561static void setup_string_in_str(struct in_str *i, const char *s)
1562{
1563 i->peek = static_peek;
1564 i->get = static_get;
1565#if ENABLE_HUSH_INTERACTIVE
1566 i->promptme = 1;
1567 i->promptmode = 0; /* PS1 */
1568#endif
1569 i->p = s;
1570 i->eof_flag = 0;
1571}
1572
1573
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001574/*
1575 * o_string support
1576 */
1577#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001578
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001579static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001580{
1581 o->length = 0;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001582 o->o_quoted = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001583 if (o->data)
1584 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001585}
1586
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001587static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001588{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001589 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001590 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001591}
1592
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001593static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1594{
1595 free(o->data);
1596}
1597
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001598static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001599{
1600 if (o->length + len > o->maxlen) {
1601 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1602 o->data = xrealloc(o->data, 1 + o->maxlen);
1603 }
1604}
1605
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001606static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001607{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001608 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1609 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001610 o->data[o->length] = ch;
1611 o->length++;
1612 o->data[o->length] = '\0';
1613}
1614
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001615static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001616{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001617 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001618 memcpy(&o->data[o->length], str, len);
1619 o->length += len;
1620 o->data[o->length] = '\0';
1621}
1622
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001623#if !BB_MMU
1624static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00001625{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001626 o_addblock(o, str, strlen(str));
1627}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001628static void nommu_addchr(o_string *o, int ch)
1629{
1630 if (o)
1631 o_addchr(o, ch);
1632}
1633#else
1634#define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001635#endif
1636
1637static void o_addstr_with_NUL(o_string *o, const char *str)
1638{
1639 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00001640}
1641
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001642static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
Denis Vlasenko55789c62008-06-18 16:30:42 +00001643{
1644 while (len) {
1645 o_addchr(o, *str);
1646 if (*str++ == '\\'
1647 && (*str != '*' && *str != '?' && *str != '[')
1648 ) {
1649 o_addchr(o, '\\');
1650 }
1651 len--;
1652 }
1653}
1654
Eric Andersen25f27032001-04-26 23:22:31 +00001655/* My analysis of quoting semantics tells me that state information
1656 * is associated with a destination, not a source.
1657 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001658static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001659{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001660 int sz = 1;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001661 char *found = strchr("*?[\\", ch);
1662 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001663 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001664 o_grow_by(o, sz);
1665 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001666 o->data[o->length] = '\\';
1667 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001668 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001669 o->data[o->length] = ch;
1670 o->length++;
1671 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001672}
1673
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001674static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001675{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001676 int sz = 1;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001677 if (o->o_escape && strchr("*?[\\", ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001678 sz++;
1679 o->data[o->length] = '\\';
1680 o->length++;
1681 }
1682 o_grow_by(o, sz);
1683 o->data[o->length] = ch;
1684 o->length++;
1685 o->data[o->length] = '\0';
1686}
1687
1688static void o_addQstr(o_string *o, const char *str, int len)
1689{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001690 if (!o->o_escape) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001691 o_addblock(o, str, len);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001692 return;
1693 }
1694 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001695 char ch;
1696 int sz;
1697 int ordinary_cnt = strcspn(str, "*?[\\");
1698 if (ordinary_cnt > len) /* paranoia */
1699 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001700 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001701 if (ordinary_cnt == len)
1702 return;
1703 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001704 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001705
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001706 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001707 sz = 1;
1708 if (ch) { /* it is necessarily one of "*?[\\" */
1709 sz++;
1710 o->data[o->length] = '\\';
1711 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001712 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001713 o_grow_by(o, sz);
1714 o->data[o->length] = ch;
1715 o->length++;
1716 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001717 }
1718}
1719
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001720/* A special kind of o_string for $VAR and `cmd` expansion.
1721 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001722 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001723 * list[i] contains an INDEX (int!) into this string data.
1724 * It means that if list[] needs to grow, data needs to be moved higher up
1725 * but list[i]'s need not be modified.
1726 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001727 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001728 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1729 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001730#if DEBUG_EXPAND || DEBUG_GLOB
1731static void debug_print_list(const char *prefix, o_string *o, int n)
1732{
1733 char **list = (char**)o->data;
1734 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1735 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001736
1737 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001738 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1739 prefix, list, n, string_start, o->length, o->maxlen);
1740 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001741 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001742 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1743 o->data + (int)list[i] + string_start,
1744 o->data + (int)list[i] + string_start);
1745 i++;
1746 }
1747 if (n) {
1748 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001749 indent();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001750 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001751 }
1752}
1753#else
1754#define debug_print_list(prefix, o, n) ((void)0)
1755#endif
1756
1757/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1758 * in list[n] so that it points past last stored byte so far.
1759 * It returns n+1. */
1760static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001761{
1762 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001763 int string_start;
1764 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001765
1766 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001767 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1768 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001769 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001770 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001771 /* list[n] points to string_start, make space for 16 more pointers */
1772 o->maxlen += 0x10 * sizeof(list[0]);
1773 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00001774 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001775 memmove(list + n + 0x10, list + n, string_len);
1776 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001777 } else {
1778 debug_printf_list("list[%d]=%d string_start=%d\n",
1779 n, string_len, string_start);
1780 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001781 } else {
1782 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001783 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1784 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001785 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
1786 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001787 o->has_empty_slot = 0;
1788 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001789 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001790 return n + 1;
1791}
1792
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001793/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001794static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001795{
1796 char **list = (char**)o->data;
1797 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1798
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001799 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001800}
1801
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001802/* o_glob performs globbing on last list[], saving each result
Denis Vlasenko55789c62008-06-18 16:30:42 +00001803 * as a new list[]. */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001804static int o_glob(o_string *o, int n)
1805{
1806 glob_t globdata;
1807 int gr;
1808 char *pattern;
1809
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001810 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001811 if (!o->data)
1812 return o_save_ptr_helper(o, n);
1813 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001814 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001815 if (!glob_needed(pattern)) {
1816 literal:
1817 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001818 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001819 return o_save_ptr_helper(o, n);
1820 }
1821
1822 memset(&globdata, 0, sizeof(globdata));
1823 gr = glob(pattern, 0, NULL, &globdata);
1824 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1825 if (gr == GLOB_NOSPACE)
1826 bb_error_msg_and_die("out of memory during glob");
1827 if (gr == GLOB_NOMATCH) {
1828 globfree(&globdata);
1829 goto literal;
1830 }
1831 if (gr != 0) { /* GLOB_ABORTED ? */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00001832 /* TODO: testcase for bad glob pattern behavior */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001833 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1834 }
1835 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1836 char **argv = globdata.gl_pathv;
1837 o->length = pattern - o->data; /* "forget" pattern */
1838 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001839 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001840 n = o_save_ptr_helper(o, n);
1841 argv++;
1842 if (!*argv)
1843 break;
1844 }
1845 }
1846 globfree(&globdata);
1847 if (DEBUG_GLOB)
1848 debug_print_list("o_glob returning", o, n);
1849 return n;
1850}
1851
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001852/* If o->o_glob == 1, glob the string so far remembered.
1853 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001854static int o_save_ptr(o_string *o, int n)
1855{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00001856 if (o->o_glob) { /* if globbing is requested */
1857 /* If o->has_empty_slot, list[n] was already globbed
1858 * (if it was requested back then when it was filled)
1859 * so don't do that again! */
1860 if (!o->has_empty_slot)
1861 return o_glob(o, n); /* o_save_ptr_helper is inside */
1862 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001863 return o_save_ptr_helper(o, n);
1864}
1865
1866/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001867static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001868{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001869 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001870 int string_start;
1871
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001872 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
1873 if (DEBUG_EXPAND)
1874 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001875 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001876 list = (char**)o->data;
1877 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1878 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001879 while (n) {
1880 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001881 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001882 }
1883 return list;
1884}
1885
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001886
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001887/* Expansion can recurse */
1888#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001889static int process_command_subs(o_string *dest, const char *s);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001890#endif
1891static char *expand_string_to_string(const char *str);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001892#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001893#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001894 parse_stream_dquoted(dest, input, dquote_end)
1895#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001896static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001897 o_string *dest,
1898 struct in_str *input,
1899 int dquote_end);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001900
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001901/* expand_strvec_to_strvec() takes a list of strings, expands
1902 * all variable references within and returns a pointer to
1903 * a list of expanded strings, possibly with larger number
1904 * of strings. (Think VAR="a b"; echo $VAR).
1905 * This new list is allocated as a single malloc block.
1906 * NULL-terminated list of char* pointers is at the beginning of it,
1907 * followed by strings themself.
1908 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00001909
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001910/* Store given string, finalizing the word and starting new one whenever
1911 * we encounter IFS char(s). This is used for expanding variable values.
1912 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
1913static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00001914{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001915 while (1) {
1916 int word_len = strcspn(str, G.ifs);
1917 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001918 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001919 o_addQstr(output, str, word_len);
1920 else /* protect backslashes against globbing up :) */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001921 o_addblock_duplicate_backslash(output, str, word_len);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001922 str += word_len;
1923 }
1924 if (!*str) /* EOL - do not finalize word */
1925 break;
1926 o_addchr(output, '\0');
1927 debug_print_list("expand_on_ifs", output, n);
1928 n = o_save_ptr(output, n);
1929 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00001930 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001931 debug_print_list("expand_on_ifs[1]", output, n);
1932 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001933}
1934
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001935/* Helper to expand $((...)) and heredoc body. These act as if
1936 * they are in double quotes, with the exception that they are not :).
1937 * Just the rules are similar: "expand only $var and `cmd`"
1938 *
1939 * Returns malloced string.
1940 * As an optimization, we return NULL if expansion is not needed.
1941 */
1942static char *expand_pseudo_dquoted(const char *str)
1943{
1944 char *exp_str;
1945 struct in_str input;
1946 o_string dest = NULL_O_STRING;
1947
1948 if (strchr(str, '$') == NULL
1949#if ENABLE_HUSH_TICK
1950 && strchr(str, '`') == NULL
1951#endif
1952 ) {
1953 return NULL;
1954 }
1955
1956 /* We need to expand. Example:
1957 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
1958 */
1959 setup_string_in_str(&input, str);
1960 parse_stream_dquoted(NULL, &dest, &input, EOF);
1961 //bb_error_msg("'%s' -> '%s'", str, dest.data);
1962 exp_str = expand_string_to_string(dest.data);
1963 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
1964 o_free_unsafe(&dest);
1965 return exp_str;
1966}
1967
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001968/* Expand all variable references in given string, adding words to list[]
1969 * at n, n+1,... positions. Return updated n (so that list[n] is next one
1970 * to be filled). This routine is extremely tricky: has to deal with
1971 * variables/parameters with whitespace, $* and $@, and constructs like
1972 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
1973static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00001974{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001975 /* or_mask is either 0 (normal case) or 0x80
1976 * (expansion of right-hand side of assignment == 1-element expand.
1977 * It will also do no globbing, and thus we must not backslash-quote!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001978
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001979 char first_ch, ored_ch;
1980 int i;
1981 const char *val;
Mike Frysingera4f331d2009-04-07 06:03:22 +00001982 char *dyn_val, *p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001983
Mike Frysingera4f331d2009-04-07 06:03:22 +00001984 dyn_val = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001985 ored_ch = 0;
1986
1987 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
1988 debug_print_list("expand_vars_to_list", output, n);
1989 n = o_save_ptr(output, n);
1990 debug_print_list("expand_vars_to_list[0]", output, n);
1991
1992 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
1993#if ENABLE_HUSH_TICK
1994 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001995#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001996#if ENABLE_SH_MATH_SUPPORT
1997 char arith_buf[sizeof(arith_t)*3 + 2];
1998#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001999 o_addblock(output, arg, p - arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002000 debug_print_list("expand_vars_to_list[1]", output, n);
2001 arg = ++p;
2002 p = strchr(p, SPECIAL_VAR_SYMBOL);
2003
2004 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
2005 /* "$@" is special. Even if quoted, it can still
2006 * expand to nothing (not even an empty string) */
2007 if ((first_ch & 0x7f) != '@')
2008 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002009
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002010 val = NULL;
2011 switch (first_ch & 0x7f) {
2012 /* Highest bit in first_ch indicates that var is double-quoted */
2013 case '$': /* pid */
2014 val = utoa(G.root_pid);
2015 break;
2016 case '!': /* bg pid */
2017 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
2018 break;
2019 case '?': /* exitcode */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00002020 val = utoa(G.last_exitcode);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002021 break;
2022 case '#': /* argc */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002023 if (arg[1] != SPECIAL_VAR_SYMBOL)
2024 /* actually, it's a ${#var} */
2025 goto case_default;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002026 val = utoa(G.global_argc ? G.global_argc-1 : 0);
2027 break;
2028 case '*':
2029 case '@':
2030 i = 1;
2031 if (!G.global_argv[i])
2032 break;
2033 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
2034 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002035 smallint sv = output->o_escape;
2036 /* unquoted var's contents should be globbed, so don't escape */
2037 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002038 while (G.global_argv[i]) {
2039 n = expand_on_ifs(output, n, G.global_argv[i]);
2040 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
2041 if (G.global_argv[i++][0] && G.global_argv[i]) {
2042 /* this argv[] is not empty and not last:
2043 * put terminating NUL, start new word */
2044 o_addchr(output, '\0');
2045 debug_print_list("expand_vars_to_list[2]", output, n);
2046 n = o_save_ptr(output, n);
2047 debug_print_list("expand_vars_to_list[3]", output, n);
2048 }
2049 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002050 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002051 } else
2052 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
2053 * and in this case should treat it like '$*' - see 'else...' below */
2054 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
2055 while (1) {
2056 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
2057 if (++i >= G.global_argc)
2058 break;
2059 o_addchr(output, '\0');
2060 debug_print_list("expand_vars_to_list[4]", output, n);
2061 n = o_save_ptr(output, n);
2062 }
2063 } else { /* quoted $*: add as one word */
2064 while (1) {
2065 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
2066 if (!G.global_argv[++i])
2067 break;
2068 if (G.ifs[0])
2069 o_addchr(output, G.ifs[0]);
2070 }
2071 }
2072 break;
2073 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
2074 /* "Empty variable", used to make "" etc to not disappear */
2075 arg++;
2076 ored_ch = 0x80;
2077 break;
2078#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002079 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002080 *p = '\0';
2081 arg++;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002082 /* Can't just stuff it into output o_string,
2083 * expanded result may need to be globbed
2084 * and $IFS-splitted */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002085 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002086 process_command_subs(&subst_result, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002087 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
2088 val = subst_result.data;
2089 goto store_val;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00002090#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00002091#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002092 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002093 arith_eval_hooks_t hooks;
Mike Frysinger98c52642009-04-02 10:02:37 +00002094 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00002095 int errcode;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002096 char *exp_str;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002097
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002098 arg++; /* skip '+' */
2099 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00002100 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002101
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002102 exp_str = expand_pseudo_dquoted(arg);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002103 hooks.lookupvar = get_local_var_value;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002104 hooks.setvar = arith_set_local_var;
2105 hooks.endofname = endofname;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002106 res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
2107 free(exp_str);
2108
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002109 if (errcode < 0) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002110 const char *msg = "error in arithmetic";
Mike Frysinger98c52642009-04-02 10:02:37 +00002111 switch (errcode) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002112 case -3:
2113 msg = "exponent less than 0";
2114 break;
2115 case -2:
2116 msg = "divide by 0";
2117 break;
2118 case -5:
2119 msg = "expression recursion loop detected";
2120 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00002121 }
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002122 die_if_script(msg);
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002123 }
Mike Frysinger98c52642009-04-02 10:02:37 +00002124 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002125 sprintf(arith_buf, arith_t_fmt, res);
2126 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00002127 break;
2128 }
2129#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002130 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002131 case_default: {
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002132 bool exp_len = false;
2133 bool exp_null = false;
2134 char *var = arg;
2135 char exp_save = exp_save; /* for compiler */
2136 char exp_op = exp_op; /* for compiler */
2137 char *exp_word = exp_word; /* for compiler */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002138 size_t exp_off = 0;
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002139
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002140 *p = '\0';
2141 arg[0] = first_ch & 0x7f;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002142
2143 /* prepare for expansions */
2144 if (var[0] == '#') {
2145 /* handle length expansion ${#var} */
2146 exp_len = true;
2147 ++var;
2148 } else {
2149 /* maybe handle parameter expansion */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002150 exp_off = strcspn(var, ":-=+?%#");
Mike Frysinger6379bb42009-03-28 18:55:03 +00002151 if (!var[exp_off])
2152 exp_off = 0;
2153 if (exp_off) {
2154 exp_save = var[exp_off];
2155 exp_null = exp_save == ':';
2156 exp_word = var + exp_off;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002157 if (exp_null)
2158 ++exp_word;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002159 exp_op = *exp_word++;
2160 var[exp_off] = '\0';
2161 }
2162 }
2163
2164 /* lookup the variable in question */
2165 if (isdigit(var[0])) {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00002166 /* handle_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002167 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002168 if (i < G.global_argc)
2169 val = G.global_argv[i];
2170 /* else val remains NULL: $N with too big N */
2171 } else
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002172 val = get_local_var_value(var);
Mike Frysinger6379bb42009-03-28 18:55:03 +00002173
2174 /* handle any expansions */
2175 if (exp_len) {
2176 debug_printf_expand("expand: length of '%s' = ", val);
2177 val = utoa(val ? strlen(val) : 0);
2178 debug_printf_expand("%s\n", val);
2179 } else if (exp_off) {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002180 if (exp_op == '%' || exp_op == '#') {
Mike Frysinger57e74672009-04-09 23:00:33 +00002181 if (val) {
2182 /* we need to do a pattern match */
2183 bool zero;
2184 char *loc;
2185 scan_t scan = pick_scan(exp_op, *exp_word, &zero);
2186 if (exp_op == *exp_word) /* ## or %% */
2187 ++exp_word;
2188 val = dyn_val = xstrdup(val);
2189 loc = scan(dyn_val, exp_word, zero);
2190 if (zero)
2191 val = loc;
2192 else
2193 *loc = '\0';
2194 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002195 } else {
2196 /* we need to do an expansion */
2197 int exp_test = (!val || (exp_null && !val[0]));
2198 if (exp_op == '+')
2199 exp_test = !exp_test;
2200 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
2201 exp_null ? "true" : "false", exp_test);
2202 if (exp_test) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002203 if (exp_op == '?') {
2204//TODO: how interactive bash aborts expansion mid-command?
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002205 /* ${var?[error_msg_if_unset]} */
2206 /* ${var:?[error_msg_if_unset_or_null]} */
2207 /* mimic bash message */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002208 die_if_script("%s: %s",
2209 var,
2210 exp_word[0] ? exp_word : "parameter null or not set"
2211 );
2212 } else {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002213 val = exp_word;
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002214 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002215
Mike Frysingera4f331d2009-04-07 06:03:22 +00002216 if (exp_op == '=') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002217 /* ${var=[word]} or ${var:=[word]} */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002218 if (isdigit(var[0]) || var[0] == '#') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002219 /* mimic bash message */
2220 die_if_script("$%s: cannot assign in this way", var);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002221 val = NULL;
2222 } else {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002223 char *new_var = xasprintf("%s=%s", var, val);
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002224 set_local_var(new_var, 0, 0);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002225 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002226 }
2227 }
2228 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002229
Mike Frysinger6379bb42009-03-28 18:55:03 +00002230 var[exp_off] = exp_save;
2231 }
2232
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002233 arg[0] = first_ch;
2234#if ENABLE_HUSH_TICK
2235 store_val:
2236#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002237 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002238 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002239 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002240 /* unquoted var's contents should be globbed, so don't escape */
2241 smallint sv = output->o_escape;
2242 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002243 n = expand_on_ifs(output, n, val);
2244 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002245 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002246 }
2247 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002248 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002249 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002250 } /* default: */
2251 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002252 if (val) {
2253 o_addQstr(output, val, strlen(val));
2254 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002255 free(dyn_val);
2256 dyn_val = NULL;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002257 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002258 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00002259 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002260
2261#if ENABLE_HUSH_TICK
2262 o_free(&subst_result);
2263#endif
2264 arg = ++p;
2265 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
2266
2267 if (arg[0]) {
2268 debug_print_list("expand_vars_to_list[a]", output, n);
2269 /* this part is literal, and it was already pre-quoted
2270 * if needed (much earlier), do not use o_addQstr here! */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002271 o_addstr_with_NUL(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002272 debug_print_list("expand_vars_to_list[b]", output, n);
2273 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2274 && !(ored_ch & 0x80) /* and all vars were not quoted. */
2275 ) {
2276 n--;
2277 /* allow to reuse list[n] later without re-growth */
2278 output->has_empty_slot = 1;
2279 } else {
2280 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00002281 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002282 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00002283}
2284
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002285static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002286{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002287 int n;
2288 char **list;
2289 char **v;
2290 o_string output = NULL_O_STRING;
2291
2292 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002293 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002294 /* (unquoted $var will temporarily switch it off) */
2295 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002296 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002297
2298 n = 0;
2299 v = argv;
2300 while (*v) {
2301 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
2302 v++;
2303 }
2304 debug_print_list("expand_variables", &output, n);
2305
2306 /* output.data (malloced in one block) gets returned in "list" */
2307 list = o_finalize_list(&output, n);
2308 debug_print_strings("expand_variables[1]", list);
2309 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00002310}
2311
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002312static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002313{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002314 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00002315}
2316
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002317/* Used for expansion of right hand of assignments */
2318/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2319 * "v=/bin/c*" */
2320static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002321{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002322 char *argv[2], **list;
2323
2324 argv[0] = (char*)str;
2325 argv[1] = NULL;
2326 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2327 if (HUSH_DEBUG)
2328 if (!list[0] || list[1])
2329 bb_error_msg_and_die("BUG in varexp2");
2330 /* actually, just move string 2*sizeof(char*) bytes back */
2331 overlapping_strcpy((char*)list, list[0]);
2332 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2333 return (char*)list;
2334}
2335
2336/* Used for "eval" builtin */
2337static char* expand_strvec_to_string(char **argv)
2338{
2339 char **list;
2340
2341 list = expand_variables(argv, 0x80);
2342 /* Convert all NULs to spaces */
2343 if (list[0]) {
2344 int n = 1;
2345 while (list[n]) {
2346 if (HUSH_DEBUG)
2347 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2348 bb_error_msg_and_die("BUG in varexp3");
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00002349 /* bash uses ' ' regardless of $IFS contents */
2350 list[n][-1] = ' ';
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002351 n++;
2352 }
2353 }
2354 overlapping_strcpy((char*)list, list[0]);
2355 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2356 return (char*)list;
2357}
2358
2359static char **expand_assignments(char **argv, int count)
2360{
2361 int i;
2362 char **p = NULL;
2363 /* Expand assignments into one string each */
2364 for (i = 0; i < count; i++) {
2365 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2366 }
2367 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002368}
2369
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002370
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002371#if BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002372/* never called */
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002373void re_execute_shell(char ***to_free, const char *s, char *argv0, char **argv);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002374
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002375static void reset_traps_to_defaults(void)
2376{
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002377 /* This function is always called in a child shell
2378 * after fork (not vfork, NOMMU doesn't use this function).
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002379 * Child shells are not interactive.
2380 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
2381 * Testcase: (while :; do :; done) + ^Z should background.
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002382 * Same goes for SIGTERM, SIGHUP, SIGINT.
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002383 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002384 unsigned sig;
2385 unsigned mask;
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002386
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002387 if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS))
2388 return;
2389
2390 /* Stupid. It can be done with *single* &= op, but we can't use
2391 * the fact that G.blocked_set is implemented as a bitmask... */
2392 mask = (SPECIAL_INTERACTIVE_SIGS >> 1);
2393 sig = 1;
2394 while (1) {
2395 if (mask & 1)
2396 sigdelset(&G.blocked_set, sig);
2397 mask >>= 1;
2398 if (!mask)
2399 break;
2400 sig++;
2401 }
2402
2403 G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS;
2404 mask = G.non_DFL_mask;
2405 if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) {
2406 if (!G.traps[sig])
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002407 continue;
2408 free(G.traps[sig]);
2409 G.traps[sig] = NULL;
2410 /* There is no signal for 0 (EXIT) */
2411 if (sig == 0)
2412 continue;
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002413 /* There was a trap handler, we are removing it.
2414 * But if sig still has non-DFL handling,
2415 * we should not unblock it. */
2416 if (mask & 1)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002417 continue;
2418 sigdelset(&G.blocked_set, sig);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002419 }
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002420 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002421}
2422
2423#else /* !BB_MMU */
2424
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002425static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv) NORETURN;
2426static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002427{
2428 char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4];
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002429 char *heredoc_argv[4];
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002430 struct variable *cur;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002431#if ENABLE_HUSH_FUNCTIONS
2432 struct function *funcp;
2433#endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002434 char **argv, **pp;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002435 unsigned cnt;
2436
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002437 if (!g_argv0) { /* heredoc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002438 argv = heredoc_argv;
2439 argv[0] = (char *) G.argv0_for_re_execing;
2440 argv[1] = (char *) "-<";
2441 argv[2] = (char *) s;
2442 argv[3] = NULL;
Denis Vlasenkof50caac2009-04-09 01:40:15 +00002443 pp = &argv[3]; /* used as pointer to empty environment */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002444 goto do_exec;
2445 }
2446
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002447 sprintf(param_buf, "-$%x:%x:%x" IF_HUSH_LOOPS(":%x")
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002448 , (unsigned) G.root_pid
2449 , (unsigned) G.last_bg_pid
2450 , (unsigned) G.last_exitcode
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002451 IF_HUSH_LOOPS(, G.depth_of_loop)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002452 );
Denis Vlasenkobc569742009-04-12 20:35:19 +00002453 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...> <funcs...>
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002454 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002455 */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002456 cnt = 6;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002457 for (cur = G.top_var; cur; cur = cur->next) {
2458 if (!cur->flg_export || cur->flg_read_only)
2459 cnt += 2;
2460 }
Denis Vlasenkobc569742009-04-12 20:35:19 +00002461#if ENABLE_HUSH_FUNCTIONS
2462 for (funcp = G.top_func; funcp; funcp = funcp->next)
2463 cnt += 3;
2464#endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002465 pp = g_argv;
2466 while (*pp++)
2467 cnt++;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002468 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002469 *pp++ = (char *) G.argv0_for_re_execing;
2470 *pp++ = param_buf;
2471 for (cur = G.top_var; cur; cur = cur->next) {
2472 if (cur->varstr == hush_version_str)
2473 continue;
2474 if (cur->flg_read_only) {
2475 *pp++ = (char *) "-R";
2476 *pp++ = cur->varstr;
2477 } else if (!cur->flg_export) {
2478 *pp++ = (char *) "-V";
2479 *pp++ = cur->varstr;
2480 }
2481 }
Denis Vlasenkobc569742009-04-12 20:35:19 +00002482#if ENABLE_HUSH_FUNCTIONS
2483 for (funcp = G.top_func; funcp; funcp = funcp->next) {
2484 *pp++ = (char *) "-F";
2485 *pp++ = funcp->name;
2486 *pp++ = funcp->body_as_string;
2487 }
2488#endif
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002489 /* We can pass activated traps here. Say, -Tnn:trap_string
2490 *
2491 * However, POSIX says that subshells reset signals with traps
2492 * to SIG_DFL.
2493 * I tested bash-3.2 and it not only does that with true subshells
2494 * of the form ( list ), but with any forked children shells.
2495 * I set trap "echo W" WINCH; and then tried:
2496 *
2497 * { echo 1; sleep 20; echo 2; } &
2498 * while true; do echo 1; sleep 20; echo 2; break; done &
2499 * true | { echo 1; sleep 20; echo 2; } | cat
2500 *
2501 * In all these cases sending SIGWINCH to the child shell
2502 * did not run the trap. If I add trap "echo V" WINCH;
2503 * _inside_ group (just before echo 1), it works.
2504 *
2505 * I conclude it means we don't need to pass active traps here.
2506 * exec syscall below resets them to SIG_DFL for us.
2507 */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002508 *pp++ = (char *) "-c";
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002509 *pp++ = (char *) s;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002510 *pp++ = g_argv0;
2511 while (*g_argv)
2512 *pp++ = *g_argv++;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002513 /* *pp = NULL; - is already there */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002514 pp = environ;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002515
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002516 do_exec:
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002517 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
2518 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002519 execve(bb_busybox_exec_path, argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002520 /* Fallback. Useful for init=/bin/hush usage etc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002521 if (argv[0][0] == '/')
2522 execve(argv[0], argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002523 xfunc_error_retval = 127;
2524 bb_error_msg_and_die("can't re-execute the shell");
2525}
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002526#endif /* !BB_MMU */
2527
2528
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002529static void setup_heredoc(struct redir_struct *redir)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002530{
2531 struct fd_pair pair;
2532 pid_t pid;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002533 int len, written;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002534 /* the _body_ of heredoc (misleading field name) */
2535 const char *heredoc = redir->rd_filename;
2536 char *expanded;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002537#if !BB_MMU
2538 char **to_free;
2539#endif
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002540
2541 expanded = NULL;
2542 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
2543 expanded = expand_pseudo_dquoted(heredoc);
2544 if (expanded)
2545 heredoc = expanded;
2546 }
2547 len = strlen(heredoc);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002548
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002549 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002550 xpiped_pair(pair);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002551 xmove_fd(pair.rd, redir->rd_fd);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002552
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002553 /* Try writing without forking. Newer kernels have
2554 * dynamically growing pipes. Must use non-blocking write! */
2555 ndelay_on(pair.wr);
2556 while (1) {
2557 written = write(pair.wr, heredoc, len);
2558 if (written <= 0)
2559 break;
2560 len -= written;
2561 if (len == 0) {
2562 close(pair.wr);
Denis Vlasenko1943aec2009-04-09 14:15:57 +00002563 free(expanded);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002564 return;
2565 }
2566 heredoc += written;
2567 }
2568 ndelay_off(pair.wr);
2569
2570 /* Okay, pipe buffer was not big enough */
2571 /* Note: we must not create a stray child (bastard? :)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002572 * for the unsuspecting parent process. Child creates a grandchild
2573 * and exits before parent execs the process which consumes heredoc
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002574 * (that exec happens after we return from this function) */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00002575#if !BB_MMU
2576 to_free = NULL;
2577#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002578 pid = vfork();
2579 if (pid < 0)
2580 bb_perror_msg_and_die("vfork");
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002581 if (pid == 0) {
2582 /* child */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00002583 disable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002584 pid = BB_MMU ? fork() : vfork();
2585 if (pid < 0)
2586 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
2587 if (pid != 0)
2588 _exit(0);
2589 /* grandchild */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002590 close(redir->rd_fd); /* read side of the pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002591#if BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002592 full_write(pair.wr, heredoc, len); /* may loop or block */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002593 _exit(0);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002594#else
2595 /* Delegate blocking writes to another process */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002596 xmove_fd(pair.wr, STDOUT_FILENO);
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002597 re_execute_shell(&to_free, heredoc, NULL, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002598#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002599 }
2600 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002601 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002602#if !BB_MMU
2603 free(to_free);
2604#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002605 close(pair.wr);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002606 free(expanded);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002607 wait(NULL); /* wait till child has died */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002608}
2609
Eric Andersen25f27032001-04-26 23:22:31 +00002610/* squirrel != NULL means we squirrel away copies of stdin, stdout,
2611 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002612static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00002613{
2614 int openfd, mode;
2615 struct redir_struct *redir;
2616
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002617 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002618 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002619 /* rd_fd<<HERE case */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002620 if (squirrel && redir->rd_fd < 3) {
2621 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002622 }
2623 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
2624 * of the heredoc */
2625 debug_printf_parse("set heredoc '%s'\n",
2626 redir->rd_filename);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002627 setup_heredoc(redir);
Eric Andersen817e73c2001-06-06 17:56:09 +00002628 continue;
2629 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002630
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002631 if (redir->rd_dup == REDIRFD_TO_FILE) {
2632 /* rd_fd<*>file case (<*> is <,>,>>,<>) */
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002633 char *p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002634 if (redir->rd_filename == NULL) {
2635 /* Something went wrong in the parse.
2636 * Pretend it didn't happen */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002637 bb_error_msg("bug in redirect parse");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002638 continue;
2639 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00002640 mode = redir_table[redir->rd_type].mode;
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002641 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002642 openfd = open_or_warn(p, mode);
2643 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00002644 if (openfd < 0) {
2645 /* this could get lost if stderr has been redirected, but
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002646 * bash and ash both lose it as well (though zsh doesn't!) */
2647//what the above comment tries to say?
Eric Andersen25f27032001-04-26 23:22:31 +00002648 return 1;
2649 }
2650 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002651 /* rd_fd<*>rd_dup or rd_fd<*>- cases */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002652 openfd = redir->rd_dup;
Eric Andersen25f27032001-04-26 23:22:31 +00002653 }
2654
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002655 if (openfd != redir->rd_fd) {
2656 if (squirrel && redir->rd_fd < 3) {
2657 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Eric Andersen25f27032001-04-26 23:22:31 +00002658 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002659 if (openfd == REDIRFD_CLOSE) {
2660 /* "n>-" means "close me" */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002661 close(redir->rd_fd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002662 } else {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002663 xdup2(openfd, redir->rd_fd);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002664 if (redir->rd_dup == REDIRFD_TO_FILE)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002665 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002666 }
Eric Andersen25f27032001-04-26 23:22:31 +00002667 }
2668 }
2669 return 0;
2670}
2671
2672static void restore_redirects(int squirrel[])
2673{
2674 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002675 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002676 fd = squirrel[i];
2677 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002678 /* We simply die on error */
2679 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00002680 }
2681 }
2682}
2683
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002684
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002685static void free_pipe_list(struct pipe *head);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002686
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002687/* Return code is the exit status of the pipe */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002688static void free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002689{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002690 char **p;
2691 struct command *command;
2692 struct redir_struct *r, *rnext;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002693 int a, i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002694
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002695 if (pi->stopped_cmds > 0) /* why? */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002696 return;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002697 debug_printf_clean("run pipe: (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002698 for (i = 0; i < pi->num_cmds; i++) {
2699 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002700 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002701 if (command->argv) {
2702 for (a = 0, p = command->argv; *p; a++, p++) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002703 debug_printf_clean(" argv[%d] = %s\n", a, *p);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002704 }
2705 free_strings(command->argv);
2706 command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002707 }
2708 /* not "else if": on syntax error, we may have both! */
2709 if (command->group) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002710 debug_printf_clean(" begin group (grp_type:%d)\n",
2711 command->grp_type);
2712 free_pipe_list(command->group);
2713 debug_printf_clean(" end group\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002714 command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002715 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00002716 /* else is crucial here.
2717 * If group != NULL, child_func is meaningless */
2718#if ENABLE_HUSH_FUNCTIONS
2719 else if (command->child_func) {
2720 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
2721 command->child_func->parent_cmd = NULL;
2722 }
2723#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002724#if !BB_MMU
2725 free(command->group_as_string);
2726 command->group_as_string = NULL;
2727#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002728 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002729 debug_printf_clean(" redirect %d%s",
2730 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002731 /* guard against the case >$FOO, where foo is unset or blank */
2732 if (r->rd_filename) {
2733 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
2734 free(r->rd_filename);
2735 r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002736 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002737 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002738 rnext = r->next;
2739 free(r);
2740 }
2741 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002742 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002743 free(pi->cmds); /* children are an array, they get freed all at once */
2744 pi->cmds = NULL;
2745#if ENABLE_HUSH_JOB
2746 free(pi->cmdtext);
2747 pi->cmdtext = NULL;
2748#endif
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002749}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002750
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002751static void free_pipe_list(struct pipe *head)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002752{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002753 struct pipe *pi, *next;
2754
2755 for (pi = head; pi; pi = next) {
2756#if HAS_KEYWORDS
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002757 debug_printf_clean(" pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002758#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002759 free_pipe(pi);
2760 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002761 next = pi->next;
2762 /*pi->next = NULL;*/
2763 free(pi);
2764 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002765}
2766
2767
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002768static int run_list(struct pipe *pi);
Denis Vlasenkobc569742009-04-12 20:35:19 +00002769#if BB_MMU
2770#define parse_stream(pstring, input, end_trigger) \
2771 parse_stream(input, end_trigger)
2772#endif
2773static struct pipe *parse_stream(char **pstring,
2774 struct in_str *input,
2775 int end_trigger);
2776static void parse_and_run_string(const char *s);
2777
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002778
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002779static const struct built_in_command* find_builtin(const char *name)
2780{
2781 const struct built_in_command *x;
2782 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
2783 if (strcmp(name, x->cmd) != 0)
2784 continue;
2785 debug_printf_exec("found builtin '%s'\n", name);
2786 return x;
2787 }
2788 return NULL;
2789}
2790
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002791#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002792static const struct function *find_function(const char *name)
2793{
2794 const struct function *funcp = G.top_func;
2795 while (funcp) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002796 if (strcmp(name, funcp->name) == 0) {
2797 break;
2798 }
2799 funcp = funcp->next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002800 }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002801 if (funcp)
2802 debug_printf_exec("found function '%s'\n", name);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002803 return funcp;
2804}
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002805
Denis Vlasenkobc569742009-04-12 20:35:19 +00002806/* Note: takes ownership on name ptr */
2807static struct function *new_function(char *name)
2808{
2809 struct function *funcp;
2810 struct function **funcpp = &G.top_func;
2811
2812 while ((funcp = *funcpp) != NULL) {
2813 struct command *cmd;
2814
2815 if (strcmp(funcp->name, name) != 0) {
2816 funcpp = &funcp->next;
2817 continue;
2818 }
2819
2820 cmd = funcp->parent_cmd;
2821 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
2822 if (!cmd) {
2823 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
2824 free(funcp->name);
2825 /* Note: if !funcp->body, do not free body_as_string!
2826 * This is a special case of "-F name body" function:
2827 * body_as_string was not malloced! */
2828 if (funcp->body) {
2829 free_pipe_list(funcp->body);
2830#if !BB_MMU
2831 free(funcp->body_as_string);
2832#endif
2833 }
2834 } else {
2835 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
2836 cmd->argv[0] = funcp->name;
2837 cmd->group = funcp->body;
2838#if !BB_MMU
2839 cmd->group_as_string = funcp->body_as_string;
2840#endif
2841 }
2842 goto skip;
2843 }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002844 debug_printf_exec("remembering new function '%s'\n", name);
Denis Vlasenkobc569742009-04-12 20:35:19 +00002845 funcp = *funcpp = xzalloc(sizeof(*funcp));
2846 /*funcp->next = NULL;*/
2847 skip:
2848 funcp->name = name;
2849 return funcp;
2850}
2851
Denis Vlasenko40e84372009-04-18 11:23:38 +00002852static void unset_func(const char *name)
2853{
2854 struct function *funcp;
2855 struct function **funcpp = &G.top_func;
2856
2857 while ((funcp = *funcpp) != NULL) {
2858 if (strcmp(funcp->name, name) == 0) {
2859 *funcpp = funcp->next;
2860 /* funcp is unlinked now, deleting it */
2861 free(funcp->name);
2862 /* Note: if !funcp->body, do not free body_as_string!
2863 * This is a special case of "-F name body" function:
2864 * body_as_string was not malloced! */
2865 if (funcp->body) {
2866 free_pipe_list(funcp->body);
2867#if !BB_MMU
2868 free(funcp->body_as_string);
2869#endif
2870 }
2871 free(funcp);
2872 break;
2873 }
Denis Vlasenko73010672009-04-18 11:25:18 +00002874 funcpp = &funcp->next;
Denis Vlasenko40e84372009-04-18 11:23:38 +00002875 }
2876}
2877
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002878#if BB_MMU
2879#define exec_function(nommu_save, funcp, argv) \
2880 exec_function(funcp, argv)
2881#endif
2882static void exec_function(nommu_save_t *nommu_save,
2883 const struct function *funcp,
2884 char **argv) NORETURN;
2885static void exec_function(nommu_save_t *nommu_save,
2886 const struct function *funcp,
2887 char **argv)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002888{
2889# if BB_MMU
2890 int n = 1;
2891
2892 argv[0] = G.global_argv[0];
2893 G.global_argv = argv;
2894 while (*++argv)
2895 n++;
2896 G.global_argc = n;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002897 /* On MMU, funcp->body is always non-NULL */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002898 n = run_list(funcp->body);
2899 fflush(NULL);
2900 _exit(n);
2901# else
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002902 re_execute_shell(&nommu_save->argv_from_re_execing,
2903 funcp->body_as_string,
2904 G.global_argv[0],
2905 argv + 1);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002906# endif
2907}
2908
2909static int run_function(const struct function *funcp, char **argv)
2910{
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002911 int rc;
2912 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00002913#if ENABLE_HUSH_FUNCTIONS
2914 smallint sv_flg;
2915#endif
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002916
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002917 save_and_replace_G_args(&sv, argv);
Mike Frysinger885b6f22009-04-18 21:04:25 +00002918#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00002919 /* "we are in function, ok to use return" */
2920 sv_flg = G.flag_return_in_progress;
2921 G.flag_return_in_progress = -1;
Mike Frysinger885b6f22009-04-18 21:04:25 +00002922#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00002923
Denis Vlasenkobc569742009-04-12 20:35:19 +00002924 /* On MMU, funcp->body is always non-NULL */
2925#if !BB_MMU
2926 if (!funcp->body) {
2927 /* Function defined by -F */
2928 parse_and_run_string(funcp->body_as_string);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002929 rc = G.last_exitcode;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002930 } else
2931#endif
2932 {
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002933 rc = run_list(funcp->body);
Denis Vlasenkobc569742009-04-12 20:35:19 +00002934 }
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00002935
Mike Frysinger885b6f22009-04-18 21:04:25 +00002936#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00002937 G.flag_return_in_progress = sv_flg;
Mike Frysinger885b6f22009-04-18 21:04:25 +00002938#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002939 restore_G_args(&sv, argv);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002940
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002941 return rc;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002942}
2943#endif
2944
2945
Denis Vlasenkocc90f442009-04-08 16:40:34 +00002946#if BB_MMU
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002947#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
2948 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
2949#define pseudo_exec(nommu_save, command, argv_expanded) \
2950 pseudo_exec(command, argv_expanded)
2951#endif
2952
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002953/* Called after [v]fork() in run_pipe, or from builtin_exec.
Denis Vlasenko8412d792007-10-01 09:59:47 +00002954 * Never returns.
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00002955 * Don't exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00002956 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002957 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002958static void pseudo_exec_argv(nommu_save_t *nommu_save,
2959 char **argv, int assignment_cnt,
2960 char **argv_expanded) NORETURN;
2961static void pseudo_exec_argv(nommu_save_t *nommu_save,
2962 char **argv, int assignment_cnt,
2963 char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00002964{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002965 char **new_env;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002966
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002967 /* Case when we are here: ... | var=val | ... */
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002968 if (!argv[assignment_cnt])
Denis Vlasenko1359da62007-04-21 23:27:30 +00002969 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002970
Denis Vlasenko9504e442008-10-29 01:19:15 +00002971 new_env = expand_assignments(argv, assignment_cnt);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002972#if BB_MMU
2973 putenv_all(new_env);
2974 free(new_env); /* optional */
2975#else
2976 nommu_save->new_env = new_env;
2977 nommu_save->old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002978#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002979 if (argv_expanded) {
2980 argv = argv_expanded;
2981 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00002982 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002983#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002984 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002985#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002986 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002987
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002988#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
2989 if (strchr(argv[0], '/') != NULL)
2990 goto skip;
2991#endif
2992
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002993 /* On NOMMU, we must never block!
2994 * Example: { sleep 99999 | read line } & echo Ok
2995 * read builtin will block on read syscall, leaving parent blocked
2996 * in vfork. Therefore we can't do this:
2997 */
2998#if BB_MMU
2999 /* Check if the command matches any of the builtins.
Denis Vlasenko1359da62007-04-21 23:27:30 +00003000 * Depending on context, this might be redundant. But it's
3001 * easier to waste a few CPU cycles than it is to figure out
3002 * if this is one of those cases.
3003 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003004 {
3005 int rcode;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003006 const struct built_in_command *x = find_builtin(argv[0]);
3007 if (x) {
3008 rcode = x->function(argv);
3009 fflush(NULL);
3010 _exit(rcode);
Eric Andersen94ac2442001-05-22 19:05:18 +00003011 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00003012 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003013#endif
3014#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003015 /* Check if the command matches any functions */
3016 {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003017 const struct function *funcp = find_function(argv[0]);
3018 if (funcp) {
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003019 exec_function(nommu_save, funcp, argv);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003020 }
3021 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003022#endif
Eric Andersen78a7c992001-05-15 16:30:25 +00003023
Denis Vlasenko80d14be2007-04-10 23:03:30 +00003024#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003025 /* Check if the command matches any busybox applets */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003026 {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003027 int a = find_applet_by_name(argv[0]);
3028 if (a >= 0) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003029# if BB_MMU /* see above why on NOMMU it is not allowed */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003030 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003031 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003032 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003033 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003034# endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003035 /* Re-exec ourselves */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003036 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003037 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
3038 execv(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003039 /* If they called chroot or otherwise made the binary no longer
3040 * executable, fall through */
3041 }
3042 }
Eric Andersenaac75e52001-04-30 18:18:45 +00003043#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003044
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003045#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003046 skip:
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003047#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003048 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003049 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003050 execvp(argv[0], argv);
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00003051 bb_perror_msg("can't exec '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00003052 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003053}
3054
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003055/* Called after [v]fork() in run_pipe
Denis Vlasenko8412d792007-10-01 09:59:47 +00003056 */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003057static void pseudo_exec(nommu_save_t *nommu_save,
3058 struct command *command,
3059 char **argv_expanded) NORETURN;
3060static void pseudo_exec(nommu_save_t *nommu_save,
3061 struct command *command,
3062 char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00003063{
Denis Vlasenko552433b2009-04-04 19:29:21 +00003064 if (command->argv) {
3065 pseudo_exec_argv(nommu_save, command->argv,
3066 command->assignment_cnt, argv_expanded);
3067 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003068
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003069 if (command->group) {
Denis Vlasenko552433b2009-04-04 19:29:21 +00003070 /* Cases when we are here:
3071 * ( list )
3072 * { list } &
3073 * ... | ( list ) | ...
3074 * ... | { list } | ...
3075 */
3076#if BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00003077 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003078 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00003079 reset_traps_to_defaults();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003080 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00003081 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00003082 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00003083 _exit(rcode);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003084#else
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003085 re_execute_shell(&nommu_save->argv_from_re_execing,
3086 command->group_as_string,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003087 G.global_argv[0],
3088 G.global_argv + 1);
Denis Vlasenko8412d792007-10-01 09:59:47 +00003089#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003090 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003091
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003092 /* Case when we are here: ... | >file */
3093 debug_printf_exec("pseudo_exec'ed null command\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003094 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00003095}
3096
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003097#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003098static const char *get_cmdtext(struct pipe *pi)
3099{
3100 char **argv;
3101 char *p;
3102 int len;
3103
3104 /* This is subtle. ->cmdtext is created only on first backgrounding.
3105 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003106 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003107 if (pi->cmdtext)
3108 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003109 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003110 if (!argv || !argv[0]) {
3111 pi->cmdtext = xzalloc(1);
3112 return pi->cmdtext;
3113 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003114
3115 len = 0;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003116 do {
3117 len += strlen(*argv) + 1;
3118 } while (*++argv);
3119 p = xmalloc(len);
3120 pi->cmdtext = p;// = xmalloc(len);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003121 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003122 do {
3123 len = strlen(*argv);
3124 memcpy(p, *argv, len);
3125 p += len;
3126 *p++ = ' ';
3127 } while (*++argv);
3128 p[-1] = '\0';
3129 return pi->cmdtext;
3130}
3131
Eric Andersenbafd94f2001-05-02 16:11:59 +00003132static void insert_bg_job(struct pipe *pi)
3133{
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003134 struct pipe *job, **jobp;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003135 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003136
3137 /* Linear search for the ID of the job to use */
3138 pi->jobid = 1;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003139 for (job = G.job_list; job; job = job->next)
3140 if (job->jobid >= pi->jobid)
3141 pi->jobid = job->jobid + 1;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003142
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003143 /* Add job to the list of running jobs */
3144 jobp = &G.job_list;
3145 while ((job = *jobp) != NULL)
3146 jobp = &job->next;
3147 job = *jobp = xmalloc(sizeof(*job));
Eric Andersenbafd94f2001-05-02 16:11:59 +00003148
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003149 *job = *pi; /* physical copy */
3150 job->next = NULL;
3151 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
3152 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003153 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003154 job->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003155 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003156 }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003157 job->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00003158
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003159 if (G_interactive_fd)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003160 printf("[%d] %d %s\n", job->jobid, job->cmds[0].pid, job->cmdtext);
3161 /* Last command's pid goes to $! */
3162 G.last_bg_pid = job->cmds[job->num_cmds - 1].pid;
3163 G.last_jobid = job->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003164}
3165
Eric Andersenbafd94f2001-05-02 16:11:59 +00003166static void remove_bg_job(struct pipe *pi)
3167{
3168 struct pipe *prev_pipe;
3169
Denis Vlasenko87a86552008-07-29 19:43:10 +00003170 if (pi == G.job_list) {
3171 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003172 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003173 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003174 while (prev_pipe->next != pi)
3175 prev_pipe = prev_pipe->next;
3176 prev_pipe->next = pi->next;
3177 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00003178 if (G.job_list)
3179 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00003180 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00003181 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00003182}
Eric Andersen028b65b2001-06-28 01:10:11 +00003183
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003184/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00003185static void delete_finished_bg_job(struct pipe *pi)
3186{
3187 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003188 pi->stopped_cmds = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003189 free_pipe(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00003190 free(pi);
3191}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003192#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00003193
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003194/* Check to see if any processes have exited -- if they
3195 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00003196static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00003197{
Eric Andersenc798b072001-06-22 06:23:03 +00003198 int attributes;
3199 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003200#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00003201 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003202#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00003203 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003204 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003205
Denis Vlasenkod5762932009-03-31 11:22:57 +00003206 debug_printf_jobs("checkjobs %p\n", fg_pipe);
3207
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003208 errno = 0;
3209// if (G.handled_SIGCHLD == G.count_SIGCHLD)
3210// /* avoid doing syscall, nothing there anyway */
3211// return rcode;
3212
Eric Andersenc798b072001-06-22 06:23:03 +00003213 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003214 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00003215 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00003216
Denis Vlasenko1359da62007-04-21 23:27:30 +00003217/* Do we do this right?
3218 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003219 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00003220 * [3]+ Stopped sleep 20 | false
3221 * bash-3.00# echo $?
3222 * 1 <========== bg pipe is not fully done, but exitcode is already known!
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003223 * [hush 1.14.0: yes we do it right]
Denis Vlasenko1359da62007-04-21 23:27:30 +00003224 */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003225 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003226 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003227 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003228 int dead;
3229
3230// i = G.count_SIGCHLD;
3231 childpid = waitpid(-1, &status, attributes);
3232 if (childpid <= 0) {
3233 if (childpid && errno != ECHILD)
3234 bb_perror_msg("waitpid");
3235// else /* Until next SIGCHLD, waitpid's are useless */
3236// G.handled_SIGCHLD = i;
3237 break;
3238 }
3239 dead = WIFEXITED(status) || WIFSIGNALED(status);
3240
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003241#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00003242 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003243 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003244 childpid, WSTOPSIG(status), WEXITSTATUS(status));
3245 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003246 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003247 childpid, WTERMSIG(status), WEXITSTATUS(status));
3248 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003249 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003250 childpid, WEXITSTATUS(status));
3251#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003252 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00003253 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003254 for (i = 0; i < fg_pipe->num_cmds; i++) {
3255 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
3256 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003257 continue;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003258 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003259 fg_pipe->cmds[i].pid = 0;
3260 fg_pipe->alive_cmds--;
3261 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003262 /* last process gives overall exitstatus */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003263 /* Note: is WIFSIGNALED, WEXITSTATUS = sig + 128 */
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003264 rcode = WEXITSTATUS(status);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003265 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko40e84372009-04-18 11:23:38 +00003266 /* bash prints killing signal's name for *last*
3267 * process in pipe (prints just newline for SIGINT).
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003268 * Mimic this. Example: "sleep 5" + ^\
Denis Vlasenko40e84372009-04-18 11:23:38 +00003269 */
3270 if (WIFSIGNALED(status)) {
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003271 int sig = WTERMSIG(status);
3272 printf("%s\n", sig == SIGINT ? "" : get_signame(sig));
Denis Vlasenko40e84372009-04-18 11:23:38 +00003273 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00003274 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003275 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003276 fg_pipe->cmds[i].is_stopped = 1;
3277 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00003278 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003279 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
3280 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
3281 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003282 /* All processes in fg pipe have exited or stopped */
3283/* Note: *non-interactive* bash does not continue if all processes in fg pipe
3284 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
3285 * and "killall -STOP cat" */
3286 if (G_interactive_fd) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003287#if ENABLE_HUSH_JOB
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003288 if (fg_pipe->alive_cmds)
3289 insert_bg_job(fg_pipe);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003290#endif
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003291 return rcode;
3292 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003293 }
3294 /* There are still running processes in the fg pipe */
3295 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00003296 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003297 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00003298 }
3299
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003300#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003301 /* We asked to wait for bg or orphaned children */
3302 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003303 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003304 for (i = 0; i < pi->num_cmds; i++) {
3305 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003306 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00003307 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00003308 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003309 /* Happens when shell is used as init process (init=/bin/sh) */
3310 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003311 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00003312
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003313 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00003314 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00003315 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003316 pi->cmds[i].pid = 0;
3317 pi->alive_cmds--;
3318 if (!pi->alive_cmds) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003319 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00003320 printf(JOB_STATUS_FORMAT, pi->jobid,
3321 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003322 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00003323 }
3324 } else {
3325 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003326 pi->cmds[i].is_stopped = 1;
3327 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003328 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003329#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003330 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00003331
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003332 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00003333}
3334
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003335#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00003336static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
3337{
3338 pid_t p;
3339 int rcode = checkjobs(fg_pipe);
3340 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00003341 p = getpgid(0); /* pgid of our process */
3342 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003343 tcsetpgrp(G_interactive_fd, p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00003344 return rcode;
3345}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003346#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00003347
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003348/* Start all the jobs, but don't wait for anything to finish.
3349 * See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00003350 *
Denis Vlasenko552433b2009-04-04 19:29:21 +00003351 * Return code is normally -1, when the caller has to wait for children
Eric Andersen25f27032001-04-26 23:22:31 +00003352 * to finish to determine the exit status of the pipe. If the pipe
3353 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00003354 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00003355 * return value.
3356 *
Denis Vlasenko170435c2007-05-23 13:01:10 +00003357 * Returns -1 only if started some children. IOW: we have to
3358 * mask out retvals of builtins etc with 0xff!
Denis Vlasenko552433b2009-04-04 19:29:21 +00003359 *
3360 * The only case when we do not need to [v]fork is when the pipe
3361 * is single, non-backgrounded, non-subshell command. Examples:
3362 * cmd ; ... { list } ; ...
3363 * cmd && ... { list } && ...
3364 * cmd || ... { list } || ...
3365 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
3366 * or (if SH_STANDALONE) an applet, and we can run the { list }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003367 * with run_list. If it isn't one of these, we fork and exec cmd.
Denis Vlasenko552433b2009-04-04 19:29:21 +00003368 *
3369 * Cases when we must fork:
3370 * non-single: cmd | cmd
3371 * backgrounded: cmd & { list } &
3372 * subshell: ( list ) [&]
Eric Andersen25f27032001-04-26 23:22:31 +00003373 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003374static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003375{
Denis Vlasenko552433b2009-04-04 19:29:21 +00003376 static const char *const null_ptr = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003377 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003378 int nextin;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003379 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003380 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003381 char **argv;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003382 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003383 /* it is not always needed, but we aim to smaller code */
3384 int squirrel[] = { -1, -1, -1 };
3385 int rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003386
Denis Vlasenko552433b2009-04-04 19:29:21 +00003387 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003388 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003389
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00003390 IF_HUSH_JOB(pi->pgrp = -1;)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003391 pi->stopped_cmds = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003392 command = &(pi->cmds[0]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003393 argv_expanded = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003394
Denis Vlasenko552433b2009-04-04 19:29:21 +00003395 if (pi->num_cmds != 1
3396 || pi->followup == PIPE_BG
3397 || command->grp_type == GRP_SUBSHELL
3398 ) {
3399 goto must_fork;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003400 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003401
Denis Vlasenko552433b2009-04-04 19:29:21 +00003402 pi->alive_cmds = 1;
3403
3404 debug_printf_exec(": group:%p argv:'%s'\n",
3405 command->group, command->argv ? command->argv[0] : "NONE");
3406
3407 if (command->group) {
3408#if ENABLE_HUSH_FUNCTIONS
3409 if (command->grp_type == GRP_FUNCTION) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003410 /* "executing" func () { list } */
3411 struct function *funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003412
Denis Vlasenkobc569742009-04-12 20:35:19 +00003413 funcp = new_function(command->argv[0]);
3414 /* funcp->name is already set to argv[0] */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003415 funcp->body = command->group;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003416#if !BB_MMU
3417 funcp->body_as_string = command->group_as_string;
3418 command->group_as_string = NULL;
3419#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003420 command->group = NULL;
3421 command->argv[0] = NULL;
Denis Vlasenkoed055212009-04-11 10:37:10 +00003422 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
3423 funcp->parent_cmd = command;
3424 command->child_func = funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003425
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003426 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
3427 debug_leave();
Denis Vlasenko552433b2009-04-04 19:29:21 +00003428 return EXIT_SUCCESS;
3429 }
3430#endif
3431 /* { list } */
3432 debug_printf("non-subshell group\n");
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003433 rcode = 1; /* exitcode if redir failed */
3434 if (setup_redirects(command, squirrel) == 0) {
3435 debug_printf_exec(": run_list\n");
3436 rcode = run_list(command->group) & 0xff;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003437 }
Eric Andersen04407e52001-06-07 16:42:05 +00003438 restore_redirects(squirrel);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003439 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003440 debug_leave();
3441 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003442 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003443 }
3444
Denis Vlasenko552433b2009-04-04 19:29:21 +00003445 argv = command->argv ? command->argv : (char **) &null_ptr;
3446 {
3447 const struct built_in_command *x;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003448#if ENABLE_HUSH_FUNCTIONS
3449 const struct function *funcp;
3450#else
3451 enum { funcp = 0 };
3452#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003453 char **new_env = NULL;
3454 char **old_env = NULL;
3455
Denis Vlasenko552433b2009-04-04 19:29:21 +00003456 if (argv[command->assignment_cnt] == NULL) {
3457 /* Assignments, but no command */
3458 /* Ensure redirects take effect. Try "a=t >file" */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003459 rcode = setup_redirects(command, squirrel);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003460 restore_redirects(squirrel);
3461 /* Set shell variables */
3462 while (*argv) {
3463 p = expand_string_to_string(*argv);
3464 debug_printf_exec("set shell var:'%s'->'%s'\n",
3465 *argv, p);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00003466 set_local_var(p, 0, 0);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003467 argv++;
Eric Andersen78a7c992001-05-15 16:30:25 +00003468 }
Denis Vlasenko552433b2009-04-04 19:29:21 +00003469 /* Do we need to flag set_local_var() errors?
3470 * "assignment to readonly var" and "putenv error"
3471 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003472 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003473 debug_leave();
3474 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003475 return rcode;
Eric Andersen78a7c992001-05-15 16:30:25 +00003476 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003477
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003478 /* Expand the rest into (possibly) many strings each */
Denis Vlasenko552433b2009-04-04 19:29:21 +00003479 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003480
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003481 x = find_builtin(argv_expanded[0]);
3482#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003483 funcp = NULL;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003484 if (!x)
3485 funcp = find_function(argv_expanded[0]);
3486#endif
3487 if (x || funcp) {
3488 if (!funcp) {
3489 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
3490 debug_printf("exec with redirects only\n");
3491 rcode = setup_redirects(command, NULL);
3492 goto clean_up_and_ret1;
3493 }
Eric Andersen25f27032001-04-26 23:22:31 +00003494 }
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003495 /* setup_redirects acts on file descriptors, not FILEs.
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003496 * This is perfect for work that comes after exec().
3497 * Is it really safe for inline use? Experimentally,
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003498 * things seem to work. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003499 rcode = setup_redirects(command, squirrel);
3500 if (rcode == 0) {
3501 new_env = expand_assignments(argv, command->assignment_cnt);
3502 old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003503 if (!funcp) {
3504 debug_printf_exec(": builtin '%s' '%s'...\n",
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003505 x->cmd, argv_expanded[1]);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003506 rcode = x->function(argv_expanded) & 0xff;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003507 fflush(NULL);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003508 }
3509#if ENABLE_HUSH_FUNCTIONS
3510 else {
3511 debug_printf_exec(": function '%s' '%s'...\n",
3512 funcp->name, argv_expanded[1]);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003513 rcode = run_function(funcp, argv_expanded) & 0xff;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003514 }
3515#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003516 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003517#if ENABLE_FEATURE_SH_STANDALONE
3518 clean_up_and_ret:
3519#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003520 restore_redirects(squirrel);
3521 free_strings_and_unsetenv(new_env, 1);
3522 putenv_all(old_env);
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003523 /* Free the pointers, but the strings themselves
3524 * are in environ now, don't use free_strings! */
3525 free(old_env);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003526 clean_up_and_ret1:
3527 free(argv_expanded);
3528 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003529 debug_leave();
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003530 debug_printf_exec("run_pipe return %d\n", rcode);
3531 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003532 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003533
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003534#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003535 i = find_applet_by_name(argv_expanded[0]);
3536 if (i >= 0 && APPLET_IS_NOFORK(i)) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003537 rcode = setup_redirects(command, squirrel);
3538 if (rcode == 0) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003539 new_env = expand_assignments(argv, command->assignment_cnt);
3540 old_env = putenv_all_and_save_old(new_env);
3541 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003542 argv_expanded[0], argv_expanded[1]);
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003543 rcode = run_nofork_applet(i, argv_expanded);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003544 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003545 goto clean_up_and_ret;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003546 }
3547#endif
Denis Vlasenko552433b2009-04-04 19:29:21 +00003548 /* It is neither builtin nor applet. We must fork. */
Eric Andersen25f27032001-04-26 23:22:31 +00003549 }
3550
Denis Vlasenko552433b2009-04-04 19:29:21 +00003551 must_fork:
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003552 /* NB: argv_expanded may already be created, and that
3553 * might include `cmd` runs! Do not rerun it! We *must*
3554 * use argv_expanded if it's non-NULL */
3555
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003556 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003557 pi->alive_cmds = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003558 nextin = 0;
3559
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003560 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003561 struct fd_pair pipefds;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003562#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003563 volatile nommu_save_t nommu_save;
3564 nommu_save.new_env = NULL;
3565 nommu_save.old_env = NULL;
3566 nommu_save.argv = NULL;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003567 nommu_save.argv_from_re_execing = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003568#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003569 command = &(pi->cmds[i]);
3570 if (command->argv) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003571 debug_printf_exec(": pipe member '%s' '%s'...\n",
3572 command->argv[0], command->argv[1]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003573 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003574 debug_printf_exec(": pipe member with no argv\n");
Denis Vlasenko552433b2009-04-04 19:29:21 +00003575 }
Eric Andersen25f27032001-04-26 23:22:31 +00003576
3577 /* pipes are inserted between pairs of commands */
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003578 pipefds.rd = 0;
3579 pipefds.wr = 1;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003580 if ((i + 1) < pi->num_cmds)
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003581 xpiped_pair(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00003582
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003583 command->pid = BB_MMU ? fork() : vfork();
3584 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003585#if ENABLE_HUSH_JOB
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003586 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkod5762932009-03-31 11:22:57 +00003587
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003588 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00003589 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003590 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00003591 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003592 pgrp = pi->pgrp;
3593 if (pgrp < 0) /* true for 1st process only */
3594 pgrp = getpid();
3595 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003596 /* We do it in *every* child, not just first,
3597 * to avoid races */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003598 tcsetpgrp(G_interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003599 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003600 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003601#endif
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003602 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
3603 /* 1st cmd in backgrounded pipe
3604 * should have its stdin /dev/null'ed */
3605 close(0);
3606 if (open(bb_dev_null, O_RDONLY))
3607 xopen("/", O_RDONLY);
3608 } else {
3609 xmove_fd(nextin, 0);
3610 }
3611 xmove_fd(pipefds.wr, 1);
3612 if (pipefds.rd > 1)
3613 close(pipefds.rd);
Eric Andersen25f27032001-04-26 23:22:31 +00003614 /* Like bash, explicit redirects override pipes,
3615 * and the pipe fd is available for dup'ing. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003616 if (setup_redirects(command, NULL))
3617 _exit(1);
Eric Andersen52a97ca2001-06-22 06:49:26 +00003618
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003619 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003620 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
3621
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003622 /* Stores to nommu_save list of env vars putenv'ed
3623 * (NOMMU, on MMU we don't need that) */
3624 /* cast away volatility... */
3625 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003626 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00003627 }
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003628
Denis Vlasenkof9375282009-04-05 19:13:39 +00003629 /* parent or error */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003630 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003631#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003632 /* Clean up after vforked child */
3633 free(nommu_save.argv);
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003634 free(nommu_save.argv_from_re_execing);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003635 free_strings_and_unsetenv(nommu_save.new_env, 1);
3636 putenv_all(nommu_save.old_env);
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003637 /* Free the pointers, but the strings themselves
3638 * are in environ now, don't use free_strings! */
3639 free(nommu_save.old_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003640#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003641 free(argv_expanded);
3642 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003643 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003644 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko82604e92008-07-01 15:59:42 +00003645 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003646 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003647 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003648#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003649 /* Second and next children need to know pid of first one */
3650 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003651 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003652#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003653 }
Eric Andersen25f27032001-04-26 23:22:31 +00003654
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003655 if (i)
3656 close(nextin);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003657 if ((i + 1) < pi->num_cmds)
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003658 close(pipefds.wr);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003659 /* Pass read (output) pipe end to next iteration */
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003660 nextin = pipefds.rd;
Eric Andersen25f27032001-04-26 23:22:31 +00003661 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003662
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003663 if (!pi->alive_cmds) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003664 debug_leave();
Denis Vlasenko05743d72008-02-10 12:10:08 +00003665 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
3666 return 1;
3667 }
3668
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003669 debug_leave();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003670 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00003671 return -1;
3672}
3673
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003674#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003675static void debug_print_tree(struct pipe *pi, int lvl)
3676{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003677 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003678 [PIPE_SEQ] = "SEQ",
3679 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003680 [PIPE_OR ] = "OR" ,
3681 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003682 };
3683 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003684 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003685#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003686 [RES_IF ] = "IF" ,
3687 [RES_THEN ] = "THEN" ,
3688 [RES_ELIF ] = "ELIF" ,
3689 [RES_ELSE ] = "ELSE" ,
3690 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003691#endif
3692#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003693 [RES_FOR ] = "FOR" ,
3694 [RES_WHILE] = "WHILE",
3695 [RES_UNTIL] = "UNTIL",
3696 [RES_DO ] = "DO" ,
3697 [RES_DONE ] = "DONE" ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003698#endif
3699#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003700 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003701#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003702#if ENABLE_HUSH_CASE
3703 [RES_CASE ] = "CASE" ,
3704 [RES_MATCH] = "MATCH",
3705 [RES_CASEI] = "CASEI",
3706 [RES_ESAC ] = "ESAC" ,
3707#endif
Denis Vlasenko06810332007-05-21 23:30:54 +00003708 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003709 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003710 };
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003711 static const char *const GRPTYPE[] = {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003712 "{}",
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00003713 "()",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003714#if ENABLE_HUSH_FUNCTIONS
3715 "func()",
3716#endif
3717 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003718
3719 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003720
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003721 pin = 0;
3722 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003723 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
3724 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003725 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003726 while (prn < pi->num_cmds) {
3727 struct command *command = &pi->cmds[prn];
3728 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003729
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003730 fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003731 lvl*2, "", prn,
3732 command->assignment_cnt);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003733 if (command->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003734 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003735 GRPTYPE[command->grp_type],
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003736 argv);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003737 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003738 prn++;
3739 continue;
3740 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003741 if (argv) while (*argv) {
3742 fprintf(stderr, " '%s'", *argv);
3743 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003744 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003745 fprintf(stderr, "\n");
3746 prn++;
3747 }
3748 pi = pi->next;
3749 pin++;
3750 }
3751}
3752#endif
3753
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003754/* NB: called by pseudo_exec, and therefore must not modify any
3755 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003756static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003757{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003758#if ENABLE_HUSH_CASE
3759 char *case_word = NULL;
3760#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003761#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003762 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003763 char *for_varname = NULL;
3764 char **for_lcur = NULL;
3765 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00003766#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003767 smallint last_followup;
3768 smalluint rcode;
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003769#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003770 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003771#else
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003772 enum { cond_code = 0 };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003773#endif
Denis Vlasenko0e151382009-04-06 18:40:31 +00003774#if HAS_KEYWORDS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003775 smallint rword; /* enum reserved_style */
3776 smallint last_rword; /* ditto */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003777#endif
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003778
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003779 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003780 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003781
Denis Vlasenko06810332007-05-21 23:30:54 +00003782#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003783 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003784 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
3785 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003786 continue;
3787 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003788 if (cpipe->next == NULL) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003789 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003790 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00003791 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003792 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003793 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003794 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003795 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003796 continue;
3797 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003798 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
3799 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003800 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003801 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003802 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00003803 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003804 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003805 }
3806 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003807#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003808
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003809 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00003810 * in order to return, no direct "return" statements please.
3811 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003812
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003813#if ENABLE_HUSH_JOB
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003814 G.run_list_level++;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003815#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003816
Denis Vlasenko0e151382009-04-06 18:40:31 +00003817#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003818 rword = RES_NONE;
3819 last_rword = RES_XXXX;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003820#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003821 last_followup = PIPE_SEQ;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003822 rcode = G.last_exitcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003823
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003824 /* Go through list of pipes, (maybe) executing them. */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00003825 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00003826 if (G.flag_SIGINT)
3827 break;
3828
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003829 IF_HAS_KEYWORDS(rword = pi->res_word;)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003830 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
3831 rword, cond_code, last_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00003832#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00003833 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003834 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00003835 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003836 /* start of a loop: remember where loop starts */
3837 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003838 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003839 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003840#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003841 /* Still in the same "if...", "then..." or "do..." branch? */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003842 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003843 if ((rcode == 0 && last_followup == PIPE_OR)
3844 || (rcode != 0 && last_followup == PIPE_AND)
3845 ) {
3846 /* It is "<true> || CMD" or "<false> && CMD"
3847 * and we should not execute CMD */
3848 debug_printf_exec("skipped cmd because of || or &&\n");
3849 last_followup = pi->followup;
3850 continue;
3851 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003852 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003853 last_followup = pi->followup;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003854 IF_HAS_KEYWORDS(last_rword = rword;)
Denis Vlasenko06810332007-05-21 23:30:54 +00003855#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003856 if (cond_code) {
3857 if (rword == RES_THEN) {
Denis Vlasenko0e151382009-04-06 18:40:31 +00003858 /* if false; then ... fi has exitcode 0! */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003859 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003860 /* "if <false> THEN cmd": skip cmd */
3861 continue;
3862 }
3863 } else {
3864 if (rword == RES_ELSE || rword == RES_ELIF) {
3865 /* "if <true> then ... ELSE/ELIF cmd":
3866 * skip cmd and all following ones */
3867 break;
3868 }
3869 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003870#endif
3871#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003872 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003873 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003874 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003875
3876 static const char encoded_dollar_at[] ALIGN1 = {
3877 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
3878 }; /* encoded representation of "$@" */
3879 static const char *const encoded_dollar_at_argv[] = {
3880 encoded_dollar_at, NULL
3881 }; /* argv list with one element: "$@" */
3882 char **vals;
3883
3884 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003885 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003886 /* if no variable values after "in" we skip "for" */
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003887 if (!pi->next->cmds[0].argv) {
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003888 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003889 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003890 break;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003891 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003892 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003893 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003894 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003895 debug_print_strings("for_list made from", vals);
3896 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003897 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003898 debug_print_strings("for_list", for_list);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003899 for_varname = pi->cmds[0].argv[0];
3900 pi->cmds[0].argv[0] = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003901 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003902 free(pi->cmds[0].argv[0]);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003903 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00003904 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003905 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003906 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003907 for_lcur = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003908 pi->cmds[0].argv[0] = for_varname;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003909 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003910 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003911 /* Insert next value from for_lcur */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003912 /* note: *for_lcur already has quotes removed, $var expanded, etc */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003913 pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
3914 pi->cmds[0].assignment_cnt = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003915 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003916 if (rword == RES_IN) {
3917 continue; /* "for v IN list;..." - "in" has no cmds anyway */
3918 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003919 if (rword == RES_DONE) {
3920 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003921 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003922#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003923#if ENABLE_HUSH_CASE
3924 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003925 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003926 continue;
3927 }
3928 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003929 char **argv;
3930
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003931 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
3932 break;
3933 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003934 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003935 while (*argv) {
3936 char *pattern = expand_string_to_string(*argv);
3937 /* TODO: which FNM_xxx flags to use? */
3938 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
3939 free(pattern);
3940 if (cond_code == 0) { /* match! we will execute this branch */
3941 free(case_word); /* make future "word)" stop */
3942 case_word = NULL;
3943 break;
3944 }
3945 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003946 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003947 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003948 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003949 if (rword == RES_CASEI) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003950 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003951 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003952 }
3953#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003954 /* Just pressing <enter> in shell should check for jobs.
3955 * OTOH, in non-interactive shell this is useless
3956 * and only leads to extra job checks */
3957 if (pi->num_cmds == 0) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003958 if (G_interactive_fd)
Denis Vlasenkod5762932009-03-31 11:22:57 +00003959 goto check_jobs_and_continue;
3960 continue;
3961 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003962
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003963 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00003964 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003965 * after run_pipe to collect any background children,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003966 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003967 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003968 {
3969 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003970#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00003971 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003972#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003973 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
3974 if (r != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00003975 /* We ran a builtin, function, or group.
3976 * rcode is already known
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003977 * and we don't need to wait for anything. */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003978 G.last_exitcode = rcode;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003979 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003980 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003981#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003982 /* Was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003983 if (G.flag_break_continue) {
3984 smallint fbc = G.flag_break_continue;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003985 /* We might fall into outer *loop*,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003986 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003987 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003988 G.depth_break_continue--;
3989 if (G.depth_break_continue == 0)
3990 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003991 /* else: e.g. "continue 2" should *break* once, *then* continue */
3992 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003993 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003994 goto check_jobs_and_break;
3995 /* "continue": simulate end of loop */
3996 rword = RES_DONE;
3997 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003998 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003999#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00004000#if ENABLE_HUSH_FUNCTIONS
4001 if (G.flag_return_in_progress == 1)
4002 goto check_jobs_and_break;
4003#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004004 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004005 /* What does bash do with attempts to background builtins? */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004006 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004007 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
4008 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004009 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004010#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00004011 if (G.run_list_level == 1)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00004012{
4013debug_printf_exec("insert_bg_job1\n");
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004014 insert_bg_job(pi);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00004015debug_printf_exec("insert_bg_job2\n");
4016}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004017#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004018 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004019 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004020 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004021#if ENABLE_HUSH_JOB
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004022 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004023 /* Waits for completion, then fg's main shell */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004024 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004025 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004026 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004027 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004028#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004029 { /* This one just waits for completion */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004030 rcode = checkjobs(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004031 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004032 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004033 }
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004034 G.last_exitcode = rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00004035 }
4036 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004037
4038 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00004039#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00004040 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004041 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00004042#endif
4043#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004044 /* Beware of "while false; true; do ..."! */
4045 if (pi->next && pi->next->res_word == RES_DO) {
4046 if (rword == RES_WHILE) {
4047 if (rcode) {
4048 /* "while false; do...done" - exitcode 0 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004049 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004050 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
4051 goto check_jobs_and_break;
4052 }
Denis Vlasenko918a34b2008-07-28 23:17:31 +00004053 }
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004054 if (rword == RES_UNTIL) {
4055 if (!rcode) {
4056 debug_printf_exec(": until expr is true: breaking\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004057 check_jobs_and_break:
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004058 checkjobs(NULL);
4059 break;
4060 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004061 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004062 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004063#endif
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00004064
4065 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00004066 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004067 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004068
4069#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00004070 G.run_list_level--;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004071#endif
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004072#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00004073 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00004074 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004075 free(for_list);
4076#endif
4077#if ENABLE_HUSH_CASE
4078 free(case_word);
4079#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004080 debug_leave();
4081 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00004082 return rcode;
4083}
4084
Eric Andersen25f27032001-04-26 23:22:31 +00004085/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00004086static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00004087{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004088 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00004089 debug_printf_exec("run_and_free_list entered\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00004090 if (!G.fake_mode) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004091 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00004092 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004093 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004094 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00004095 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00004096 * but doing that now would hobble the debugging effort. */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004097 free_pipe_list(pi);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00004098 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00004099 return rcode;
4100}
4101
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004102
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00004103static struct pipe *new_pipe(void)
4104{
Eric Andersen25f27032001-04-26 23:22:31 +00004105 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00004106 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004107 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004108 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00004109 return pi;
4110}
4111
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004112/* Command (member of a pipe) is complete, or we start a new pipe
4113 * if ctx->command is NULL.
4114 * No errors possible here.
4115 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004116static int done_command(struct parse_context *ctx)
4117{
4118 /* The command is really already in the pipe structure, so
4119 * advance the pipe counter and make a new, null command. */
4120 struct pipe *pi = ctx->pipe;
4121 struct command *command = ctx->command;
4122
4123 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004124 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004125 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004126 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004127 }
4128 pi->num_cmds++;
4129 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004130 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004131 } else {
4132 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
4133 }
4134
4135 /* Only real trickiness here is that the uncommitted
4136 * command structure is not counted in pi->num_cmds. */
4137 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004138 ctx->command = command = &pi->cmds[pi->num_cmds];
4139 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004140 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004141 return pi->num_cmds; /* used only for 0/nonzero check */
4142}
4143
4144static void done_pipe(struct parse_context *ctx, pipe_style type)
4145{
4146 int not_null;
4147
4148 debug_printf_parse("done_pipe entered, followup %d\n", type);
4149 /* Close previous command */
4150 not_null = done_command(ctx);
4151 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004152#if HAS_KEYWORDS
4153 ctx->pipe->pi_inverted = ctx->ctx_inverted;
4154 ctx->ctx_inverted = 0;
4155 ctx->pipe->res_word = ctx->ctx_res_w;
4156#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004157
4158 /* Without this check, even just <enter> on command line generates
4159 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004160 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004161 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00004162#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004163 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00004164#endif
4165#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004166 || ctx->ctx_res_w == RES_DONE
4167 || ctx->ctx_res_w == RES_FOR
4168 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00004169#endif
4170#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004171 || ctx->ctx_res_w == RES_ESAC
4172#endif
4173 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004174 struct pipe *new_p;
4175 debug_printf_parse("done_pipe: adding new pipe: "
4176 "not_null:%d ctx->ctx_res_w:%d\n",
4177 not_null, ctx->ctx_res_w);
4178 new_p = new_pipe();
4179 ctx->pipe->next = new_p;
4180 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004181 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004182 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004183 * This is used to control execution.
4184 * RES_FOR and RES_IN are NOT sticky (needed to support
4185 * cases where variable or value happens to match a keyword):
4186 */
4187#if ENABLE_HUSH_LOOPS
4188 if (ctx->ctx_res_w == RES_FOR
4189 || ctx->ctx_res_w == RES_IN)
4190 ctx->ctx_res_w = RES_NONE;
4191#endif
4192#if ENABLE_HUSH_CASE
4193 if (ctx->ctx_res_w == RES_MATCH)
4194 ctx->ctx_res_w = RES_CASEI;
4195#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004196 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004197 /* Create the memory for command, roughly:
4198 * ctx->pipe->cmds = new struct command;
4199 * ctx->command = &ctx->pipe->cmds[0];
4200 */
4201 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004202 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004203 }
4204 debug_printf_parse("done_pipe return\n");
4205}
4206
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004207static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00004208{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004209 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00004210 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004211 /* Create the memory for command, roughly:
4212 * ctx->pipe->cmds = new struct command;
4213 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004214 */
4215 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00004216}
4217
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004218/* If a reserved word is found and processed, parse context is modified
4219 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00004220 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004221#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004222struct reserved_combo {
4223 char literal[6];
4224 unsigned char res;
4225 unsigned char assignment_flag;
4226 int flag;
4227};
4228enum {
4229 FLAG_END = (1 << RES_NONE ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004230#if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004231 FLAG_IF = (1 << RES_IF ),
4232 FLAG_THEN = (1 << RES_THEN ),
4233 FLAG_ELIF = (1 << RES_ELIF ),
4234 FLAG_ELSE = (1 << RES_ELSE ),
4235 FLAG_FI = (1 << RES_FI ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004236#endif
4237#if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004238 FLAG_FOR = (1 << RES_FOR ),
4239 FLAG_WHILE = (1 << RES_WHILE),
4240 FLAG_UNTIL = (1 << RES_UNTIL),
4241 FLAG_DO = (1 << RES_DO ),
4242 FLAG_DONE = (1 << RES_DONE ),
4243 FLAG_IN = (1 << RES_IN ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004244#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004245#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004246 FLAG_MATCH = (1 << RES_MATCH),
4247 FLAG_ESAC = (1 << RES_ESAC ),
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004248#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004249 FLAG_START = (1 << RES_XXXX ),
4250};
4251
4252static const struct reserved_combo* match_reserved_word(o_string *word)
4253{
Eric Andersen25f27032001-04-26 23:22:31 +00004254 /* Mostly a list of accepted follow-up reserved words.
4255 * FLAG_END means we are done with the sequence, and are ready
4256 * to turn the compound list into a command.
4257 * FLAG_START means the word must start a new compound list.
4258 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004259 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00004260#if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004261 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
4262 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
4263 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
4264 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
4265 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
4266 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00004267#endif
4268#if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004269 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
4270 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4271 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4272 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
4273 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
4274 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004275#endif
4276#if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004277 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
4278 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00004279#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004280 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004281 const struct reserved_combo *r;
4282
4283 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
4284 if (strcmp(word->data, r->literal) == 0)
4285 return r;
4286 }
4287 return NULL;
4288}
Denis Vlasenkobb929512009-04-16 10:59:40 +00004289/* Return 0: not a keyword, 1: keyword
4290 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004291static int reserved_word(o_string *word, struct parse_context *ctx)
4292{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004293#if ENABLE_HUSH_CASE
4294 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004295 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004296 };
4297#endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004298 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004299
Denis Vlasenkobb929512009-04-16 10:59:40 +00004300 if (word->o_quoted)
4301 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004302 r = match_reserved_word(word);
4303 if (!r)
4304 return 0;
4305
4306 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004307#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004308 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE)
4309 /* "case word IN ..." - IN part starts first match part */
4310 r = &reserved_match;
4311 else
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004312#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004313 if (r->flag == 0) { /* '!' */
4314 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004315 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00004316 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00004317 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004318 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004319 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004320 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004321 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004322 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004323
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004324 old = xmalloc(sizeof(*old));
4325 debug_printf_parse("push stack %p\n", old);
4326 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004327 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004328 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004329 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004330 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004331 ctx->ctx_res_w = RES_SNTX;
4332 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004333 } else {
4334 /* "{...} fi" is ok. "{...} if" is not
4335 * Example:
4336 * if { echo foo; } then { echo bar; } fi */
4337 if (ctx->command->group)
4338 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004339 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00004340
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004341 ctx->ctx_res_w = r->res;
4342 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004343 word->o_assignment = r->assignment_flag;
4344
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004345 if (ctx->old_flag & FLAG_END) {
4346 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004347
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004348 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004349 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004350 old = ctx->stack;
4351 old->command->group = ctx->list_head;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004352 old->command->grp_type = GRP_NORMAL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004353#if !BB_MMU
4354 o_addstr(&old->as_string, ctx->as_string.data);
4355 o_free_unsafe(&ctx->as_string);
4356 old->command->group_as_string = xstrdup(old->as_string.data);
4357 debug_printf_parse("pop, remembering as:'%s'\n",
4358 old->command->group_as_string);
4359#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004360 *ctx = *old; /* physical copy */
4361 free(old);
4362 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004363 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004364}
Denis Vlasenko06810332007-05-21 23:30:54 +00004365#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004366
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004367/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004368 * Normal return is 0. Syntax errors return 1.
4369 * Note: on return, word is reset, but not o_free'd!
4370 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004371static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00004372{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004373 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00004374
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004375 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004376 if (word->length == 0 && word->o_quoted == 0) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004377 debug_printf_parse("done_word return 0: true null, ignored\n");
4378 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004379 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004380
Eric Andersen25f27032001-04-26 23:22:31 +00004381 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004382 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
4383 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004384 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4385 * "2.7 Redirection
4386 * ...the word that follows the redirection operator
4387 * shall be subjected to tilde expansion, parameter expansion,
4388 * command substitution, arithmetic expansion, and quote
4389 * removal. Pathname expansion shall not be performed
4390 * on the word by a non-interactive shell; an interactive
4391 * shell may perform it, but shall do so only when
4392 * the expansion would result in one word."
4393 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004394 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004395 /* Cater for >\file case:
4396 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
4397 * Same with heredocs:
4398 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
4399 */
4400 unbackslash(ctx->pending_redirect->rd_filename);
4401 /* Is it <<"HEREDOC"? */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004402 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC
4403 && word->o_quoted
4404 ) {
4405 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
4406 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004407 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004408 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00004409 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004410 /* If this word wasn't an assignment, next ones definitely
4411 * can't be assignments. Even if they look like ones. */
4412 if (word->o_assignment != DEFINITELY_ASSIGNMENT
4413 && word->o_assignment != WORD_IS_KEYWORD
4414 ) {
4415 word->o_assignment = NOT_ASSIGNMENT;
4416 } else {
4417 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
4418 command->assignment_cnt++;
4419 word->o_assignment = MAYBE_ASSIGNMENT;
4420 }
4421
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004422#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004423# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00004424 if (ctx->ctx_dsemicolon
4425 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
4426 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00004427 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004428 /* ctx->ctx_res_w = RES_MATCH; */
4429 ctx->ctx_dsemicolon = 0;
4430 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004431# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004432 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004433# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004434 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
4435 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004436# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004437 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004438 debug_printf_parse("checking '%s' for reserved-ness\n", word->data);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004439 if (reserved_word(word, ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004440 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004441 debug_printf_parse("done_word return %d\n",
4442 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004443 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004444 }
Eric Andersen25f27032001-04-26 23:22:31 +00004445 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004446#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00004447 if (command->group) {
4448 /* "{ echo foo; } echo bar" - bad */
4449 syntax_error_at(word->data);
4450 debug_printf_parse("done_word return 1: syntax error, "
4451 "groups and arglists don't mix\n");
4452 return 1;
4453 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004454 if (word->o_quoted /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00004455 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
4456 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004457 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004458 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004459 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004460 char *p = word->data;
4461 while (p[0] == SPECIAL_VAR_SYMBOL
4462 && (p[1] & 0x7f) == '@'
4463 && p[2] == SPECIAL_VAR_SYMBOL
4464 ) {
4465 p += 3;
4466 }
4467 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004468 /* saw no "$@", or not only "$@" but some
4469 * real text is there too */
4470 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004471 * e.g. "", $empty"" etc to not disappear */
4472 o_addchr(word, SPECIAL_VAR_SYMBOL);
4473 o_addchr(word, SPECIAL_VAR_SYMBOL);
4474 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00004475 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004476 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004477 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004478 }
Eric Andersen25f27032001-04-26 23:22:31 +00004479
Denis Vlasenko06810332007-05-21 23:30:54 +00004480#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004481 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004482 if (word->o_quoted
4483 || !is_well_formed_var_name(command->argv[0], '\0')
4484 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004485 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004486 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004487 return 1;
4488 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004489 /* Force FOR to have just one word (variable name) */
4490 /* NB: basically, this makes hush see "for v in ..."
4491 * syntax as if it is "for v; in ...". FOR and IN become
4492 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004493 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004494 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004495#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004496#if ENABLE_HUSH_CASE
4497 /* Force CASE to have just one word */
4498 if (ctx->ctx_res_w == RES_CASE) {
4499 done_pipe(ctx, PIPE_SEQ);
4500 }
4501#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004502
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004503 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004504
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004505 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004506 return 0;
4507}
4508
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004509
4510/* Peek ahead in the input to find out if we have a "&n" construct,
4511 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004512 * Return:
4513 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
4514 * REDIRFD_SYNTAX_ERR if syntax error,
4515 * REDIRFD_TO_FILE if no & was seen,
4516 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004517 */
4518#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004519#define parse_redir_right_fd(as_string, input) \
4520 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004521#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004522static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004523{
4524 int ch, d, ok;
4525
4526 ch = i_peek(input);
4527 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004528 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004529
4530 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004531 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004532 ch = i_peek(input);
4533 if (ch == '-') {
4534 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004535 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004536 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004537 }
4538 d = 0;
4539 ok = 0;
4540 while (ch != EOF && isdigit(ch)) {
4541 d = d*10 + (ch-'0');
4542 ok = 1;
4543 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004544 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004545 ch = i_peek(input);
4546 }
4547 if (ok) return d;
4548
4549//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
4550
4551 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004552 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004553}
4554
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004555/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004556 */
4557static int parse_redirect(struct parse_context *ctx,
4558 int fd,
4559 redir_type style,
4560 struct in_str *input)
4561{
4562 struct command *command = ctx->command;
4563 struct redir_struct *redir;
4564 struct redir_struct **redirp;
4565 int dup_num;
4566
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004567 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004568 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004569 /* Check for a '>&1' type redirect */
4570 dup_num = parse_redir_right_fd(&ctx->as_string, input);
4571 if (dup_num == REDIRFD_SYNTAX_ERR)
4572 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004573 } else {
4574 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004575 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004576 if (dup_num) { /* <<-... */
4577 ch = i_getch(input);
4578 nommu_addchr(&ctx->as_string, ch);
4579 ch = i_peek(input);
4580 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004581 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004582
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004583 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004584 int ch = i_peek(input);
4585 if (ch == '|') {
4586 /* >|FILE redirect ("clobbering" >).
4587 * Since we do not support "set -o noclobber" yet,
4588 * >| and > are the same for now. Just eat |.
4589 */
4590 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004591 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004592 }
4593 }
4594
4595 /* Create a new redir_struct and append it to the linked list */
4596 redirp = &command->redirects;
4597 while ((redir = *redirp) != NULL) {
4598 redirp = &(redir->next);
4599 }
4600 *redirp = redir = xzalloc(sizeof(*redir));
4601 /* redir->next = NULL; */
4602 /* redir->rd_filename = NULL; */
4603 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004604 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004605
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004606 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
4607 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004608
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004609 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004610 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004611 /* Erik had a check here that the file descriptor in question
4612 * is legit; I postpone that to "run time"
4613 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004614 debug_printf_parse("duplicating redirect '%d>&%d'\n",
4615 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004616 } else {
4617 /* Set ctx->pending_redirect, so we know what to do at the
4618 * end of the next parsed word. */
4619 ctx->pending_redirect = redir;
4620 }
4621 return 0;
4622}
4623
Eric Andersen25f27032001-04-26 23:22:31 +00004624/* If a redirect is immediately preceded by a number, that number is
4625 * supposed to tell which file descriptor to redirect. This routine
4626 * looks for such preceding numbers. In an ideal world this routine
4627 * needs to handle all the following classes of redirects...
4628 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
4629 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
4630 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
4631 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004632 *
4633 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4634 * "2.7 Redirection
4635 * ... If n is quoted, the number shall not be recognized as part of
4636 * the redirection expression. For example:
4637 * echo \2>a
4638 * writes the character 2 into file a"
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004639 * We are getting it right by setting ->o_quoted on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004640 *
4641 * A -1 return means no valid number was found,
4642 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00004643 */
4644static int redirect_opt_num(o_string *o)
4645{
4646 int num;
4647
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004648 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004649 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004650 num = bb_strtou(o->data, NULL, 10);
4651 if (errno || num < 0)
4652 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004653 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00004654 return num;
4655}
4656
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004657#if BB_MMU
4658#define fetch_till_str(as_string, input, word, skip_tabs) \
4659 fetch_till_str(input, word, skip_tabs)
4660#endif
4661static char *fetch_till_str(o_string *as_string,
4662 struct in_str *input,
4663 const char *word,
4664 int skip_tabs)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004665{
4666 o_string heredoc = NULL_O_STRING;
4667 int past_EOL = 0;
4668 int ch;
4669
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004670 goto jump_in;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004671 while (1) {
4672 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004673 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004674 if (ch == '\n') {
4675 if (strcmp(heredoc.data + past_EOL, word) == 0) {
4676 heredoc.data[past_EOL] = '\0';
4677 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
4678 return heredoc.data;
4679 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004680 do {
4681 o_addchr(&heredoc, ch);
4682 past_EOL = heredoc.length;
4683 jump_in:
4684 do {
4685 ch = i_getch(input);
4686 nommu_addchr(as_string, ch);
4687 } while (skip_tabs && ch == '\t');
4688 } while (ch == '\n');
4689 }
4690 if (ch == EOF) {
4691 o_free_unsafe(&heredoc);
4692 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004693 }
4694 o_addchr(&heredoc, ch);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004695 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004696 }
4697}
4698
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004699/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
4700 * and load them all. There should be exactly heredoc_cnt of them.
4701 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004702static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
4703{
4704 struct pipe *pi = ctx->list_head;
4705
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004706 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004707 int i;
4708 struct command *cmd = pi->cmds;
4709
4710 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
4711 pi->num_cmds,
4712 cmd->argv ? cmd->argv[0] : "NONE");
4713 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004714 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004715
4716 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
4717 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004718 while (redir) {
4719 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004720 char *p;
4721
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004722 redir->rd_type = REDIRECT_HEREDOC2;
4723 /* redir->dup is (ab)used to indicate <<- */
4724 p = fetch_till_str(&ctx->as_string, input,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004725 redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004726 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004727 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004728 return 1;
4729 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004730 free(redir->rd_filename);
4731 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004732 heredoc_cnt--;
4733 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004734 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004735 }
4736 cmd++;
4737 }
4738 pi = pi->next;
4739 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004740#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004741 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004742 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004743 bb_error_msg_and_die("heredoc BUG 2");
4744#endif
4745 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004746}
4747
4748
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004749#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004750static FILE *generate_stream_from_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004751{
4752 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004753 int pid, channel[2];
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004754#if !BB_MMU
4755 char **to_free;
4756#endif
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004757
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00004758 xpipe(channel);
Denis Vlasenko82604e92008-07-01 15:59:42 +00004759 pid = BB_MMU ? fork() : vfork();
4760 if (pid < 0)
4761 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004762
Denis Vlasenko05743d72008-02-10 12:10:08 +00004763 if (pid == 0) { /* child */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004764 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004765 /* Process substitution is not considered to be usual
4766 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00004767 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
4768 */
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00004769 bb_signals(0
4770 + (1 << SIGTSTP)
4771 + (1 << SIGTTIN)
4772 + (1 << SIGTTOU)
4773 , SIG_IGN);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004774 close(channel[0]); /* NB: close _first_, then move fd! */
4775 xmove_fd(channel[1], 1);
4776 /* Prevent it from trying to handle ctrl-z etc */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00004777 IF_HUSH_JOB(G.run_list_level = 1;)
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004778#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004779 reset_traps_to_defaults();
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004780 parse_and_run_string(s);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004781 _exit(G.last_exitcode);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004782#else
4783 /* We re-execute after vfork on NOMMU. This makes this script safe:
Denis Vlasenkof9375282009-04-05 19:13:39 +00004784 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
4785 * huge=`cat BIG` # was blocking here forever
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004786 * echo OK
4787 */
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004788 re_execute_shell(&to_free,
4789 s,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004790 G.global_argv[0],
4791 G.global_argv + 1);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004792#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004793 }
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004794
4795 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004796 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004797#if !BB_MMU
4798 free(to_free);
4799#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004800 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00004801 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00004802 return pf;
4803}
4804
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004805/* Return code is exit status of the process that is run. */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004806static int process_command_subs(o_string *dest, const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004807{
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004808 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004809 struct in_str pipe_str;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004810 int ch, eol_cnt;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004811
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004812 pf = generate_stream_from_string(s);
4813 if (pf == NULL)
Denis Vlasenko05743d72008-02-10 12:10:08 +00004814 return 1;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004815 close_on_exec_on(fileno(pf));
Eric Andersen25f27032001-04-26 23:22:31 +00004816
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004817 /* Now send results of command back into original context */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004818 setup_file_in_str(&pipe_str, pf);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004819 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004820 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004821 if (ch == '\n') {
4822 eol_cnt++;
4823 continue;
4824 }
4825 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00004826 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004827 eol_cnt--;
4828 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00004829 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004830 }
4831
4832 debug_printf("done reading from pipe, pclose()ing\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004833 /* Note: we got EOF, and we just close the read end of the pipe.
4834 * We do not wait for the `cmd` child to terminate. bash and ash do.
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004835 * Try these:
4836 * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
4837 * `false`; echo $? - bash outputs "1"
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004838 */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004839 fclose(pf);
4840 debug_printf("closed FILE from child. return 0\n");
4841 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004842}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004843#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004844
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004845static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004846 struct in_str *input, int ch)
4847{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004848 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004849 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004850 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004851 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004852 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004853 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004854
4855 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004856#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004857 if (ch == '(' && !dest->o_quoted) {
4858 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00004859 if (done_word(dest, ctx))
4860 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004861 if (!command->argv)
4862 goto skip; /* (... */
4863 if (command->argv[1]) { /* word word ... (... */
4864 syntax_error_unexpected_ch('(');
4865 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004866 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004867 /* it is "word(..." or "word (..." */
4868 do
4869 ch = i_getch(input);
4870 while (ch == ' ' || ch == '\t');
4871 if (ch != ')') {
4872 syntax_error_unexpected_ch(ch);
4873 return 1;
4874 }
4875 nommu_addchr(&ctx->as_string, ch);
4876 do
4877 ch = i_getch(input);
4878 while (ch == ' ' || ch == '\t' || ch == '\n');
4879 if (ch != '{') {
4880 syntax_error_unexpected_ch(ch);
4881 return 1;
4882 }
4883 nommu_addchr(&ctx->as_string, ch);
4884 command->grp_type = GRP_FUNCTION;
4885 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004886 }
4887#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004888 if (command->argv /* word [word]{... */
4889 || dest->length /* word{... */
4890 || dest->o_quoted /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004891 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004892 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004893 debug_printf_parse("parse_group return 1: "
4894 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004895 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004896 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004897
4898#if ENABLE_HUSH_FUNCTIONS
4899 skip:
4900#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004901 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004902 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004903 endch = ')';
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004904 command->grp_type = GRP_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004905 } else {
4906 /* bash does not allow "{echo...", requires whitespace */
4907 ch = i_getch(input);
4908 if (ch != ' ' && ch != '\t' && ch != '\n') {
4909 syntax_error_unexpected_ch(ch);
4910 return 1;
4911 }
4912 nommu_addchr(&ctx->as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004913 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004914
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004915 {
4916#if !BB_MMU
4917 char *as_string = NULL;
4918#endif
4919 pipe_list = parse_stream(&as_string, input, endch);
4920#if !BB_MMU
4921 if (as_string)
4922 o_addstr(&ctx->as_string, as_string);
4923#endif
4924 /* empty ()/{} or parse error? */
4925 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00004926 /* parse_stream already emitted error msg */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004927#if !BB_MMU
4928 free(as_string);
4929#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004930 debug_printf_parse("parse_group return 1: "
4931 "parse_stream returned %p\n", pipe_list);
4932 return 1;
4933 }
4934 command->group = pipe_list;
4935#if !BB_MMU
4936 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4937 command->group_as_string = as_string;
4938 debug_printf_parse("end of group, remembering as:'%s'\n",
4939 command->group_as_string);
4940#endif
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004941 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004942 debug_printf_parse("parse_group return 0\n");
4943 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004944 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004945}
4946
Mike Frysinger98c52642009-04-02 10:02:37 +00004947#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004948/* Subroutines for copying $(...) and `...` things */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004949static void add_till_backquote(o_string *dest, struct in_str *input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004950/* '...' */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004951static void add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004952{
4953 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004954 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004955 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004956 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004957 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004958 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004959 if (ch == '\'')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004960 return;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004961 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004962 }
4963}
4964/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004965static void add_till_double_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 Vlasenko7b4f3f12008-06-10 18:04:32 +00004975 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004976 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004977 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004978 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004979 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004980 if (ch == '`') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004981 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004982 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004983 continue;
4984 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004985 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004986 }
4987}
4988/* Process `cmd` - copy contents until "`" is seen. Complicated by
4989 * \` quoting.
4990 * "Within the backquoted style of command substitution, backslash
4991 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4992 * The search for the matching backquote shall be satisfied by the first
4993 * backquote found without a preceding backslash; during this search,
4994 * if a non-escaped backquote is encountered within a shell comment,
4995 * a here-document, an embedded command substitution of the $(command)
4996 * form, or a quoted string, undefined results occur. A single-quoted
4997 * or double-quoted string that begins, but does not end, within the
4998 * "`...`" sequence produces undefined results."
4999 * Example Output
5000 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
5001 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005002static void add_till_backquote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005003{
5004 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005005 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005006 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005007 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005008 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005009 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005010 if (ch == '`')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005011 return;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005012 if (ch == '\\') {
5013 /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005014 int ch2 = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005015 if (ch2 == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005016 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005017 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005018 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005019 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005020 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005021 ch = ch2;
5022 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005023 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005024 }
5025}
5026/* Process $(cmd) - copy contents until ")" is seen. Complicated by
5027 * quoting and nested ()s.
5028 * "With the $(command) style of command substitution, all characters
5029 * following the open parenthesis to the matching closing parenthesis
5030 * constitute the command. Any valid shell script can be used for command,
5031 * except a script consisting solely of redirections which produces
5032 * unspecified results."
5033 * Example Output
5034 * echo $(echo '(TEST)' BEST) (TEST) BEST
5035 * echo $(echo 'TEST)' BEST) TEST) BEST
5036 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
5037 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005038static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005039{
5040 int count = 0;
5041 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005042 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005043 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005044 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005045 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005046 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005047 if (ch == '(')
5048 count++;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005049 if (ch == ')') {
Mike Frysinger98c52642009-04-02 10:02:37 +00005050 if (--count < 0) {
5051 if (!dbl)
5052 break;
5053 if (i_peek(input) == ')') {
5054 i_getch(input);
5055 break;
5056 }
5057 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005058 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005059 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005060 if (ch == '\'') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005061 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005062 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005063 continue;
5064 }
5065 if (ch == '"') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005066 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005067 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005068 continue;
5069 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005070 if (ch == '\\') {
5071 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005072 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005073 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005074 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005075 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005076 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005077 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005078 continue;
5079 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005080 }
5081}
Mike Frysinger98c52642009-04-02 10:02:37 +00005082#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005083
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005084/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005085#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005086#define handle_dollar(as_string, dest, input) \
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005087 handle_dollar(dest, input)
5088#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005089static int handle_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005090 o_string *dest,
5091 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00005092{
Mike Frysinger6379bb42009-03-28 18:55:03 +00005093 int expansion;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005094 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005095 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005096
5097 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00005098 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005099 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005100 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00005101 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005102 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005103 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005104 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005105 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00005106 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005107 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005108 if (!isalnum(ch) && ch != '_')
5109 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005110 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005111 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005112 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005113 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005114 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005115 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005116 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005117 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005118 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005119 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005120 o_addchr(dest, ch | quote_mask);
5121 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005122 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005123 case '$': /* pid */
5124 case '!': /* last bg pid */
5125 case '?': /* last exit code */
5126 case '#': /* number of args */
5127 case '*': /* args */
5128 case '@': /* args */
5129 goto make_one_char_var;
5130 case '{': {
5131 bool first_char, all_digits;
Mike Frysinger6379bb42009-03-28 18:55:03 +00005132
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005133 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005134 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005135 nommu_addchr(as_string, ch);
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00005136 /* TODO: maybe someone will try to escape the '}' */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005137 expansion = 0;
5138 first_char = true;
5139 all_digits = false;
5140 while (1) {
5141 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005142 nommu_addchr(as_string, ch);
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005143 if (ch == '}') {
Mike Frysinger98c52642009-04-02 10:02:37 +00005144 break;
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005145 }
Mike Frysinger98c52642009-04-02 10:02:37 +00005146
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005147 if (first_char) {
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005148 if (ch == '#') {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005149 /* ${#var}: length of var contents */
5150 goto char_ok;
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005151 }
5152 if (isdigit(ch)) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005153 all_digits = true;
5154 goto char_ok;
5155 }
5156 }
5157
5158 if (expansion < 2
5159 && ( (all_digits && !isdigit(ch))
5160 || (!all_digits && !isalnum(ch) && ch != '_')
5161 )
5162 ) {
5163 /* handle parameter expansions
5164 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
5165 */
5166 if (first_char)
5167 goto case_default;
5168 switch (ch) {
5169 case ':': /* null modifier */
5170 if (expansion == 0) {
5171 debug_printf_parse(": null modifier\n");
5172 ++expansion;
5173 break;
5174 }
5175 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005176 case '#': /* remove prefix */
5177 case '%': /* remove suffix */
5178 if (expansion == 0) {
5179 debug_printf_parse(": remove suffix/prefix\n");
5180 expansion = 2;
5181 break;
5182 }
5183 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005184 case '-': /* default value */
5185 case '=': /* assign default */
5186 case '+': /* alternative */
5187 case '?': /* error indicate */
5188 debug_printf_parse(": parameter expansion\n");
5189 expansion = 2;
5190 break;
5191 default:
5192 case_default:
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005193 syntax_error_unterm_str("${name}");
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005194 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
5195 return 1;
5196 }
5197 }
5198 char_ok:
5199 debug_printf_parse(": '%c'\n", ch);
5200 o_addchr(dest, ch | quote_mask);
5201 quote_mask = 0;
5202 first_char = false;
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005203 } /* while (1) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005204 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5205 break;
5206 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005207#if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK)
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005208 case '(': {
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005209# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005210 int pos;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005211# endif
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005212 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005213 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005214# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005215 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005216 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005217 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005218 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5219 o_addchr(dest, /*quote_mask |*/ '+');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005220# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005221 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005222# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005223 add_till_closing_paren(dest, input, true);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005224# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005225 if (as_string) {
5226 o_addstr(as_string, dest->data + pos);
5227 o_addchr(as_string, ')');
5228 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005229 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005230# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005231 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005232 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005233 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005234# endif
5235# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005236 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5237 o_addchr(dest, quote_mask | '`');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005238# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005239 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005240# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005241 add_till_closing_paren(dest, input, false);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005242# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005243 if (as_string) {
5244 o_addstr(as_string, dest->data + pos);
5245 o_addchr(as_string, '`');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005246 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005247# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005248 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005249# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005250 break;
5251 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005252#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005253 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005254 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005255 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005256 ch = i_peek(input);
5257 if (isalnum(ch)) { /* it's $_name or $_123 */
5258 ch = '_';
5259 goto make_var;
5260 }
5261 /* else: it's $_ */
5262 /* TODO: */
5263 /* $_ Shell or shell script name; or last cmd name */
5264 /* $- Option flags set by set builtin or shell options (-i etc) */
5265 default:
5266 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00005267 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005268 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00005269 return 0;
5270}
5271
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005272#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005273#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005274 parse_stream_dquoted(dest, input, dquote_end)
5275#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005276static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005277 o_string *dest,
5278 struct in_str *input,
5279 int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005280{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005281 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005282 int next;
5283
5284 again:
5285 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005286 if (ch != EOF)
5287 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005288 if (ch == dquote_end) { /* may be only '"' or EOF */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005289 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005290 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005291 debug_printf_parse("parse_stream_dquoted return 0\n");
5292 return 0;
5293 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005294 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005295 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005296 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005297 /*xfunc_die(); - redundant */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005298 }
5299 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005300 if (ch != '\n') {
5301 next = i_peek(input);
5302 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005303 debug_printf_parse(": ch=%c (%d) escape=%d\n",
5304 ch, ch, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005305 if (ch == '\\') {
5306 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005307 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005308 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005309 }
5310 /* bash:
5311 * "The backslash retains its special meaning [in "..."]
5312 * only when followed by one of the following characters:
5313 * $, `, ", \, or <newline>. A double quote may be quoted
5314 * within double quotes by preceding it with a backslash.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005315 */
5316 if (strchr("$`\"\\", next) != NULL) {
5317 o_addqchr(dest, i_getch(input));
5318 } else {
5319 o_addqchr(dest, '\\');
5320 }
5321 goto again;
5322 }
5323 if (ch == '$') {
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005324 if (handle_dollar(as_string, dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005325 debug_printf_parse("parse_stream_dquoted return 1: "
5326 "handle_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005327 return 1;
5328 }
5329 goto again;
5330 }
5331#if ENABLE_HUSH_TICK
5332 if (ch == '`') {
5333 //int pos = dest->length;
5334 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5335 o_addchr(dest, 0x80 | '`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005336 add_till_backquote(dest, input);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005337 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5338 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00005339 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005340 }
5341#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00005342 o_addQchr(dest, ch);
5343 if (ch == '='
5344 && (dest->o_assignment == MAYBE_ASSIGNMENT
5345 || dest->o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005346 && is_well_formed_var_name(dest->data, '=')
Denis Vlasenkof328e002009-04-02 16:55:38 +00005347 ) {
5348 dest->o_assignment = DEFINITELY_ASSIGNMENT;
5349 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005350 goto again;
5351}
5352
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005353/*
5354 * Scan input until EOF or end_trigger char.
5355 * Return a list of pipes to execute, or NULL on EOF
5356 * or if end_trigger character is met.
5357 * On syntax error, exit is shell is not interactive,
5358 * reset parsing machinery and start parsing anew,
5359 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005360 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005361static struct pipe *parse_stream(char **pstring,
5362 struct in_str *input,
5363 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005364{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005365 struct parse_context ctx;
5366 o_string dest = NULL_O_STRING;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005367 int is_in_dquote;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005368 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00005369
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005370 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00005371 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005372 * found. When recursing, quote state is passed in via dest->o_escape.
5373 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005374 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
5375 end_trigger ? : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005376 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005377
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005378 G.ifs = get_local_var_value("IFS");
5379 if (G.ifs == NULL)
5380 G.ifs = " \t\n";
5381
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005382 reset:
5383#if ENABLE_HUSH_INTERACTIVE
5384 input->promptmode = 0; /* PS1 */
5385#endif
5386 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
5387 initialize_context(&ctx);
5388 is_in_dquote = 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005389 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005390 while (1) {
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005391 const char *is_ifs;
5392 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005393 int ch;
5394 int next;
5395 int redir_fd;
5396 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005397
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005398 if (is_in_dquote) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005399 /* dest.o_quoted = 1; - already is (see below) */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005400 if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005401 goto parse_error;
5402 }
5403 /* We reached closing '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005404 is_in_dquote = 0;
5405 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005406 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005407 debug_printf_parse(": ch=%c (%d) escape=%d\n",
5408 ch, ch, dest.o_escape);
5409 if (ch == EOF) {
5410 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005411
5412 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005413 syntax_error_unterm_str("here document");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005414 xfunc_die();
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005415 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005416 if (done_word(&dest, &ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005417 xfunc_die();
Denis Vlasenko55789c62008-06-18 16:30:42 +00005418 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005419 o_free(&dest);
5420 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005421 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005422 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005423 /* (this makes bare "&" cmd a no-op.
5424 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005425 if (pi->num_cmds == 0
5426 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
5427 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005428 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005429 pi = NULL;
5430 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005431#if !BB_MMU
5432 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5433 if (pstring)
5434 *pstring = ctx.as_string.data;
5435 else
5436 o_free_unsafe(&ctx.as_string);
5437#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005438 debug_leave();
5439 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005440 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005441 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005442 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005443 is_ifs = strchr(G.ifs, ch);
5444 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00005445 "\\$\"" IF_HUSH_TICK("`") /* always special */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005446 , ch);
5447
5448 if (!is_special && !is_ifs) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005449 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005450 o_addQchr(&dest, ch);
5451 if ((dest.o_assignment == MAYBE_ASSIGNMENT
5452 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00005453 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005454 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00005455 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005456 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005457 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005458 continue;
5459 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00005460
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005461 if (is_ifs) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005462 if (done_word(&dest, &ctx)) {
5463 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00005464 }
Denis Vlasenko37181682009-04-03 03:19:15 +00005465 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00005466#if ENABLE_HUSH_CASE
5467 /* "case ... in <newline> word) ..." -
5468 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005469 if (ctx.command->argv == NULL
5470 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00005471 ) {
5472 continue;
5473 }
5474#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00005475 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005476 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005477 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
5478 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005479 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005480 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005481 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005482 heredoc_cnt = 0;
5483 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005484 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005485 ch = ';';
Denis Vlasenko7c986122009-04-04 12:15:42 +00005486 /* note: if (is_ifs) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005487 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005488 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005489 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00005490
5491 /* "cmd}" or "cmd }..." without semicolon or &:
5492 * } is an ordinary char in this case, even inside { cmd; }
5493 * Pathological example: { ""}; } should exec "}" cmd
5494 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00005495 if (ch == '}') {
5496 if (!IS_NULL_CMD(ctx.command) /* cmd } */
5497 || dest.length != 0 /* word} */
5498 || dest.o_quoted /* ""} */
5499 ) {
5500 goto ordinary_char;
5501 }
5502 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
5503 goto skip_end_trigger;
5504 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00005505 }
5506
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005507 if (end_trigger && end_trigger == ch
5508 && (heredoc_cnt == 0 || end_trigger != ';')
5509 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005510 if (heredoc_cnt) {
5511 /* This is technically valid:
5512 * { cat <<HERE; }; echo Ok
5513 * heredoc
5514 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005515 * HERE
5516 * but we don't support this.
5517 * We require heredoc to be in enclosing {}/(),
5518 * if any.
5519 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005520 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005521 goto parse_error;
5522 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005523 if (done_word(&dest, &ctx)) {
5524 goto parse_error;
5525 }
5526 done_pipe(&ctx, PIPE_SEQ);
5527 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005528 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00005529 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005530 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00005531 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005532 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005533#if !BB_MMU
5534 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5535 if (pstring)
5536 *pstring = ctx.as_string.data;
5537 else
5538 o_free_unsafe(&ctx.as_string);
5539#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005540 debug_leave();
5541 debug_printf_parse("parse_stream return %p: "
5542 "end_trigger char found\n",
5543 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005544 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005545 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005546 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00005547 skip_end_trigger:
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005548 if (is_ifs)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005549 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005550
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005551 next = '\0';
5552 if (ch != '\n') {
5553 next = i_peek(input);
5554 }
5555
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005556 /* Catch <, > before deciding whether this word is
5557 * an assignment. a=1 2>z b=2: b=2 is still assignment */
5558 switch (ch) {
5559 case '>':
5560 redir_fd = redirect_opt_num(&dest);
5561 if (done_word(&dest, &ctx)) {
5562 goto parse_error;
5563 }
5564 redir_style = REDIRECT_OVERWRITE;
5565 if (next == '>') {
5566 redir_style = REDIRECT_APPEND;
5567 ch = i_getch(input);
5568 nommu_addchr(&ctx.as_string, ch);
5569 }
5570#if 0
5571 else if (next == '(') {
5572 syntax_error(">(process) not supported");
5573 goto parse_error;
5574 }
5575#endif
5576 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5577 goto parse_error;
5578 continue; /* back to top of while (1) */
5579 case '<':
5580 redir_fd = redirect_opt_num(&dest);
5581 if (done_word(&dest, &ctx)) {
5582 goto parse_error;
5583 }
5584 redir_style = REDIRECT_INPUT;
5585 if (next == '<') {
5586 redir_style = REDIRECT_HEREDOC;
5587 heredoc_cnt++;
5588 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
5589 ch = i_getch(input);
5590 nommu_addchr(&ctx.as_string, ch);
5591 } else if (next == '>') {
5592 redir_style = REDIRECT_IO;
5593 ch = i_getch(input);
5594 nommu_addchr(&ctx.as_string, ch);
5595 }
5596#if 0
5597 else if (next == '(') {
5598 syntax_error("<(process) not supported");
5599 goto parse_error;
5600 }
5601#endif
5602 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5603 goto parse_error;
5604 continue; /* back to top of while (1) */
5605 }
5606
5607 if (dest.o_assignment == MAYBE_ASSIGNMENT
5608 /* check that we are not in word in "a=1 2>word b=1": */
5609 && !ctx.pending_redirect
5610 ) {
5611 /* ch is a special char and thus this word
5612 * cannot be an assignment */
5613 dest.o_assignment = NOT_ASSIGNMENT;
5614 }
5615
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005616 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00005617 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005618 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005619 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005620 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005621 if (ch == EOF || ch == '\n')
5622 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005623 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005624 /* note: we do not add it to &ctx.as_string */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005625 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005626 nommu_addchr(&ctx.as_string, '\n');
Eric Andersen25f27032001-04-26 23:22:31 +00005627 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005628 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005629 }
5630 break;
5631 case '\\':
5632 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005633 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005634 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00005635 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005636 o_addchr(&dest, '\\');
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005637 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005638 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005639 o_addchr(&dest, ch);
5640 /* Example: echo Hello \2>file
5641 * we need to know that word 2 is quoted */
5642 dest.o_quoted = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005643 break;
5644 case '$':
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005645 if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005646 debug_printf_parse("parse_stream parse error: "
5647 "handle_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005648 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005649 }
Eric Andersen25f27032001-04-26 23:22:31 +00005650 break;
5651 case '\'':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005652 dest.o_quoted = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005653 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005654 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005655 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005656 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005657 /*xfunc_die(); - redundant */
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005658 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005659 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005660 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005661 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005662 if (dest.o_assignment == NOT_ASSIGNMENT)
5663 o_addqchr(&dest, ch);
Denis Vlasenko55789c62008-06-18 16:30:42 +00005664 else
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005665 o_addchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005666 }
Eric Andersen25f27032001-04-26 23:22:31 +00005667 break;
5668 case '"':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005669 dest.o_quoted = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005670 is_in_dquote ^= 1; /* invert */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005671 if (dest.o_assignment == NOT_ASSIGNMENT)
5672 dest.o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005673 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005674#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005675 case '`': {
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005676#if !BB_MMU
5677 int pos;
5678#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005679 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5680 o_addchr(&dest, '`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005681#if !BB_MMU
5682 pos = dest.length;
5683#endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005684 add_till_backquote(&dest, input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005685#if !BB_MMU
5686 o_addstr(&ctx.as_string, dest.data + pos);
5687 o_addchr(&ctx.as_string, '`');
5688#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005689 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5690 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00005691 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005692 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005693#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005694 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005695#if ENABLE_HUSH_CASE
5696 case_semi:
5697#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005698 if (done_word(&dest, &ctx)) {
5699 goto parse_error;
5700 }
5701 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005702#if ENABLE_HUSH_CASE
5703 /* Eat multiple semicolons, detect
5704 * whether it means something special */
5705 while (1) {
5706 ch = i_peek(input);
5707 if (ch != ';')
5708 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005709 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005710 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005711 if (ctx.ctx_res_w == RES_CASEI) {
5712 ctx.ctx_dsemicolon = 1;
5713 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005714 break;
5715 }
5716 }
5717#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005718 new_cmd:
5719 /* We just finished a cmd. New one may start
5720 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005721 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00005722 break;
5723 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005724 if (done_word(&dest, &ctx)) {
5725 goto parse_error;
5726 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005727 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005728 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005729 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005730 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005731 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005732 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005733 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005734 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005735 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005736 if (done_word(&dest, &ctx)) {
5737 goto parse_error;
5738 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005739#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005740 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005741 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005742#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005743 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005744 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005745 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005746 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005747 } else {
5748 /* we could pick up a file descriptor choice here
5749 * with redirect_opt_num(), but bash doesn't do it.
5750 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005751 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005752 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005753 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005754 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005755#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005756 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005757 if (ctx.ctx_res_w == RES_MATCH
5758 && ctx.command->argv == NULL /* not (word|(... */
5759 && dest.length == 0 /* not word(... */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005760 && dest.o_quoted == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005761 ) {
5762 continue;
5763 }
5764#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005765 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005766 if (parse_group(&dest, &ctx, input, ch) != 0) {
5767 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005768 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005769 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005770 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005771#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005772 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005773 goto case_semi;
5774#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005775 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005776 /* proper use of this character is caught by end_trigger:
5777 * if we see {, we call parse_group(..., end_trigger='}')
5778 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005779 syntax_error_unexpected_ch(ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005780 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005781 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005782 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005783 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005784 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005785 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005786
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005787 parse_error:
5788 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005789 struct parse_context *pctx;
5790 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005791
5792 /* Clean up allocated tree.
5793 * Samples for finding leaks on syntax error recovery path.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005794 * Run them from interactive shell, watch pmap `pidof hush`.
5795 * while if false; then false; fi do break; done
5796 * (bash accepts it)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005797 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005798 * Samples to catch leaks at execution:
5799 * while if (true | {true;}); then echo ok; fi; do break; done
5800 * 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 +00005801 */
5802 pctx = &ctx;
5803 do {
5804 /* Update pipe/command counts,
5805 * otherwise freeing may miss some */
5806 done_pipe(pctx, PIPE_SEQ);
5807 debug_printf_clean("freeing list %p from ctx %p\n",
5808 pctx->list_head, pctx);
5809 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005810 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005811 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005812#if !BB_MMU
5813 o_free_unsafe(&pctx->as_string);
5814#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005815 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005816 if (pctx != &ctx) {
5817 free(pctx);
5818 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005819 IF_HAS_KEYWORDS(pctx = p2;)
5820 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005821 /* Free text, clear all dest fields */
5822 o_free(&dest);
5823 /* If we are not in top-level parse, we return,
5824 * our caller will propagate error.
5825 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005826 if (end_trigger != ';') {
5827#if !BB_MMU
5828 if (pstring)
5829 *pstring = NULL;
5830#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005831 debug_leave();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005832 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005833 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005834 /* Discard cached input, force prompt */
5835 input->p = NULL;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00005836 IF_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005837 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005838 }
Eric Andersen25f27032001-04-26 23:22:31 +00005839}
5840
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005841/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005842 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
5843 * end_trigger controls how often we stop parsing
5844 * NUL: parse all, execute, return
5845 * ';': parse till ';' or newline, execute, repeat till EOF
5846 */
5847static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005848{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005849 while (1) {
5850 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005851
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005852 pipe_list = parse_stream(NULL, inp, end_trigger);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005853 if (!pipe_list) /* EOF */
5854 break;
5855 debug_print_tree(pipe_list, 0);
5856 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
5857 run_and_free_list(pipe_list);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005858 }
Eric Andersen25f27032001-04-26 23:22:31 +00005859}
5860
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005861static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005862{
5863 struct in_str input;
5864 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005865 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00005866}
5867
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005868static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00005869{
Eric Andersen25f27032001-04-26 23:22:31 +00005870 struct in_str input;
5871 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005872 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00005873}
5874
Denis Vlasenkof9375282009-04-05 19:13:39 +00005875/* Called a few times only (or even once if "sh -c") */
5876static void block_signals(int second_time)
Eric Andersen52a97ca2001-06-22 06:49:26 +00005877{
Denis Vlasenkof9375282009-04-05 19:13:39 +00005878 unsigned sig;
5879 unsigned mask;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005880
Denis Vlasenkof9375282009-04-05 19:13:39 +00005881 mask = (1 << SIGQUIT);
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00005882 if (G_interactive_fd)
5883 mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS;
Denis Vlasenkof9375282009-04-05 19:13:39 +00005884 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00005885
Denis Vlasenkof9375282009-04-05 19:13:39 +00005886 if (!second_time)
5887 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
5888 sig = 0;
5889 while (mask) {
5890 if (mask & 1)
5891 sigaddset(&G.blocked_set, sig);
5892 mask >>= 1;
5893 sig++;
5894 }
5895 sigdelset(&G.blocked_set, SIGCHLD);
5896
5897 sigprocmask(SIG_SETMASK, &G.blocked_set,
5898 second_time ? NULL : &G.inherited_set);
5899 /* POSIX allows shell to re-enable SIGCHLD
5900 * even if it was SIG_IGN on entry */
5901// G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
5902 if (!second_time)
5903 signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler);
5904}
5905
5906#if ENABLE_HUSH_JOB
5907/* helper */
5908static void maybe_set_to_sigexit(int sig)
5909{
5910 void (*handler)(int);
5911 /* non_DFL_mask'ed signals are, well, masked,
5912 * no need to set handler for them.
5913 */
5914 if (!((G.non_DFL_mask >> sig) & 1)) {
5915 handler = signal(sig, sigexit);
5916 if (handler == SIG_IGN) /* oops... restore back to IGN! */
5917 signal(sig, handler);
5918 }
5919}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005920/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005921static void set_fatal_handlers(void)
5922{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00005923 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005924 if (HUSH_DEBUG) {
5925 maybe_set_to_sigexit(SIGILL );
5926 maybe_set_to_sigexit(SIGFPE );
5927 maybe_set_to_sigexit(SIGBUS );
5928 maybe_set_to_sigexit(SIGSEGV);
5929 maybe_set_to_sigexit(SIGTRAP);
5930 } /* else: hush is perfect. what SEGV? */
5931 maybe_set_to_sigexit(SIGABRT);
5932 /* bash 3.2 seems to handle these just like 'fatal' ones */
5933 maybe_set_to_sigexit(SIGPIPE);
5934 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00005935 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00005936 * if we aren't interactive... but in this case
5937 * we never want to restore pgrp on exit, and this fn is not called */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00005938 /*maybe_set_to_sigexit(SIGHUP );*/
Denis Vlasenkof9375282009-04-05 19:13:39 +00005939 /*maybe_set_to_sigexit(SIGTERM);*/
5940 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00005941}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00005942#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00005943
Denis Vlasenkod5762932009-03-31 11:22:57 +00005944static int set_mode(const char cstate, const char mode)
5945{
5946 int state = (cstate == '-' ? 1 : 0);
5947 switch (mode) {
5948 case 'n': G.fake_mode = state; break;
5949 case 'x': /*G.debug_mode = state;*/ break;
5950 default: return EXIT_FAILURE;
5951 }
5952 return EXIT_SUCCESS;
5953}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005954
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00005955int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00005956int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00005957{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005958 static const struct variable const_shell_ver = {
5959 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005960 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005961 .max_len = 1, /* 0 can provoke free(name) */
5962 .flg_export = 1,
5963 .flg_read_only = 1,
5964 };
Denis Vlasenkof9375282009-04-05 19:13:39 +00005965 int signal_mask_is_inited = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00005966 int opt;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005967 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005968 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00005969
Denis Vlasenko574f2f42008-02-27 18:41:59 +00005970 INIT_G();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005971 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005972 G.last_exitcode = EXIT_SUCCESS;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005973#if !BB_MMU
5974 G.argv0_for_re_execing = argv[0];
5975#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005976 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005977 G.shell_ver = const_shell_ver; /* copying struct here */
5978 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005979 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005980 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
5981 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005982 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005983 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005984 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005985 if (e) while (*e) {
5986 char *value = strchr(*e, '=');
5987 if (value) { /* paranoia */
5988 cur_var->next = xzalloc(sizeof(*cur_var));
5989 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00005990 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005991 cur_var->max_len = strlen(*e);
5992 cur_var->flg_export = 1;
5993 }
5994 e++;
5995 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005996 debug_printf_env("putenv '%s'\n", hush_version_str);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005997 putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
Denis Vlasenko38f63192007-01-22 09:03:07 +00005998#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00005999 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00006000#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00006001 G.global_argc = argc;
6002 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00006003 /* Initialize some more globals to non-zero values */
6004 set_cwd();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006005#if ENABLE_HUSH_INTERACTIVE
Mike Frysingerec2c6552009-03-28 12:24:44 +00006006 if (ENABLE_FEATURE_EDITING)
6007 cmdedit_set_initial_prompt();
Denis Vlasenko87a86552008-07-29 19:43:10 +00006008 G.PS2 = "> ";
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006009#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00006010
Denis Vlasenkoed782372009-04-10 00:45:02 +00006011 if (setjmp(die_jmp)) {
6012 /* xfunc has failed! die die die */
6013 /* no EXIT traps, this is an escape hatch! */
6014 G.exiting = 1;
6015 hush_exit(xfunc_error_retval);
6016 }
6017
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006018 /* Shell is non-interactive at first. We need to call
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006019 * block_signals(0) if we are going to execute "sh <script>",
6020 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006021 * If we later decide that we are interactive, we run block_signals(0)
6022 * (or re-run block_signals(1) if we ran block_signals(0) before)
6023 * in order to intercept (more) signals.
6024 */
6025
6026 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00006027 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006028 while (1) {
6029 opt = getopt(argc, argv, "c:xins"
6030#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00006031 "<:$:R:V:"
6032# if ENABLE_HUSH_FUNCTIONS
6033 "F:"
6034# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006035#endif
6036 );
6037 if (opt <= 0)
6038 break;
Eric Andersen25f27032001-04-26 23:22:31 +00006039 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006040 case 'c':
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006041 if (!G.root_pid)
6042 G.root_pid = getpid();
Denis Vlasenko87a86552008-07-29 19:43:10 +00006043 G.global_argv = argv + optind;
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00006044 if (!argv[optind]) {
6045 /* -c 'script' (no params): prevent empty $0 */
6046 *--G.global_argv = argv[0];
6047 optind--;
6048 } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */
Denis Vlasenko87a86552008-07-29 19:43:10 +00006049 G.global_argc = argc - optind;
Denis Vlasenkof9375282009-04-05 19:13:39 +00006050 block_signals(0); /* 0: called 1st time */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006051 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006052 goto final_return;
6053 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00006054 /* Well, we cannot just declare interactiveness,
6055 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006056 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006057 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00006058 case 's':
6059 /* "-s" means "read from stdin", but this is how we always
6060 * operate, so simply do nothing here. */
6061 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006062#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00006063 case '<': /* "big heredoc" support */
6064 full_write(STDOUT_FILENO, optarg, strlen(optarg));
6065 _exit(0);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006066 case '$':
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006067 G.root_pid = bb_strtou(optarg, &optarg, 16);
6068 optarg++;
6069 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
6070 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006071 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006072# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006073 optarg++;
6074 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006075# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006076 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006077 case 'R':
6078 case 'V':
6079 set_local_var(xstrdup(optarg), 0, opt == 'R');
6080 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00006081# if ENABLE_HUSH_FUNCTIONS
6082 case 'F': {
6083 struct function *funcp = new_function(optarg);
6084 /* funcp->name is already set to optarg */
6085 /* funcp->body is set to NULL. It's a special case. */
6086 funcp->body_as_string = argv[optind];
6087 optind++;
6088 break;
6089 }
6090# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006091#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006092 case 'n':
6093 case 'x':
Denis Vlasenkod5762932009-03-31 11:22:57 +00006094 if (!set_mode('-', opt))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006095 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006096 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006097#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006098 fprintf(stderr, "Usage: sh [FILE]...\n"
6099 " or: sh -c command [args]...\n\n");
6100 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006101#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006102 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006103#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006104 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006105 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006106
6107 if (!G.root_pid)
6108 G.root_pid = getpid();
Denis Vlasenkof9375282009-04-05 19:13:39 +00006109
6110 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006111 if (argv[0] && argv[0][0] == '-') {
6112 FILE *input;
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00006113 /* TODO: what should argv be while sourcing /etc/profile? */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006114 debug_printf("sourcing /etc/profile\n");
6115 input = fopen_for_read("/etc/profile");
6116 if (input != NULL) {
6117 close_on_exec_on(fileno(input));
Denis Vlasenkof9375282009-04-05 19:13:39 +00006118 block_signals(0); /* 0: called 1st time */
6119 signal_mask_is_inited = 1;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006120 parse_and_run_file(input);
6121 fclose(input);
6122 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006123 /* bash: after sourcing /etc/profile,
6124 * tries to source (in the given order):
6125 * ~/.bash_profile, ~/.bash_login, ~/.profile,
6126 * stopping of first found. --noprofile turns this off.
6127 * bash also sources ~/.bash_logout on exit.
6128 * If called as sh, skips .bash_XXX files.
6129 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006130 }
6131
Denis Vlasenkof9375282009-04-05 19:13:39 +00006132 if (argv[optind]) {
6133 FILE *input;
6134 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006135 * "bash <script>" (which is never interactive (unless -i?))
6136 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00006137 * If called as sh, does the same but with $ENV.
6138 */
6139 debug_printf("running script '%s'\n", argv[optind]);
6140 G.global_argv = argv + optind;
6141 G.global_argc = argc - optind;
6142 input = xfopen_for_read(argv[optind]);
6143 close_on_exec_on(fileno(input));
6144 if (!signal_mask_is_inited)
6145 block_signals(0); /* 0: called 1st time */
6146 parse_and_run_file(input);
6147#if ENABLE_FEATURE_CLEAN_UP
6148 fclose(input);
6149#endif
6150 goto final_return;
6151 }
6152
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006153 /* Up to here, shell was non-interactive. Now it may become one.
6154 * NB: don't forget to (re)run block_signals(0/1) as needed.
6155 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006156
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006157 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00006158 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00006159 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00006160 * no arguments remaining or the -s flag given
6161 * standard input is a terminal
6162 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00006163 * Refer to Posix.2, the description of the 'sh' utility.
6164 */
6165#if ENABLE_HUSH_JOB
6166 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006167 G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
Denis Vlasenkof9375282009-04-05 19:13:39 +00006168 debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006169//TODO: "interactive" and "have job control" are two different things.
6170//If tcgetpgrp fails here, "have job control" is false, but "interactive"
6171//should stay on! Currently, we mix these into one.
Denis Vlasenko87a86552008-07-29 19:43:10 +00006172 if (G.saved_tty_pgrp >= 0) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006173 /* try to dup stdin to high fd#, >= 255 */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006174 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6175 if (G_interactive_fd < 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006176 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006177 G_interactive_fd = dup(STDIN_FILENO);
6178 if (G_interactive_fd < 0)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006179 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006180 G_interactive_fd = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006181 }
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006182// TODO: track & disallow any attempts of user
6183// to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006184 }
Eric Andersen25f27032001-04-26 23:22:31 +00006185 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006186 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006187 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006188 pid_t shell_pgrp;
6189
6190 /* We are indeed interactive shell, and we will perform
6191 * job control. Setting up for that. */
6192
6193 close_on_exec_on(G_interactive_fd);
6194 /* If we were run as 'hush &', sleep until we are
6195 * in the foreground (tty pgrp == our pgrp).
6196 * If we get started under a job aware app (like bash),
6197 * make sure we are now in charge so we don't fight over
6198 * who gets the foreground */
6199 while (1) {
6200 shell_pgrp = getpgrp();
6201 G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
6202 if (G.saved_tty_pgrp == shell_pgrp)
6203 break;
6204 /* send TTIN to ourself (should stop us) */
6205 kill(- shell_pgrp, SIGTTIN);
6206 }
6207 /* Block some signals */
6208 block_signals(signal_mask_is_inited);
6209 /* Set other signals to restore saved_tty_pgrp */
6210 set_fatal_handlers();
6211 /* Put ourselves in our own process group */
6212 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
6213 /* Grab control of the terminal */
6214 tcsetpgrp(G_interactive_fd, getpid());
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00006215 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00006216 * (we reset die_sleep = 0 whereever we [v]fork) */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006217 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006218 } else if (!signal_mask_is_inited) {
6219 block_signals(0); /* 0: called 1st time */
6220 } /* else: block_signals(0) was done before */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006221#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00006222 /* No job control compiled in, only prompt/line editing */
6223 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006224 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6225 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006226 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006227 G_interactive_fd = dup(STDIN_FILENO);
6228 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006229 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006230 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006231 }
6232 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006233 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006234 close_on_exec_on(G_interactive_fd);
6235 block_signals(signal_mask_is_inited);
6236 } else if (!signal_mask_is_inited) {
6237 block_signals(0);
6238 }
6239#else
6240 /* We have interactiveness code disabled */
6241 if (!signal_mask_is_inited) {
6242 block_signals(0);
6243 }
6244#endif
6245 /* bash:
6246 * if interactive but not a login shell, sources ~/.bashrc
6247 * (--norc turns this off, --rcfile <file> overrides)
6248 */
6249
6250 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Mike Frysinger258275d2009-04-05 21:19:43 +00006251 printf("\n\n%s hush - the humble shell\n", bb_banner);
Mike Frysingerb2705e12009-03-23 08:44:02 +00006252 printf("Enter 'help' for a list of built-in commands.\n\n");
6253 }
6254
Denis Vlasenkof9375282009-04-05 19:13:39 +00006255 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00006256
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006257 final_return:
Denis Vlasenko38f63192007-01-22 09:03:07 +00006258#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko87a86552008-07-29 19:43:10 +00006259 if (G.cwd != bb_msg_unknown)
6260 free((char*)G.cwd);
6261 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006262 while (cur_var) {
6263 struct variable *tmp = cur_var;
6264 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00006265 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006266 cur_var = cur_var->next;
6267 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00006268 }
Eric Andersen25f27032001-04-26 23:22:31 +00006269#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006270 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00006271}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00006272
6273
6274#if ENABLE_LASH
6275int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
6276int lash_main(int argc, char **argv)
6277{
6278 //bb_error_msg("lash is deprecated, please use hush instead");
6279 return hush_main(argc, argv);
6280}
6281#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006282
6283
6284/*
6285 * Built-ins
6286 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006287static int builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006288{
6289 return 0;
6290}
6291
6292static int builtin_test(char **argv)
6293{
6294 int argc = 0;
6295 while (*argv) {
6296 argc++;
6297 argv++;
6298 }
6299 return test_main(argc, argv - argc);
6300}
6301
6302static int builtin_echo(char **argv)
6303{
6304 int argc = 0;
6305 while (*argv) {
6306 argc++;
6307 argv++;
6308 }
6309 return echo_main(argc, argv - argc);
6310}
6311
6312static int builtin_eval(char **argv)
6313{
6314 int rcode = EXIT_SUCCESS;
6315
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006316 if (*++argv) {
6317 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006318 /* bash:
6319 * eval "echo Hi; done" ("done" is syntax error):
6320 * "echo Hi" will not execute too.
6321 */
6322 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006323 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006324 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006325 }
6326 return rcode;
6327}
6328
6329static int builtin_cd(char **argv)
6330{
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006331 const char *newdir = argv[1];
6332 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006333 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006334 * bash says "bash: cd: HOME not set" and does nothing
6335 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006336 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006337 newdir = getenv("HOME") ? : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006338 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006339 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006340 /* Mimic bash message exactly */
6341 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006342 return EXIT_FAILURE;
6343 }
6344 set_cwd();
6345 return EXIT_SUCCESS;
6346}
6347
6348static int builtin_exec(char **argv)
6349{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006350 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006351 return EXIT_SUCCESS; /* bash does this */
6352 {
6353#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00006354 nommu_save_t dummy;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006355#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006356 /* TODO: if exec fails, bash does NOT exit! We do... */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006357 pseudo_exec_argv(&dummy, argv, 0, NULL);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006358 /* never returns */
6359 }
6360}
6361
6362static int builtin_exit(char **argv)
6363{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00006364 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00006365
6366 /* interactive bash:
6367 * # trap "echo EEE" EXIT
6368 * # exit
6369 * exit
6370 * There are stopped jobs.
6371 * (if there are _stopped_ jobs, running ones don't count)
6372 * # exit
6373 * exit
6374 # EEE (then bash exits)
6375 *
6376 * we can use G.exiting = -1 as indicator "last cmd was exit"
6377 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00006378
6379 /* note: EXIT trap is run by hush_exit */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006380 if (*++argv == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006381 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006382 /* mimic bash: exit 123abc == exit 255 + error msg */
6383 xfunc_error_retval = 255;
6384 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006385 hush_exit(xatoi(*argv) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006386}
6387
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006388static void print_escaped(const char *s)
6389{
6390 do {
6391 if (*s != '\'') {
6392 const char *p;
6393
6394 p = strchrnul(s, '\'');
6395 /* print 'xxxx', possibly just '' */
6396 printf("'%.*s'", (int)(p - s), s);
6397 if (*p == '\0')
6398 break;
6399 s = p;
6400 }
6401 /* s points to '; print "'''...'''" */
6402 putchar('"');
6403 do putchar('\''); while (*++s == '\'');
6404 putchar('"');
6405 } while (*s);
6406}
6407
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006408static int builtin_export(char **argv)
6409{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006410 unsigned opt_unexport;
6411
6412 if (argv[1] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006413 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006414 if (e) {
6415 while (*e) {
6416#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006417 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006418#else
6419 /* ash emits: export VAR='VAL'
6420 * bash: declare -x VAR="VAL"
6421 * we follow ash example */
6422 const char *s = *e++;
6423 const char *p = strchr(s, '=');
6424
6425 if (!p) /* wtf? take next variable */
6426 continue;
6427 /* export var= */
6428 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006429 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006430 putchar('\n');
6431#endif
6432 }
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006433 /*fflush(stdout); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006434 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006435 return EXIT_SUCCESS;
6436 }
6437
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006438#if ENABLE_HUSH_EXPORT_N
6439 opt_unexport = getopt32(argv, "+n"); /* "+": stop at 1st non-option */
6440 argv += optind;
6441#else
6442 opt_unexport = 0;
6443 argv++;
6444#endif
6445
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006446 do {
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006447 char *name = *argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006448
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006449 /* So far we do not check that name is valid (TODO?) */
6450
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006451 if (strchr(name, '=') == NULL) {
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006452 struct variable *var;
6453
6454 var = get_local_var(name);
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006455 if (opt_unexport) {
6456 /* export -n NAME (without =VALUE) */
6457 if (var) {
6458 var->flg_export = 0;
6459 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
6460 unsetenv(name);
6461 } /* else: export -n NOT_EXISTING_VAR: no-op */
6462 continue;
6463 }
6464 /* export NAME (without =VALUE) */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006465 if (var) {
6466 var->flg_export = 1;
6467 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
6468 putenv(var->varstr);
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006469 continue;
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006470 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006471 /* Exporting non-existing variable.
6472 * bash does not put it in environment,
6473 * but remembers that it is exported,
6474 * and does put it in env when it is set later.
6475 * We just set it to "" and export. */
6476 name = xasprintf("%s=", name);
6477 } else {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006478 /* (Un)exporting NAME=VALUE */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006479 name = xstrdup(name);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006480 }
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006481 set_local_var(name,
6482 /*export:*/ (opt_unexport ? -1 : 1),
6483 /*readonly:*/ 0
6484 );
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006485 } while (*++argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006486
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006487 return EXIT_SUCCESS;
6488}
6489
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006490static int builtin_trap(char **argv)
6491{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006492 int sig;
6493 char *new_cmd;
6494
6495 if (!G.traps)
6496 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
6497
6498 argv++;
6499 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00006500 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006501 /* No args: print all trapped */
6502 for (i = 0; i < NSIG; ++i) {
6503 if (G.traps[i]) {
6504 printf("trap -- ");
6505 print_escaped(G.traps[i]);
6506 printf(" %s\n", get_signame(i));
6507 }
6508 }
6509 /*fflush(stdout); - done after each builtin anyway */
6510 return EXIT_SUCCESS;
6511 }
6512
6513 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006514 /* If first arg is a number: reset all specified signals */
6515 sig = bb_strtou(*argv, NULL, 10);
6516 if (errno == 0) {
6517 int ret;
6518 process_sig_list:
6519 ret = EXIT_SUCCESS;
6520 while (*argv) {
6521 sig = get_signum(*argv++);
6522 if (sig < 0 || sig >= NSIG) {
6523 ret = EXIT_FAILURE;
6524 /* Mimic bash message exactly */
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00006525 bb_perror_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006526 continue;
6527 }
6528
6529 free(G.traps[sig]);
6530 G.traps[sig] = xstrdup(new_cmd);
6531
6532 debug_printf("trap: setting SIG%s (%i) to '%s'",
6533 get_signame(sig), sig, G.traps[sig]);
6534
6535 /* There is no signal for 0 (EXIT) */
6536 if (sig == 0)
6537 continue;
6538
6539 if (new_cmd) {
6540 sigaddset(&G.blocked_set, sig);
6541 } else {
6542 /* There was a trap handler, we are removing it
6543 * (if sig has non-DFL handling,
6544 * we don't need to do anything) */
6545 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
6546 continue;
6547 sigdelset(&G.blocked_set, sig);
6548 }
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006549 }
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00006550 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006551 return ret;
6552 }
6553
6554 if (!argv[1]) { /* no second arg */
6555 bb_error_msg("trap: invalid arguments");
6556 return EXIT_FAILURE;
6557 }
6558
6559 /* First arg is "-": reset all specified to default */
6560 /* First arg is "--": skip it, the rest is "handler SIGs..." */
6561 /* Everything else: set arg as signal handler
6562 * (includes "" case, which ignores signal) */
6563 if (argv[0][0] == '-') {
6564 if (argv[0][1] == '\0') { /* "-" */
6565 /* new_cmd remains NULL: "reset these sigs" */
6566 goto reset_traps;
6567 }
6568 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
6569 argv++;
6570 }
6571 /* else: "-something", no special meaning */
6572 }
6573 new_cmd = *argv;
6574 reset_traps:
6575 argv++;
6576 goto process_sig_list;
6577}
6578
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006579#if ENABLE_HUSH_JOB
6580/* built-in 'fg' and 'bg' handler */
6581static int builtin_fg_bg(char **argv)
6582{
6583 int i, jobnum;
6584 struct pipe *pi;
6585
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006586 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006587 return EXIT_FAILURE;
6588 /* If they gave us no args, assume they want the last backgrounded task */
6589 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006590 for (pi = G.job_list; pi; pi = pi->next) {
6591 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006592 goto found;
6593 }
6594 }
6595 bb_error_msg("%s: no current job", argv[0]);
6596 return EXIT_FAILURE;
6597 }
6598 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
6599 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
6600 return EXIT_FAILURE;
6601 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006602 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006603 if (pi->jobid == jobnum) {
6604 goto found;
6605 }
6606 }
6607 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
6608 return EXIT_FAILURE;
6609 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006610 /* TODO: bash prints a string representation
6611 * of job being foregrounded (like "sleep 1 | cat") */
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006612 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006613 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006614 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006615 }
6616
6617 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006618 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
6619 for (i = 0; i < pi->num_cmds; i++) {
6620 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
6621 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006622 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006623 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006624
6625 i = kill(- pi->pgrp, SIGCONT);
6626 if (i < 0) {
6627 if (errno == ESRCH) {
6628 delete_finished_bg_job(pi);
6629 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006630 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006631 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006632 }
6633
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006634 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006635 remove_bg_job(pi);
6636 return checkjobs_and_fg_shell(pi);
6637 }
6638 return EXIT_SUCCESS;
6639}
6640#endif
6641
6642#if ENABLE_HUSH_HELP
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006643static int builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006644{
6645 const struct built_in_command *x;
6646
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006647 printf("\n"
6648 "Built-in commands:\n"
6649 "------------------\n");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006650 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
6651 printf("%s\t%s\n", x->cmd, x->descr);
6652 }
6653 printf("\n\n");
6654 return EXIT_SUCCESS;
6655}
6656#endif
6657
6658#if ENABLE_HUSH_JOB
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006659static int builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006660{
6661 struct pipe *job;
6662 const char *status_string;
6663
Denis Vlasenko87a86552008-07-29 19:43:10 +00006664 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006665 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006666 status_string = "Stopped";
6667 else
6668 status_string = "Running";
6669
6670 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
6671 }
6672 return EXIT_SUCCESS;
6673}
6674#endif
6675
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00006676#if HUSH_DEBUG
6677static int builtin_memleak(char **argv UNUSED_PARAM)
6678{
6679 void *p;
6680 unsigned long l;
6681
6682 /* Crude attempt to find where "free memory" starts,
6683 * sans fragmentation. */
6684 p = malloc(240);
6685 l = (unsigned long)p;
6686 free(p);
6687 p = malloc(3400);
6688 if (l < (unsigned long)p) l = (unsigned long)p;
6689 free(p);
6690
6691 if (!G.memleak_value)
6692 G.memleak_value = l;
6693
6694 l -= G.memleak_value;
6695 if ((long)l < 0)
6696 l = 0;
6697 l /= 1024;
6698 if (l > 127)
6699 l = 127;
6700
6701 /* Exitcode is "how many kilobytes we leaked since 1st call" */
6702 return l;
6703}
6704#endif
6705
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006706static int builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006707{
6708 puts(set_cwd());
6709 return EXIT_SUCCESS;
6710}
6711
6712static int builtin_read(char **argv)
6713{
6714 char *string;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006715 const char *name = "REPLY";
6716
6717 if (argv[1]) {
6718 name = argv[1];
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00006719 /* bash (3.2.33(1)) bug: "read 0abcd" will execute,
6720 * and _after_ that_ it will complain */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006721 if (!is_well_formed_var_name(name, '\0')) {
6722 /* Mimic bash message */
6723 bb_error_msg("read: '%s': not a valid identifier", name);
6724 return 1;
6725 }
6726 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006727
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00006728//TODO: bash unbackslashes input, splits words and puts them in argv[i]
6729
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006730 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006731 return set_local_var(string, 0, 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006732}
6733
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006734/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
6735 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006736 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006737 * set [-abCefhmnuvx] [-o option] [argument...]
6738 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006739 * set -- [argument...]
6740 * set -o
6741 * set +o
6742 * Implementations shall support the options in both their hyphen and
6743 * plus-sign forms. These options can also be specified as options to sh.
6744 * Examples:
6745 * Write out all variables and their values: set
6746 * Set $1, $2, and $3 and set "$#" to 3: set c a b
6747 * Turn on the -x and -v options: set -xv
6748 * Unset all positional parameters: set --
6749 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
6750 * Set the positional parameters to the expansion of x, even if x expands
6751 * with a leading '-' or '+': set -- $x
6752 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006753 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006754 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006755static int builtin_set(char **argv)
6756{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006757 int n;
6758 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006759 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006760
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006761 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006762 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00006763 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006764 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006765 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006766 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006767
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006768 do {
6769 if (!strcmp(arg, "--")) {
6770 ++argv;
6771 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006772 }
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00006773 if (arg[0] != '+' && arg[0] != '-')
6774 break;
6775 for (n = 1; arg[n]; ++n)
6776 if (set_mode(arg[0], arg[n]))
6777 goto error;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006778 } while ((arg = *++argv) != NULL);
6779 /* Now argv[0] is 1st argument */
6780
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006781 if (arg == NULL)
6782 return EXIT_SUCCESS;
6783 set_argv:
6784
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006785 /* NB: G.global_argv[0] ($0) is never freed/changed */
6786 g_argv = G.global_argv;
6787 if (G.global_args_malloced) {
6788 pp = g_argv;
6789 while (*++pp)
6790 free(*pp);
6791 g_argv[1] = NULL;
6792 } else {
6793 G.global_args_malloced = 1;
6794 pp = xzalloc(sizeof(pp[0]) * 2);
6795 pp[0] = g_argv[0]; /* retain $0 */
6796 g_argv = pp;
6797 }
6798 /* This realloc's G.global_argv */
6799 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
6800
6801 n = 1;
6802 while (*++pp)
6803 n++;
6804 G.global_argc = n;
6805
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006806 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006807
6808 /* Nothing known, so abort */
6809 error:
6810 bb_error_msg("set: %s: invalid option", arg);
6811 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006812}
6813
6814static int builtin_shift(char **argv)
6815{
6816 int n = 1;
6817 if (argv[1]) {
6818 n = atoi(argv[1]);
6819 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006820 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006821 if (G.global_args_malloced) {
6822 int m = 1;
6823 while (m <= n)
6824 free(G.global_argv[m++]);
6825 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006826 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006827 memmove(&G.global_argv[1], &G.global_argv[n+1],
6828 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006829 return EXIT_SUCCESS;
6830 }
6831 return EXIT_FAILURE;
6832}
6833
6834static int builtin_source(char **argv)
6835{
6836 FILE *input;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00006837 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00006838#if ENABLE_HUSH_FUNCTIONS
6839 smallint sv_flg;
6840#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006841
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006842 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006843 return EXIT_FAILURE;
6844
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006845// TODO: search through $PATH is missing
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006846 input = fopen_or_warn(*argv, "r");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006847 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006848 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006849 return EXIT_FAILURE;
6850 }
6851 close_on_exec_on(fileno(input));
6852
Mike Frysinger885b6f22009-04-18 21:04:25 +00006853#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006854 sv_flg = G.flag_return_in_progress;
6855 /* "we are inside sourced file, ok to use return" */
6856 G.flag_return_in_progress = -1;
Mike Frysinger885b6f22009-04-18 21:04:25 +00006857#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00006858 save_and_replace_G_args(&sv, argv);
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006859
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006860 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006861 fclose(input);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00006862
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006863 restore_G_args(&sv, argv);
Mike Frysinger885b6f22009-04-18 21:04:25 +00006864#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006865 G.flag_return_in_progress = sv_flg;
Mike Frysinger885b6f22009-04-18 21:04:25 +00006866#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006867
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006868 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006869}
6870
6871static int builtin_umask(char **argv)
6872{
Denis Vlasenkoeb858492009-04-18 02:06:54 +00006873 int rc;
6874 mode_t mask;
6875
6876 mask = umask(0);
6877 if (argv[1]) {
6878 mode_t old_mask = mask;
6879
6880 mask ^= 0777;
6881 rc = bb_parse_mode(argv[1], &mask);
6882 mask ^= 0777;
6883 if (rc == 0) {
6884 mask = old_mask;
6885 /* bash messages:
6886 * bash: umask: 'q': invalid symbolic mode operator
6887 * bash: umask: 999: octal number out of range
6888 */
6889 bb_error_msg("%s: '%s' invalid mode", argv[0], argv[1]);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006890 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006891 } else {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00006892 rc = 1;
6893 /* Mimic bash */
6894 printf("%04o\n", (unsigned) mask);
6895 /* fall through and restore mask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006896 }
Denis Vlasenkoeb858492009-04-18 02:06:54 +00006897 umask(mask);
6898
6899 return !rc; /* rc != 0 - success */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006900}
6901
Mike Frysingerd690f682009-03-30 06:50:54 +00006902/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006903static int builtin_unset(char **argv)
6904{
Mike Frysingerd690f682009-03-30 06:50:54 +00006905 int ret;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006906 char var;
Denis Vlasenko40e84372009-04-18 11:23:38 +00006907 char *arg;
Mike Frysingerd690f682009-03-30 06:50:54 +00006908
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006909 if (!*++argv)
Mike Frysingerd690f682009-03-30 06:50:54 +00006910 return EXIT_SUCCESS;
6911
Denis Vlasenko40e84372009-04-18 11:23:38 +00006912 var = 0;
6913 while ((arg = *argv) != NULL && arg[0] == '-') {
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00006914 arg++;
6915 do {
Denis Vlasenko40e84372009-04-18 11:23:38 +00006916 switch (*arg) {
6917 case 'v':
6918 case 'f':
6919 if (var == 0 || var == *arg) {
6920 var = *arg;
6921 break;
6922 }
6923 /* else: unset -vf, which is illegal.
6924 * fall through */
6925 default:
6926 bb_error_msg("unset: %s: invalid option", *argv);
6927 return EXIT_FAILURE;
6928 }
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00006929 } while (*++arg);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006930 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006931 }
6932
6933 ret = EXIT_SUCCESS;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006934 while (*argv) {
Denis Vlasenko40e84372009-04-18 11:23:38 +00006935 if (var != 'f') {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006936 if (unset_local_var(*argv)) {
6937 /* unset <nonexistent_var> doesn't fail.
6938 * Error is when one tries to unset RO var.
6939 * Message was printed by unset_local_var. */
Mike Frysingerd690f682009-03-30 06:50:54 +00006940 ret = EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006941 }
Mike Frysingerd690f682009-03-30 06:50:54 +00006942 }
Denis Vlasenko40e84372009-04-18 11:23:38 +00006943#if ENABLE_HUSH_FUNCTIONS
6944 else {
6945 unset_func(*argv);
6946 }
6947#endif
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006948 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006949 }
6950 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006951}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006952
Mike Frysinger56bdea12009-03-28 20:01:58 +00006953/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
6954static int builtin_wait(char **argv)
6955{
6956 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006957 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00006958
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006959 if (*++argv == NULL) {
6960 /* Don't care about wait results */
6961 /* Note 1: must wait until there are no more children */
6962 /* Note 2: must be interruptible */
6963 /* Examples:
6964 * $ sleep 3 & sleep 6 & wait
6965 * [1] 30934 sleep 3
6966 * [2] 30935 sleep 6
6967 * [1] Done sleep 3
6968 * [2] Done sleep 6
6969 * $ sleep 3 & sleep 6 & wait
6970 * [1] 30936 sleep 3
6971 * [2] 30937 sleep 6
6972 * [1] Done sleep 3
6973 * ^C <-- after ~4 sec from keyboard
6974 * $
6975 */
6976 sigaddset(&G.blocked_set, SIGCHLD);
6977 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6978 while (1) {
6979 checkjobs(NULL);
6980 if (errno == ECHILD)
6981 break;
6982 /* Wait for SIGCHLD or any other signal of interest */
6983 /* sigtimedwait with infinite timeout: */
6984 sig = sigwaitinfo(&G.blocked_set, NULL);
6985 if (sig > 0) {
6986 sig = check_and_run_traps(sig);
6987 if (sig && sig != SIGCHLD) { /* see note 2 */
6988 ret = 128 + sig;
6989 break;
6990 }
6991 }
6992 }
6993 sigdelset(&G.blocked_set, SIGCHLD);
6994 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6995 return ret;
6996 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00006997
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006998 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00006999 while (*argv) {
7000 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00007001 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00007002 /* mimic bash message */
7003 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00007004 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00007005 }
7006 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00007007 if (WIFSIGNALED(status))
7008 ret = 128 + WTERMSIG(status);
7009 else if (WIFEXITED(status))
7010 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00007011 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00007012 ret = EXIT_FAILURE;
7013 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00007014 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00007015 ret = 127;
7016 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00007017 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00007018 }
7019
7020 return ret;
7021}
7022
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007023#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
7024static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
7025{
7026 if (argv[1]) {
7027 def = bb_strtou(argv[1], NULL, 10);
7028 if (errno || def < def_min || argv[2]) {
7029 bb_error_msg("%s: bad arguments", argv[0]);
7030 def = UINT_MAX;
7031 }
7032 }
7033 return def;
7034}
7035#endif
7036
Denis Vlasenkodadfb492008-07-29 10:16:05 +00007037#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00007038static int builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007039{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007040 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +00007041 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00007042 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00007043 return EXIT_SUCCESS; /* bash compat */
7044 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00007045 G.flag_break_continue++; /* BC_BREAK = 1 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007046
7047 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
7048 if (depth == UINT_MAX)
7049 G.flag_break_continue = BC_BREAK;
7050 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +00007051 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007052
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007053 return EXIT_SUCCESS;
7054}
7055
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00007056static int builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007057{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00007058 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
7059 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007060}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00007061#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007062
7063#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko7b9e5c52009-04-17 23:53:15 +00007064static int builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007065{
7066 int rc;
7067
7068 if (G.flag_return_in_progress != -1) {
7069 bb_error_msg("%s: not in a function or sourced script", argv[0]);
7070 return EXIT_FAILURE; /* bash compat */
7071 }
7072
7073 G.flag_return_in_progress = 1;
7074
7075 /* bash:
7076 * out of range: wraps around at 256, does not error out
7077 * non-numeric param:
7078 * f() { false; return qwe; }; f; echo $?
7079 * bash: return: qwe: numeric argument required <== we do this
7080 * 255 <== we also do this
7081 */
7082 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
7083 return rc;
7084}
7085#endif