blob: 13a06a492156bd45b3f8cbb82ad78d38e6e205ff [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 Vlasenkoc8d27332009-04-06 10:47:21 +000055 * builtins: return, 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 * SIGHUP handling
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000060 * separate job control from interactiveness
61 * (testcase: booting with init=/bin/hush does not show prompt (2009-04))
Eric Andersen25f27032001-04-26 23:22:31 +000062 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000063 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000064 */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000065#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denis Vlasenkobe709c22008-07-28 00:01:16 +000066#include <glob.h>
67/* #include <dmalloc.h> */
68#if ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +000069# include <fnmatch.h>
Denis Vlasenkobe709c22008-07-28 00:01:16 +000070#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000071#include "math.h"
Mike Frysingera4f331d2009-04-07 06:03:22 +000072#include "match.h"
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000073#ifndef PIPE_BUF
74# define PIPE_BUF 4096 /* amount of buffering in a pipe */
75#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000076
Denis Vlasenko1943aec2009-04-09 14:15:57 +000077
78/* Debug build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +000079#define LEAK_HUNTING 0
80#define BUILD_AS_NOMMU 0
81/* Enable/disable sanity checks. Ok to enable in production,
82 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
83 * Keeping 1 for now even in released versions.
84 */
85#define HUSH_DEBUG 1
Denis Vlasenko1943aec2009-04-09 14:15:57 +000086
87
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +000088#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +000089# undef BB_MMU
90# undef USE_FOR_NOMMU
91# undef USE_FOR_MMU
92# define BB_MMU 0
93# define USE_FOR_NOMMU(...) __VA_ARGS__
94# define USE_FOR_MMU(...)
95#endif
96
Denis Vlasenko61befda2008-11-25 01:36:03 +000097#if defined SINGLE_APPLET_MAIN
98/* STANDALONE does not make sense, and won't compile */
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +000099# undef CONFIG_FEATURE_SH_STANDALONE
100# undef ENABLE_FEATURE_SH_STANDALONE
101# undef USE_FEATURE_SH_STANDALONE
102# define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
103# define ENABLE_FEATURE_SH_STANDALONE 0
104# define USE_FEATURE_SH_STANDALONE(...)
105# define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denis Vlasenko61befda2008-11-25 01:36:03 +0000106#endif
107
Denis Vlasenko05743d72008-02-10 12:10:08 +0000108#if !ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000109# undef ENABLE_FEATURE_EDITING
110# define ENABLE_FEATURE_EDITING 0
111# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
112# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000113#endif
114
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000115/* Do we support ANY keywords? */
116#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000117# define HAS_KEYWORDS 1
118# define IF_HAS_KEYWORDS(...) __VA_ARGS__
119# define IF_HAS_NO_KEYWORDS(...)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000120#else
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000121# define HAS_KEYWORDS 0
122# define IF_HAS_KEYWORDS(...)
123# define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000124#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000125
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000126/* If you comment out one of these below, it will be #defined later
127 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000128#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000129/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000130#define debug_printf_parse(...) do {} while (0)
131#define debug_print_tree(a, b) do {} while (0)
132#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000133#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000134#define debug_printf_jobs(...) do {} while (0)
135#define debug_printf_expand(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000136#define debug_printf_glob(...) do {} while (0)
137#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000138#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000139#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000140
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000141#define ERR_PTR ((void*)(long)1)
142
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000143#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000144
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000145#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000146
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000147static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
148
149/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000150 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000151 */
152#if !BB_MMU
153typedef struct nommu_save_t {
154 char **new_env;
155 char **old_env;
156 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000157 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000158} nommu_save_t;
159#endif
160
Denis Vlasenko55789c62008-06-18 16:30:42 +0000161/* The descrip member of this structure is only used to make
162 * debugging output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000163static const struct {
164 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000165 signed char default_fd;
166 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000167} redir_table[] = {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000168 { 0, 0, "??" },
Eric Andersen25f27032001-04-26 23:22:31 +0000169 { O_RDONLY, 0, "<" },
170 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
171 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000172 { O_RDONLY, 0, "<<" },
173 { O_CREAT|O_RDWR, 1, "<>" },
174/* Should not be needed. Bogus default_fd helps in debugging */
175/* { O_RDONLY, 77, "<<" }, */
Eric Andersen25f27032001-04-26 23:22:31 +0000176};
177
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000178typedef enum reserved_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000179 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000180#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000181 RES_IF ,
182 RES_THEN ,
183 RES_ELIF ,
184 RES_ELSE ,
185 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000186#endif
187#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000188 RES_FOR ,
189 RES_WHILE ,
190 RES_UNTIL ,
191 RES_DO ,
192 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000193#endif
194#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000195 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000196#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000197#if ENABLE_HUSH_CASE
198 RES_CASE ,
199 /* two pseudo-keywords support contrived "case" syntax: */
200 RES_MATCH , /* "word)" */
201 RES_CASEI , /* "this command is inside CASE" */
202 RES_ESAC ,
203#endif
204 RES_XXXX ,
205 RES_SNTX
Eric Andersen25f27032001-04-26 23:22:31 +0000206} reserved_style;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000207
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000208typedef struct o_string {
209 char *data;
210 int length; /* position where data is appended */
211 int maxlen;
212 /* Protect newly added chars against globbing
213 * (by prepending \ to *, ?, [, \) */
214 smallint o_escape;
215 smallint o_glob;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000216 /* At least some part of the string was inside '' or "",
217 * possibly empty one: word"", wo''rd etc. */
218 smallint o_quoted;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000219 smallint has_empty_slot;
220 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
221} o_string;
222enum {
223 MAYBE_ASSIGNMENT = 0,
224 DEFINITELY_ASSIGNMENT = 1,
225 NOT_ASSIGNMENT = 2,
226 WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
227};
228/* Used for initialization: o_string foo = NULL_O_STRING; */
229#define NULL_O_STRING { NULL }
230
231/* I can almost use ordinary FILE*. Is open_memstream() universally
232 * available? Where is it documented? */
233typedef struct in_str {
234 const char *p;
235 /* eof_flag=1: last char in ->p is really an EOF */
236 char eof_flag; /* meaningless if ->p == NULL */
237 char peek_buf[2];
238#if ENABLE_HUSH_INTERACTIVE
239 smallint promptme;
240 smallint promptmode; /* 0: PS1, 1: PS2 */
241#endif
242 FILE *file;
243 int (*get) (struct in_str *);
244 int (*peek) (struct in_str *);
245} in_str;
246#define i_getch(input) ((input)->get(input))
247#define i_peek(input) ((input)->peek(input))
248
Eric Andersen25f27032001-04-26 23:22:31 +0000249struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000250 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000251 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000252 int rd_fd; /* fd to redirect */
253 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
254 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000255 smallint rd_type; /* (enum redir_type) */
256 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000257 * and subsequently heredoc itself; and rd_dup is a bitmask:
258 * 1: do we need to trim leading tabs?
Denis Vlasenkoed055212009-04-11 10:37:10 +0000259 * 2: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000260 */
Eric Andersen25f27032001-04-26 23:22:31 +0000261};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000262typedef enum redir_type {
263 REDIRECT_INVALID = 0,
264 REDIRECT_INPUT = 1,
265 REDIRECT_OVERWRITE = 2,
266 REDIRECT_APPEND = 3,
267 REDIRECT_HEREDOC = 4,
268 REDIRECT_IO = 5,
269 REDIRECT_HEREDOC2 = 6, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000270
271 REDIRFD_CLOSE = -3,
272 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000273 REDIRFD_TO_FILE = -1,
274 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000275
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000276 HEREDOC_SKIPTABS = 1,
277 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000278} redir_type;
279
Eric Andersen25f27032001-04-26 23:22:31 +0000280
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000281struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000282 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000283 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000284 smallint is_stopped; /* is the command currently running? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000285 smallint grp_type; /* GRP_xxx */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000286#define GRP_NORMAL 0
287#define GRP_SUBSHELL 1
288#if ENABLE_HUSH_FUNCTIONS
289# define GRP_FUNCTION 2
290#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000291 struct pipe *group; /* if non-NULL, this "command" is { list },
292 * ( list ), or a compound statement */
293#if !BB_MMU
294 char *group_as_string;
295#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000296#if ENABLE_HUSH_FUNCTIONS
297 struct function *child_func;
298/* This field is used to prevent a bug here:
299 * while...do f1() {a;}; f1; f1 {b;}; f1; done
300 * When we execute "f1() {a;}" cmd, we create new function and clear
301 * cmd->group, cmd->group_as_string, cmd->argv[0].
302 * when we execute "f1 {b;}", we notice that f1 exists,
303 * and that it's "parent cmd" struct is still "alive",
304 * we put those fields back into cmd->xxx
305 * (struct function has ->parent_cmd ptr to facilitate that).
306 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
307 * Without this trick, loop would execute a;b;b;b;...
308 * instead of correct sequence a;b;a;b;...
309 * When command is freed, it severs the link
310 * (sets ->child_func->parent_cmd to NULL).
311 */
312#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000313 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000314/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
315 * and on execution these are substituted with their values.
316 * Substitution can make _several_ words out of one argv[n]!
317 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000318 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000319 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000320 struct redir_struct *redirects; /* I/O redirections */
321};
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000322/* Is there anything in this command at all? */
323#define IS_NULL_CMD(cmd) \
324 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
325
Eric Andersen25f27032001-04-26 23:22:31 +0000326
327struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000328 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000329 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000330 int alive_cmds; /* number of commands running (not exited) */
331 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000332#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000333 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000334 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000335 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000336#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000337 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000338 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000339 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
340 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000341};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000342typedef enum pipe_style {
343 PIPE_SEQ = 1,
344 PIPE_AND = 2,
345 PIPE_OR = 3,
346 PIPE_BG = 4,
347} pipe_style;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000348/* Is there anything in this pipe at all? */
349#define IS_NULL_PIPE(pi) \
350 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
Eric Andersen25f27032001-04-26 23:22:31 +0000351
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000352/* This holds pointers to the various results of parsing */
353struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000354 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000355 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000356 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000357 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000358 /* last command in pipe (being constructed right now) */
359 struct command *command;
360 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000361 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000362#if !BB_MMU
363 o_string as_string;
364#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000365#if HAS_KEYWORDS
366 smallint ctx_res_w;
367 smallint ctx_inverted; /* "! cmd | cmd" */
368#if ENABLE_HUSH_CASE
369 smallint ctx_dsemicolon; /* ";;" seen */
370#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000371 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
372 int old_flag;
373 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000374 * example: "if pipe1; pipe2; then pipe3; fi"
375 * when we see "if" or "then", we malloc and copy current context,
376 * and make ->stack point to it. then we parse pipeN.
377 * when closing "then" / fi" / whatever is found,
378 * we move list_head into ->stack->command->group,
379 * copy ->stack into current context, and delete ->stack.
380 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000381 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000382 struct parse_context *stack;
383#endif
384};
385
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000386/* On program start, environ points to initial environment.
387 * putenv adds new pointers into it, unsetenv removes them.
388 * Neither of these (de)allocates the strings.
389 * setenv allocates new strings in malloc space and does putenv,
390 * and thus setenv is unusable (leaky) for shell's purposes */
391#define setenv(...) setenv_is_leaky_dont_use()
392struct variable {
393 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000394 char *varstr; /* points to "name=" portion */
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000395 int max_len; /* if > 0, name is part of initial env; else name is malloced */
396 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000397 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000398};
399
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000400enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000401 BC_BREAK = 1,
402 BC_CONTINUE = 2,
403};
404
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000405#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000406struct function {
407 struct function *next;
408 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000409 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000410 struct pipe *body;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000411#if !BB_MMU
412 char *body_as_string;
413#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000414};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000415#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000416
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000417
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000418/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000419/* Sorted roughly by size (smaller offsets == smaller code) */
420struct globals {
421#if ENABLE_HUSH_INTERACTIVE
422 /* 'interactive_fd' is a fd# open to ctty, if we have one
423 * _AND_ if we decided to act interactively */
424 int interactive_fd;
425 const char *PS1;
426 const char *PS2;
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000427#define G_interactive_fd (G.interactive_fd)
428#else
429#define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000430#endif
431#if ENABLE_FEATURE_EDITING
432 line_input_t *line_input_state;
433#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000434 pid_t root_pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000435 pid_t last_bg_pid;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000436#if ENABLE_HUSH_JOB
437 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000438 pid_t saved_tty_pgrp;
439 int last_jobid;
440 struct pipe *job_list;
441 struct pipe *toplevel_list;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000442#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000443 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000444#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000445 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000446#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000447 smallint fake_mode;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000448 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000449 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000450 smalluint last_exitcode;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000451 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000452 smalluint global_args_malloced;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000453 /* how many non-NULL argv's we have. NB: $# + 1 */
454 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000455 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000456#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000457 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000458#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000459#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000460 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000461 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000462#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000463 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000464 const char *cwd;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000465 struct variable *top_var; /* = &G.shell_ver (set in main()) */
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000466 struct variable shell_ver;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000467#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000468 struct function *top_func;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000469#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000470 /* Signal and trap handling */
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000471// unsigned count_SIGCHLD;
472// unsigned handled_SIGCHLD;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000473 /* which signals have non-DFL handler (even with no traps set)? */
474 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000475 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000476 sigset_t blocked_set;
477 sigset_t inherited_set;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000478#if HUSH_DEBUG
479 unsigned long memleak_value;
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000480 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000481#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000482 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000483};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000484#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000485/* Not #defining name to G.name - this quickly gets unwieldy
486 * (too many defines). Also, I actually prefer to see when a variable
487 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000488#define INIT_G() do { \
489 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
490} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000491
492
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000493/* Function prototypes for builtins */
494static int builtin_cd(char **argv);
495static int builtin_echo(char **argv);
496static int builtin_eval(char **argv);
497static int builtin_exec(char **argv);
498static int builtin_exit(char **argv);
499static int builtin_export(char **argv);
500#if ENABLE_HUSH_JOB
501static int builtin_fg_bg(char **argv);
502static int builtin_jobs(char **argv);
503#endif
504#if ENABLE_HUSH_HELP
505static int builtin_help(char **argv);
506#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000507#if HUSH_DEBUG
508static int builtin_memleak(char **argv);
509#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000510static int builtin_pwd(char **argv);
511static int builtin_read(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000512static int builtin_set(char **argv);
513static int builtin_shift(char **argv);
514static int builtin_source(char **argv);
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000515static int builtin_test(char **argv);
516static int builtin_trap(char **argv);
517static int builtin_true(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000518static int builtin_umask(char **argv);
519static int builtin_unset(char **argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +0000520static int builtin_wait(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000521#if ENABLE_HUSH_LOOPS
522static int builtin_break(char **argv);
523static int builtin_continue(char **argv);
524#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000525
526/* Table of built-in functions. They can be forked or not, depending on
527 * context: within pipes, they fork. As simple commands, they do not.
528 * When used in non-forking context, they can change global variables
529 * in the parent shell process. If forked, of course they cannot.
530 * For example, 'unset foo | whatever' will parse and run, but foo will
531 * still be set at the end. */
532struct built_in_command {
533 const char *cmd;
534 int (*function)(char **argv);
535#if ENABLE_HUSH_HELP
536 const char *descr;
537#define BLTIN(cmd, func, help) { cmd, func, help }
538#else
539#define BLTIN(cmd, func, help) { cmd, func }
540#endif
541};
542
543/* For now, echo and test are unconditionally enabled.
544 * Maybe make it configurable? */
545static const struct built_in_command bltins[] = {
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000546 BLTIN("." , builtin_source , "Run commands in a file"),
547 BLTIN(":" , builtin_true , "No-op"),
548 BLTIN("[" , builtin_test , "Test condition"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000549#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000550 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000551#endif
552#if ENABLE_HUSH_LOOPS
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000553 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000554#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000555 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000556#if ENABLE_HUSH_LOOPS
557 BLTIN("continue", builtin_continue, "Start new loop iteration"),
558#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000559 BLTIN("echo" , builtin_echo , "Write to stdout"),
560 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
561 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
562 BLTIN("exit" , builtin_exit , "Exit"),
563 BLTIN("export" , builtin_export , "Set environment variable"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000564#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000565 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000566#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000567#if ENABLE_HUSH_HELP
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000568 BLTIN("help" , builtin_help , "List shell built-in commands"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000569#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000570#if ENABLE_HUSH_JOB
571 BLTIN("jobs" , builtin_jobs , "List active jobs"),
572#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000573#if HUSH_DEBUG
574 BLTIN("memleak" , builtin_memleak , "Debug tool"),
575#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000576 BLTIN("pwd" , builtin_pwd , "Print current directory"),
577 BLTIN("read" , builtin_read , "Input environment variable"),
578// BLTIN("return" , builtin_return , "Return from a function"),
579 BLTIN("set" , builtin_set , "Set/unset shell local variables"),
580 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
581 BLTIN("test" , builtin_test , "Test condition"),
582 BLTIN("trap" , builtin_trap , "Trap signals"),
583// BLTIN("ulimit" , builtin_return , "Control resource limits"),
584 BLTIN("umask" , builtin_umask , "Set file creation mask"),
585 BLTIN("unset" , builtin_unset , "Unset environment variable"),
586 BLTIN("wait" , builtin_wait , "Wait for process"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000587};
588
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000589
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000590/* Debug printouts.
591 */
592#if HUSH_DEBUG
593/* prevent disasters with G.debug_indent < 0 */
594# define indent() fprintf(stderr, "%*s", (G.debug_indent * 2) & 0xff, "")
595# define debug_enter() (G.debug_indent++)
596# define debug_leave() (G.debug_indent--)
597#else
598# define indent() ((void)0)
599# define debug_enter() ((void)0)
600# define debug_leave() ((void)0)
601#endif
602
603#ifndef debug_printf
604# define debug_printf(...) (indent(), fprintf(stderr, __VA_ARGS__))
605#endif
606
607#ifndef debug_printf_parse
608# define debug_printf_parse(...) (indent(), fprintf(stderr, __VA_ARGS__))
609#endif
610
611#ifndef debug_printf_exec
612#define debug_printf_exec(...) (indent(), fprintf(stderr, __VA_ARGS__))
613#endif
614
615#ifndef debug_printf_env
616# define debug_printf_env(...) (indent(), fprintf(stderr, __VA_ARGS__))
617#endif
618
619#ifndef debug_printf_jobs
620# define debug_printf_jobs(...) (indent(), fprintf(stderr, __VA_ARGS__))
621# define DEBUG_JOBS 1
622#else
623# define DEBUG_JOBS 0
624#endif
625
626#ifndef debug_printf_expand
627# define debug_printf_expand(...) (indent(), fprintf(stderr, __VA_ARGS__))
628# define DEBUG_EXPAND 1
629#else
630# define DEBUG_EXPAND 0
631#endif
632
633#ifndef debug_printf_glob
634# define debug_printf_glob(...) (indent(), fprintf(stderr, __VA_ARGS__))
635# define DEBUG_GLOB 1
636#else
637# define DEBUG_GLOB 0
638#endif
639
640#ifndef debug_printf_list
641# define debug_printf_list(...) (indent(), fprintf(stderr, __VA_ARGS__))
642#endif
643
644#ifndef debug_printf_subst
645# define debug_printf_subst(...) (indent(), fprintf(stderr, __VA_ARGS__))
646#endif
647
648#ifndef debug_printf_clean
649# define debug_printf_clean(...) (indent(), fprintf(stderr, __VA_ARGS__))
650# define DEBUG_CLEAN 1
651#else
652# define DEBUG_CLEAN 0
653#endif
654
655#if DEBUG_EXPAND
656static void debug_print_strings(const char *prefix, char **vv)
657{
658 indent();
659 fprintf(stderr, "%s:\n", prefix);
660 while (*vv)
661 fprintf(stderr, " '%s'\n", *vv++);
662}
663#else
664#define debug_print_strings(prefix, vv) ((void)0)
665#endif
666
667
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000668/* Leak hunting. Use hush_leaktool.sh for post-processing.
669 */
670#if LEAK_HUNTING
671static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000672{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000673 void *ptr = xmalloc((size + 0xff) & ~0xff);
674 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
675 return ptr;
676}
677static void *xxrealloc(int lineno, void *ptr, size_t size)
678{
679 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
680 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
681 return ptr;
682}
683static char *xxstrdup(int lineno, const char *str)
684{
685 char *ptr = xstrdup(str);
686 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
687 return ptr;
688}
689static void xxfree(void *ptr)
690{
691 fdprintf(2, "free %p\n", ptr);
692 free(ptr);
693}
694#define xmalloc(s) xxmalloc(__LINE__, s)
695#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
696#define xstrdup(s) xxstrdup(__LINE__, s)
697#define free(p) xxfree(p)
698#endif
699
700
701/* Syntax and runtime errors. They always abort scripts.
702 * In interactive use they usually discard unparsed and/or unexecuted commands
703 * and return to the prompt.
704 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
705 */
706#if HUSH_DEBUG < 2
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000707# define die_if_script(lineno, fmt...) die_if_script(fmt)
708# define syntax_error(lineno, msg) syntax_error(msg)
709# define syntax_error_at(lineno, msg) syntax_error_at(msg)
710# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
711# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
712# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000713#endif
714
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000715static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000716{
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000717 va_list p;
718
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000719#if HUSH_DEBUG >= 2
720 bb_error_msg("hush.c:%u", lineno);
721#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000722 va_start(p, fmt);
723 bb_verror_msg(fmt, p, NULL);
724 va_end(p);
725 if (!G_interactive_fd)
726 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +0000727}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000728
729static void syntax_error(unsigned lineno, const char *msg)
730{
731 if (msg)
732 die_if_script(lineno, "syntax error: %s", msg);
733 else
734 die_if_script(lineno, "syntax error", NULL);
735}
736
737static void syntax_error_at(unsigned lineno, const char *msg)
738{
739 die_if_script(lineno, "syntax error at '%s'", msg);
740}
741
Denis Vlasenko0b677d82009-04-10 13:49:10 +0000742/* It so happens that all such cases are totally fatal
743 * even if shell is interactive: EOF while looking for closing
744 * delimiter. There is nowhere to read stuff from after that,
745 * it's EOF! The only choice is to terminate.
746 */
747static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN;
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000748static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000749{
750 char msg[2];
751 msg[0] = ch;
752 msg[1] = '\0';
753 die_if_script(lineno, "syntax error: unterminated %s", msg);
Denis Vlasenko0b677d82009-04-10 13:49:10 +0000754 xfunc_die();
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000755}
756
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000757static void syntax_error_unterm_str(unsigned lineno, const char *s)
758{
759 die_if_script(lineno, "syntax error: unterminated %s", s);
760}
761
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000762static void syntax_error_unexpected_ch(unsigned lineno, char ch)
763{
764 char msg[2];
765 msg[0] = ch;
766 msg[1] = '\0';
767 die_if_script(lineno, "syntax error: unexpected %s", msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000768}
769
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000770#if HUSH_DEBUG < 2
771# undef die_if_script
772# undef syntax_error
773# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000774# undef syntax_error_unterm_ch
775# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000776# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000777#else
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000778# define die_if_script(fmt...) die_if_script(__LINE__, fmt)
779# define syntax_error(msg) syntax_error(__LINE__, msg)
780# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
781# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
782# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
783# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000784#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000785
Denis Vlasenko552433b2009-04-04 19:29:21 +0000786
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000787/* Utility functions
788 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000789static int glob_needed(const char *s)
790{
791 while (*s) {
792 if (*s == '\\')
793 s++;
794 if (*s == '*' || *s == '[' || *s == '?')
795 return 1;
796 s++;
797 }
798 return 0;
799}
800
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000801static int is_well_formed_var_name(const char *s, char terminator)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000802{
Denis Vlasenkod4981312008-07-31 10:34:48 +0000803 if (!s || !(isalpha(*s) || *s == '_'))
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000804 return 0;
805 s++;
806 while (isalnum(*s) || *s == '_')
807 s++;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000808 return *s == terminator;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000809}
810
Denis Vlasenko55789c62008-06-18 16:30:42 +0000811/* Replace each \x with x in place, return ptr past NUL. */
812static char *unbackslash(char *src)
813{
814 char *dst = src;
815 while (1) {
816 if (*src == '\\')
817 src++;
818 if ((*dst++ = *src++) == '\0')
819 break;
820 }
821 return dst;
822}
823
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000824static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000825{
826 int i;
827 unsigned count1;
828 unsigned count2;
829 char **v;
830
831 v = strings;
832 count1 = 0;
833 if (v) {
834 while (*v) {
835 count1++;
836 v++;
837 }
838 }
839 count2 = 0;
840 v = add;
841 while (*v) {
842 count2++;
843 v++;
844 }
845 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
846 v[count1 + count2] = NULL;
847 i = count2;
848 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000849 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000850 return v;
851}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000852#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000853static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
854{
855 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
856 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
857 return ptr;
858}
859#define add_strings_to_strings(strings, add, need_to_dup) \
860 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
861#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000862
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000863static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000864{
865 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000866 v[0] = add;
867 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000868 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000869}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000870#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000871static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
872{
873 char **ptr = add_string_to_strings(strings, add);
874 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
875 return ptr;
876}
877#define add_string_to_strings(strings, add) \
878 xx_add_string_to_strings(__LINE__, strings, add)
879#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000880
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000881static void putenv_all(char **strings)
882{
883 if (!strings)
884 return;
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000885 while (*strings) {
886 debug_printf_env("putenv '%s'\n", *strings);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000887 putenv(*strings++);
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000888 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000889}
890
891static char **putenv_all_and_save_old(char **strings)
892{
893 char **old = NULL;
894 char **s = strings;
895
896 if (!strings)
897 return old;
898 while (*strings) {
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000899 char *v, *eq;
900
901 eq = strchr(*strings, '=');
902 if (eq) {
903 *eq = '\0';
904 v = getenv(*strings);
905 *eq = '=';
906 if (v) {
907 /* v points to VAL in VAR=VAL, go back to VAR */
908 v -= (eq - *strings) + 1;
909 old = add_string_to_strings(old, v);
910 }
911 }
912 strings++;
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000913 }
914 putenv_all(s);
915 return old;
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000916}
917
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000918static void free_strings_and_unsetenv(char **strings, int unset)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000919{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000920 char **v;
921
922 if (!strings)
923 return;
924
925 v = strings;
926 while (*v) {
927 if (unset) {
Denis Vlasenko76ddc2e2008-12-30 05:05:31 +0000928 debug_printf_env("unsetenv '%s'\n", *v);
929 bb_unsetenv(*v);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000930 }
931 free(*v++);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000932 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000933 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000934}
935
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000936static void free_strings(char **strings)
Denis Vlasenko76d50412008-06-10 16:19:39 +0000937{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000938 free_strings_and_unsetenv(strings, 0);
Denis Vlasenko76d50412008-06-10 16:19:39 +0000939}
Denis Vlasenko76d50412008-06-10 16:19:39 +0000940
941
Denis Vlasenkod5762932009-03-31 11:22:57 +0000942/* Basic theory of signal handling in shell
943 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000944 * This does not describe what hush does, rather, it is current understanding
945 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000946 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
947 *
948 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
949 * is finished or backgrounded. It is the same in interactive and
950 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000951 * a user trap handler is installed or a shell special one is in effect.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000952 * ^C or ^Z from keyboard seem to execute "at once" because it usually
953 * backgrounds (i.e. stops) or kills all members of currently running
954 * pipe.
955 *
956 * Wait builtin in interruptible by signals for which user trap is set
957 * or by SIGINT in interactive shell.
958 *
959 * Trap handlers will execute even within trap handlers. (right?)
960 *
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000961 * User trap handlers are forgotten when subshell ("(cmd)") is entered.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000962 *
963 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000964 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000965 *
966 * Commands run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000967 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000968 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000969 * Ordinary commands have signals set to SIG_IGN/DFL set as inherited
970 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000971 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000972 * Siganls which differ from SIG_DFL action
973 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +0000974 *
975 * SIGQUIT: ignore
976 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000977 * SIGHUP (interactive):
978 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +0000979 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +0000980 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
981 * that all pipe members are stopped. Try this in bash:
982 * while :; do :; done - ^Z does not background it
983 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +0000984 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000985 * of the command line, show prompt. NB: ^C does not send SIGINT
986 * to interactive shell while shell is waiting for a pipe,
987 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000988 * Example 1: this waits 5 sec, but does not execute ls:
989 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
990 * Example 2: this does not wait and does not execute ls:
991 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
992 * Example 3: this does not wait 5 sec, but executes ls:
993 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +0000994 *
995 * (What happens to signals which are IGN on shell start?)
996 * (What happens with signal mask on shell start?)
997 *
998 * Implementation in hush
999 * ======================
1000 * We use in-kernel pending signal mask to determine which signals were sent.
1001 * We block all signals which we don't want to take action immediately,
1002 * i.e. we block all signals which need to have special handling as described
1003 * above, and all signals which have traps set.
1004 * After each pipe execution, we extract any pending signals via sigtimedwait()
1005 * and act on them.
1006 *
1007 * unsigned non_DFL_mask: a mask of such "special" signals
1008 * sigset_t blocked_set: current blocked signal set
1009 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001010 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +00001011 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001012 * "trap 'cmd' SIGxxx":
1013 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001014 * after [v]fork, if we plan to be a shell:
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001015 * nothing for {} child shell (say, "true | { true; true; } | true")
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001016 * unset all traps if () shell.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001017 * after [v]fork, if we plan to exec:
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001018 * POSIX says pending signal mask is cleared in child - no need to clear it.
1019 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001020 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001021 * Note: as a result, we do not use signal handlers much. The only uses
1022 * are to count SIGCHLDs [disabled - bug somewhere, + bloat]
1023 * and to restore tty pgrp on signal-induced exit.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001024 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001025enum {
1026 SPECIAL_INTERACTIVE_SIGS = 0
1027#if ENABLE_HUSH_JOB
1028 | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP)
1029#endif
1030 | (1 << SIGTERM)
1031//TODO | (1 << SIGHUP)
1032 | (1 << SIGINT)
1033};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001034
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001035//static void SIGCHLD_handler(int sig UNUSED_PARAM)
1036//{
1037// G.count_SIGCHLD++;
1038//}
1039
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001040static int check_and_run_traps(int sig)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001041{
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001042 static const struct timespec zero_timespec = { 0, 0 };
Denis Vlasenkod5762932009-03-31 11:22:57 +00001043 smalluint save_rcode;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001044 int last_sig = 0;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001045
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001046 if (sig)
1047 goto jump_in;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001048 while (1) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001049 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
Denis Vlasenkod5762932009-03-31 11:22:57 +00001050 if (sig <= 0)
1051 break;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001052 jump_in:
1053 last_sig = sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001054 if (G.traps && G.traps[sig]) {
1055 if (G.traps[sig][0]) {
1056 /* We have user-defined handler */
1057 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00001058 save_rcode = G.last_exitcode;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001059 builtin_eval(argv);
1060 free(argv[1]);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00001061 G.last_exitcode = save_rcode;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001062 } /* else: "" trap, ignoring signal */
1063 continue;
1064 }
1065 /* not a trap: special action */
Denis Vlasenkod5762932009-03-31 11:22:57 +00001066 switch (sig) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001067// case SIGCHLD:
1068// G.count_SIGCHLD++;
1069// break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001070 case SIGINT:
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001071//TODO: add putchar('\n') also when we detect that child was killed (sleep 5 + ^C)
1072 /* Builtin was ^C'ed, make it look prettier: */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001073 bb_putchar('\n');
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001074 G.flag_SIGINT = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001075 break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001076//TODO
1077// case SIGHUP: ...
1078// break;
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00001079 default: /* ignored: */
1080 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001081 break;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001082 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00001083 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001084 return last_sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001085}
1086
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001087#if ENABLE_HUSH_JOB
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001088
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001089/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
1090#define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001091/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001092#define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
1093
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001094/* Restores tty foreground process group, and exits.
1095 * May be called as signal handler for fatal signal
1096 * (will faithfully resend signal to itself, producing correct exit state)
1097 * or called directly with -EXITCODE.
1098 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001099static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001100static void sigexit(int sig)
1101{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001102 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001103 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001104
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001105 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001106 * tty pgrp then, only top-level shell process does that */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001107 if (G_interactive_fd && getpid() == G.root_pid)
1108 tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001109
1110 /* Not a signal, just exit */
1111 if (sig <= 0)
1112 _exit(- sig);
1113
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001114 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001115}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001116#else
1117
1118#define disable_restore_tty_pgrp_on_exit() ((void)0)
1119#define enable_restore_tty_pgrp_on_exit() ((void)0)
1120
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001121#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001122
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001123/* Restores tty foreground process group, and exits. */
1124static void hush_exit(int exitcode) NORETURN;
1125static void hush_exit(int exitcode)
1126{
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001127 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1128 /* Prevent recursion:
1129 * trap "echo Hi; exit" EXIT; exit
1130 */
1131 char *argv[] = { NULL, G.traps[0], NULL };
1132 G.traps[0] = NULL;
1133 G.exiting = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001134 builtin_eval(argv);
1135 free(argv[1]);
1136 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001137
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001138#if ENABLE_HUSH_JOB
1139 fflush(NULL); /* flush all streams */
1140 sigexit(- (exitcode & 0xff));
1141#else
1142 exit(exitcode);
1143#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001144}
1145
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001146
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001147static const char *set_cwd(void)
1148{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001149 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1150 * we must not try to free(bb_msg_unknown) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00001151 if (G.cwd == bb_msg_unknown)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001152 G.cwd = NULL;
Denis Vlasenko87a86552008-07-29 19:43:10 +00001153 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1154 if (!G.cwd)
1155 G.cwd = bb_msg_unknown;
1156 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001157}
1158
Denis Vlasenko83506862007-11-23 13:11:42 +00001159
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001160/* Get/check local shell variables */
1161static struct variable *get_local_var(const char *name)
1162{
1163 struct variable *cur;
1164 int len;
1165
1166 if (!name)
1167 return NULL;
1168 len = strlen(name);
1169 for (cur = G.top_var; cur; cur = cur->next) {
1170 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
1171 return cur;
1172 }
1173 return NULL;
1174}
1175
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001176static const char *get_local_var_value(const char *src)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001177{
1178 struct variable *var = get_local_var(src);
1179 if (var)
1180 return strchr(var->varstr, '=') + 1;
1181 return NULL;
1182}
1183
1184/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001185 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001186 * flg_export:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001187 * 0: do not export
1188 * 1: export
1189 * -1: if NAME is set, leave export status alone
1190 * if NAME is not set, do not export
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001191 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001192 */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001193#if BB_MMU
1194#define set_local_var(str, flg_export, flg_read_only) \
1195 set_local_var(str, flg_export)
1196#endif
1197static int set_local_var(char *str, int flg_export, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001198{
1199 struct variable *cur;
1200 char *value;
1201 int name_len;
1202
1203 value = strchr(str, '=');
1204 if (!value) { /* not expected to ever happen? */
1205 free(str);
1206 return -1;
1207 }
1208
1209 name_len = value - str + 1; /* including '=' */
1210 cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
1211 while (1) {
1212 if (strncmp(cur->varstr, str, name_len) != 0) {
1213 if (!cur->next) {
1214 /* Bail out. Note that now cur points
1215 * to last var in linked list */
1216 break;
1217 }
1218 cur = cur->next;
1219 continue;
1220 }
1221 /* We found an existing var with this name */
1222 *value = '\0';
1223 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001224#if !BB_MMU
1225 if (!flg_read_only)
1226#endif
1227 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001228 free(str);
1229 return -1;
1230 }
1231 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1232 unsetenv(str); /* just in case */
1233 *value = '=';
1234 if (strcmp(cur->varstr, str) == 0) {
1235 free_and_exp:
1236 free(str);
1237 goto exp;
1238 }
1239 if (cur->max_len >= strlen(str)) {
1240 /* This one is from startup env, reuse space */
1241 strcpy(cur->varstr, str);
1242 goto free_and_exp;
1243 }
1244 /* max_len == 0 signifies "malloced" var, which we can
1245 * (and has to) free */
1246 if (!cur->max_len)
1247 free(cur->varstr);
1248 cur->max_len = 0;
1249 goto set_str_and_exp;
1250 }
1251
1252 /* Not found - create next variable struct */
1253 cur->next = xzalloc(sizeof(*cur));
1254 cur = cur->next;
1255
1256 set_str_and_exp:
1257 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001258#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001259 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001260#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001261 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001262 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001263 cur->flg_export = 1;
1264 if (cur->flg_export) {
1265 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1266 return putenv(cur->varstr);
1267 }
1268 return 0;
1269}
1270
Mike Frysingerd690f682009-03-30 06:50:54 +00001271static int unset_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001272{
1273 struct variable *cur;
1274 struct variable *prev = prev; /* for gcc */
1275 int name_len;
1276
1277 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001278 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001279 name_len = strlen(name);
1280 cur = G.top_var;
1281 while (cur) {
1282 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1283 if (cur->flg_read_only) {
1284 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001285 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001286 }
1287 /* prev is ok to use here because 1st variable, HUSH_VERSION,
1288 * is ro, and we cannot reach this code on the 1st pass */
1289 prev->next = cur->next;
1290 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1291 bb_unsetenv(cur->varstr);
1292 if (!cur->max_len)
1293 free(cur->varstr);
1294 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001295 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001296 }
1297 prev = cur;
1298 cur = cur->next;
1299 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001300 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001301}
1302
Mike Frysinger98c52642009-04-02 10:02:37 +00001303#if ENABLE_SH_MATH_SUPPORT
1304#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1305#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1306static char *endofname(const char *name)
1307{
1308 char *p;
1309
1310 p = (char *) name;
1311 if (!is_name(*p))
1312 return p;
1313 while (*++p) {
1314 if (!is_in_name(*p))
1315 break;
1316 }
1317 return p;
1318}
1319
1320static void arith_set_local_var(const char *name, const char *val, int flags)
1321{
1322 /* arith code doesnt malloc space, so do it for it */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001323 char *var = xasprintf("%s=%s", name, val);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001324 set_local_var(var, flags, 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001325}
1326#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001327
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001328
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001329/*
1330 * in_str support
1331 */
1332static int static_get(struct in_str *i)
1333{
1334 int ch = *i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001335 if (ch != '\0')
1336 return ch;
1337 i->p--;
1338 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001339}
1340
1341static int static_peek(struct in_str *i)
1342{
1343 return *i->p;
1344}
1345
1346#if ENABLE_HUSH_INTERACTIVE
1347
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001348static void cmdedit_set_initial_prompt(void)
1349{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001350 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1351 G.PS1 = getenv("PS1");
1352 if (G.PS1 == NULL)
1353 G.PS1 = "\\w \\$ ";
1354 } else
1355 G.PS1 = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001356}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001357
1358static const char* setup_prompt_string(int promptmode)
1359{
1360 const char *prompt_str;
1361 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001362 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1363 /* Set up the prompt */
1364 if (promptmode == 0) { /* PS1 */
1365 free((char*)G.PS1);
1366 G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#');
1367 prompt_str = G.PS1;
1368 } else
1369 prompt_str = G.PS2;
1370 } else
1371 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001372 debug_printf("result '%s'\n", prompt_str);
1373 return prompt_str;
1374}
1375
1376static void get_user_input(struct in_str *i)
1377{
1378 int r;
1379 const char *prompt_str;
1380
1381 prompt_str = setup_prompt_string(i->promptmode);
1382#if ENABLE_FEATURE_EDITING
1383 /* Enable command line editing only while a command line
1384 * is actually being read */
1385 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001386 G.flag_SIGINT = 0;
1387 /* buglet: SIGINT will not make new prompt to appear _at once_,
1388 * only after <Enter>. (^C will work) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001389 r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001390 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001391 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001392 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001393 i->eof_flag = (r < 0);
1394 if (i->eof_flag) { /* EOF/error detected */
1395 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1396 G.user_input_buf[1] = '\0';
1397 }
1398#else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001399 do {
1400 G.flag_SIGINT = 0;
1401 fputs(prompt_str, stdout);
1402 fflush(stdout);
1403 G.user_input_buf[0] = r = fgetc(i->file);
1404 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001405//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001406 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001407 i->eof_flag = (r == EOF);
1408#endif
1409 i->p = G.user_input_buf;
1410}
1411
1412#endif /* INTERACTIVE */
1413
1414/* This is the magic location that prints prompts
1415 * and gets data back from the user */
1416static int file_get(struct in_str *i)
1417{
1418 int ch;
1419
1420 /* If there is data waiting, eat it up */
1421 if (i->p && *i->p) {
1422#if ENABLE_HUSH_INTERACTIVE
1423 take_cached:
1424#endif
1425 ch = *i->p++;
1426 if (i->eof_flag && !*i->p)
1427 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001428 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001429 } else {
1430 /* need to double check i->file because we might be doing something
1431 * more complicated by now, like sourcing or substituting. */
1432#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001433 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001434 do {
1435 get_user_input(i);
1436 } while (!*i->p); /* need non-empty line */
1437 i->promptmode = 1; /* PS2 */
1438 i->promptme = 0;
1439 goto take_cached;
1440 }
1441#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001442 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001443 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001444 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001445#if ENABLE_HUSH_INTERACTIVE
1446 if (ch == '\n')
1447 i->promptme = 1;
1448#endif
1449 return ch;
1450}
1451
Denis Vlasenko913a2012009-04-05 22:17:04 +00001452/* All callers guarantee this routine will never
1453 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001454 */
1455static int file_peek(struct in_str *i)
1456{
1457 int ch;
1458 if (i->p && *i->p) {
1459 if (i->eof_flag && !i->p[1])
1460 return EOF;
1461 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001462 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001463 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001464 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001465 i->eof_flag = (ch == EOF);
1466 i->peek_buf[0] = ch;
1467 i->peek_buf[1] = '\0';
1468 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001469 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001470 return ch;
1471}
1472
1473static void setup_file_in_str(struct in_str *i, FILE *f)
1474{
1475 i->peek = file_peek;
1476 i->get = file_get;
1477#if ENABLE_HUSH_INTERACTIVE
1478 i->promptme = 1;
1479 i->promptmode = 0; /* PS1 */
1480#endif
1481 i->file = f;
1482 i->p = NULL;
1483}
1484
1485static void setup_string_in_str(struct in_str *i, const char *s)
1486{
1487 i->peek = static_peek;
1488 i->get = static_get;
1489#if ENABLE_HUSH_INTERACTIVE
1490 i->promptme = 1;
1491 i->promptmode = 0; /* PS1 */
1492#endif
1493 i->p = s;
1494 i->eof_flag = 0;
1495}
1496
1497
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001498/*
1499 * o_string support
1500 */
1501#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001502
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001503static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001504{
1505 o->length = 0;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001506 o->o_quoted = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001507 if (o->data)
1508 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001509}
1510
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001511static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001512{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001513 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001514 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001515}
1516
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001517static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1518{
1519 free(o->data);
1520}
1521
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001522static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001523{
1524 if (o->length + len > o->maxlen) {
1525 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1526 o->data = xrealloc(o->data, 1 + o->maxlen);
1527 }
1528}
1529
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001530static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001531{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001532 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1533 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001534 o->data[o->length] = ch;
1535 o->length++;
1536 o->data[o->length] = '\0';
1537}
1538
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001539static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001540{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001541 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001542 memcpy(&o->data[o->length], str, len);
1543 o->length += len;
1544 o->data[o->length] = '\0';
1545}
1546
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001547#if !BB_MMU
1548static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00001549{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001550 o_addblock(o, str, strlen(str));
1551}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001552static void nommu_addchr(o_string *o, int ch)
1553{
1554 if (o)
1555 o_addchr(o, ch);
1556}
1557#else
1558#define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001559#endif
1560
1561static void o_addstr_with_NUL(o_string *o, const char *str)
1562{
1563 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00001564}
1565
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001566static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
Denis Vlasenko55789c62008-06-18 16:30:42 +00001567{
1568 while (len) {
1569 o_addchr(o, *str);
1570 if (*str++ == '\\'
1571 && (*str != '*' && *str != '?' && *str != '[')
1572 ) {
1573 o_addchr(o, '\\');
1574 }
1575 len--;
1576 }
1577}
1578
Eric Andersen25f27032001-04-26 23:22:31 +00001579/* My analysis of quoting semantics tells me that state information
1580 * is associated with a destination, not a source.
1581 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001582static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001583{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001584 int sz = 1;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001585 char *found = strchr("*?[\\", ch);
1586 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001587 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001588 o_grow_by(o, sz);
1589 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001590 o->data[o->length] = '\\';
1591 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001592 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001593 o->data[o->length] = ch;
1594 o->length++;
1595 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001596}
1597
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001598static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001599{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001600 int sz = 1;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001601 if (o->o_escape && strchr("*?[\\", ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001602 sz++;
1603 o->data[o->length] = '\\';
1604 o->length++;
1605 }
1606 o_grow_by(o, sz);
1607 o->data[o->length] = ch;
1608 o->length++;
1609 o->data[o->length] = '\0';
1610}
1611
1612static void o_addQstr(o_string *o, const char *str, int len)
1613{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001614 if (!o->o_escape) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001615 o_addblock(o, str, len);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001616 return;
1617 }
1618 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001619 char ch;
1620 int sz;
1621 int ordinary_cnt = strcspn(str, "*?[\\");
1622 if (ordinary_cnt > len) /* paranoia */
1623 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001624 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001625 if (ordinary_cnt == len)
1626 return;
1627 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001628 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001629
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001630 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001631 sz = 1;
1632 if (ch) { /* it is necessarily one of "*?[\\" */
1633 sz++;
1634 o->data[o->length] = '\\';
1635 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001636 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001637 o_grow_by(o, sz);
1638 o->data[o->length] = ch;
1639 o->length++;
1640 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001641 }
1642}
1643
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001644/* A special kind of o_string for $VAR and `cmd` expansion.
1645 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001646 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001647 * list[i] contains an INDEX (int!) into this string data.
1648 * It means that if list[] needs to grow, data needs to be moved higher up
1649 * but list[i]'s need not be modified.
1650 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001651 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001652 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1653 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001654#if DEBUG_EXPAND || DEBUG_GLOB
1655static void debug_print_list(const char *prefix, o_string *o, int n)
1656{
1657 char **list = (char**)o->data;
1658 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1659 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001660
1661 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001662 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1663 prefix, list, n, string_start, o->length, o->maxlen);
1664 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001665 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001666 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1667 o->data + (int)list[i] + string_start,
1668 o->data + (int)list[i] + string_start);
1669 i++;
1670 }
1671 if (n) {
1672 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001673 indent();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001674 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001675 }
1676}
1677#else
1678#define debug_print_list(prefix, o, n) ((void)0)
1679#endif
1680
1681/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1682 * in list[n] so that it points past last stored byte so far.
1683 * It returns n+1. */
1684static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001685{
1686 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001687 int string_start;
1688 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001689
1690 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001691 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1692 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001693 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001694 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001695 /* list[n] points to string_start, make space for 16 more pointers */
1696 o->maxlen += 0x10 * sizeof(list[0]);
1697 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00001698 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001699 memmove(list + n + 0x10, list + n, string_len);
1700 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001701 } else {
1702 debug_printf_list("list[%d]=%d string_start=%d\n",
1703 n, string_len, string_start);
1704 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001705 } else {
1706 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001707 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1708 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001709 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
1710 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001711 o->has_empty_slot = 0;
1712 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001713 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001714 return n + 1;
1715}
1716
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001717/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001718static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001719{
1720 char **list = (char**)o->data;
1721 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1722
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001723 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001724}
1725
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001726/* o_glob performs globbing on last list[], saving each result
Denis Vlasenko55789c62008-06-18 16:30:42 +00001727 * as a new list[]. */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001728static int o_glob(o_string *o, int n)
1729{
1730 glob_t globdata;
1731 int gr;
1732 char *pattern;
1733
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001734 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001735 if (!o->data)
1736 return o_save_ptr_helper(o, n);
1737 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001738 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001739 if (!glob_needed(pattern)) {
1740 literal:
1741 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001742 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001743 return o_save_ptr_helper(o, n);
1744 }
1745
1746 memset(&globdata, 0, sizeof(globdata));
1747 gr = glob(pattern, 0, NULL, &globdata);
1748 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1749 if (gr == GLOB_NOSPACE)
1750 bb_error_msg_and_die("out of memory during glob");
1751 if (gr == GLOB_NOMATCH) {
1752 globfree(&globdata);
1753 goto literal;
1754 }
1755 if (gr != 0) { /* GLOB_ABORTED ? */
1756//TODO: testcase for bad glob pattern behavior
1757 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1758 }
1759 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1760 char **argv = globdata.gl_pathv;
1761 o->length = pattern - o->data; /* "forget" pattern */
1762 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001763 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001764 n = o_save_ptr_helper(o, n);
1765 argv++;
1766 if (!*argv)
1767 break;
1768 }
1769 }
1770 globfree(&globdata);
1771 if (DEBUG_GLOB)
1772 debug_print_list("o_glob returning", o, n);
1773 return n;
1774}
1775
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001776/* If o->o_glob == 1, glob the string so far remembered.
1777 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001778static int o_save_ptr(o_string *o, int n)
1779{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00001780 if (o->o_glob) { /* if globbing is requested */
1781 /* If o->has_empty_slot, list[n] was already globbed
1782 * (if it was requested back then when it was filled)
1783 * so don't do that again! */
1784 if (!o->has_empty_slot)
1785 return o_glob(o, n); /* o_save_ptr_helper is inside */
1786 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001787 return o_save_ptr_helper(o, n);
1788}
1789
1790/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001791static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001792{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001793 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001794 int string_start;
1795
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001796 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
1797 if (DEBUG_EXPAND)
1798 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001799 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001800 list = (char**)o->data;
1801 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1802 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001803 while (n) {
1804 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001805 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001806 }
1807 return list;
1808}
1809
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001810
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001811/* Expansion can recurse */
1812#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001813static int process_command_subs(o_string *dest, const char *s);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001814#endif
1815static char *expand_string_to_string(const char *str);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001816#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001817#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001818 parse_stream_dquoted(dest, input, dquote_end)
1819#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001820static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001821 o_string *dest,
1822 struct in_str *input,
1823 int dquote_end);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001824
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001825/* expand_strvec_to_strvec() takes a list of strings, expands
1826 * all variable references within and returns a pointer to
1827 * a list of expanded strings, possibly with larger number
1828 * of strings. (Think VAR="a b"; echo $VAR).
1829 * This new list is allocated as a single malloc block.
1830 * NULL-terminated list of char* pointers is at the beginning of it,
1831 * followed by strings themself.
1832 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00001833
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001834/* Store given string, finalizing the word and starting new one whenever
1835 * we encounter IFS char(s). This is used for expanding variable values.
1836 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
1837static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00001838{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001839 while (1) {
1840 int word_len = strcspn(str, G.ifs);
1841 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001842 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001843 o_addQstr(output, str, word_len);
1844 else /* protect backslashes against globbing up :) */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001845 o_addblock_duplicate_backslash(output, str, word_len);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001846 str += word_len;
1847 }
1848 if (!*str) /* EOL - do not finalize word */
1849 break;
1850 o_addchr(output, '\0');
1851 debug_print_list("expand_on_ifs", output, n);
1852 n = o_save_ptr(output, n);
1853 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00001854 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001855 debug_print_list("expand_on_ifs[1]", output, n);
1856 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001857}
1858
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001859/* Helper to expand $((...)) and heredoc body. These act as if
1860 * they are in double quotes, with the exception that they are not :).
1861 * Just the rules are similar: "expand only $var and `cmd`"
1862 *
1863 * Returns malloced string.
1864 * As an optimization, we return NULL if expansion is not needed.
1865 */
1866static char *expand_pseudo_dquoted(const char *str)
1867{
1868 char *exp_str;
1869 struct in_str input;
1870 o_string dest = NULL_O_STRING;
1871
1872 if (strchr(str, '$') == NULL
1873#if ENABLE_HUSH_TICK
1874 && strchr(str, '`') == NULL
1875#endif
1876 ) {
1877 return NULL;
1878 }
1879
1880 /* We need to expand. Example:
1881 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
1882 */
1883 setup_string_in_str(&input, str);
1884 parse_stream_dquoted(NULL, &dest, &input, EOF);
1885 //bb_error_msg("'%s' -> '%s'", str, dest.data);
1886 exp_str = expand_string_to_string(dest.data);
1887 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
1888 o_free_unsafe(&dest);
1889 return exp_str;
1890}
1891
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001892/* Expand all variable references in given string, adding words to list[]
1893 * at n, n+1,... positions. Return updated n (so that list[n] is next one
1894 * to be filled). This routine is extremely tricky: has to deal with
1895 * variables/parameters with whitespace, $* and $@, and constructs like
1896 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
1897static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00001898{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001899 /* or_mask is either 0 (normal case) or 0x80
1900 * (expansion of right-hand side of assignment == 1-element expand.
1901 * It will also do no globbing, and thus we must not backslash-quote!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001902
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001903 char first_ch, ored_ch;
1904 int i;
1905 const char *val;
Mike Frysingera4f331d2009-04-07 06:03:22 +00001906 char *dyn_val, *p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001907
Mike Frysingera4f331d2009-04-07 06:03:22 +00001908 dyn_val = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001909 ored_ch = 0;
1910
1911 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
1912 debug_print_list("expand_vars_to_list", output, n);
1913 n = o_save_ptr(output, n);
1914 debug_print_list("expand_vars_to_list[0]", output, n);
1915
1916 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
1917#if ENABLE_HUSH_TICK
1918 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001919#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001920#if ENABLE_SH_MATH_SUPPORT
1921 char arith_buf[sizeof(arith_t)*3 + 2];
1922#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001923 o_addblock(output, arg, p - arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001924 debug_print_list("expand_vars_to_list[1]", output, n);
1925 arg = ++p;
1926 p = strchr(p, SPECIAL_VAR_SYMBOL);
1927
1928 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
1929 /* "$@" is special. Even if quoted, it can still
1930 * expand to nothing (not even an empty string) */
1931 if ((first_ch & 0x7f) != '@')
1932 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001933
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001934 val = NULL;
1935 switch (first_ch & 0x7f) {
1936 /* Highest bit in first_ch indicates that var is double-quoted */
1937 case '$': /* pid */
1938 val = utoa(G.root_pid);
1939 break;
1940 case '!': /* bg pid */
1941 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
1942 break;
1943 case '?': /* exitcode */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00001944 val = utoa(G.last_exitcode);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001945 break;
1946 case '#': /* argc */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001947 if (arg[1] != SPECIAL_VAR_SYMBOL)
1948 /* actually, it's a ${#var} */
1949 goto case_default;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001950 val = utoa(G.global_argc ? G.global_argc-1 : 0);
1951 break;
1952 case '*':
1953 case '@':
1954 i = 1;
1955 if (!G.global_argv[i])
1956 break;
1957 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
1958 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001959 smallint sv = output->o_escape;
1960 /* unquoted var's contents should be globbed, so don't escape */
1961 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001962 while (G.global_argv[i]) {
1963 n = expand_on_ifs(output, n, G.global_argv[i]);
1964 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
1965 if (G.global_argv[i++][0] && G.global_argv[i]) {
1966 /* this argv[] is not empty and not last:
1967 * put terminating NUL, start new word */
1968 o_addchr(output, '\0');
1969 debug_print_list("expand_vars_to_list[2]", output, n);
1970 n = o_save_ptr(output, n);
1971 debug_print_list("expand_vars_to_list[3]", output, n);
1972 }
1973 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001974 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001975 } else
1976 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
1977 * and in this case should treat it like '$*' - see 'else...' below */
1978 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
1979 while (1) {
1980 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1981 if (++i >= G.global_argc)
1982 break;
1983 o_addchr(output, '\0');
1984 debug_print_list("expand_vars_to_list[4]", output, n);
1985 n = o_save_ptr(output, n);
1986 }
1987 } else { /* quoted $*: add as one word */
1988 while (1) {
1989 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1990 if (!G.global_argv[++i])
1991 break;
1992 if (G.ifs[0])
1993 o_addchr(output, G.ifs[0]);
1994 }
1995 }
1996 break;
1997 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
1998 /* "Empty variable", used to make "" etc to not disappear */
1999 arg++;
2000 ored_ch = 0x80;
2001 break;
2002#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002003 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002004 *p = '\0';
2005 arg++;
2006//TODO: can we just stuff it into "output" directly?
2007 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002008 process_command_subs(&subst_result, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002009 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
2010 val = subst_result.data;
2011 goto store_val;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00002012#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00002013#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002014 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002015 arith_eval_hooks_t hooks;
Mike Frysinger98c52642009-04-02 10:02:37 +00002016 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00002017 int errcode;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002018 char *exp_str;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002019
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002020 arg++; /* skip '+' */
2021 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00002022 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002023
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002024 exp_str = expand_pseudo_dquoted(arg);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002025 hooks.lookupvar = get_local_var_value;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002026 hooks.setvar = arith_set_local_var;
2027 hooks.endofname = endofname;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002028 res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
2029 free(exp_str);
2030
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002031 if (errcode < 0) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002032 const char *msg = "error in arithmetic";
Mike Frysinger98c52642009-04-02 10:02:37 +00002033 switch (errcode) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002034 case -3:
2035 msg = "exponent less than 0";
2036 break;
2037 case -2:
2038 msg = "divide by 0";
2039 break;
2040 case -5:
2041 msg = "expression recursion loop detected";
2042 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00002043 }
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002044 die_if_script(msg);
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002045 }
Mike Frysinger98c52642009-04-02 10:02:37 +00002046 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002047 sprintf(arith_buf, arith_t_fmt, res);
2048 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00002049 break;
2050 }
2051#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002052 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002053 case_default: {
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002054 bool exp_len = false;
2055 bool exp_null = false;
2056 char *var = arg;
2057 char exp_save = exp_save; /* for compiler */
2058 char exp_op = exp_op; /* for compiler */
2059 char *exp_word = exp_word; /* for compiler */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002060 size_t exp_off = 0;
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002061
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002062 *p = '\0';
2063 arg[0] = first_ch & 0x7f;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002064
2065 /* prepare for expansions */
2066 if (var[0] == '#') {
2067 /* handle length expansion ${#var} */
2068 exp_len = true;
2069 ++var;
2070 } else {
2071 /* maybe handle parameter expansion */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002072 exp_off = strcspn(var, ":-=+?%#");
Mike Frysinger6379bb42009-03-28 18:55:03 +00002073 if (!var[exp_off])
2074 exp_off = 0;
2075 if (exp_off) {
2076 exp_save = var[exp_off];
2077 exp_null = exp_save == ':';
2078 exp_word = var + exp_off;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002079 if (exp_null)
2080 ++exp_word;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002081 exp_op = *exp_word++;
2082 var[exp_off] = '\0';
2083 }
2084 }
2085
2086 /* lookup the variable in question */
2087 if (isdigit(var[0])) {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00002088 /* handle_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002089 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002090 if (i < G.global_argc)
2091 val = G.global_argv[i];
2092 /* else val remains NULL: $N with too big N */
2093 } else
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002094 val = get_local_var_value(var);
Mike Frysinger6379bb42009-03-28 18:55:03 +00002095
2096 /* handle any expansions */
2097 if (exp_len) {
2098 debug_printf_expand("expand: length of '%s' = ", val);
2099 val = utoa(val ? strlen(val) : 0);
2100 debug_printf_expand("%s\n", val);
2101 } else if (exp_off) {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002102 if (exp_op == '%' || exp_op == '#') {
Mike Frysinger57e74672009-04-09 23:00:33 +00002103 if (val) {
2104 /* we need to do a pattern match */
2105 bool zero;
2106 char *loc;
2107 scan_t scan = pick_scan(exp_op, *exp_word, &zero);
2108 if (exp_op == *exp_word) /* ## or %% */
2109 ++exp_word;
2110 val = dyn_val = xstrdup(val);
2111 loc = scan(dyn_val, exp_word, zero);
2112 if (zero)
2113 val = loc;
2114 else
2115 *loc = '\0';
2116 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002117 } else {
2118 /* we need to do an expansion */
2119 int exp_test = (!val || (exp_null && !val[0]));
2120 if (exp_op == '+')
2121 exp_test = !exp_test;
2122 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
2123 exp_null ? "true" : "false", exp_test);
2124 if (exp_test) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002125 if (exp_op == '?') {
2126//TODO: how interactive bash aborts expansion mid-command?
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002127 /* ${var?[error_msg_if_unset]} */
2128 /* ${var:?[error_msg_if_unset_or_null]} */
2129 /* mimic bash message */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002130 die_if_script("%s: %s",
2131 var,
2132 exp_word[0] ? exp_word : "parameter null or not set"
2133 );
2134 } else {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002135 val = exp_word;
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002136 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002137
Mike Frysingera4f331d2009-04-07 06:03:22 +00002138 if (exp_op == '=') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002139 /* ${var=[word]} or ${var:=[word]} */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002140 if (isdigit(var[0]) || var[0] == '#') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002141 /* mimic bash message */
2142 die_if_script("$%s: cannot assign in this way", var);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002143 val = NULL;
2144 } else {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002145 char *new_var = xasprintf("%s=%s", var, val);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002146 set_local_var(new_var, -1, 0);
2147 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002148 }
2149 }
2150 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002151
Mike Frysinger6379bb42009-03-28 18:55:03 +00002152 var[exp_off] = exp_save;
2153 }
2154
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002155 arg[0] = first_ch;
2156#if ENABLE_HUSH_TICK
2157 store_val:
2158#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002159 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002160 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002161 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002162 /* unquoted var's contents should be globbed, so don't escape */
2163 smallint sv = output->o_escape;
2164 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002165 n = expand_on_ifs(output, n, val);
2166 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002167 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002168 }
2169 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002170 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002171 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002172 } /* default: */
2173 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002174 if (val) {
2175 o_addQstr(output, val, strlen(val));
2176 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002177 free(dyn_val);
2178 dyn_val = NULL;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002179 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002180 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00002181 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002182
2183#if ENABLE_HUSH_TICK
2184 o_free(&subst_result);
2185#endif
2186 arg = ++p;
2187 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
2188
2189 if (arg[0]) {
2190 debug_print_list("expand_vars_to_list[a]", output, n);
2191 /* this part is literal, and it was already pre-quoted
2192 * if needed (much earlier), do not use o_addQstr here! */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002193 o_addstr_with_NUL(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002194 debug_print_list("expand_vars_to_list[b]", output, n);
2195 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2196 && !(ored_ch & 0x80) /* and all vars were not quoted. */
2197 ) {
2198 n--;
2199 /* allow to reuse list[n] later without re-growth */
2200 output->has_empty_slot = 1;
2201 } else {
2202 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00002203 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002204 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00002205}
2206
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002207static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002208{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002209 int n;
2210 char **list;
2211 char **v;
2212 o_string output = NULL_O_STRING;
2213
2214 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002215 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002216 /* (unquoted $var will temporarily switch it off) */
2217 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002218 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002219
2220 n = 0;
2221 v = argv;
2222 while (*v) {
2223 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
2224 v++;
2225 }
2226 debug_print_list("expand_variables", &output, n);
2227
2228 /* output.data (malloced in one block) gets returned in "list" */
2229 list = o_finalize_list(&output, n);
2230 debug_print_strings("expand_variables[1]", list);
2231 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00002232}
2233
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002234static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002235{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002236 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00002237}
2238
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002239/* Used for expansion of right hand of assignments */
2240/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2241 * "v=/bin/c*" */
2242static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002243{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002244 char *argv[2], **list;
2245
2246 argv[0] = (char*)str;
2247 argv[1] = NULL;
2248 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2249 if (HUSH_DEBUG)
2250 if (!list[0] || list[1])
2251 bb_error_msg_and_die("BUG in varexp2");
2252 /* actually, just move string 2*sizeof(char*) bytes back */
2253 overlapping_strcpy((char*)list, list[0]);
2254 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2255 return (char*)list;
2256}
2257
2258/* Used for "eval" builtin */
2259static char* expand_strvec_to_string(char **argv)
2260{
2261 char **list;
2262
2263 list = expand_variables(argv, 0x80);
2264 /* Convert all NULs to spaces */
2265 if (list[0]) {
2266 int n = 1;
2267 while (list[n]) {
2268 if (HUSH_DEBUG)
2269 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2270 bb_error_msg_and_die("BUG in varexp3");
2271 list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */
2272 n++;
2273 }
2274 }
2275 overlapping_strcpy((char*)list, list[0]);
2276 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2277 return (char*)list;
2278}
2279
2280static char **expand_assignments(char **argv, int count)
2281{
2282 int i;
2283 char **p = NULL;
2284 /* Expand assignments into one string each */
2285 for (i = 0; i < count; i++) {
2286 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2287 }
2288 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002289}
2290
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002291
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002292#if BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002293/* never called */
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002294void re_execute_shell(char ***to_free, const char *s, char *argv0, char **argv);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002295
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002296static void reset_traps_to_defaults(void)
2297{
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002298 /* This function is always called in a child shell
2299 * after fork (not vfork, NOMMU doesn't use this function).
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002300 * Child shells are not interactive.
2301 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
2302 * Testcase: (while :; do :; done) + ^Z should background.
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002303 * Same goes for SIGTERM, SIGHUP, SIGINT.
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002304 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002305 unsigned sig;
2306 unsigned mask;
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002307
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002308 if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS))
2309 return;
2310
2311 /* Stupid. It can be done with *single* &= op, but we can't use
2312 * the fact that G.blocked_set is implemented as a bitmask... */
2313 mask = (SPECIAL_INTERACTIVE_SIGS >> 1);
2314 sig = 1;
2315 while (1) {
2316 if (mask & 1)
2317 sigdelset(&G.blocked_set, sig);
2318 mask >>= 1;
2319 if (!mask)
2320 break;
2321 sig++;
2322 }
2323
2324 G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS;
2325 mask = G.non_DFL_mask;
2326 if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) {
2327 if (!G.traps[sig])
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002328 continue;
2329 free(G.traps[sig]);
2330 G.traps[sig] = NULL;
2331 /* There is no signal for 0 (EXIT) */
2332 if (sig == 0)
2333 continue;
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002334 /* There was a trap handler, we are removing it.
2335 * But if sig still has non-DFL handling,
2336 * we should not unblock it. */
2337 if (mask & 1)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002338 continue;
2339 sigdelset(&G.blocked_set, sig);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002340 }
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002341 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002342}
2343
2344#else /* !BB_MMU */
2345
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002346static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv) NORETURN;
2347static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002348{
2349 char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4];
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002350 char *heredoc_argv[4];
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002351 struct variable *cur;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002352#if ENABLE_HUSH_FUNCTIONS
2353 struct function *funcp;
2354#endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002355 char **argv, **pp;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002356 unsigned cnt;
2357
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002358 if (!g_argv0) { /* heredoc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002359 argv = heredoc_argv;
2360 argv[0] = (char *) G.argv0_for_re_execing;
2361 argv[1] = (char *) "-<";
2362 argv[2] = (char *) s;
2363 argv[3] = NULL;
Denis Vlasenkof50caac2009-04-09 01:40:15 +00002364 pp = &argv[3]; /* used as pointer to empty environment */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002365 goto do_exec;
2366 }
2367
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002368 sprintf(param_buf, "-$%x:%x:%x" USE_HUSH_LOOPS(":%x")
2369 , (unsigned) G.root_pid
2370 , (unsigned) G.last_bg_pid
2371 , (unsigned) G.last_exitcode
2372 USE_HUSH_LOOPS(, G.depth_of_loop)
2373 );
Denis Vlasenkobc569742009-04-12 20:35:19 +00002374 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...> <funcs...>
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002375 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002376 */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002377 cnt = 6;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002378 for (cur = G.top_var; cur; cur = cur->next) {
2379 if (!cur->flg_export || cur->flg_read_only)
2380 cnt += 2;
2381 }
Denis Vlasenkobc569742009-04-12 20:35:19 +00002382#if ENABLE_HUSH_FUNCTIONS
2383 for (funcp = G.top_func; funcp; funcp = funcp->next)
2384 cnt += 3;
2385#endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002386 pp = g_argv;
2387 while (*pp++)
2388 cnt++;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002389 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002390 *pp++ = (char *) G.argv0_for_re_execing;
2391 *pp++ = param_buf;
2392 for (cur = G.top_var; cur; cur = cur->next) {
2393 if (cur->varstr == hush_version_str)
2394 continue;
2395 if (cur->flg_read_only) {
2396 *pp++ = (char *) "-R";
2397 *pp++ = cur->varstr;
2398 } else if (!cur->flg_export) {
2399 *pp++ = (char *) "-V";
2400 *pp++ = cur->varstr;
2401 }
2402 }
Denis Vlasenkobc569742009-04-12 20:35:19 +00002403#if ENABLE_HUSH_FUNCTIONS
2404 for (funcp = G.top_func; funcp; funcp = funcp->next) {
2405 *pp++ = (char *) "-F";
2406 *pp++ = funcp->name;
2407 *pp++ = funcp->body_as_string;
2408 }
2409#endif
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002410 /* We can pass activated traps here. Say, -Tnn:trap_string
2411 *
2412 * However, POSIX says that subshells reset signals with traps
2413 * to SIG_DFL.
2414 * I tested bash-3.2 and it not only does that with true subshells
2415 * of the form ( list ), but with any forked children shells.
2416 * I set trap "echo W" WINCH; and then tried:
2417 *
2418 * { echo 1; sleep 20; echo 2; } &
2419 * while true; do echo 1; sleep 20; echo 2; break; done &
2420 * true | { echo 1; sleep 20; echo 2; } | cat
2421 *
2422 * In all these cases sending SIGWINCH to the child shell
2423 * did not run the trap. If I add trap "echo V" WINCH;
2424 * _inside_ group (just before echo 1), it works.
2425 *
2426 * I conclude it means we don't need to pass active traps here.
2427 * exec syscall below resets them to SIG_DFL for us.
2428 */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002429 *pp++ = (char *) "-c";
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002430 *pp++ = (char *) s;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002431 *pp++ = g_argv0;
2432 while (*g_argv)
2433 *pp++ = *g_argv++;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002434 /* *pp = NULL; - is already there */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002435 pp = environ;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002436
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002437 do_exec:
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002438 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
2439 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002440 execve(bb_busybox_exec_path, argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002441 /* Fallback. Useful for init=/bin/hush usage etc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002442 if (argv[0][0] == '/')
2443 execve(argv[0], argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002444 xfunc_error_retval = 127;
2445 bb_error_msg_and_die("can't re-execute the shell");
2446}
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002447#endif /* !BB_MMU */
2448
2449
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002450static void setup_heredoc(struct redir_struct *redir)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002451{
2452 struct fd_pair pair;
2453 pid_t pid;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002454 int len, written;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002455 /* the _body_ of heredoc (misleading field name) */
2456 const char *heredoc = redir->rd_filename;
2457 char *expanded;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002458#if !BB_MMU
2459 char **to_free;
2460#endif
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002461
2462 expanded = NULL;
2463 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
2464 expanded = expand_pseudo_dquoted(heredoc);
2465 if (expanded)
2466 heredoc = expanded;
2467 }
2468 len = strlen(heredoc);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002469
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002470 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002471 xpiped_pair(pair);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002472 xmove_fd(pair.rd, redir->rd_fd);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002473
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002474 /* Try writing without forking. Newer kernels have
2475 * dynamically growing pipes. Must use non-blocking write! */
2476 ndelay_on(pair.wr);
2477 while (1) {
2478 written = write(pair.wr, heredoc, len);
2479 if (written <= 0)
2480 break;
2481 len -= written;
2482 if (len == 0) {
2483 close(pair.wr);
Denis Vlasenko1943aec2009-04-09 14:15:57 +00002484 free(expanded);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002485 return;
2486 }
2487 heredoc += written;
2488 }
2489 ndelay_off(pair.wr);
2490
2491 /* Okay, pipe buffer was not big enough */
2492 /* Note: we must not create a stray child (bastard? :)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002493 * for the unsuspecting parent process. Child creates a grandchild
2494 * and exits before parent execs the process which consumes heredoc
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002495 * (that exec happens after we return from this function) */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00002496#if !BB_MMU
2497 to_free = NULL;
2498#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002499 pid = vfork();
2500 if (pid < 0)
2501 bb_perror_msg_and_die("vfork");
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002502 if (pid == 0) {
2503 /* child */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00002504 disable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002505 pid = BB_MMU ? fork() : vfork();
2506 if (pid < 0)
2507 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
2508 if (pid != 0)
2509 _exit(0);
2510 /* grandchild */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002511 close(redir->rd_fd); /* read side of the pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002512#if BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002513 full_write(pair.wr, heredoc, len); /* may loop or block */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002514 _exit(0);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002515#else
2516 /* Delegate blocking writes to another process */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002517 xmove_fd(pair.wr, STDOUT_FILENO);
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002518 re_execute_shell(&to_free, heredoc, NULL, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002519#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002520 }
2521 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002522 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002523#if !BB_MMU
2524 free(to_free);
2525#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002526 close(pair.wr);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002527 free(expanded);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002528 wait(NULL); /* wait till child has died */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002529}
2530
Eric Andersen25f27032001-04-26 23:22:31 +00002531/* squirrel != NULL means we squirrel away copies of stdin, stdout,
2532 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002533static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00002534{
2535 int openfd, mode;
2536 struct redir_struct *redir;
2537
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002538 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002539 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002540 /* rd_fd<<HERE case */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002541 if (squirrel && redir->rd_fd < 3) {
2542 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002543 }
2544 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
2545 * of the heredoc */
2546 debug_printf_parse("set heredoc '%s'\n",
2547 redir->rd_filename);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002548 setup_heredoc(redir);
Eric Andersen817e73c2001-06-06 17:56:09 +00002549 continue;
2550 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002551
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002552 if (redir->rd_dup == REDIRFD_TO_FILE) {
2553 /* rd_fd<*>file case (<*> is <,>,>>,<>) */
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002554 char *p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002555 if (redir->rd_filename == NULL) {
2556 /* Something went wrong in the parse.
2557 * Pretend it didn't happen */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002558 bb_error_msg("bug in redirect parse");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002559 continue;
2560 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00002561 mode = redir_table[redir->rd_type].mode;
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002562 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002563 openfd = open_or_warn(p, mode);
2564 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00002565 if (openfd < 0) {
2566 /* this could get lost if stderr has been redirected, but
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002567 * bash and ash both lose it as well (though zsh doesn't!) */
2568//what the above comment tries to say?
Eric Andersen25f27032001-04-26 23:22:31 +00002569 return 1;
2570 }
2571 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002572 /* rd_fd<*>rd_dup or rd_fd<*>- cases */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002573 openfd = redir->rd_dup;
Eric Andersen25f27032001-04-26 23:22:31 +00002574 }
2575
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002576 if (openfd != redir->rd_fd) {
2577 if (squirrel && redir->rd_fd < 3) {
2578 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Eric Andersen25f27032001-04-26 23:22:31 +00002579 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002580 if (openfd == REDIRFD_CLOSE) {
2581 /* "n>-" means "close me" */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002582 close(redir->rd_fd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002583 } else {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002584 xdup2(openfd, redir->rd_fd);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002585 if (redir->rd_dup == REDIRFD_TO_FILE)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002586 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002587 }
Eric Andersen25f27032001-04-26 23:22:31 +00002588 }
2589 }
2590 return 0;
2591}
2592
2593static void restore_redirects(int squirrel[])
2594{
2595 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002596 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002597 fd = squirrel[i];
2598 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002599 /* We simply die on error */
2600 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00002601 }
2602 }
2603}
2604
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002605
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002606static void free_pipe_list(struct pipe *head);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002607
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002608/* Return code is the exit status of the pipe */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002609static void free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002610{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002611 char **p;
2612 struct command *command;
2613 struct redir_struct *r, *rnext;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002614 int a, i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002615
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002616 if (pi->stopped_cmds > 0) /* why? */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002617 return;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002618 debug_printf_clean("run pipe: (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002619 for (i = 0; i < pi->num_cmds; i++) {
2620 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002621 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002622 if (command->argv) {
2623 for (a = 0, p = command->argv; *p; a++, p++) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002624 debug_printf_clean(" argv[%d] = %s\n", a, *p);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002625 }
2626 free_strings(command->argv);
2627 command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002628 }
2629 /* not "else if": on syntax error, we may have both! */
2630 if (command->group) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002631 debug_printf_clean(" begin group (grp_type:%d)\n",
2632 command->grp_type);
2633 free_pipe_list(command->group);
2634 debug_printf_clean(" end group\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002635 command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002636 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00002637 /* else is crucial here.
2638 * If group != NULL, child_func is meaningless */
2639#if ENABLE_HUSH_FUNCTIONS
2640 else if (command->child_func) {
2641 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
2642 command->child_func->parent_cmd = NULL;
2643 }
2644#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002645#if !BB_MMU
2646 free(command->group_as_string);
2647 command->group_as_string = NULL;
2648#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002649 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002650 debug_printf_clean(" redirect %d%s",
2651 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002652 /* guard against the case >$FOO, where foo is unset or blank */
2653 if (r->rd_filename) {
2654 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
2655 free(r->rd_filename);
2656 r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002657 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002658 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002659 rnext = r->next;
2660 free(r);
2661 }
2662 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002663 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002664 free(pi->cmds); /* children are an array, they get freed all at once */
2665 pi->cmds = NULL;
2666#if ENABLE_HUSH_JOB
2667 free(pi->cmdtext);
2668 pi->cmdtext = NULL;
2669#endif
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002670}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002671
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002672static void free_pipe_list(struct pipe *head)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002673{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002674 struct pipe *pi, *next;
2675
2676 for (pi = head; pi; pi = next) {
2677#if HAS_KEYWORDS
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002678 debug_printf_clean(" pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002679#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002680 free_pipe(pi);
2681 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002682 next = pi->next;
2683 /*pi->next = NULL;*/
2684 free(pi);
2685 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002686}
2687
2688
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002689static int run_list(struct pipe *pi);
Denis Vlasenkobc569742009-04-12 20:35:19 +00002690#if BB_MMU
2691#define parse_stream(pstring, input, end_trigger) \
2692 parse_stream(input, end_trigger)
2693#endif
2694static struct pipe *parse_stream(char **pstring,
2695 struct in_str *input,
2696 int end_trigger);
2697static void parse_and_run_string(const char *s);
2698
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002699
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002700static const struct built_in_command* find_builtin(const char *name)
2701{
2702 const struct built_in_command *x;
2703 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
2704 if (strcmp(name, x->cmd) != 0)
2705 continue;
2706 debug_printf_exec("found builtin '%s'\n", name);
2707 return x;
2708 }
2709 return NULL;
2710}
2711
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002712#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002713static const struct function *find_function(const char *name)
2714{
2715 const struct function *funcp = G.top_func;
2716 while (funcp) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002717 if (strcmp(name, funcp->name) == 0) {
2718 break;
2719 }
2720 funcp = funcp->next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002721 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002722 debug_printf_exec("found function '%s'\n", name);
2723 return funcp;
2724}
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002725
Denis Vlasenkobc569742009-04-12 20:35:19 +00002726/* Note: takes ownership on name ptr */
2727static struct function *new_function(char *name)
2728{
2729 struct function *funcp;
2730 struct function **funcpp = &G.top_func;
2731
2732 while ((funcp = *funcpp) != NULL) {
2733 struct command *cmd;
2734
2735 if (strcmp(funcp->name, name) != 0) {
2736 funcpp = &funcp->next;
2737 continue;
2738 }
2739
2740 cmd = funcp->parent_cmd;
2741 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
2742 if (!cmd) {
2743 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
2744 free(funcp->name);
2745 /* Note: if !funcp->body, do not free body_as_string!
2746 * This is a special case of "-F name body" function:
2747 * body_as_string was not malloced! */
2748 if (funcp->body) {
2749 free_pipe_list(funcp->body);
2750#if !BB_MMU
2751 free(funcp->body_as_string);
2752#endif
2753 }
2754 } else {
2755 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
2756 cmd->argv[0] = funcp->name;
2757 cmd->group = funcp->body;
2758#if !BB_MMU
2759 cmd->group_as_string = funcp->body_as_string;
2760#endif
2761 }
2762 goto skip;
2763 }
2764 debug_printf_exec("remembering new function '%s'\n", command->argv[0]);
2765 funcp = *funcpp = xzalloc(sizeof(*funcp));
2766 /*funcp->next = NULL;*/
2767 skip:
2768 funcp->name = name;
2769 return funcp;
2770}
2771
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002772#if BB_MMU
2773#define exec_function(nommu_save, funcp, argv) \
2774 exec_function(funcp, argv)
2775#endif
2776static void exec_function(nommu_save_t *nommu_save,
2777 const struct function *funcp,
2778 char **argv) NORETURN;
2779static void exec_function(nommu_save_t *nommu_save,
2780 const struct function *funcp,
2781 char **argv)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002782{
2783# if BB_MMU
2784 int n = 1;
2785
2786 argv[0] = G.global_argv[0];
2787 G.global_argv = argv;
2788 while (*++argv)
2789 n++;
2790 G.global_argc = n;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002791 /* On MMU, funcp->body is always non-NULL */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002792 n = run_list(funcp->body);
2793 fflush(NULL);
2794 _exit(n);
2795# else
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002796 re_execute_shell(&nommu_save->argv_from_re_execing,
2797 funcp->body_as_string,
2798 G.global_argv[0],
2799 argv + 1);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002800# endif
2801}
2802
2803static int run_function(const struct function *funcp, char **argv)
2804{
2805 int n;
2806 char **pp;
2807 char *sv_argv0;
2808 smallint sv_g_malloced;
2809 int sv_g_argc;
2810 char **sv_g_argv;
2811
2812 sv_argv0 = argv[0];
2813 sv_g_malloced = G.global_args_malloced;
2814 sv_g_argc = G.global_argc;
2815 sv_g_argv = G.global_argv;
2816
2817 pp = argv;
2818 n = 1;
2819 while (*++pp)
2820 n++;
2821
2822 argv[0] = G.global_argv[0]; /* retain $0 */
2823 G.global_args_malloced = 0;
2824 G.global_argc = n;
2825 G.global_argv = argv;
2826
Denis Vlasenkobc569742009-04-12 20:35:19 +00002827 /* On MMU, funcp->body is always non-NULL */
2828#if !BB_MMU
2829 if (!funcp->body) {
2830 /* Function defined by -F */
2831 parse_and_run_string(funcp->body_as_string);
2832 n = G.last_exitcode;
2833 } else
2834#endif
2835 {
2836 n = run_list(funcp->body);
2837 }
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002838
2839 if (G.global_args_malloced) {
2840 /* function ran "set -- arg1 arg2 ..." */
2841 pp = G.global_argv;
2842 while (*++pp)
2843 free(*pp);
2844 free(G.global_argv);
2845 }
2846
2847 argv[0] = sv_argv0;
2848 G.global_args_malloced = sv_g_malloced;
2849 G.global_argc = sv_g_argc;
2850 G.global_argv = sv_g_argv;
2851
2852 return n;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002853}
2854#endif
2855
2856
Denis Vlasenkocc90f442009-04-08 16:40:34 +00002857#if BB_MMU
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002858#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
2859 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
2860#define pseudo_exec(nommu_save, command, argv_expanded) \
2861 pseudo_exec(command, argv_expanded)
2862#endif
2863
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002864/* Called after [v]fork() in run_pipe, or from builtin_exec.
Denis Vlasenko8412d792007-10-01 09:59:47 +00002865 * Never returns.
2866 * XXX no exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00002867 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002868 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002869static void pseudo_exec_argv(nommu_save_t *nommu_save,
2870 char **argv, int assignment_cnt,
2871 char **argv_expanded) NORETURN;
2872static void pseudo_exec_argv(nommu_save_t *nommu_save,
2873 char **argv, int assignment_cnt,
2874 char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00002875{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002876 char **new_env;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002877
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002878 /* Case when we are here: ... | var=val | ... */
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002879 if (!argv[assignment_cnt])
Denis Vlasenko1359da62007-04-21 23:27:30 +00002880 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002881
Denis Vlasenko9504e442008-10-29 01:19:15 +00002882 new_env = expand_assignments(argv, assignment_cnt);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002883#if BB_MMU
2884 putenv_all(new_env);
2885 free(new_env); /* optional */
2886#else
2887 nommu_save->new_env = new_env;
2888 nommu_save->old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002889#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002890 if (argv_expanded) {
2891 argv = argv_expanded;
2892 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00002893 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002894#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002895 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002896#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002897 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002898
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002899#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
2900 if (strchr(argv[0], '/') != NULL)
2901 goto skip;
2902#endif
2903
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002904 /* On NOMMU, we must never block!
2905 * Example: { sleep 99999 | read line } & echo Ok
2906 * read builtin will block on read syscall, leaving parent blocked
2907 * in vfork. Therefore we can't do this:
2908 */
2909#if BB_MMU
2910 /* Check if the command matches any of the builtins.
Denis Vlasenko1359da62007-04-21 23:27:30 +00002911 * Depending on context, this might be redundant. But it's
2912 * easier to waste a few CPU cycles than it is to figure out
2913 * if this is one of those cases.
2914 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002915 {
2916 int rcode;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002917 const struct built_in_command *x = find_builtin(argv[0]);
2918 if (x) {
2919 rcode = x->function(argv);
2920 fflush(NULL);
2921 _exit(rcode);
Eric Andersen94ac2442001-05-22 19:05:18 +00002922 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00002923 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002924#endif
2925#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002926 /* Check if the command matches any functions */
2927 {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002928 const struct function *funcp = find_function(argv[0]);
2929 if (funcp) {
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002930 exec_function(nommu_save, funcp, argv);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002931 }
2932 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002933#endif
Eric Andersen78a7c992001-05-15 16:30:25 +00002934
Denis Vlasenko80d14be2007-04-10 23:03:30 +00002935#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002936 /* Check if the command matches any busybox applets */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002937 {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002938 int a = find_applet_by_name(argv[0]);
2939 if (a >= 0) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002940# if BB_MMU /* see above why on NOMMU it is not allowed */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002941 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002942 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002943 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002944 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002945# endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002946 /* Re-exec ourselves */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002947 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002948 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
2949 execv(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002950 /* If they called chroot or otherwise made the binary no longer
2951 * executable, fall through */
2952 }
2953 }
Eric Andersenaac75e52001-04-30 18:18:45 +00002954#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002955
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002956#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002957 skip:
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002958#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002959 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002960 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002961 execvp(argv[0], argv);
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00002962 bb_perror_msg("can't exec '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00002963 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002964}
2965
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002966/* Called after [v]fork() in run_pipe
Denis Vlasenko8412d792007-10-01 09:59:47 +00002967 */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002968static void pseudo_exec(nommu_save_t *nommu_save,
2969 struct command *command,
2970 char **argv_expanded) NORETURN;
2971static void pseudo_exec(nommu_save_t *nommu_save,
2972 struct command *command,
2973 char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002974{
Denis Vlasenko552433b2009-04-04 19:29:21 +00002975 if (command->argv) {
2976 pseudo_exec_argv(nommu_save, command->argv,
2977 command->assignment_cnt, argv_expanded);
2978 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002979
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002980 if (command->group) {
Denis Vlasenko552433b2009-04-04 19:29:21 +00002981 /* Cases when we are here:
2982 * ( list )
2983 * { list } &
2984 * ... | ( list ) | ...
2985 * ... | { list } | ...
2986 */
2987#if BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00002988 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002989 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00002990 reset_traps_to_defaults();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002991 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00002992 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00002993 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00002994 _exit(rcode);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002995#else
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002996 re_execute_shell(&nommu_save->argv_from_re_execing,
2997 command->group_as_string,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002998 G.global_argv[0],
2999 G.global_argv + 1);
Denis Vlasenko8412d792007-10-01 09:59:47 +00003000#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003001 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003002
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003003 /* Case when we are here: ... | >file */
3004 debug_printf_exec("pseudo_exec'ed null command\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003005 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00003006}
3007
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003008#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003009static const char *get_cmdtext(struct pipe *pi)
3010{
3011 char **argv;
3012 char *p;
3013 int len;
3014
3015 /* This is subtle. ->cmdtext is created only on first backgrounding.
3016 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003017 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003018 if (pi->cmdtext)
3019 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003020 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003021 if (!argv || !argv[0]) {
3022 pi->cmdtext = xzalloc(1);
3023 return pi->cmdtext;
3024 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003025
3026 len = 0;
3027 do len += strlen(*argv) + 1; while (*++argv);
3028 pi->cmdtext = p = xmalloc(len);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003029 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003030 do {
3031 len = strlen(*argv);
3032 memcpy(p, *argv, len);
3033 p += len;
3034 *p++ = ' ';
3035 } while (*++argv);
3036 p[-1] = '\0';
3037 return pi->cmdtext;
3038}
3039
Eric Andersenbafd94f2001-05-02 16:11:59 +00003040static void insert_bg_job(struct pipe *pi)
3041{
3042 struct pipe *thejob;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003043 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003044
3045 /* Linear search for the ID of the job to use */
3046 pi->jobid = 1;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003047 for (thejob = G.job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00003048 if (thejob->jobid >= pi->jobid)
3049 pi->jobid = thejob->jobid + 1;
3050
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003051 /* Add thejob to the list of running jobs */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003052 if (!G.job_list) {
3053 thejob = G.job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00003054 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003055 for (thejob = G.job_list; thejob->next; thejob = thejob->next)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003056 continue;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003057 thejob->next = xmalloc(sizeof(*thejob));
3058 thejob = thejob->next;
3059 }
3060
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003061 /* Physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00003062 memcpy(thejob, pi, sizeof(struct pipe));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003063 thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
3064 /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */
3065 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003066// TODO: do we really need to have so many fields which are just dead weight
3067// at execution stage?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003068 thejob->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003069 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003070 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00003071 thejob->next = NULL;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003072 thejob->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00003073
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003074 /* We don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00003075 to the list of backgrounded thejobs and leave it alone */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003076 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00003077 printf("[%d] %d %s\n", thejob->jobid, thejob->cmds[0].pid, thejob->cmdtext);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003078 G.last_bg_pid = thejob->cmds[0].pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003079 G.last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003080}
3081
Eric Andersenbafd94f2001-05-02 16:11:59 +00003082static void remove_bg_job(struct pipe *pi)
3083{
3084 struct pipe *prev_pipe;
3085
Denis Vlasenko87a86552008-07-29 19:43:10 +00003086 if (pi == G.job_list) {
3087 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003088 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003089 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003090 while (prev_pipe->next != pi)
3091 prev_pipe = prev_pipe->next;
3092 prev_pipe->next = pi->next;
3093 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00003094 if (G.job_list)
3095 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00003096 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00003097 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00003098}
Eric Andersen028b65b2001-06-28 01:10:11 +00003099
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003100/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00003101static void delete_finished_bg_job(struct pipe *pi)
3102{
3103 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003104 pi->stopped_cmds = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003105 free_pipe(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00003106 free(pi);
3107}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003108#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00003109
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003110/* Check to see if any processes have exited -- if they
3111 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00003112static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00003113{
Eric Andersenc798b072001-06-22 06:23:03 +00003114 int attributes;
3115 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003116#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00003117 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003118#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00003119 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003120 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003121
Denis Vlasenkod5762932009-03-31 11:22:57 +00003122 debug_printf_jobs("checkjobs %p\n", fg_pipe);
3123
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003124 errno = 0;
3125// if (G.handled_SIGCHLD == G.count_SIGCHLD)
3126// /* avoid doing syscall, nothing there anyway */
3127// return rcode;
3128
Eric Andersenc798b072001-06-22 06:23:03 +00003129 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003130 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00003131 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00003132
Denis Vlasenko1359da62007-04-21 23:27:30 +00003133/* Do we do this right?
3134 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003135 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00003136 * [3]+ Stopped sleep 20 | false
3137 * bash-3.00# echo $?
3138 * 1 <========== bg pipe is not fully done, but exitcode is already known!
3139 */
3140
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003141//FIXME: non-interactive bash does not continue even if all processes in fg pipe
3142//are stopped. Testcase: "cat | cat" in a script (not on command line)
3143// + killall -STOP cat
3144
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003145 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003146 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003147 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003148 int dead;
3149
3150// i = G.count_SIGCHLD;
3151 childpid = waitpid(-1, &status, attributes);
3152 if (childpid <= 0) {
3153 if (childpid && errno != ECHILD)
3154 bb_perror_msg("waitpid");
3155// else /* Until next SIGCHLD, waitpid's are useless */
3156// G.handled_SIGCHLD = i;
3157 break;
3158 }
3159 dead = WIFEXITED(status) || WIFSIGNALED(status);
3160
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003161#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00003162 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003163 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003164 childpid, WSTOPSIG(status), WEXITSTATUS(status));
3165 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003166 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003167 childpid, WTERMSIG(status), WEXITSTATUS(status));
3168 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003169 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003170 childpid, WEXITSTATUS(status));
3171#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003172 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00003173 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003174 for (i = 0; i < fg_pipe->num_cmds; i++) {
3175 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
3176 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003177 continue;
3178 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
3179 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003180 fg_pipe->cmds[i].pid = 0;
3181 fg_pipe->alive_cmds--;
3182 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003183 /* last process gives overall exitstatus */
3184 rcode = WEXITSTATUS(status);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003185 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko1359da62007-04-21 23:27:30 +00003186 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003187 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003188 fg_pipe->cmds[i].is_stopped = 1;
3189 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00003190 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003191 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
3192 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
3193 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003194 /* All processes in fg pipe have exited/stopped */
3195#if ENABLE_HUSH_JOB
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003196 if (fg_pipe->alive_cmds)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003197 insert_bg_job(fg_pipe);
3198#endif
3199 return rcode;
3200 }
3201 /* There are still running processes in the fg pipe */
3202 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00003203 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003204 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00003205 }
3206
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003207#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003208 /* We asked to wait for bg or orphaned children */
3209 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003210 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003211 for (i = 0; i < pi->num_cmds; i++) {
3212 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003213 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00003214 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00003215 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003216 /* Happens when shell is used as init process (init=/bin/sh) */
3217 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003218 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00003219
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003220 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00003221 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00003222 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003223 pi->cmds[i].pid = 0;
3224 pi->alive_cmds--;
3225 if (!pi->alive_cmds) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003226 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00003227 printf(JOB_STATUS_FORMAT, pi->jobid,
3228 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003229 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00003230 }
3231 } else {
3232 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003233 pi->cmds[i].is_stopped = 1;
3234 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003235 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003236#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003237 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00003238
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003239 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00003240}
3241
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003242#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00003243static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
3244{
3245 pid_t p;
3246 int rcode = checkjobs(fg_pipe);
3247 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00003248 p = getpgid(0); /* pgid of our process */
3249 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003250 tcsetpgrp(G_interactive_fd, p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00003251 return rcode;
3252}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003253#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00003254
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003255/* Start all the jobs, but don't wait for anything to finish.
3256 * See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00003257 *
Denis Vlasenko552433b2009-04-04 19:29:21 +00003258 * Return code is normally -1, when the caller has to wait for children
Eric Andersen25f27032001-04-26 23:22:31 +00003259 * to finish to determine the exit status of the pipe. If the pipe
3260 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00003261 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00003262 * return value.
3263 *
Denis Vlasenko170435c2007-05-23 13:01:10 +00003264 * Returns -1 only if started some children. IOW: we have to
3265 * mask out retvals of builtins etc with 0xff!
Denis Vlasenko552433b2009-04-04 19:29:21 +00003266 *
3267 * The only case when we do not need to [v]fork is when the pipe
3268 * is single, non-backgrounded, non-subshell command. Examples:
3269 * cmd ; ... { list } ; ...
3270 * cmd && ... { list } && ...
3271 * cmd || ... { list } || ...
3272 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
3273 * or (if SH_STANDALONE) an applet, and we can run the { list }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003274 * with run_list(). If it isn't one of these, we fork and exec cmd.
Denis Vlasenko552433b2009-04-04 19:29:21 +00003275 *
3276 * Cases when we must fork:
3277 * non-single: cmd | cmd
3278 * backgrounded: cmd & { list } &
3279 * subshell: ( list ) [&]
Eric Andersen25f27032001-04-26 23:22:31 +00003280 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003281static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003282{
Denis Vlasenko552433b2009-04-04 19:29:21 +00003283 static const char *const null_ptr = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003284 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003285 int nextin;
3286 int pipefds[2]; /* pipefds[0] is for reading */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003287 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003288 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003289 char **argv;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003290 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003291 /* it is not always needed, but we aim to smaller code */
3292 int squirrel[] = { -1, -1, -1 };
3293 int rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003294
Denis Vlasenko552433b2009-04-04 19:29:21 +00003295 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003296 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003297
Denis Vlasenko552433b2009-04-04 19:29:21 +00003298 USE_HUSH_JOB(pi->pgrp = -1;)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003299 pi->stopped_cmds = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003300 command = &(pi->cmds[0]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003301 argv_expanded = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003302
Denis Vlasenko552433b2009-04-04 19:29:21 +00003303 if (pi->num_cmds != 1
3304 || pi->followup == PIPE_BG
3305 || command->grp_type == GRP_SUBSHELL
3306 ) {
3307 goto must_fork;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003308 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003309
Denis Vlasenko552433b2009-04-04 19:29:21 +00003310 pi->alive_cmds = 1;
3311
3312 debug_printf_exec(": group:%p argv:'%s'\n",
3313 command->group, command->argv ? command->argv[0] : "NONE");
3314
3315 if (command->group) {
3316#if ENABLE_HUSH_FUNCTIONS
3317 if (command->grp_type == GRP_FUNCTION) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003318 /* "executing" func () { list } */
3319 struct function *funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003320
Denis Vlasenkobc569742009-04-12 20:35:19 +00003321 funcp = new_function(command->argv[0]);
3322 /* funcp->name is already set to argv[0] */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003323 funcp->body = command->group;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003324#if !BB_MMU
3325 funcp->body_as_string = command->group_as_string;
3326 command->group_as_string = NULL;
3327#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003328 command->group = NULL;
3329 command->argv[0] = NULL;
Denis Vlasenkoed055212009-04-11 10:37:10 +00003330 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
3331 funcp->parent_cmd = command;
3332 command->child_func = funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003333
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003334 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
3335 debug_leave();
Denis Vlasenko552433b2009-04-04 19:29:21 +00003336 return EXIT_SUCCESS;
3337 }
3338#endif
3339 /* { list } */
3340 debug_printf("non-subshell group\n");
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003341 rcode = 1; /* exitcode if redir failed */
3342 if (setup_redirects(command, squirrel) == 0) {
3343 debug_printf_exec(": run_list\n");
3344 rcode = run_list(command->group) & 0xff;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003345 }
Eric Andersen04407e52001-06-07 16:42:05 +00003346 restore_redirects(squirrel);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003347 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003348 debug_leave();
3349 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003350 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003351 }
3352
Denis Vlasenko552433b2009-04-04 19:29:21 +00003353 argv = command->argv ? command->argv : (char **) &null_ptr;
3354 {
3355 const struct built_in_command *x;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003356#if ENABLE_HUSH_FUNCTIONS
3357 const struct function *funcp;
3358#else
3359 enum { funcp = 0 };
3360#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003361 char **new_env = NULL;
3362 char **old_env = NULL;
3363
Denis Vlasenko552433b2009-04-04 19:29:21 +00003364 if (argv[command->assignment_cnt] == NULL) {
3365 /* Assignments, but no command */
3366 /* Ensure redirects take effect. Try "a=t >file" */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003367 rcode = setup_redirects(command, squirrel);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003368 restore_redirects(squirrel);
3369 /* Set shell variables */
3370 while (*argv) {
3371 p = expand_string_to_string(*argv);
3372 debug_printf_exec("set shell var:'%s'->'%s'\n",
3373 *argv, p);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00003374 set_local_var(p, 0, 0);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003375 argv++;
Eric Andersen78a7c992001-05-15 16:30:25 +00003376 }
Denis Vlasenko552433b2009-04-04 19:29:21 +00003377 /* Do we need to flag set_local_var() errors?
3378 * "assignment to readonly var" and "putenv error"
3379 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003380 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003381 debug_leave();
3382 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003383 return rcode;
Eric Andersen78a7c992001-05-15 16:30:25 +00003384 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003385
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003386 /* Expand the rest into (possibly) many strings each */
Denis Vlasenko552433b2009-04-04 19:29:21 +00003387 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003388
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003389 x = find_builtin(argv_expanded[0]);
3390#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003391 funcp = NULL;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003392 if (!x)
3393 funcp = find_function(argv_expanded[0]);
3394#endif
3395 if (x || funcp) {
3396 if (!funcp) {
3397 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
3398 debug_printf("exec with redirects only\n");
3399 rcode = setup_redirects(command, NULL);
3400 goto clean_up_and_ret1;
3401 }
Eric Andersen25f27032001-04-26 23:22:31 +00003402 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003403 /* XXX setup_redirects acts on file descriptors, not FILEs.
3404 * This is perfect for work that comes after exec().
3405 * Is it really safe for inline use? Experimentally,
3406 * things seem to work with glibc. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003407 rcode = setup_redirects(command, squirrel);
3408 if (rcode == 0) {
3409 new_env = expand_assignments(argv, command->assignment_cnt);
3410 old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003411 if (!funcp) {
3412 debug_printf_exec(": builtin '%s' '%s'...\n",
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003413 x->cmd, argv_expanded[1]);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003414 rcode = x->function(argv_expanded) & 0xff;
3415 }
3416#if ENABLE_HUSH_FUNCTIONS
3417 else {
3418 debug_printf_exec(": function '%s' '%s'...\n",
3419 funcp->name, argv_expanded[1]);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003420 rcode = run_function(funcp, argv_expanded) & 0xff;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003421 }
3422#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003423 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003424#if ENABLE_FEATURE_SH_STANDALONE
3425 clean_up_and_ret:
3426#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003427 restore_redirects(squirrel);
3428 free_strings_and_unsetenv(new_env, 1);
3429 putenv_all(old_env);
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003430 /* Free the pointers, but the strings themselves
3431 * are in environ now, don't use free_strings! */
3432 free(old_env);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003433 clean_up_and_ret1:
3434 free(argv_expanded);
3435 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003436 debug_leave();
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003437 debug_printf_exec("run_pipe return %d\n", rcode);
3438 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003439 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003440
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003441#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003442 i = find_applet_by_name(argv_expanded[0]);
3443 if (i >= 0 && APPLET_IS_NOFORK(i)) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003444 rcode = setup_redirects(command, squirrel);
3445 if (rcode == 0) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003446 new_env = expand_assignments(argv, command->assignment_cnt);
3447 old_env = putenv_all_and_save_old(new_env);
3448 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003449 argv_expanded[0], argv_expanded[1]);
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003450 rcode = run_nofork_applet(i, argv_expanded);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003451 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003452 goto clean_up_and_ret;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003453 }
3454#endif
Denis Vlasenko552433b2009-04-04 19:29:21 +00003455 /* It is neither builtin nor applet. We must fork. */
Eric Andersen25f27032001-04-26 23:22:31 +00003456 }
3457
Denis Vlasenko552433b2009-04-04 19:29:21 +00003458 must_fork:
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003459 /* NB: argv_expanded may already be created, and that
3460 * might include `cmd` runs! Do not rerun it! We *must*
3461 * use argv_expanded if it's non-NULL */
3462
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003463 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003464 pi->alive_cmds = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003465 nextin = 0;
3466
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003467 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko76d50412008-06-10 16:19:39 +00003468#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003469 volatile nommu_save_t nommu_save;
3470 nommu_save.new_env = NULL;
3471 nommu_save.old_env = NULL;
3472 nommu_save.argv = NULL;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003473 nommu_save.argv_from_re_execing = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003474#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003475 command = &(pi->cmds[i]);
3476 if (command->argv) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003477 debug_printf_exec(": pipe member '%s' '%s'...\n",
3478 command->argv[0], command->argv[1]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003479 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003480 debug_printf_exec(": pipe member with no argv\n");
Denis Vlasenko552433b2009-04-04 19:29:21 +00003481 }
Eric Andersen25f27032001-04-26 23:22:31 +00003482
3483 /* pipes are inserted between pairs of commands */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003484 pipefds[0] = 0;
3485 pipefds[1] = 1;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003486 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003487 xpipe(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00003488
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003489 command->pid = BB_MMU ? fork() : vfork();
3490 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003491#if ENABLE_HUSH_JOB
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003492 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkod5762932009-03-31 11:22:57 +00003493
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003494 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00003495 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003496 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00003497 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003498 pgrp = pi->pgrp;
3499 if (pgrp < 0) /* true for 1st process only */
3500 pgrp = getpid();
3501 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003502 /* We do it in *every* child, not just first,
3503 * to avoid races */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003504 tcsetpgrp(G_interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003505 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003506 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003507#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +00003508 xmove_fd(nextin, 0);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003509 xmove_fd(pipefds[1], 1); /* write end */
3510 if (pipefds[0] > 1)
3511 close(pipefds[0]); /* read end */
Eric Andersen25f27032001-04-26 23:22:31 +00003512 /* Like bash, explicit redirects override pipes,
3513 * and the pipe fd is available for dup'ing. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003514 if (setup_redirects(command, NULL))
3515 _exit(1);
Eric Andersen52a97ca2001-06-22 06:49:26 +00003516
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003517 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003518 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
3519
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003520 /* Stores to nommu_save list of env vars putenv'ed
3521 * (NOMMU, on MMU we don't need that) */
3522 /* cast away volatility... */
3523 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003524 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00003525 }
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003526
Denis Vlasenkof9375282009-04-05 19:13:39 +00003527 /* parent or error */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003528 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003529#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003530 /* Clean up after vforked child */
3531 free(nommu_save.argv);
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003532 free(nommu_save.argv_from_re_execing);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003533 free_strings_and_unsetenv(nommu_save.new_env, 1);
3534 putenv_all(nommu_save.old_env);
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003535 /* Free the pointers, but the strings themselves
3536 * are in environ now, don't use free_strings! */
3537 free(nommu_save.old_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003538#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003539 free(argv_expanded);
3540 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003541 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003542 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko82604e92008-07-01 15:59:42 +00003543 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003544 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003545 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003546#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003547 /* Second and next children need to know pid of first one */
3548 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003549 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003550#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003551 }
Eric Andersen25f27032001-04-26 23:22:31 +00003552
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003553 if (i)
3554 close(nextin);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003555 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003556 close(pipefds[1]); /* write end */
3557 /* Pass read (output) pipe end to next iteration */
Eric Andersen25f27032001-04-26 23:22:31 +00003558 nextin = pipefds[0];
3559 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003560
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003561 if (!pi->alive_cmds) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003562 debug_leave();
Denis Vlasenko05743d72008-02-10 12:10:08 +00003563 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
3564 return 1;
3565 }
3566
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003567 debug_leave();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003568 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00003569 return -1;
3570}
3571
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003572#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003573static void debug_print_tree(struct pipe *pi, int lvl)
3574{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003575 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003576 [PIPE_SEQ] = "SEQ",
3577 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003578 [PIPE_OR ] = "OR" ,
3579 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003580 };
3581 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003582 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003583#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003584 [RES_IF ] = "IF" ,
3585 [RES_THEN ] = "THEN" ,
3586 [RES_ELIF ] = "ELIF" ,
3587 [RES_ELSE ] = "ELSE" ,
3588 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003589#endif
3590#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003591 [RES_FOR ] = "FOR" ,
3592 [RES_WHILE] = "WHILE",
3593 [RES_UNTIL] = "UNTIL",
3594 [RES_DO ] = "DO" ,
3595 [RES_DONE ] = "DONE" ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003596#endif
3597#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003598 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003599#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003600#if ENABLE_HUSH_CASE
3601 [RES_CASE ] = "CASE" ,
3602 [RES_MATCH] = "MATCH",
3603 [RES_CASEI] = "CASEI",
3604 [RES_ESAC ] = "ESAC" ,
3605#endif
Denis Vlasenko06810332007-05-21 23:30:54 +00003606 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003607 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003608 };
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003609 static const char *const GRPTYPE[] = {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003610 "{}",
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00003611 "()",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003612#if ENABLE_HUSH_FUNCTIONS
3613 "func()",
3614#endif
3615 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003616
3617 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003618
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003619 pin = 0;
3620 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003621 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
3622 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003623 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003624 while (prn < pi->num_cmds) {
3625 struct command *command = &pi->cmds[prn];
3626 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003627
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003628 fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003629 lvl*2, "", prn,
3630 command->assignment_cnt);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003631 if (command->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003632 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003633 GRPTYPE[command->grp_type],
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003634 argv);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003635 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003636 prn++;
3637 continue;
3638 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003639 if (argv) while (*argv) {
3640 fprintf(stderr, " '%s'", *argv);
3641 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003642 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003643 fprintf(stderr, "\n");
3644 prn++;
3645 }
3646 pi = pi->next;
3647 pin++;
3648 }
3649}
3650#endif
3651
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003652/* NB: called by pseudo_exec, and therefore must not modify any
3653 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003654static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003655{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003656#if ENABLE_HUSH_CASE
3657 char *case_word = NULL;
3658#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003659#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003660 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003661 char *for_varname = NULL;
3662 char **for_lcur = NULL;
3663 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00003664#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003665 smallint last_followup;
3666 smalluint rcode;
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003667#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003668 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003669#else
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003670 enum { cond_code = 0 };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003671#endif
Denis Vlasenko0e151382009-04-06 18:40:31 +00003672#if HAS_KEYWORDS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003673 smallint rword; /* enum reserved_style */
3674 smallint last_rword; /* ditto */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003675#endif
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003676
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003677 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003678 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003679
Denis Vlasenko06810332007-05-21 23:30:54 +00003680#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003681 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003682 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
3683 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003684 continue;
3685 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003686 if (cpipe->next == NULL) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003687 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003688 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00003689 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003690 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003691 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003692 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003693 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003694 continue;
3695 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003696 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
3697 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003698 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003699 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003700 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00003701 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003702 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003703 }
3704 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003705#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003706
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003707 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00003708 * in order to return, no direct "return" statements please.
3709 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003710
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003711#if ENABLE_HUSH_JOB
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003712 G.run_list_level++;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003713#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003714
Denis Vlasenko0e151382009-04-06 18:40:31 +00003715#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003716 rword = RES_NONE;
3717 last_rword = RES_XXXX;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003718#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003719 last_followup = PIPE_SEQ;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003720 rcode = G.last_exitcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003721
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003722 /* Go through list of pipes, (maybe) executing them. */
3723 for (; pi; pi = USE_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00003724 if (G.flag_SIGINT)
3725 break;
3726
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003727 IF_HAS_KEYWORDS(rword = pi->res_word;)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003728 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
3729 rword, cond_code, last_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00003730#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00003731 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003732 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00003733 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003734 /* start of a loop: remember where loop starts */
3735 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003736 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003737 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003738#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003739 /* Still in the same "if...", "then..." or "do..." branch? */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003740 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003741 if ((rcode == 0 && last_followup == PIPE_OR)
3742 || (rcode != 0 && last_followup == PIPE_AND)
3743 ) {
3744 /* It is "<true> || CMD" or "<false> && CMD"
3745 * and we should not execute CMD */
3746 debug_printf_exec("skipped cmd because of || or &&\n");
3747 last_followup = pi->followup;
3748 continue;
3749 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003750 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003751 last_followup = pi->followup;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003752 IF_HAS_KEYWORDS(last_rword = rword;)
Denis Vlasenko06810332007-05-21 23:30:54 +00003753#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003754 if (cond_code) {
3755 if (rword == RES_THEN) {
Denis Vlasenko0e151382009-04-06 18:40:31 +00003756 /* if false; then ... fi has exitcode 0! */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003757 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003758 /* "if <false> THEN cmd": skip cmd */
3759 continue;
3760 }
3761 } else {
3762 if (rword == RES_ELSE || rword == RES_ELIF) {
3763 /* "if <true> then ... ELSE/ELIF cmd":
3764 * skip cmd and all following ones */
3765 break;
3766 }
3767 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003768#endif
3769#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003770 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003771 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003772 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003773
3774 static const char encoded_dollar_at[] ALIGN1 = {
3775 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
3776 }; /* encoded representation of "$@" */
3777 static const char *const encoded_dollar_at_argv[] = {
3778 encoded_dollar_at, NULL
3779 }; /* argv list with one element: "$@" */
3780 char **vals;
3781
3782 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003783 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003784 /* if no variable values after "in" we skip "for" */
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003785 if (!pi->next->cmds[0].argv) {
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003786 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003787 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003788 break;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003789 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003790 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003791 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003792 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003793 debug_print_strings("for_list made from", vals);
3794 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003795 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003796 debug_print_strings("for_list", for_list);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003797 for_varname = pi->cmds[0].argv[0];
3798 pi->cmds[0].argv[0] = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003799 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003800 free(pi->cmds[0].argv[0]);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003801 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00003802 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003803 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003804 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003805 for_lcur = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003806 pi->cmds[0].argv[0] = for_varname;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003807 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003808 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003809 /* Insert next value from for_lcur */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003810 /* note: *for_lcur already has quotes removed, $var expanded, etc */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003811 pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
3812 pi->cmds[0].assignment_cnt = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003813 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003814 if (rword == RES_IN) {
3815 continue; /* "for v IN list;..." - "in" has no cmds anyway */
3816 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003817 if (rword == RES_DONE) {
3818 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003819 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003820#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003821#if ENABLE_HUSH_CASE
3822 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003823 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003824 continue;
3825 }
3826 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003827 char **argv;
3828
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003829 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
3830 break;
3831 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003832 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003833 while (*argv) {
3834 char *pattern = expand_string_to_string(*argv);
3835 /* TODO: which FNM_xxx flags to use? */
3836 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
3837 free(pattern);
3838 if (cond_code == 0) { /* match! we will execute this branch */
3839 free(case_word); /* make future "word)" stop */
3840 case_word = NULL;
3841 break;
3842 }
3843 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003844 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003845 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003846 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003847 if (rword == RES_CASEI) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003848 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003849 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003850 }
3851#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003852 /* Just pressing <enter> in shell should check for jobs.
3853 * OTOH, in non-interactive shell this is useless
3854 * and only leads to extra job checks */
3855 if (pi->num_cmds == 0) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003856 if (G_interactive_fd)
Denis Vlasenkod5762932009-03-31 11:22:57 +00003857 goto check_jobs_and_continue;
3858 continue;
3859 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003860
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003861 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00003862 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003863 * after run_pipe to collect any background children,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003864 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003865 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003866 {
3867 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003868#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00003869 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003870#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003871 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
3872 if (r != -1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003873 /* We only ran a builtin: rcode is already known
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003874 * and we don't need to wait for anything. */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003875 G.last_exitcode = rcode;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003876 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003877 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003878#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003879 /* Was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003880 if (G.flag_break_continue) {
3881 smallint fbc = G.flag_break_continue;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003882 /* We might fall into outer *loop*,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003883 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003884 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003885 G.depth_break_continue--;
3886 if (G.depth_break_continue == 0)
3887 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003888 /* else: e.g. "continue 2" should *break* once, *then* continue */
3889 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003890 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003891 goto check_jobs_and_break;
3892 /* "continue": simulate end of loop */
3893 rword = RES_DONE;
3894 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003895 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003896#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003897 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003898 /* What does bash do with attempts to background builtins? */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003899 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003900 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
3901 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003902 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003903#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00003904 if (G.run_list_level == 1)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003905 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003906#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003907 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003908 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003909 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003910#if ENABLE_HUSH_JOB
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003911 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003912 /* Waits for completion, then fg's main shell */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003913 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003914 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003915 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003916 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003917#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003918 { /* This one just waits for completion */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003919 rcode = checkjobs(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003920 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003921 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003922 }
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003923 G.last_exitcode = rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003924 }
3925 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003926
3927 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00003928#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003929 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003930 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00003931#endif
3932#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003933 /* Beware of "while false; true; do ..."! */
3934 if (pi->next && pi->next->res_word == RES_DO) {
3935 if (rword == RES_WHILE) {
3936 if (rcode) {
3937 /* "while false; do...done" - exitcode 0 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003938 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003939 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
3940 goto check_jobs_and_break;
3941 }
Denis Vlasenko918a34b2008-07-28 23:17:31 +00003942 }
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003943 if (rword == RES_UNTIL) {
3944 if (!rcode) {
3945 debug_printf_exec(": until expr is true: breaking\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003946 check_jobs_and_break:
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003947 checkjobs(NULL);
3948 break;
3949 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003950 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003951 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003952#endif
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00003953
3954 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00003955 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003956 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003957
3958#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00003959 G.run_list_level--;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003960#endif
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003961#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003962 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003963 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003964 free(for_list);
3965#endif
3966#if ENABLE_HUSH_CASE
3967 free(case_word);
3968#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003969 debug_leave();
3970 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003971 return rcode;
3972}
3973
Eric Andersen25f27032001-04-26 23:22:31 +00003974/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003975static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003976{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003977 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003978 debug_printf_exec("run_and_free_list entered\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003979 if (!G.fake_mode) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003980 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003981 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003982 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003983 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00003984 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00003985 * but doing that now would hobble the debugging effort. */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003986 free_pipe_list(pi);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003987 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003988 return rcode;
3989}
3990
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003991
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003992static struct pipe *new_pipe(void)
3993{
Eric Andersen25f27032001-04-26 23:22:31 +00003994 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003995 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003996 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003997 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003998 return pi;
3999}
4000
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004001/* Command (member of a pipe) is complete, or we start a new pipe
4002 * if ctx->command is NULL.
4003 * No errors possible here.
4004 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004005static int done_command(struct parse_context *ctx)
4006{
4007 /* The command is really already in the pipe structure, so
4008 * advance the pipe counter and make a new, null command. */
4009 struct pipe *pi = ctx->pipe;
4010 struct command *command = ctx->command;
4011
4012 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004013 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004014 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004015 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004016 }
4017 pi->num_cmds++;
4018 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004019 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004020 } else {
4021 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
4022 }
4023
4024 /* Only real trickiness here is that the uncommitted
4025 * command structure is not counted in pi->num_cmds. */
4026 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004027 ctx->command = command = &pi->cmds[pi->num_cmds];
4028 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004029 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004030 return pi->num_cmds; /* used only for 0/nonzero check */
4031}
4032
4033static void done_pipe(struct parse_context *ctx, pipe_style type)
4034{
4035 int not_null;
4036
4037 debug_printf_parse("done_pipe entered, followup %d\n", type);
4038 /* Close previous command */
4039 not_null = done_command(ctx);
4040 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004041#if HAS_KEYWORDS
4042 ctx->pipe->pi_inverted = ctx->ctx_inverted;
4043 ctx->ctx_inverted = 0;
4044 ctx->pipe->res_word = ctx->ctx_res_w;
4045#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004046
4047 /* Without this check, even just <enter> on command line generates
4048 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004049 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004050 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00004051#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004052 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00004053#endif
4054#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004055 || ctx->ctx_res_w == RES_DONE
4056 || ctx->ctx_res_w == RES_FOR
4057 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00004058#endif
4059#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004060 || ctx->ctx_res_w == RES_ESAC
4061#endif
4062 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004063 struct pipe *new_p;
4064 debug_printf_parse("done_pipe: adding new pipe: "
4065 "not_null:%d ctx->ctx_res_w:%d\n",
4066 not_null, ctx->ctx_res_w);
4067 new_p = new_pipe();
4068 ctx->pipe->next = new_p;
4069 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004070 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004071 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004072 * This is used to control execution.
4073 * RES_FOR and RES_IN are NOT sticky (needed to support
4074 * cases where variable or value happens to match a keyword):
4075 */
4076#if ENABLE_HUSH_LOOPS
4077 if (ctx->ctx_res_w == RES_FOR
4078 || ctx->ctx_res_w == RES_IN)
4079 ctx->ctx_res_w = RES_NONE;
4080#endif
4081#if ENABLE_HUSH_CASE
4082 if (ctx->ctx_res_w == RES_MATCH)
4083 ctx->ctx_res_w = RES_CASEI;
4084#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004085 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004086 /* Create the memory for command, roughly:
4087 * ctx->pipe->cmds = new struct command;
4088 * ctx->command = &ctx->pipe->cmds[0];
4089 */
4090 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004091 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004092 }
4093 debug_printf_parse("done_pipe return\n");
4094}
4095
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004096static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00004097{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004098 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00004099 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004100 /* Create the memory for command, roughly:
4101 * ctx->pipe->cmds = new struct command;
4102 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004103 */
4104 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00004105}
4106
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004107/* If a reserved word is found and processed, parse context is modified
4108 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00004109 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004110#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004111struct reserved_combo {
4112 char literal[6];
4113 unsigned char res;
4114 unsigned char assignment_flag;
4115 int flag;
4116};
4117enum {
4118 FLAG_END = (1 << RES_NONE ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004119#if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004120 FLAG_IF = (1 << RES_IF ),
4121 FLAG_THEN = (1 << RES_THEN ),
4122 FLAG_ELIF = (1 << RES_ELIF ),
4123 FLAG_ELSE = (1 << RES_ELSE ),
4124 FLAG_FI = (1 << RES_FI ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004125#endif
4126#if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004127 FLAG_FOR = (1 << RES_FOR ),
4128 FLAG_WHILE = (1 << RES_WHILE),
4129 FLAG_UNTIL = (1 << RES_UNTIL),
4130 FLAG_DO = (1 << RES_DO ),
4131 FLAG_DONE = (1 << RES_DONE ),
4132 FLAG_IN = (1 << RES_IN ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004133#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004134#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004135 FLAG_MATCH = (1 << RES_MATCH),
4136 FLAG_ESAC = (1 << RES_ESAC ),
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004137#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004138 FLAG_START = (1 << RES_XXXX ),
4139};
4140
4141static const struct reserved_combo* match_reserved_word(o_string *word)
4142{
Eric Andersen25f27032001-04-26 23:22:31 +00004143 /* Mostly a list of accepted follow-up reserved words.
4144 * FLAG_END means we are done with the sequence, and are ready
4145 * to turn the compound list into a command.
4146 * FLAG_START means the word must start a new compound list.
4147 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004148 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00004149#if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004150 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
4151 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
4152 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
4153 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
4154 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
4155 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00004156#endif
4157#if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004158 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
4159 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4160 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4161 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
4162 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
4163 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004164#endif
4165#if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004166 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
4167 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00004168#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004169 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004170 const struct reserved_combo *r;
4171
4172 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
4173 if (strcmp(word->data, r->literal) == 0)
4174 return r;
4175 }
4176 return NULL;
4177}
Denis Vlasenkobb929512009-04-16 10:59:40 +00004178/* Return 0: not a keyword, 1: keyword
4179 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004180static int reserved_word(o_string *word, struct parse_context *ctx)
4181{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004182#if ENABLE_HUSH_CASE
4183 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004184 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004185 };
4186#endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004187 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004188
Denis Vlasenkobb929512009-04-16 10:59:40 +00004189 if (word->o_quoted)
4190 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004191 r = match_reserved_word(word);
4192 if (!r)
4193 return 0;
4194
4195 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004196#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004197 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE)
4198 /* "case word IN ..." - IN part starts first match part */
4199 r = &reserved_match;
4200 else
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004201#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004202 if (r->flag == 0) { /* '!' */
4203 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004204 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00004205 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00004206 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004207 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004208 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004209 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004210 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004211 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004212
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004213 old = xmalloc(sizeof(*old));
4214 debug_printf_parse("push stack %p\n", old);
4215 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004216 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004217 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004218 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004219 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004220 ctx->ctx_res_w = RES_SNTX;
4221 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004222 } else {
4223 /* "{...} fi" is ok. "{...} if" is not
4224 * Example:
4225 * if { echo foo; } then { echo bar; } fi */
4226 if (ctx->command->group)
4227 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004228 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00004229
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004230 ctx->ctx_res_w = r->res;
4231 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004232 word->o_assignment = r->assignment_flag;
4233
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004234 if (ctx->old_flag & FLAG_END) {
4235 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004236
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004237 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004238 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004239 old = ctx->stack;
4240 old->command->group = ctx->list_head;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004241 old->command->grp_type = GRP_NORMAL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004242#if !BB_MMU
4243 o_addstr(&old->as_string, ctx->as_string.data);
4244 o_free_unsafe(&ctx->as_string);
4245 old->command->group_as_string = xstrdup(old->as_string.data);
4246 debug_printf_parse("pop, remembering as:'%s'\n",
4247 old->command->group_as_string);
4248#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004249 *ctx = *old; /* physical copy */
4250 free(old);
4251 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004252 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004253}
Denis Vlasenko06810332007-05-21 23:30:54 +00004254#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004255
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004256/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004257 * Normal return is 0. Syntax errors return 1.
4258 * Note: on return, word is reset, but not o_free'd!
4259 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004260static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00004261{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004262 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00004263
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004264 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004265 if (word->length == 0 && word->o_quoted == 0) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004266 debug_printf_parse("done_word return 0: true null, ignored\n");
4267 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004268 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004269
Eric Andersen25f27032001-04-26 23:22:31 +00004270 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004271 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
4272 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004273 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4274 * "2.7 Redirection
4275 * ...the word that follows the redirection operator
4276 * shall be subjected to tilde expansion, parameter expansion,
4277 * command substitution, arithmetic expansion, and quote
4278 * removal. Pathname expansion shall not be performed
4279 * on the word by a non-interactive shell; an interactive
4280 * shell may perform it, but shall do so only when
4281 * the expansion would result in one word."
4282 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004283 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004284 /* Cater for >\file case:
4285 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
4286 * Same with heredocs:
4287 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
4288 */
4289 unbackslash(ctx->pending_redirect->rd_filename);
4290 /* Is it <<"HEREDOC"? */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004291 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC
4292 && word->o_quoted
4293 ) {
4294 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
4295 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004296 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004297 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00004298 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004299 /* If this word wasn't an assignment, next ones definitely
4300 * can't be assignments. Even if they look like ones. */
4301 if (word->o_assignment != DEFINITELY_ASSIGNMENT
4302 && word->o_assignment != WORD_IS_KEYWORD
4303 ) {
4304 word->o_assignment = NOT_ASSIGNMENT;
4305 } else {
4306 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
4307 command->assignment_cnt++;
4308 word->o_assignment = MAYBE_ASSIGNMENT;
4309 }
4310
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004311#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004312# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00004313 if (ctx->ctx_dsemicolon
4314 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
4315 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00004316 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004317 /* ctx->ctx_res_w = RES_MATCH; */
4318 ctx->ctx_dsemicolon = 0;
4319 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004320# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004321 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004322# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004323 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
4324 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004325# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004326 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004327 debug_printf_parse("checking '%s' for reserved-ness\n", word->data);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004328 if (reserved_word(word, ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004329 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004330 debug_printf_parse("done_word return %d\n",
4331 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004332 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004333 }
Eric Andersen25f27032001-04-26 23:22:31 +00004334 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004335#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00004336 if (command->group) {
4337 /* "{ echo foo; } echo bar" - bad */
4338 syntax_error_at(word->data);
4339 debug_printf_parse("done_word return 1: syntax error, "
4340 "groups and arglists don't mix\n");
4341 return 1;
4342 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004343 if (word->o_quoted /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00004344 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
4345 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004346 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004347 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004348 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004349 char *p = word->data;
4350 while (p[0] == SPECIAL_VAR_SYMBOL
4351 && (p[1] & 0x7f) == '@'
4352 && p[2] == SPECIAL_VAR_SYMBOL
4353 ) {
4354 p += 3;
4355 }
4356 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004357 /* saw no "$@", or not only "$@" but some
4358 * real text is there too */
4359 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004360 * e.g. "", $empty"" etc to not disappear */
4361 o_addchr(word, SPECIAL_VAR_SYMBOL);
4362 o_addchr(word, SPECIAL_VAR_SYMBOL);
4363 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00004364 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004365 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004366//SEGV, but good idea.
4367// command->argv = add_string_to_strings(command->argv, word->data);
4368// word->data = NULL;
4369// word->length = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004370 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004371 }
Eric Andersen25f27032001-04-26 23:22:31 +00004372
Denis Vlasenko06810332007-05-21 23:30:54 +00004373#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004374 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004375 if (word->o_quoted
4376 || !is_well_formed_var_name(command->argv[0], '\0')
4377 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004378 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004379 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004380 return 1;
4381 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004382 /* Force FOR to have just one word (variable name) */
4383 /* NB: basically, this makes hush see "for v in ..."
4384 * syntax as if it is "for v; in ...". FOR and IN become
4385 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004386 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004387 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004388#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004389#if ENABLE_HUSH_CASE
4390 /* Force CASE to have just one word */
4391 if (ctx->ctx_res_w == RES_CASE) {
4392 done_pipe(ctx, PIPE_SEQ);
4393 }
4394#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004395
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004396 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004397
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004398 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004399 return 0;
4400}
4401
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004402
4403/* Peek ahead in the input to find out if we have a "&n" construct,
4404 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004405 * Return:
4406 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
4407 * REDIRFD_SYNTAX_ERR if syntax error,
4408 * REDIRFD_TO_FILE if no & was seen,
4409 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004410 */
4411#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004412#define parse_redir_right_fd(as_string, input) \
4413 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004414#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004415static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004416{
4417 int ch, d, ok;
4418
4419 ch = i_peek(input);
4420 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004421 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004422
4423 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004424 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004425 ch = i_peek(input);
4426 if (ch == '-') {
4427 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004428 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004429 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004430 }
4431 d = 0;
4432 ok = 0;
4433 while (ch != EOF && isdigit(ch)) {
4434 d = d*10 + (ch-'0');
4435 ok = 1;
4436 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004437 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004438 ch = i_peek(input);
4439 }
4440 if (ok) return d;
4441
4442//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
4443
4444 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004445 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004446}
4447
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004448/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004449 */
4450static int parse_redirect(struct parse_context *ctx,
4451 int fd,
4452 redir_type style,
4453 struct in_str *input)
4454{
4455 struct command *command = ctx->command;
4456 struct redir_struct *redir;
4457 struct redir_struct **redirp;
4458 int dup_num;
4459
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004460 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004461 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004462 /* Check for a '>&1' type redirect */
4463 dup_num = parse_redir_right_fd(&ctx->as_string, input);
4464 if (dup_num == REDIRFD_SYNTAX_ERR)
4465 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004466 } else {
4467 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004468 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004469 if (dup_num) { /* <<-... */
4470 ch = i_getch(input);
4471 nommu_addchr(&ctx->as_string, ch);
4472 ch = i_peek(input);
4473 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004474 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004475
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004476 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004477 int ch = i_peek(input);
4478 if (ch == '|') {
4479 /* >|FILE redirect ("clobbering" >).
4480 * Since we do not support "set -o noclobber" yet,
4481 * >| and > are the same for now. Just eat |.
4482 */
4483 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004484 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004485 }
4486 }
4487
4488 /* Create a new redir_struct and append it to the linked list */
4489 redirp = &command->redirects;
4490 while ((redir = *redirp) != NULL) {
4491 redirp = &(redir->next);
4492 }
4493 *redirp = redir = xzalloc(sizeof(*redir));
4494 /* redir->next = NULL; */
4495 /* redir->rd_filename = NULL; */
4496 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004497 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004498
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004499 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
4500 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004501
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004502 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004503 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004504 /* Erik had a check here that the file descriptor in question
4505 * is legit; I postpone that to "run time"
4506 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004507 debug_printf_parse("duplicating redirect '%d>&%d'\n",
4508 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004509 } else {
4510 /* Set ctx->pending_redirect, so we know what to do at the
4511 * end of the next parsed word. */
4512 ctx->pending_redirect = redir;
4513 }
4514 return 0;
4515}
4516
Eric Andersen25f27032001-04-26 23:22:31 +00004517/* If a redirect is immediately preceded by a number, that number is
4518 * supposed to tell which file descriptor to redirect. This routine
4519 * looks for such preceding numbers. In an ideal world this routine
4520 * needs to handle all the following classes of redirects...
4521 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
4522 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
4523 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
4524 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004525 *
4526 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4527 * "2.7 Redirection
4528 * ... If n is quoted, the number shall not be recognized as part of
4529 * the redirection expression. For example:
4530 * echo \2>a
4531 * writes the character 2 into file a"
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004532 * We are getting it right by setting ->o_quoted on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004533 *
4534 * A -1 return means no valid number was found,
4535 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00004536 */
4537static int redirect_opt_num(o_string *o)
4538{
4539 int num;
4540
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004541 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004542 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004543 num = bb_strtou(o->data, NULL, 10);
4544 if (errno || num < 0)
4545 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004546 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00004547 return num;
4548}
4549
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004550#if BB_MMU
4551#define fetch_till_str(as_string, input, word, skip_tabs) \
4552 fetch_till_str(input, word, skip_tabs)
4553#endif
4554static char *fetch_till_str(o_string *as_string,
4555 struct in_str *input,
4556 const char *word,
4557 int skip_tabs)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004558{
4559 o_string heredoc = NULL_O_STRING;
4560 int past_EOL = 0;
4561 int ch;
4562
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004563 goto jump_in;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004564 while (1) {
4565 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004566 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004567 if (ch == '\n') {
4568 if (strcmp(heredoc.data + past_EOL, word) == 0) {
4569 heredoc.data[past_EOL] = '\0';
4570 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
4571 return heredoc.data;
4572 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004573 do {
4574 o_addchr(&heredoc, ch);
4575 past_EOL = heredoc.length;
4576 jump_in:
4577 do {
4578 ch = i_getch(input);
4579 nommu_addchr(as_string, ch);
4580 } while (skip_tabs && ch == '\t');
4581 } while (ch == '\n');
4582 }
4583 if (ch == EOF) {
4584 o_free_unsafe(&heredoc);
4585 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004586 }
4587 o_addchr(&heredoc, ch);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004588 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004589 }
4590}
4591
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004592/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
4593 * and load them all. There should be exactly heredoc_cnt of them.
4594 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004595static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
4596{
4597 struct pipe *pi = ctx->list_head;
4598
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004599 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004600 int i;
4601 struct command *cmd = pi->cmds;
4602
4603 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
4604 pi->num_cmds,
4605 cmd->argv ? cmd->argv[0] : "NONE");
4606 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004607 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004608
4609 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
4610 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004611 while (redir) {
4612 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004613 char *p;
4614
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004615 redir->rd_type = REDIRECT_HEREDOC2;
4616 /* redir->dup is (ab)used to indicate <<- */
4617 p = fetch_till_str(&ctx->as_string, input,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004618 redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004619 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004620 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004621 return 1;
4622 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004623 free(redir->rd_filename);
4624 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004625 heredoc_cnt--;
4626 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004627 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004628 }
4629 cmd++;
4630 }
4631 pi = pi->next;
4632 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004633#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004634 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004635 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004636 bb_error_msg_and_die("heredoc BUG 2");
4637#endif
4638 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004639}
4640
4641
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004642#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004643static FILE *generate_stream_from_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004644{
4645 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004646 int pid, channel[2];
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004647#if !BB_MMU
4648 char **to_free;
4649#endif
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004650
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00004651 xpipe(channel);
Denis Vlasenko82604e92008-07-01 15:59:42 +00004652 pid = BB_MMU ? fork() : vfork();
4653 if (pid < 0)
4654 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004655
Denis Vlasenko05743d72008-02-10 12:10:08 +00004656 if (pid == 0) { /* child */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004657 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004658 /* Process substitution is not considered to be usual
4659 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00004660 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
4661 */
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00004662 bb_signals(0
4663 + (1 << SIGTSTP)
4664 + (1 << SIGTTIN)
4665 + (1 << SIGTTOU)
4666 , SIG_IGN);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004667 close(channel[0]); /* NB: close _first_, then move fd! */
4668 xmove_fd(channel[1], 1);
4669 /* Prevent it from trying to handle ctrl-z etc */
4670 USE_HUSH_JOB(G.run_list_level = 1;)
4671#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004672 reset_traps_to_defaults();
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004673 parse_and_run_string(s);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004674 _exit(G.last_exitcode);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004675#else
4676 /* We re-execute after vfork on NOMMU. This makes this script safe:
Denis Vlasenkof9375282009-04-05 19:13:39 +00004677 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
4678 * huge=`cat BIG` # was blocking here forever
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004679 * echo OK
4680 */
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004681 re_execute_shell(&to_free,
4682 s,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004683 G.global_argv[0],
4684 G.global_argv + 1);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004685#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004686 }
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004687
4688 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004689 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004690#if !BB_MMU
4691 free(to_free);
4692#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004693 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00004694 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00004695 return pf;
4696}
4697
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004698/* Return code is exit status of the process that is run. */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004699static int process_command_subs(o_string *dest, const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004700{
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004701 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004702 struct in_str pipe_str;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004703 int ch, eol_cnt;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004704
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004705 pf = generate_stream_from_string(s);
4706 if (pf == NULL)
Denis Vlasenko05743d72008-02-10 12:10:08 +00004707 return 1;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004708 close_on_exec_on(fileno(pf));
Eric Andersen25f27032001-04-26 23:22:31 +00004709
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004710 /* Now send results of command back into original context */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004711 setup_file_in_str(&pipe_str, pf);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004712 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004713 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004714 if (ch == '\n') {
4715 eol_cnt++;
4716 continue;
4717 }
4718 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00004719 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004720 eol_cnt--;
4721 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00004722 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004723 }
4724
4725 debug_printf("done reading from pipe, pclose()ing\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004726 /* Note: we got EOF, and we just close the read end of the pipe.
4727 * We do not wait for the `cmd` child to terminate. bash and ash do.
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004728 * Try these:
4729 * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
4730 * `false`; echo $? - bash outputs "1"
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004731 */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004732 fclose(pf);
4733 debug_printf("closed FILE from child. return 0\n");
4734 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004735}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004736#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004737
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004738static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004739 struct in_str *input, int ch)
4740{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004741 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004742 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004743 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004744 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004745 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004746 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004747
4748 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004749#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004750 if (ch == '(' && !dest->o_quoted) {
4751 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00004752 if (done_word(dest, ctx))
4753 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004754 if (!command->argv)
4755 goto skip; /* (... */
4756 if (command->argv[1]) { /* word word ... (... */
4757 syntax_error_unexpected_ch('(');
4758 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004759 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004760 /* it is "word(..." or "word (..." */
4761 do
4762 ch = i_getch(input);
4763 while (ch == ' ' || ch == '\t');
4764 if (ch != ')') {
4765 syntax_error_unexpected_ch(ch);
4766 return 1;
4767 }
4768 nommu_addchr(&ctx->as_string, ch);
4769 do
4770 ch = i_getch(input);
4771 while (ch == ' ' || ch == '\t' || ch == '\n');
4772 if (ch != '{') {
4773 syntax_error_unexpected_ch(ch);
4774 return 1;
4775 }
4776 nommu_addchr(&ctx->as_string, ch);
4777 command->grp_type = GRP_FUNCTION;
4778 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004779 }
4780#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004781 if (command->argv /* word [word]{... */
4782 || dest->length /* word{... */
4783 || dest->o_quoted /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004784 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004785 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004786 debug_printf_parse("parse_group return 1: "
4787 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004788 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004789 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004790
4791#if ENABLE_HUSH_FUNCTIONS
4792 skip:
4793#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004794 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004795 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004796 endch = ')';
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004797 command->grp_type = GRP_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004798 } else {
4799 /* bash does not allow "{echo...", requires whitespace */
4800 ch = i_getch(input);
4801 if (ch != ' ' && ch != '\t' && ch != '\n') {
4802 syntax_error_unexpected_ch(ch);
4803 return 1;
4804 }
4805 nommu_addchr(&ctx->as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004806 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004807
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004808 {
4809#if !BB_MMU
4810 char *as_string = NULL;
4811#endif
4812 pipe_list = parse_stream(&as_string, input, endch);
4813#if !BB_MMU
4814 if (as_string)
4815 o_addstr(&ctx->as_string, as_string);
4816#endif
4817 /* empty ()/{} or parse error? */
4818 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00004819 /* parse_stream already emitted error msg */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004820#if !BB_MMU
4821 free(as_string);
4822#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004823 debug_printf_parse("parse_group return 1: "
4824 "parse_stream returned %p\n", pipe_list);
4825 return 1;
4826 }
4827 command->group = pipe_list;
4828#if !BB_MMU
4829 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4830 command->group_as_string = as_string;
4831 debug_printf_parse("end of group, remembering as:'%s'\n",
4832 command->group_as_string);
4833#endif
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004834 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004835 debug_printf_parse("parse_group return 0\n");
4836 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004837 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004838}
4839
Mike Frysinger98c52642009-04-02 10:02:37 +00004840#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004841/* Subroutines for copying $(...) and `...` things */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004842static void add_till_backquote(o_string *dest, struct in_str *input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004843/* '...' */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004844static void add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004845{
4846 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004847 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004848 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004849 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004850 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004851 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004852 if (ch == '\'')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004853 return;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004854 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004855 }
4856}
4857/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004858static void add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004859{
4860 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004861 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004862 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004863 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004864 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004865 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004866 if (ch == '"')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004867 return;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004868 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004869 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004870 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004871 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004872 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004873 if (ch == '`') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004874 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004875 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004876 continue;
4877 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004878 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004879 }
4880}
4881/* Process `cmd` - copy contents until "`" is seen. Complicated by
4882 * \` quoting.
4883 * "Within the backquoted style of command substitution, backslash
4884 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4885 * The search for the matching backquote shall be satisfied by the first
4886 * backquote found without a preceding backslash; during this search,
4887 * if a non-escaped backquote is encountered within a shell comment,
4888 * a here-document, an embedded command substitution of the $(command)
4889 * form, or a quoted string, undefined results occur. A single-quoted
4890 * or double-quoted string that begins, but does not end, within the
4891 * "`...`" sequence produces undefined results."
4892 * Example Output
4893 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4894 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004895static void add_till_backquote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004896{
4897 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004898 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004899 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004900 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004901 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004902 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004903 if (ch == '`')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004904 return;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004905 if (ch == '\\') {
4906 /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004907 int ch2 = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004908 if (ch2 == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004909 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004910 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004911 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004912 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004913 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004914 ch = ch2;
4915 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004916 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004917 }
4918}
4919/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4920 * quoting and nested ()s.
4921 * "With the $(command) style of command substitution, all characters
4922 * following the open parenthesis to the matching closing parenthesis
4923 * constitute the command. Any valid shell script can be used for command,
4924 * except a script consisting solely of redirections which produces
4925 * unspecified results."
4926 * Example Output
4927 * echo $(echo '(TEST)' BEST) (TEST) BEST
4928 * echo $(echo 'TEST)' BEST) TEST) BEST
4929 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
4930 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004931static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004932{
4933 int count = 0;
4934 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004935 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004936 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004937 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004938 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004939 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004940 if (ch == '(')
4941 count++;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004942 if (ch == ')') {
Mike Frysinger98c52642009-04-02 10:02:37 +00004943 if (--count < 0) {
4944 if (!dbl)
4945 break;
4946 if (i_peek(input) == ')') {
4947 i_getch(input);
4948 break;
4949 }
4950 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004951 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004952 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004953 if (ch == '\'') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004954 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004955 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004956 continue;
4957 }
4958 if (ch == '"') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004959 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004960 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004961 continue;
4962 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004963 if (ch == '\\') {
4964 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004965 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004966 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004967 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004968 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004969 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004970 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004971 continue;
4972 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004973 }
4974}
Mike Frysinger98c52642009-04-02 10:02:37 +00004975#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004976
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004977/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004978#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004979#define handle_dollar(as_string, dest, input) \
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004980 handle_dollar(dest, input)
4981#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004982static int handle_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004983 o_string *dest,
4984 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00004985{
Mike Frysinger6379bb42009-03-28 18:55:03 +00004986 int expansion;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004987 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004988 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004989
4990 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004991 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004992 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004993 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00004994 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004995 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004996 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004997 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004998 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004999 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005000 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005001 if (!isalnum(ch) && ch != '_')
5002 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005003 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005004 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005005 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005006 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005007 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005008 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005009 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005010 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005011 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005012 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005013 o_addchr(dest, ch | quote_mask);
5014 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005015 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005016 case '$': /* pid */
5017 case '!': /* last bg pid */
5018 case '?': /* last exit code */
5019 case '#': /* number of args */
5020 case '*': /* args */
5021 case '@': /* args */
5022 goto make_one_char_var;
5023 case '{': {
5024 bool first_char, all_digits;
Mike Frysinger6379bb42009-03-28 18:55:03 +00005025
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005026 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005027 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005028 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005029 /* XXX maybe someone will try to escape the '}' */
5030 expansion = 0;
5031 first_char = true;
5032 all_digits = false;
5033 while (1) {
5034 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005035 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005036 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00005037 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00005038
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005039 if (first_char) {
5040 if (ch == '#')
5041 /* ${#var}: length of var contents */
5042 goto char_ok;
5043 else if (isdigit(ch)) {
5044 all_digits = true;
5045 goto char_ok;
5046 }
5047 }
5048
5049 if (expansion < 2
5050 && ( (all_digits && !isdigit(ch))
5051 || (!all_digits && !isalnum(ch) && ch != '_')
5052 )
5053 ) {
5054 /* handle parameter expansions
5055 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
5056 */
5057 if (first_char)
5058 goto case_default;
5059 switch (ch) {
5060 case ':': /* null modifier */
5061 if (expansion == 0) {
5062 debug_printf_parse(": null modifier\n");
5063 ++expansion;
5064 break;
5065 }
5066 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005067 case '#': /* remove prefix */
5068 case '%': /* remove suffix */
5069 if (expansion == 0) {
5070 debug_printf_parse(": remove suffix/prefix\n");
5071 expansion = 2;
5072 break;
5073 }
5074 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005075 case '-': /* default value */
5076 case '=': /* assign default */
5077 case '+': /* alternative */
5078 case '?': /* error indicate */
5079 debug_printf_parse(": parameter expansion\n");
5080 expansion = 2;
5081 break;
5082 default:
5083 case_default:
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005084 syntax_error_unterm_str("${name}");
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005085 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
5086 return 1;
5087 }
5088 }
5089 char_ok:
5090 debug_printf_parse(": '%c'\n", ch);
5091 o_addchr(dest, ch | quote_mask);
5092 quote_mask = 0;
5093 first_char = false;
5094 }
5095 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5096 break;
5097 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005098#if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK)
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005099 case '(': {
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005100# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005101 int pos;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005102# endif
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005103 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005104 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005105# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005106 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005107 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005108 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005109 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5110 o_addchr(dest, /*quote_mask |*/ '+');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005111# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005112 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005113# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005114 add_till_closing_paren(dest, input, true);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005115# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005116 if (as_string) {
5117 o_addstr(as_string, dest->data + pos);
5118 o_addchr(as_string, ')');
5119 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005120 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005121# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005122 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005123 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005124 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005125# endif
5126# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005127 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5128 o_addchr(dest, quote_mask | '`');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005129# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005130 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005131# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005132 add_till_closing_paren(dest, input, false);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005133# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005134 if (as_string) {
5135 o_addstr(as_string, dest->data + pos);
5136 o_addchr(as_string, '`');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005137 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005138# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005139 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005140# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005141 break;
5142 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005143#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005144 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005145 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005146 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005147 ch = i_peek(input);
5148 if (isalnum(ch)) { /* it's $_name or $_123 */
5149 ch = '_';
5150 goto make_var;
5151 }
5152 /* else: it's $_ */
5153 /* TODO: */
5154 /* $_ Shell or shell script name; or last cmd name */
5155 /* $- Option flags set by set builtin or shell options (-i etc) */
5156 default:
5157 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00005158 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005159 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00005160 return 0;
5161}
5162
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005163#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005164#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005165 parse_stream_dquoted(dest, input, dquote_end)
5166#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005167static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005168 o_string *dest,
5169 struct in_str *input,
5170 int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005171{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005172 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005173 int next;
5174
5175 again:
5176 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005177 if (ch != EOF)
5178 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005179 if (ch == dquote_end) { /* may be only '"' or EOF */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005180 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005181 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005182 debug_printf_parse("parse_stream_dquoted return 0\n");
5183 return 0;
5184 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005185 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005186 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005187 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005188 /*xfunc_die(); - redundant */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005189 }
5190 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005191 if (ch != '\n') {
5192 next = i_peek(input);
5193 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005194 debug_printf_parse(": ch=%c (%d) escape=%d\n",
5195 ch, ch, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005196 if (ch == '\\') {
5197 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005198 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005199 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005200 }
5201 /* bash:
5202 * "The backslash retains its special meaning [in "..."]
5203 * only when followed by one of the following characters:
5204 * $, `, ", \, or <newline>. A double quote may be quoted
5205 * within double quotes by preceding it with a backslash.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005206 */
5207 if (strchr("$`\"\\", next) != NULL) {
5208 o_addqchr(dest, i_getch(input));
5209 } else {
5210 o_addqchr(dest, '\\');
5211 }
5212 goto again;
5213 }
5214 if (ch == '$') {
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005215 if (handle_dollar(as_string, dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005216 debug_printf_parse("parse_stream_dquoted return 1: "
5217 "handle_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005218 return 1;
5219 }
5220 goto again;
5221 }
5222#if ENABLE_HUSH_TICK
5223 if (ch == '`') {
5224 //int pos = dest->length;
5225 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5226 o_addchr(dest, 0x80 | '`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005227 add_till_backquote(dest, input);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005228 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5229 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00005230 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005231 }
5232#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00005233 o_addQchr(dest, ch);
5234 if (ch == '='
5235 && (dest->o_assignment == MAYBE_ASSIGNMENT
5236 || dest->o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005237 && is_well_formed_var_name(dest->data, '=')
Denis Vlasenkof328e002009-04-02 16:55:38 +00005238 ) {
5239 dest->o_assignment = DEFINITELY_ASSIGNMENT;
5240 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005241 goto again;
5242}
5243
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005244/*
5245 * Scan input until EOF or end_trigger char.
5246 * Return a list of pipes to execute, or NULL on EOF
5247 * or if end_trigger character is met.
5248 * On syntax error, exit is shell is not interactive,
5249 * reset parsing machinery and start parsing anew,
5250 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005251 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005252static struct pipe *parse_stream(char **pstring,
5253 struct in_str *input,
5254 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005255{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005256 struct parse_context ctx;
5257 o_string dest = NULL_O_STRING;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005258 int is_in_dquote;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005259 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00005260
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005261 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00005262 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005263 * found. When recursing, quote state is passed in via dest->o_escape.
5264 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005265 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
5266 end_trigger ? : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005267 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005268
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005269 G.ifs = get_local_var_value("IFS");
5270 if (G.ifs == NULL)
5271 G.ifs = " \t\n";
5272
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005273 reset:
5274#if ENABLE_HUSH_INTERACTIVE
5275 input->promptmode = 0; /* PS1 */
5276#endif
5277 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
5278 initialize_context(&ctx);
5279 is_in_dquote = 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005280 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005281 while (1) {
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005282 const char *is_ifs;
5283 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005284 int ch;
5285 int next;
5286 int redir_fd;
5287 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005288
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005289 if (is_in_dquote) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005290 /* dest.o_quoted = 1; - already is (see below) */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005291 if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005292 goto parse_error;
5293 }
5294 /* We reached closing '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005295 is_in_dquote = 0;
5296 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005297 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005298 debug_printf_parse(": ch=%c (%d) escape=%d\n",
5299 ch, ch, dest.o_escape);
5300 if (ch == EOF) {
5301 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005302
5303 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005304 syntax_error_unterm_str("here document");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005305 xfunc_die();
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005306 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005307 if (done_word(&dest, &ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005308 xfunc_die();
Denis Vlasenko55789c62008-06-18 16:30:42 +00005309 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005310 o_free(&dest);
5311 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005312 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005313 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005314 /* (this makes bare "&" cmd a no-op.
5315 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005316 if (pi->num_cmds == 0
5317 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
5318 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005319 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005320 pi = NULL;
5321 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005322#if !BB_MMU
5323 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5324 if (pstring)
5325 *pstring = ctx.as_string.data;
5326 else
5327 o_free_unsafe(&ctx.as_string);
5328#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005329 debug_leave();
5330 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005331 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005332 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005333 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005334 is_ifs = strchr(G.ifs, ch);
5335 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
5336 "\\$\"" USE_HUSH_TICK("`") /* always special */
5337 , ch);
5338
5339 if (!is_special && !is_ifs) { /* ordinary char */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005340 o_addQchr(&dest, ch);
5341 if ((dest.o_assignment == MAYBE_ASSIGNMENT
5342 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00005343 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005344 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00005345 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005346 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005347 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005348 continue;
5349 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00005350
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005351 if (is_ifs) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005352 if (done_word(&dest, &ctx)) {
5353 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00005354 }
Denis Vlasenko37181682009-04-03 03:19:15 +00005355 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00005356#if ENABLE_HUSH_CASE
5357 /* "case ... in <newline> word) ..." -
5358 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005359 if (ctx.command->argv == NULL
5360 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00005361 ) {
5362 continue;
5363 }
5364#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00005365 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005366 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005367 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
5368 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005369 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005370 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005371 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005372 heredoc_cnt = 0;
5373 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005374 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005375 ch = ';';
Denis Vlasenko7c986122009-04-04 12:15:42 +00005376 /* note: if (is_ifs) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005377 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005378 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005379 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005380 if (end_trigger && end_trigger == ch
5381 && (heredoc_cnt == 0 || end_trigger != ';')
5382 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005383 if (heredoc_cnt) {
5384 /* This is technically valid:
5385 * { cat <<HERE; }; echo Ok
5386 * heredoc
5387 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005388 * HERE
5389 * but we don't support this.
5390 * We require heredoc to be in enclosing {}/(),
5391 * if any.
5392 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005393 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005394 goto parse_error;
5395 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005396 if (done_word(&dest, &ctx)) {
5397 goto parse_error;
5398 }
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00005399 /* Disallow "{ cmd }" without semicolon or & */
5400 //debug_printf_parse("null pi %d\n", IS_NULL_PIPE(ctx.pipe))
5401 //debug_printf_parse("null cmd %d\n", IS_NULL_CMD(ctx.command))
5402 if (ch == '}'
5403 && !(IS_NULL_PIPE(ctx.pipe) && IS_NULL_CMD(ctx.command))
5404 ) {
5405 syntax_error_unexpected_ch(ch);
5406 goto parse_error;
5407 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005408 done_pipe(&ctx, PIPE_SEQ);
5409 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005410 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00005411 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005412 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00005413 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005414 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005415#if !BB_MMU
5416 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5417 if (pstring)
5418 *pstring = ctx.as_string.data;
5419 else
5420 o_free_unsafe(&ctx.as_string);
5421#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005422 debug_leave();
5423 debug_printf_parse("parse_stream return %p: "
5424 "end_trigger char found\n",
5425 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005426 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005427 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005428 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005429 if (is_ifs)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005430 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005431
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005432 next = '\0';
5433 if (ch != '\n') {
5434 next = i_peek(input);
5435 }
5436
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005437 /* Catch <, > before deciding whether this word is
5438 * an assignment. a=1 2>z b=2: b=2 is still assignment */
5439 switch (ch) {
5440 case '>':
5441 redir_fd = redirect_opt_num(&dest);
5442 if (done_word(&dest, &ctx)) {
5443 goto parse_error;
5444 }
5445 redir_style = REDIRECT_OVERWRITE;
5446 if (next == '>') {
5447 redir_style = REDIRECT_APPEND;
5448 ch = i_getch(input);
5449 nommu_addchr(&ctx.as_string, ch);
5450 }
5451#if 0
5452 else if (next == '(') {
5453 syntax_error(">(process) not supported");
5454 goto parse_error;
5455 }
5456#endif
5457 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5458 goto parse_error;
5459 continue; /* back to top of while (1) */
5460 case '<':
5461 redir_fd = redirect_opt_num(&dest);
5462 if (done_word(&dest, &ctx)) {
5463 goto parse_error;
5464 }
5465 redir_style = REDIRECT_INPUT;
5466 if (next == '<') {
5467 redir_style = REDIRECT_HEREDOC;
5468 heredoc_cnt++;
5469 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
5470 ch = i_getch(input);
5471 nommu_addchr(&ctx.as_string, ch);
5472 } else if (next == '>') {
5473 redir_style = REDIRECT_IO;
5474 ch = i_getch(input);
5475 nommu_addchr(&ctx.as_string, ch);
5476 }
5477#if 0
5478 else if (next == '(') {
5479 syntax_error("<(process) not supported");
5480 goto parse_error;
5481 }
5482#endif
5483 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5484 goto parse_error;
5485 continue; /* back to top of while (1) */
5486 }
5487
5488 if (dest.o_assignment == MAYBE_ASSIGNMENT
5489 /* check that we are not in word in "a=1 2>word b=1": */
5490 && !ctx.pending_redirect
5491 ) {
5492 /* ch is a special char and thus this word
5493 * cannot be an assignment */
5494 dest.o_assignment = NOT_ASSIGNMENT;
5495 }
5496
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005497 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00005498 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005499 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005500 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005501 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005502 if (ch == EOF || ch == '\n')
5503 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005504 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005505 /* note: we do not add it to &ctx.as_string */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005506 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005507 nommu_addchr(&ctx.as_string, '\n');
Eric Andersen25f27032001-04-26 23:22:31 +00005508 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005509 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005510 }
5511 break;
5512 case '\\':
5513 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005514 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005515 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00005516 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005517 o_addchr(&dest, '\\');
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005518 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005519 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005520 o_addchr(&dest, ch);
5521 /* Example: echo Hello \2>file
5522 * we need to know that word 2 is quoted */
5523 dest.o_quoted = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005524 break;
5525 case '$':
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005526 if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005527 debug_printf_parse("parse_stream parse error: "
5528 "handle_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005529 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005530 }
Eric Andersen25f27032001-04-26 23:22:31 +00005531 break;
5532 case '\'':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005533 dest.o_quoted = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005534 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005535 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005536 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005537 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005538 /*xfunc_die(); - redundant */
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005539 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005540 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005541 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005542 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005543 if (dest.o_assignment == NOT_ASSIGNMENT)
5544 o_addqchr(&dest, ch);
Denis Vlasenko55789c62008-06-18 16:30:42 +00005545 else
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005546 o_addchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005547 }
Eric Andersen25f27032001-04-26 23:22:31 +00005548 break;
5549 case '"':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005550 dest.o_quoted = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005551 is_in_dquote ^= 1; /* invert */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005552 if (dest.o_assignment == NOT_ASSIGNMENT)
5553 dest.o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005554 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005555#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005556 case '`': {
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005557#if !BB_MMU
5558 int pos;
5559#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005560 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5561 o_addchr(&dest, '`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005562#if !BB_MMU
5563 pos = dest.length;
5564#endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005565 add_till_backquote(&dest, input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005566#if !BB_MMU
5567 o_addstr(&ctx.as_string, dest.data + pos);
5568 o_addchr(&ctx.as_string, '`');
5569#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005570 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5571 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00005572 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005573 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005574#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005575 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005576#if ENABLE_HUSH_CASE
5577 case_semi:
5578#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005579 if (done_word(&dest, &ctx)) {
5580 goto parse_error;
5581 }
5582 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005583#if ENABLE_HUSH_CASE
5584 /* Eat multiple semicolons, detect
5585 * whether it means something special */
5586 while (1) {
5587 ch = i_peek(input);
5588 if (ch != ';')
5589 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005590 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005591 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005592 if (ctx.ctx_res_w == RES_CASEI) {
5593 ctx.ctx_dsemicolon = 1;
5594 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005595 break;
5596 }
5597 }
5598#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005599 new_cmd:
5600 /* We just finished a cmd. New one may start
5601 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005602 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00005603 break;
5604 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005605 if (done_word(&dest, &ctx)) {
5606 goto parse_error;
5607 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005608 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005609 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005610 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005611 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005612 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005613 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005614 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005615 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005616 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005617 if (done_word(&dest, &ctx)) {
5618 goto parse_error;
5619 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005620#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005621 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005622 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005623#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005624 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005625 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005626 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005627 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005628 } else {
5629 /* we could pick up a file descriptor choice here
5630 * with redirect_opt_num(), but bash doesn't do it.
5631 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005632 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005633 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005634 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005635 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005636#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005637 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005638 if (ctx.ctx_res_w == RES_MATCH
5639 && ctx.command->argv == NULL /* not (word|(... */
5640 && dest.length == 0 /* not word(... */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005641 && dest.o_quoted == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005642 ) {
5643 continue;
5644 }
5645#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005646 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005647 if (parse_group(&dest, &ctx, input, ch) != 0) {
5648 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005649 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005650 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005651 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005652#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005653 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005654 goto case_semi;
5655#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005656 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005657 /* proper use of this character is caught by end_trigger:
5658 * if we see {, we call parse_group(..., end_trigger='}')
5659 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005660 syntax_error_unexpected_ch(ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005661 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005662 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005663 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005664 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005665 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005666 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005667
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005668 parse_error:
5669 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005670 struct parse_context *pctx;
5671 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005672
5673 /* Clean up allocated tree.
5674 * Samples for finding leaks on syntax error recovery path.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005675 * Run them from interactive shell, watch pmap `pidof hush`.
5676 * while if false; then false; fi do break; done
5677 * (bash accepts it)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005678 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005679 * Samples to catch leaks at execution:
5680 * while if (true | {true;}); then echo ok; fi; do break; done
5681 * 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 +00005682 */
5683 pctx = &ctx;
5684 do {
5685 /* Update pipe/command counts,
5686 * otherwise freeing may miss some */
5687 done_pipe(pctx, PIPE_SEQ);
5688 debug_printf_clean("freeing list %p from ctx %p\n",
5689 pctx->list_head, pctx);
5690 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005691 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005692 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005693#if !BB_MMU
5694 o_free_unsafe(&pctx->as_string);
5695#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005696 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005697 if (pctx != &ctx) {
5698 free(pctx);
5699 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005700 IF_HAS_KEYWORDS(pctx = p2;)
5701 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005702 /* Free text, clear all dest fields */
5703 o_free(&dest);
5704 /* If we are not in top-level parse, we return,
5705 * our caller will propagate error.
5706 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005707 if (end_trigger != ';') {
5708#if !BB_MMU
5709 if (pstring)
5710 *pstring = NULL;
5711#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005712 debug_leave();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005713 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005714 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005715 /* Discard cached input, force prompt */
5716 input->p = NULL;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005717 USE_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005718 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005719 }
Eric Andersen25f27032001-04-26 23:22:31 +00005720}
5721
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005722/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005723 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
5724 * end_trigger controls how often we stop parsing
5725 * NUL: parse all, execute, return
5726 * ';': parse till ';' or newline, execute, repeat till EOF
5727 */
5728static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005729{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005730 while (1) {
5731 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005732
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005733 pipe_list = parse_stream(NULL, inp, end_trigger);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005734 if (!pipe_list) /* EOF */
5735 break;
5736 debug_print_tree(pipe_list, 0);
5737 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
5738 run_and_free_list(pipe_list);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005739 }
Eric Andersen25f27032001-04-26 23:22:31 +00005740}
5741
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005742static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005743{
5744 struct in_str input;
5745 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005746 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00005747}
5748
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005749static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00005750{
Eric Andersen25f27032001-04-26 23:22:31 +00005751 struct in_str input;
5752 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005753 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00005754}
5755
Denis Vlasenkof9375282009-04-05 19:13:39 +00005756/* Called a few times only (or even once if "sh -c") */
5757static void block_signals(int second_time)
Eric Andersen52a97ca2001-06-22 06:49:26 +00005758{
Denis Vlasenkof9375282009-04-05 19:13:39 +00005759 unsigned sig;
5760 unsigned mask;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005761
Denis Vlasenkof9375282009-04-05 19:13:39 +00005762 mask = (1 << SIGQUIT);
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00005763 if (G_interactive_fd)
5764 mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS;
Denis Vlasenkof9375282009-04-05 19:13:39 +00005765 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00005766
Denis Vlasenkof9375282009-04-05 19:13:39 +00005767 if (!second_time)
5768 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
5769 sig = 0;
5770 while (mask) {
5771 if (mask & 1)
5772 sigaddset(&G.blocked_set, sig);
5773 mask >>= 1;
5774 sig++;
5775 }
5776 sigdelset(&G.blocked_set, SIGCHLD);
5777
5778 sigprocmask(SIG_SETMASK, &G.blocked_set,
5779 second_time ? NULL : &G.inherited_set);
5780 /* POSIX allows shell to re-enable SIGCHLD
5781 * even if it was SIG_IGN on entry */
5782// G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
5783 if (!second_time)
5784 signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler);
5785}
5786
5787#if ENABLE_HUSH_JOB
5788/* helper */
5789static void maybe_set_to_sigexit(int sig)
5790{
5791 void (*handler)(int);
5792 /* non_DFL_mask'ed signals are, well, masked,
5793 * no need to set handler for them.
5794 */
5795 if (!((G.non_DFL_mask >> sig) & 1)) {
5796 handler = signal(sig, sigexit);
5797 if (handler == SIG_IGN) /* oops... restore back to IGN! */
5798 signal(sig, handler);
5799 }
5800}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005801/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005802static void set_fatal_handlers(void)
5803{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00005804 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005805 if (HUSH_DEBUG) {
5806 maybe_set_to_sigexit(SIGILL );
5807 maybe_set_to_sigexit(SIGFPE );
5808 maybe_set_to_sigexit(SIGBUS );
5809 maybe_set_to_sigexit(SIGSEGV);
5810 maybe_set_to_sigexit(SIGTRAP);
5811 } /* else: hush is perfect. what SEGV? */
5812 maybe_set_to_sigexit(SIGABRT);
5813 /* bash 3.2 seems to handle these just like 'fatal' ones */
5814 maybe_set_to_sigexit(SIGPIPE);
5815 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005816//TODO: disable and move down when proper SIGHUP handling is added
Denis Vlasenkof9375282009-04-05 19:13:39 +00005817 maybe_set_to_sigexit(SIGHUP );
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005818 /* if we are interactive, [SIGHUP,] SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00005819 * if we aren't interactive... but in this case
5820 * we never want to restore pgrp on exit, and this fn is not called */
5821 /*maybe_set_to_sigexit(SIGTERM);*/
5822 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00005823}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00005824#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00005825
Denis Vlasenkod5762932009-03-31 11:22:57 +00005826static int set_mode(const char cstate, const char mode)
5827{
5828 int state = (cstate == '-' ? 1 : 0);
5829 switch (mode) {
5830 case 'n': G.fake_mode = state; break;
5831 case 'x': /*G.debug_mode = state;*/ break;
5832 default: return EXIT_FAILURE;
5833 }
5834 return EXIT_SUCCESS;
5835}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005836
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00005837int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00005838int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00005839{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005840 static const struct variable const_shell_ver = {
5841 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005842 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005843 .max_len = 1, /* 0 can provoke free(name) */
5844 .flg_export = 1,
5845 .flg_read_only = 1,
5846 };
Denis Vlasenkof9375282009-04-05 19:13:39 +00005847 int signal_mask_is_inited = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00005848 int opt;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005849 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005850 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00005851
Denis Vlasenko574f2f42008-02-27 18:41:59 +00005852 INIT_G();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005853 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005854 G.last_exitcode = EXIT_SUCCESS;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005855#if !BB_MMU
5856 G.argv0_for_re_execing = argv[0];
5857#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005858 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005859 G.shell_ver = const_shell_ver; /* copying struct here */
5860 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005861 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005862 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
5863 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005864 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005865 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005866 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005867 if (e) while (*e) {
5868 char *value = strchr(*e, '=');
5869 if (value) { /* paranoia */
5870 cur_var->next = xzalloc(sizeof(*cur_var));
5871 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00005872 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005873 cur_var->max_len = strlen(*e);
5874 cur_var->flg_export = 1;
5875 }
5876 e++;
5877 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005878 debug_printf_env("putenv '%s'\n", hush_version_str);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005879 putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
Denis Vlasenko38f63192007-01-22 09:03:07 +00005880#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00005881 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00005882#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00005883 G.global_argc = argc;
5884 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00005885 /* Initialize some more globals to non-zero values */
5886 set_cwd();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005887#if ENABLE_HUSH_INTERACTIVE
Mike Frysingerec2c6552009-03-28 12:24:44 +00005888 if (ENABLE_FEATURE_EDITING)
5889 cmdedit_set_initial_prompt();
Denis Vlasenko87a86552008-07-29 19:43:10 +00005890 G.PS2 = "> ";
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005891#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00005892
Denis Vlasenkoed782372009-04-10 00:45:02 +00005893 if (setjmp(die_jmp)) {
5894 /* xfunc has failed! die die die */
5895 /* no EXIT traps, this is an escape hatch! */
5896 G.exiting = 1;
5897 hush_exit(xfunc_error_retval);
5898 }
5899
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005900 /* Shell is non-interactive at first. We need to call
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005901 * block_signals(0) if we are going to execute "sh <script>",
5902 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005903 * If we later decide that we are interactive, we run block_signals(0)
5904 * (or re-run block_signals(1) if we ran block_signals(0) before)
5905 * in order to intercept (more) signals.
5906 */
5907
5908 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005909 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005910 while (1) {
5911 opt = getopt(argc, argv, "c:xins"
5912#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00005913 "<:$:R:V:"
5914# if ENABLE_HUSH_FUNCTIONS
5915 "F:"
5916# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005917#endif
5918 );
5919 if (opt <= 0)
5920 break;
Eric Andersen25f27032001-04-26 23:22:31 +00005921 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005922 case 'c':
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005923 if (!G.root_pid)
5924 G.root_pid = getpid();
Denis Vlasenko87a86552008-07-29 19:43:10 +00005925 G.global_argv = argv + optind;
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00005926 if (!argv[optind]) {
5927 /* -c 'script' (no params): prevent empty $0 */
5928 *--G.global_argv = argv[0];
5929 optind--;
5930 } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005931 G.global_argc = argc - optind;
Denis Vlasenkof9375282009-04-05 19:13:39 +00005932 block_signals(0); /* 0: called 1st time */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005933 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005934 goto final_return;
5935 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00005936 /* Well, we cannot just declare interactiveness,
5937 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005938 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005939 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005940 case 's':
5941 /* "-s" means "read from stdin", but this is how we always
5942 * operate, so simply do nothing here. */
5943 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005944#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00005945 case '<': /* "big heredoc" support */
5946 full_write(STDOUT_FILENO, optarg, strlen(optarg));
5947 _exit(0);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005948 case '$':
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005949 G.root_pid = bb_strtou(optarg, &optarg, 16);
5950 optarg++;
5951 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
5952 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005953 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005954# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005955 optarg++;
5956 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005957# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005958 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005959 case 'R':
5960 case 'V':
5961 set_local_var(xstrdup(optarg), 0, opt == 'R');
5962 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00005963# if ENABLE_HUSH_FUNCTIONS
5964 case 'F': {
5965 struct function *funcp = new_function(optarg);
5966 /* funcp->name is already set to optarg */
5967 /* funcp->body is set to NULL. It's a special case. */
5968 funcp->body_as_string = argv[optind];
5969 optind++;
5970 break;
5971 }
5972# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005973#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005974 case 'n':
5975 case 'x':
Denis Vlasenkod5762932009-03-31 11:22:57 +00005976 if (!set_mode('-', opt))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005977 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005978 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005979#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005980 fprintf(stderr, "Usage: sh [FILE]...\n"
5981 " or: sh -c command [args]...\n\n");
5982 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005983#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005984 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005985#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005986 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005987 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005988
5989 if (!G.root_pid)
5990 G.root_pid = getpid();
Denis Vlasenkof9375282009-04-05 19:13:39 +00005991
5992 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005993 if (argv[0] && argv[0][0] == '-') {
5994 FILE *input;
5995 /* XXX what should argv be while sourcing /etc/profile? */
5996 debug_printf("sourcing /etc/profile\n");
5997 input = fopen_for_read("/etc/profile");
5998 if (input != NULL) {
5999 close_on_exec_on(fileno(input));
Denis Vlasenkof9375282009-04-05 19:13:39 +00006000 block_signals(0); /* 0: called 1st time */
6001 signal_mask_is_inited = 1;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006002 parse_and_run_file(input);
6003 fclose(input);
6004 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006005 /* bash: after sourcing /etc/profile,
6006 * tries to source (in the given order):
6007 * ~/.bash_profile, ~/.bash_login, ~/.profile,
6008 * stopping of first found. --noprofile turns this off.
6009 * bash also sources ~/.bash_logout on exit.
6010 * If called as sh, skips .bash_XXX files.
6011 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006012 }
6013
Denis Vlasenkof9375282009-04-05 19:13:39 +00006014 if (argv[optind]) {
6015 FILE *input;
6016 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006017 * "bash <script>" (which is never interactive (unless -i?))
6018 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00006019 * If called as sh, does the same but with $ENV.
6020 */
6021 debug_printf("running script '%s'\n", argv[optind]);
6022 G.global_argv = argv + optind;
6023 G.global_argc = argc - optind;
6024 input = xfopen_for_read(argv[optind]);
6025 close_on_exec_on(fileno(input));
6026 if (!signal_mask_is_inited)
6027 block_signals(0); /* 0: called 1st time */
6028 parse_and_run_file(input);
6029#if ENABLE_FEATURE_CLEAN_UP
6030 fclose(input);
6031#endif
6032 goto final_return;
6033 }
6034
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006035 /* Up to here, shell was non-interactive. Now it may become one.
6036 * NB: don't forget to (re)run block_signals(0/1) as needed.
6037 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006038
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006039 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00006040 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00006041 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00006042 * no arguments remaining or the -s flag given
6043 * standard input is a terminal
6044 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00006045 * Refer to Posix.2, the description of the 'sh' utility.
6046 */
6047#if ENABLE_HUSH_JOB
6048 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006049 G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
Denis Vlasenkof9375282009-04-05 19:13:39 +00006050 debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006051//TODO: "interactive" and "have job control" are two different things.
6052//If tcgetpgrp fails here, "have job control" is false, but "interactive"
6053//should stay on! Currently, we mix these into one.
Denis Vlasenko87a86552008-07-29 19:43:10 +00006054 if (G.saved_tty_pgrp >= 0) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006055 /* try to dup stdin to high fd#, >= 255 */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006056 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6057 if (G_interactive_fd < 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006058 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006059 G_interactive_fd = dup(STDIN_FILENO);
6060 if (G_interactive_fd < 0)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006061 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006062 G_interactive_fd = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006063 }
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006064// TODO: track & disallow any attempts of user
6065// to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006066 }
Eric Andersen25f27032001-04-26 23:22:31 +00006067 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006068 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006069 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006070 pid_t shell_pgrp;
6071
6072 /* We are indeed interactive shell, and we will perform
6073 * job control. Setting up for that. */
6074
6075 close_on_exec_on(G_interactive_fd);
6076 /* If we were run as 'hush &', sleep until we are
6077 * in the foreground (tty pgrp == our pgrp).
6078 * If we get started under a job aware app (like bash),
6079 * make sure we are now in charge so we don't fight over
6080 * who gets the foreground */
6081 while (1) {
6082 shell_pgrp = getpgrp();
6083 G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
6084 if (G.saved_tty_pgrp == shell_pgrp)
6085 break;
6086 /* send TTIN to ourself (should stop us) */
6087 kill(- shell_pgrp, SIGTTIN);
6088 }
6089 /* Block some signals */
6090 block_signals(signal_mask_is_inited);
6091 /* Set other signals to restore saved_tty_pgrp */
6092 set_fatal_handlers();
6093 /* Put ourselves in our own process group */
6094 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
6095 /* Grab control of the terminal */
6096 tcsetpgrp(G_interactive_fd, getpid());
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00006097 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00006098 * (we reset die_sleep = 0 whereever we [v]fork) */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006099 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006100 } else if (!signal_mask_is_inited) {
6101 block_signals(0); /* 0: called 1st time */
6102 } /* else: block_signals(0) was done before */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006103#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00006104 /* No job control compiled in, only prompt/line editing */
6105 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006106 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6107 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006108 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006109 G_interactive_fd = dup(STDIN_FILENO);
6110 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006111 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006112 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006113 }
6114 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006115 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006116 close_on_exec_on(G_interactive_fd);
6117 block_signals(signal_mask_is_inited);
6118 } else if (!signal_mask_is_inited) {
6119 block_signals(0);
6120 }
6121#else
6122 /* We have interactiveness code disabled */
6123 if (!signal_mask_is_inited) {
6124 block_signals(0);
6125 }
6126#endif
6127 /* bash:
6128 * if interactive but not a login shell, sources ~/.bashrc
6129 * (--norc turns this off, --rcfile <file> overrides)
6130 */
6131
6132 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Mike Frysinger258275d2009-04-05 21:19:43 +00006133 printf("\n\n%s hush - the humble shell\n", bb_banner);
Mike Frysingerb2705e12009-03-23 08:44:02 +00006134 printf("Enter 'help' for a list of built-in commands.\n\n");
6135 }
6136
Denis Vlasenkof9375282009-04-05 19:13:39 +00006137 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00006138
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006139 final_return:
Denis Vlasenko38f63192007-01-22 09:03:07 +00006140#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko87a86552008-07-29 19:43:10 +00006141 if (G.cwd != bb_msg_unknown)
6142 free((char*)G.cwd);
6143 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006144 while (cur_var) {
6145 struct variable *tmp = cur_var;
6146 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00006147 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006148 cur_var = cur_var->next;
6149 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00006150 }
Eric Andersen25f27032001-04-26 23:22:31 +00006151#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006152 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00006153}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00006154
6155
6156#if ENABLE_LASH
6157int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
6158int lash_main(int argc, char **argv)
6159{
6160 //bb_error_msg("lash is deprecated, please use hush instead");
6161 return hush_main(argc, argv);
6162}
6163#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006164
6165
6166/*
6167 * Built-ins
6168 */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006169static int builtin_trap(char **argv)
6170{
Denis Vlasenkod5762932009-03-31 11:22:57 +00006171 int i;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006172 int sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00006173 char *new_cmd;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006174
6175 if (!G.traps)
Denis Vlasenkod5762932009-03-31 11:22:57 +00006176 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006177
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00006178 argv++;
6179 if (!*argv) {
6180 /* No args: print all trapped. This isn't 100% correct as we
6181 * should be escaping the cmd so that it can be pasted back in
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006182 */
6183 for (i = 0; i < NSIG; ++i)
Denis Vlasenkod5762932009-03-31 11:22:57 +00006184 if (G.traps[i])
6185 printf("trap -- '%s' %s\n", G.traps[i], get_signame(i));
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006186 return EXIT_SUCCESS;
6187 }
6188
Denis Vlasenkod5762932009-03-31 11:22:57 +00006189 new_cmd = NULL;
6190 i = 0;
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00006191 /* If first arg is decimal: reset all specified signals */
6192 sig = bb_strtou(*argv, NULL, 10);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006193 if (errno == 0) {
6194 int ret;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006195 set_all:
6196 ret = EXIT_SUCCESS;
Denis Vlasenkod5762932009-03-31 11:22:57 +00006197 while (*argv) {
6198 sig = get_signum(*argv++);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006199 if (sig < 0 || sig >= NSIG) {
6200 ret = EXIT_FAILURE;
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00006201 /* Mimic bash message exactly */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006202 bb_perror_msg("trap: %s: invalid signal specification", argv[i]);
6203 continue;
6204 }
6205
Denis Vlasenkod5762932009-03-31 11:22:57 +00006206 free(G.traps[sig]);
6207 G.traps[sig] = xstrdup(new_cmd);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006208
Denis Vlasenkod5762932009-03-31 11:22:57 +00006209 debug_printf("trap: setting SIG%s (%i) to '%s'",
6210 get_signame(sig), sig, G.traps[sig]);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006211
6212 /* There is no signal for 0 (EXIT) */
6213 if (sig == 0)
6214 continue;
6215
6216 if (new_cmd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006217 sigaddset(&G.blocked_set, sig);
6218 } else {
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00006219 /* There was a trap handler, we are removing it
Denis Vlasenkod5762932009-03-31 11:22:57 +00006220 * (if sig has non-DFL handling,
6221 * we don't need to do anything) */
6222 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
6223 continue;
6224 sigdelset(&G.blocked_set, sig);
6225 }
6226 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006227 }
6228 return ret;
6229 }
6230
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00006231 /* First arg is "-": reset all specified to default */
6232 /* First arg is "": ignore all specified */
6233 /* Everything else: execute first arg upon signal */
Denis Vlasenkod5762932009-03-31 11:22:57 +00006234 if (!argv[1]) {
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006235 bb_error_msg("trap: invalid arguments");
6236 return EXIT_FAILURE;
6237 }
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00006238 if (NOT_LONE_DASH(*argv))
Denis Vlasenkod5762932009-03-31 11:22:57 +00006239 new_cmd = *argv;
6240 argv++;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006241 goto set_all;
6242}
6243
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006244static int builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006245{
6246 return 0;
6247}
6248
6249static int builtin_test(char **argv)
6250{
6251 int argc = 0;
6252 while (*argv) {
6253 argc++;
6254 argv++;
6255 }
6256 return test_main(argc, argv - argc);
6257}
6258
6259static int builtin_echo(char **argv)
6260{
6261 int argc = 0;
6262 while (*argv) {
6263 argc++;
6264 argv++;
6265 }
6266 return echo_main(argc, argv - argc);
6267}
6268
6269static int builtin_eval(char **argv)
6270{
6271 int rcode = EXIT_SUCCESS;
6272
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006273 if (*++argv) {
6274 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006275 /* bash:
6276 * eval "echo Hi; done" ("done" is syntax error):
6277 * "echo Hi" will not execute too.
6278 */
6279 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006280 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006281 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006282 }
6283 return rcode;
6284}
6285
6286static int builtin_cd(char **argv)
6287{
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006288 const char *newdir = argv[1];
6289 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006290 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006291 * bash says "bash: cd: HOME not set" and does nothing
6292 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006293 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006294 newdir = getenv("HOME") ? : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006295 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006296 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006297 /* Mimic bash message exactly */
6298 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006299 return EXIT_FAILURE;
6300 }
6301 set_cwd();
6302 return EXIT_SUCCESS;
6303}
6304
6305static int builtin_exec(char **argv)
6306{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006307 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006308 return EXIT_SUCCESS; /* bash does this */
6309 {
6310#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00006311 nommu_save_t dummy;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006312#endif
6313// FIXME: if exec fails, bash does NOT exit! We do...
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006314 pseudo_exec_argv(&dummy, argv, 0, NULL);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006315 /* never returns */
6316 }
6317}
6318
6319static int builtin_exit(char **argv)
6320{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00006321 debug_printf_exec("%s()\n", __func__);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006322// TODO: bash does it ONLY on top-level sh exit (+interacive only?)
6323 //puts("exit"); /* bash does it */
6324// TODO: warn if we have background jobs: "There are stopped jobs"
6325// On second consecutive 'exit', exit anyway.
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00006326// perhaps use G.exiting = -1 as indicator "last cmd was exit"
6327
6328 /* note: EXIT trap is run by hush_exit */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006329 if (*++argv == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006330 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006331 /* mimic bash: exit 123abc == exit 255 + error msg */
6332 xfunc_error_retval = 255;
6333 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006334 hush_exit(xatoi(*argv) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006335}
6336
6337static int builtin_export(char **argv)
6338{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006339 if (*++argv == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006340 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006341 if (e) {
6342 while (*e) {
6343#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006344 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006345#else
6346 /* ash emits: export VAR='VAL'
6347 * bash: declare -x VAR="VAL"
6348 * we follow ash example */
6349 const char *s = *e++;
6350 const char *p = strchr(s, '=');
6351
6352 if (!p) /* wtf? take next variable */
6353 continue;
6354 /* export var= */
6355 printf("export %.*s", (int)(p - s) + 1, s);
6356 s = p + 1;
6357 while (*s) {
6358 if (*s != '\'') {
6359 p = strchrnul(s, '\'');
6360 /* print 'xxxx' */
6361 printf("'%.*s'", (int)(p - s), s);
6362 if (*p == '\0')
6363 break;
6364 s = p;
6365 }
6366 /* s points to '; print ''...'''" */
6367 putchar('"');
6368 do putchar('\''); while (*++s == '\'');
6369 putchar('"');
6370 }
6371 putchar('\n');
6372#endif
6373 }
6374 fflush(stdout);
6375 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006376 return EXIT_SUCCESS;
6377 }
6378
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006379 do {
6380 const char *value;
6381 char *name = *argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006382
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006383 value = strchr(name, '=');
6384 if (!value) {
6385 /* They are exporting something without a =VALUE */
6386 struct variable *var;
6387
6388 var = get_local_var(name);
6389 if (var) {
6390 var->flg_export = 1;
6391 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
6392 putenv(var->varstr);
6393 }
6394 /* bash does not return an error when trying to export
6395 * an undefined variable. Do likewise. */
6396 continue;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006397 }
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006398 set_local_var(xstrdup(name), 1, 0);
6399 } while (*++argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006400
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006401 return EXIT_SUCCESS;
6402}
6403
6404#if ENABLE_HUSH_JOB
6405/* built-in 'fg' and 'bg' handler */
6406static int builtin_fg_bg(char **argv)
6407{
6408 int i, jobnum;
6409 struct pipe *pi;
6410
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006411 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006412 return EXIT_FAILURE;
6413 /* If they gave us no args, assume they want the last backgrounded task */
6414 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006415 for (pi = G.job_list; pi; pi = pi->next) {
6416 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006417 goto found;
6418 }
6419 }
6420 bb_error_msg("%s: no current job", argv[0]);
6421 return EXIT_FAILURE;
6422 }
6423 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
6424 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
6425 return EXIT_FAILURE;
6426 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006427 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006428 if (pi->jobid == jobnum) {
6429 goto found;
6430 }
6431 }
6432 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
6433 return EXIT_FAILURE;
6434 found:
6435 // TODO: bash prints a string representation
6436 // of job being foregrounded (like "sleep 1 | cat")
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006437 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006438 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006439 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006440 }
6441
6442 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006443 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
6444 for (i = 0; i < pi->num_cmds; i++) {
6445 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
6446 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006447 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006448 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006449
6450 i = kill(- pi->pgrp, SIGCONT);
6451 if (i < 0) {
6452 if (errno == ESRCH) {
6453 delete_finished_bg_job(pi);
6454 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006455 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006456 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006457 }
6458
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006459 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006460 remove_bg_job(pi);
6461 return checkjobs_and_fg_shell(pi);
6462 }
6463 return EXIT_SUCCESS;
6464}
6465#endif
6466
6467#if ENABLE_HUSH_HELP
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006468static int builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006469{
6470 const struct built_in_command *x;
6471
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006472 printf("\n"
6473 "Built-in commands:\n"
6474 "------------------\n");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006475 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
6476 printf("%s\t%s\n", x->cmd, x->descr);
6477 }
6478 printf("\n\n");
6479 return EXIT_SUCCESS;
6480}
6481#endif
6482
6483#if ENABLE_HUSH_JOB
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006484static int builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006485{
6486 struct pipe *job;
6487 const char *status_string;
6488
Denis Vlasenko87a86552008-07-29 19:43:10 +00006489 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006490 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006491 status_string = "Stopped";
6492 else
6493 status_string = "Running";
6494
6495 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
6496 }
6497 return EXIT_SUCCESS;
6498}
6499#endif
6500
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00006501#if HUSH_DEBUG
6502static int builtin_memleak(char **argv UNUSED_PARAM)
6503{
6504 void *p;
6505 unsigned long l;
6506
6507 /* Crude attempt to find where "free memory" starts,
6508 * sans fragmentation. */
6509 p = malloc(240);
6510 l = (unsigned long)p;
6511 free(p);
6512 p = malloc(3400);
6513 if (l < (unsigned long)p) l = (unsigned long)p;
6514 free(p);
6515
6516 if (!G.memleak_value)
6517 G.memleak_value = l;
6518
6519 l -= G.memleak_value;
6520 if ((long)l < 0)
6521 l = 0;
6522 l /= 1024;
6523 if (l > 127)
6524 l = 127;
6525
6526 /* Exitcode is "how many kilobytes we leaked since 1st call" */
6527 return l;
6528}
6529#endif
6530
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006531static int builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006532{
6533 puts(set_cwd());
6534 return EXIT_SUCCESS;
6535}
6536
6537static int builtin_read(char **argv)
6538{
6539 char *string;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006540 const char *name = "REPLY";
6541
6542 if (argv[1]) {
6543 name = argv[1];
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00006544 /* bash (3.2.33(1)) bug: "read 0abcd" will execute,
6545 * and _after_ that_ it will complain */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006546 if (!is_well_formed_var_name(name, '\0')) {
6547 /* Mimic bash message */
6548 bb_error_msg("read: '%s': not a valid identifier", name);
6549 return 1;
6550 }
6551 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006552
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00006553//TODO: bash unbackslashes input, splits words and puts them in argv[i]
6554
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006555 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006556 return set_local_var(string, 0, 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006557}
6558
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006559/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
6560 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006561 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006562 * set [-abCefhmnuvx] [-o option] [argument...]
6563 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006564 * set -- [argument...]
6565 * set -o
6566 * set +o
6567 * Implementations shall support the options in both their hyphen and
6568 * plus-sign forms. These options can also be specified as options to sh.
6569 * Examples:
6570 * Write out all variables and their values: set
6571 * Set $1, $2, and $3 and set "$#" to 3: set c a b
6572 * Turn on the -x and -v options: set -xv
6573 * Unset all positional parameters: set --
6574 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
6575 * Set the positional parameters to the expansion of x, even if x expands
6576 * with a leading '-' or '+': set -- $x
6577 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006578 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006579 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006580static int builtin_set(char **argv)
6581{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006582 int n;
6583 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006584 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006585
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006586 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006587 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00006588 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006589 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006590 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006591 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006592
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006593 do {
6594 if (!strcmp(arg, "--")) {
6595 ++argv;
6596 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006597 }
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00006598 if (arg[0] != '+' && arg[0] != '-')
6599 break;
6600 for (n = 1; arg[n]; ++n)
6601 if (set_mode(arg[0], arg[n]))
6602 goto error;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006603 } while ((arg = *++argv) != NULL);
6604 /* Now argv[0] is 1st argument */
6605
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006606 if (arg == NULL)
6607 return EXIT_SUCCESS;
6608 set_argv:
6609
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006610 /* NB: G.global_argv[0] ($0) is never freed/changed */
6611 g_argv = G.global_argv;
6612 if (G.global_args_malloced) {
6613 pp = g_argv;
6614 while (*++pp)
6615 free(*pp);
6616 g_argv[1] = NULL;
6617 } else {
6618 G.global_args_malloced = 1;
6619 pp = xzalloc(sizeof(pp[0]) * 2);
6620 pp[0] = g_argv[0]; /* retain $0 */
6621 g_argv = pp;
6622 }
6623 /* This realloc's G.global_argv */
6624 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
6625
6626 n = 1;
6627 while (*++pp)
6628 n++;
6629 G.global_argc = n;
6630
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006631 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006632
6633 /* Nothing known, so abort */
6634 error:
6635 bb_error_msg("set: %s: invalid option", arg);
6636 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006637}
6638
6639static int builtin_shift(char **argv)
6640{
6641 int n = 1;
6642 if (argv[1]) {
6643 n = atoi(argv[1]);
6644 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006645 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006646 if (G.global_args_malloced) {
6647 int m = 1;
6648 while (m <= n)
6649 free(G.global_argv[m++]);
6650 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006651 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006652 memmove(&G.global_argv[1], &G.global_argv[n+1],
6653 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006654 return EXIT_SUCCESS;
6655 }
6656 return EXIT_FAILURE;
6657}
6658
6659static int builtin_source(char **argv)
6660{
6661 FILE *input;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006662
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006663 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006664 return EXIT_FAILURE;
6665
6666 /* XXX search through $PATH is missing */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006667 input = fopen_or_warn(*argv, "r");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006668 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006669 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006670 return EXIT_FAILURE;
6671 }
6672 close_on_exec_on(fileno(input));
6673
6674 /* Now run the file */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006675//TODO:
Denis Vlasenko87a86552008-07-29 19:43:10 +00006676 /* XXX argv and argc are broken; need to save old G.global_argv
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006677 * (pointer only is OK!) on this stack frame,
Denis Vlasenko87a86552008-07-29 19:43:10 +00006678 * set G.global_argv=argv+1, recurse, and restore. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006679 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006680 fclose(input);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006681 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006682}
6683
6684static int builtin_umask(char **argv)
6685{
6686 mode_t new_umask;
6687 const char *arg = argv[1];
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006688 if (arg) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006689//TODO: umask may take chmod-like symbolic masks
Mike Frysinger40b8dc42009-03-29 00:50:30 +00006690 new_umask = bb_strtou(arg, NULL, 8);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006691 if (errno) {
6692 //Message? bash examples:
6693 //bash: umask: 'q': invalid symbolic mode operator
6694 //bash: umask: 999: octal number out of range
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006695 return EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006696 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006697 } else {
6698 new_umask = umask(0);
6699 printf("%.3o\n", (unsigned) new_umask);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006700 /* fall through and restore new_umask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006701 }
6702 umask(new_umask);
6703 return EXIT_SUCCESS;
6704}
6705
Mike Frysingerd690f682009-03-30 06:50:54 +00006706/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006707static int builtin_unset(char **argv)
6708{
Mike Frysingerd690f682009-03-30 06:50:54 +00006709 int ret;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006710 char var;
Mike Frysingerd690f682009-03-30 06:50:54 +00006711
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006712 if (!*++argv)
Mike Frysingerd690f682009-03-30 06:50:54 +00006713 return EXIT_SUCCESS;
6714
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006715 var = 'v';
6716 if (argv[0][0] == '-') {
6717 switch (argv[0][1]) {
6718 case 'v':
6719 case 'f':
6720 var = argv[0][1];
6721 break;
Mike Frysingerd690f682009-03-30 06:50:54 +00006722 default:
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006723 bb_error_msg("unset: %s: invalid option", *argv);
Mike Frysingerd690f682009-03-30 06:50:54 +00006724 return EXIT_FAILURE;
6725 }
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006726//TODO: disallow "unset -vf ..." too
6727 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006728 }
6729
6730 ret = EXIT_SUCCESS;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006731 while (*argv) {
6732 if (var == 'v') {
6733 if (unset_local_var(*argv)) {
6734 /* unset <nonexistent_var> doesn't fail.
6735 * Error is when one tries to unset RO var.
6736 * Message was printed by unset_local_var. */
Mike Frysingerd690f682009-03-30 06:50:54 +00006737 ret = EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006738 }
Mike Frysingerd690f682009-03-30 06:50:54 +00006739 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00006740//#if ENABLE_HUSH_FUNCTIONS
6741// else {
6742// unset_local_func(*argv);
6743// }
6744//#endif
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006745 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006746 }
6747 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006748}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006749
Mike Frysinger56bdea12009-03-28 20:01:58 +00006750/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
6751static int builtin_wait(char **argv)
6752{
6753 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006754 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00006755
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006756 if (*++argv == NULL) {
6757 /* Don't care about wait results */
6758 /* Note 1: must wait until there are no more children */
6759 /* Note 2: must be interruptible */
6760 /* Examples:
6761 * $ sleep 3 & sleep 6 & wait
6762 * [1] 30934 sleep 3
6763 * [2] 30935 sleep 6
6764 * [1] Done sleep 3
6765 * [2] Done sleep 6
6766 * $ sleep 3 & sleep 6 & wait
6767 * [1] 30936 sleep 3
6768 * [2] 30937 sleep 6
6769 * [1] Done sleep 3
6770 * ^C <-- after ~4 sec from keyboard
6771 * $
6772 */
6773 sigaddset(&G.blocked_set, SIGCHLD);
6774 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6775 while (1) {
6776 checkjobs(NULL);
6777 if (errno == ECHILD)
6778 break;
6779 /* Wait for SIGCHLD or any other signal of interest */
6780 /* sigtimedwait with infinite timeout: */
6781 sig = sigwaitinfo(&G.blocked_set, NULL);
6782 if (sig > 0) {
6783 sig = check_and_run_traps(sig);
6784 if (sig && sig != SIGCHLD) { /* see note 2 */
6785 ret = 128 + sig;
6786 break;
6787 }
6788 }
6789 }
6790 sigdelset(&G.blocked_set, SIGCHLD);
6791 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6792 return ret;
6793 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00006794
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006795 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00006796 while (*argv) {
6797 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00006798 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006799 /* mimic bash message */
6800 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00006801 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00006802 }
6803 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00006804 if (WIFSIGNALED(status))
6805 ret = 128 + WTERMSIG(status);
6806 else if (WIFEXITED(status))
6807 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00006808 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00006809 ret = EXIT_FAILURE;
6810 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006811 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00006812 ret = 127;
6813 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00006814 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00006815 }
6816
6817 return ret;
6818}
6819
Denis Vlasenkodadfb492008-07-29 10:16:05 +00006820#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006821static int builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006822{
Denis Vlasenko87a86552008-07-29 19:43:10 +00006823 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006824 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00006825 return EXIT_SUCCESS; /* bash compat */
6826 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006827 G.flag_break_continue++; /* BC_BREAK = 1 */
6828 G.depth_break_continue = 1;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006829 if (argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006830 G.depth_break_continue = bb_strtou(argv[1], NULL, 10);
6831 if (errno || !G.depth_break_continue || argv[2]) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006832 bb_error_msg("%s: bad arguments", argv[0]);
Denis Vlasenko87a86552008-07-29 19:43:10 +00006833 G.flag_break_continue = BC_BREAK;
6834 G.depth_break_continue = UINT_MAX;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006835 }
6836 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006837 if (G.depth_of_loop < G.depth_break_continue)
6838 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006839 return EXIT_SUCCESS;
6840}
6841
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006842static int builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006843{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006844 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
6845 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006846}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00006847#endif