blob: d791b62d082965538b1000bcbe4da4544e2b4104 [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 *
8 * 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
Eric Andersen25f27032001-04-26 23:22:31 +000043 * Functions
Mike Frysinger25a6ca02009-03-28 13:59:26 +000044 * Tilde Expansion
Mike Frysinger25a6ca02009-03-28 13:59:26 +000045 *
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000046 * Bash stuff (maybe optionally enable?):
Mike Frysinger25a6ca02009-03-28 13:59:26 +000047 * &> and >& redirection of stdout+stderr
48 * Brace expansion
49 * reserved words: [[ ]] function select
Mike Frysinger6379bb42009-03-28 18:55:03 +000050 * substrings ${var:1:5}
Mike Frysinger25a6ca02009-03-28 13:59:26 +000051 *
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000052 * TODOs:
53 * grep for "TODO" and fix (some of them are easy)
Eric Andersen83a2ae22001-05-07 17:59:25 +000054 * change { and } from special chars to reserved words
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
60 * ^Z handling (and explain it in comments for mere humans)
61 * separate job control from interactiveness
62 * (testcase: booting with init=/bin/hush does not show prompt (2009-04))
63 * functions
Eric Andersen25f27032001-04-26 23:22:31 +000064 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000065 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000066 */
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000067
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000068#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denis Vlasenko424f79b2009-03-22 14:23:34 +000069//TODO: pull in some .h and find out whether we have SINGLE_APPLET_MAIN?
Denis Vlasenko61befda2008-11-25 01:36:03 +000070//#include "applet_tables.h" doesn't work
Denis Vlasenkobe709c22008-07-28 00:01:16 +000071#include <glob.h>
72/* #include <dmalloc.h> */
73#if ENABLE_HUSH_CASE
74#include <fnmatch.h>
75#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000076#include "math.h"
Mike Frysingera4f331d2009-04-07 06:03:22 +000077#include "match.h"
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000078#ifndef PIPE_BUF
79# define PIPE_BUF 4096 /* amount of buffering in a pipe */
80#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000081
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +000082#ifdef WANT_TO_TEST_NOMMU
83# undef BB_MMU
84# undef USE_FOR_NOMMU
85# undef USE_FOR_MMU
86# define BB_MMU 0
87# define USE_FOR_NOMMU(...) __VA_ARGS__
88# define USE_FOR_MMU(...)
89#endif
90
Denis Vlasenko61befda2008-11-25 01:36:03 +000091#if defined SINGLE_APPLET_MAIN
92/* STANDALONE does not make sense, and won't compile */
93#undef CONFIG_FEATURE_SH_STANDALONE
94#undef ENABLE_FEATURE_SH_STANDALONE
95#undef USE_FEATURE_SH_STANDALONE
96#define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
97#define ENABLE_FEATURE_SH_STANDALONE 0
98#define USE_FEATURE_SH_STANDALONE(...)
99#define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
100#endif
101
Denis Vlasenko05743d72008-02-10 12:10:08 +0000102#if !ENABLE_HUSH_INTERACTIVE
103#undef ENABLE_FEATURE_EDITING
104#define ENABLE_FEATURE_EDITING 0
105#undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
106#define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000107#endif
108
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000109/* Do we support ANY keywords? */
110#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
111#define HAS_KEYWORDS 1
112#define IF_HAS_KEYWORDS(...) __VA_ARGS__
113#define IF_HAS_NO_KEYWORDS(...)
114#else
115#define HAS_KEYWORDS 0
116#define IF_HAS_KEYWORDS(...)
117#define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
118#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000119
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000120/* Enable/disable sanity checks. Ok to enable in production,
121 * only adds a bit of bloat.
122 * Keeping unconditionally on for now.
123 */
Denis Vlasenko371de4a2008-10-14 12:43:13 +0000124#define HUSH_DEBUG 1
125/* In progress... */
126#define ENABLE_HUSH_FUNCTIONS 0
127
128
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000129/* If you comment out one of these below, it will be #defined later
130 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000131#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000132/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000133#define debug_printf_parse(...) do {} while (0)
134#define debug_print_tree(a, b) do {} while (0)
135#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000136#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000137#define debug_printf_jobs(...) do {} while (0)
138#define debug_printf_expand(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000139#define debug_printf_glob(...) do {} while (0)
140#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000141#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000142#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000143
144#ifndef debug_printf
145#define debug_printf(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000146#endif
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000147
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000148#ifndef debug_printf_parse
149#define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000150#endif
151
152#ifndef debug_printf_exec
153#define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__)
154#endif
155
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000156#ifndef debug_printf_env
157#define debug_printf_env(...) fprintf(stderr, __VA_ARGS__)
158#endif
159
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000160#ifndef debug_printf_jobs
161#define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000162#define DEBUG_JOBS 1
163#else
164#define DEBUG_JOBS 0
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000165#endif
166
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000167#ifndef debug_printf_expand
168#define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__)
169#define DEBUG_EXPAND 1
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000170#else
171#define DEBUG_EXPAND 0
172#endif
173
174#ifndef debug_printf_glob
175#define debug_printf_glob(...) fprintf(stderr, __VA_ARGS__)
176#define DEBUG_GLOB 1
177#else
178#define DEBUG_GLOB 0
179#endif
180
181#ifndef debug_printf_list
182#define debug_printf_list(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000183#endif
184
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000185#ifndef debug_printf_subst
186#define debug_printf_subst(...) fprintf(stderr, __VA_ARGS__)
187#endif
188
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000189#ifndef debug_printf_clean
190/* broken, of course, but OK for testing */
191static const char *indenter(int i)
192{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000193 static const char blanks[] ALIGN1 =
194 " ";
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000195 return &blanks[sizeof(blanks) - i - 1];
196}
197#define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000198#define DEBUG_CLEAN 1
Denis Vlasenkoa0e65122009-04-05 23:39:14 +0000199#else
200#define DEBUG_CLEAN 0
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000201#endif
202
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000203#if DEBUG_EXPAND
204static void debug_print_strings(const char *prefix, char **vv)
205{
206 fprintf(stderr, "%s:\n", prefix);
207 while (*vv)
208 fprintf(stderr, " '%s'\n", *vv++);
209}
210#else
211#define debug_print_strings(prefix, vv) ((void)0)
212#endif
213
Denis Vlasenkof962a032007-11-23 12:50:54 +0000214/*
215 * Leak hunting. Use hush_leaktool.sh for post-processing.
216 */
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000217//#define FOR_HUSH_LEAKTOOL
Denis Vlasenkof962a032007-11-23 12:50:54 +0000218#ifdef FOR_HUSH_LEAKTOOL
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000219static void *xxmalloc(int lineno, size_t size)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000220{
221 void *ptr = xmalloc((size + 0xff) & ~0xff);
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000222 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000223 return ptr;
224}
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000225static void *xxrealloc(int lineno, void *ptr, size_t size)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000226{
227 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000228 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000229 return ptr;
230}
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000231static char *xxstrdup(int lineno, const char *str)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000232{
233 char *ptr = xstrdup(str);
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000234 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000235 return ptr;
236}
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000237static void xxfree(void *ptr)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000238{
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000239 fdprintf(2, "free %p\n", ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000240 free(ptr);
241}
242#define xmalloc(s) xxmalloc(__LINE__, s)
243#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
244#define xstrdup(s) xxstrdup(__LINE__, s)
245#define free(p) xxfree(p)
246#endif
247
248
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000249#define ERR_PTR ((void*)(long)1)
250
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000251#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000252
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000253#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000254
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000255static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
256
257/* This supports saving pointers malloced in vfork child,
258 * to be freed in the parent. One pointer is saved in
259 * G.argv_from_re_execing global var instead. TODO: unify.
260 */
261#if !BB_MMU
262typedef struct nommu_save_t {
263 char **new_env;
264 char **old_env;
265 char **argv;
266} nommu_save_t;
267#endif
268
Denis Vlasenko55789c62008-06-18 16:30:42 +0000269/* The descrip member of this structure is only used to make
270 * debugging output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000271static const struct {
272 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000273 signed char default_fd;
274 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000275} redir_table[] = {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000276 { 0, 0, "??" },
Eric Andersen25f27032001-04-26 23:22:31 +0000277 { O_RDONLY, 0, "<" },
278 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
279 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000280 { O_RDONLY, 0, "<<" },
281 { O_CREAT|O_RDWR, 1, "<>" },
282/* Should not be needed. Bogus default_fd helps in debugging */
283/* { O_RDONLY, 77, "<<" }, */
Eric Andersen25f27032001-04-26 23:22:31 +0000284};
285
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000286typedef enum reserved_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000287 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000288#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000289 RES_IF ,
290 RES_THEN ,
291 RES_ELIF ,
292 RES_ELSE ,
293 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000294#endif
295#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000296 RES_FOR ,
297 RES_WHILE ,
298 RES_UNTIL ,
299 RES_DO ,
300 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000301#endif
302#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000303 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000304#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000305#if ENABLE_HUSH_CASE
306 RES_CASE ,
307 /* two pseudo-keywords support contrived "case" syntax: */
308 RES_MATCH , /* "word)" */
309 RES_CASEI , /* "this command is inside CASE" */
310 RES_ESAC ,
311#endif
312 RES_XXXX ,
313 RES_SNTX
Eric Andersen25f27032001-04-26 23:22:31 +0000314} reserved_style;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000315
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000316typedef struct o_string {
317 char *data;
318 int length; /* position where data is appended */
319 int maxlen;
320 /* Protect newly added chars against globbing
321 * (by prepending \ to *, ?, [, \) */
322 smallint o_escape;
323 smallint o_glob;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000324 /* At least some part of the string was inside '' or "",
325 * possibly empty one: word"", wo''rd etc. */
326 smallint o_quoted;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000327 smallint has_empty_slot;
328 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
329} o_string;
330enum {
331 MAYBE_ASSIGNMENT = 0,
332 DEFINITELY_ASSIGNMENT = 1,
333 NOT_ASSIGNMENT = 2,
334 WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
335};
336/* Used for initialization: o_string foo = NULL_O_STRING; */
337#define NULL_O_STRING { NULL }
338
339/* I can almost use ordinary FILE*. Is open_memstream() universally
340 * available? Where is it documented? */
341typedef struct in_str {
342 const char *p;
343 /* eof_flag=1: last char in ->p is really an EOF */
344 char eof_flag; /* meaningless if ->p == NULL */
345 char peek_buf[2];
346#if ENABLE_HUSH_INTERACTIVE
347 smallint promptme;
348 smallint promptmode; /* 0: PS1, 1: PS2 */
349#endif
350 FILE *file;
351 int (*get) (struct in_str *);
352 int (*peek) (struct in_str *);
353} in_str;
354#define i_getch(input) ((input)->get(input))
355#define i_peek(input) ((input)->peek(input))
356
Eric Andersen25f27032001-04-26 23:22:31 +0000357struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000358 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000359 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000360 int rd_fd; /* fd to redirect */
361 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
362 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000363 smallint rd_type; /* (enum redir_type) */
364 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000365 * and subsequently heredoc itself; and rd_dup is a bitmask:
366 * 1: do we need to trim leading tabs?
367 * 2: is heredoc quoted (<<'dleim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000368 */
Eric Andersen25f27032001-04-26 23:22:31 +0000369};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000370typedef enum redir_type {
371 REDIRECT_INVALID = 0,
372 REDIRECT_INPUT = 1,
373 REDIRECT_OVERWRITE = 2,
374 REDIRECT_APPEND = 3,
375 REDIRECT_HEREDOC = 4,
376 REDIRECT_IO = 5,
377 REDIRECT_HEREDOC2 = 6, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000378 REDIRFD_CLOSE = -3,
379 HEREDOC_SKIPTABS = 1,
380 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000381} redir_type;
382
Eric Andersen25f27032001-04-26 23:22:31 +0000383
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000384struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000385 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000386 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000387 smallint is_stopped; /* is the command currently running? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000388 smallint grp_type; /* GRP_xxx */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000389 struct pipe *group; /* if non-NULL, this "command" is { list },
390 * ( list ), or a compound statement */
391#if !BB_MMU
392 char *group_as_string;
393#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000394 char **argv; /* command name and arguments */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000395 struct redir_struct *redirects; /* I/O redirections */
Eric Andersen25f27032001-04-26 23:22:31 +0000396};
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000397/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
398 * and on execution these are substituted with their values.
399 * Substitution can make _several_ words out of one argv[n]!
400 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000401 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000402 */
Denis Vlasenko371de4a2008-10-14 12:43:13 +0000403#define GRP_NORMAL 0
404#define GRP_SUBSHELL 1
405#if ENABLE_HUSH_FUNCTIONS
406#define GRP_FUNCTION 2
407#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000408
409struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000410 struct pipe *next;
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000411 int num_cmds; /* total number of commands in job */
412 int alive_cmds; /* number of commands running (not exited) */
413 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000414#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000415 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000416 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000417 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000418#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000419 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000420 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000421 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
422 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000423};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000424typedef enum pipe_style {
425 PIPE_SEQ = 1,
426 PIPE_AND = 2,
427 PIPE_OR = 3,
428 PIPE_BG = 4,
429} pipe_style;
Eric Andersen25f27032001-04-26 23:22:31 +0000430
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000431/* This holds pointers to the various results of parsing */
432struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000433 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000434 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000435 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000436 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000437 /* last command in pipe (being constructed right now) */
438 struct command *command;
439 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000440 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000441#if !BB_MMU
442 o_string as_string;
443#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000444#if HAS_KEYWORDS
445 smallint ctx_res_w;
446 smallint ctx_inverted; /* "! cmd | cmd" */
447#if ENABLE_HUSH_CASE
448 smallint ctx_dsemicolon; /* ";;" seen */
449#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000450 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
451 int old_flag;
452 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000453 * example: "if pipe1; pipe2; then pipe3; fi"
454 * when we see "if" or "then", we malloc and copy current context,
455 * and make ->stack point to it. then we parse pipeN.
456 * when closing "then" / fi" / whatever is found,
457 * we move list_head into ->stack->command->group,
458 * copy ->stack into current context, and delete ->stack.
459 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000460 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000461 struct parse_context *stack;
462#endif
463};
464
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000465/* On program start, environ points to initial environment.
466 * putenv adds new pointers into it, unsetenv removes them.
467 * Neither of these (de)allocates the strings.
468 * setenv allocates new strings in malloc space and does putenv,
469 * and thus setenv is unusable (leaky) for shell's purposes */
470#define setenv(...) setenv_is_leaky_dont_use()
471struct variable {
472 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000473 char *varstr; /* points to "name=" portion */
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000474 int max_len; /* if > 0, name is part of initial env; else name is malloced */
475 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000476 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000477};
478
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000479enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000480 BC_BREAK = 1,
481 BC_CONTINUE = 2,
482};
483
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000484
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000485/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000486/* Sorted roughly by size (smaller offsets == smaller code) */
487struct globals {
488#if ENABLE_HUSH_INTERACTIVE
489 /* 'interactive_fd' is a fd# open to ctty, if we have one
490 * _AND_ if we decided to act interactively */
491 int interactive_fd;
492 const char *PS1;
493 const char *PS2;
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000494#define G_interactive_fd (G.interactive_fd)
495#else
496#define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000497#endif
498#if ENABLE_FEATURE_EDITING
499 line_input_t *line_input_state;
500#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000501 pid_t root_pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000502 pid_t last_bg_pid;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000503#if ENABLE_HUSH_JOB
504 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000505 pid_t saved_tty_pgrp;
506 int last_jobid;
507 struct pipe *job_list;
508 struct pipe *toplevel_list;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000509//// smallint ctrl_z_flag;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000510#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000511 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000512#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000513 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000514#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000515 smallint fake_mode;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000516 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000517 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000518 smalluint last_exitcode;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000519 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000520 smalluint global_args_malloced;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000521 /* how many non-NULL argv's we have. NB: $# + 1 */
522 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000523 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000524#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000525 char *argv0_for_re_execing;
526 char **argv_from_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000527#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000528#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000529 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000530 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000531#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000532 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000533 const char *cwd;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000534 struct variable *top_var; /* = &G.shell_ver (set in main()) */
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000535 struct variable shell_ver;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000536 /* Signal and trap handling */
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000537// unsigned count_SIGCHLD;
538// unsigned handled_SIGCHLD;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000539 /* which signals have non-DFL handler (even with no traps set)? */
540 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000541 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000542 sigset_t blocked_set;
543 sigset_t inherited_set;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000544#if HUSH_DEBUG
545 unsigned long memleak_value;
546#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000547 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
548#if ENABLE_FEATURE_SH_STANDALONE
549 struct nofork_save_area nofork_save;
550#endif
551#if ENABLE_HUSH_JOB
552 sigjmp_buf toplevel_jb;
553#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000554};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000555#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000556/* Not #defining name to G.name - this quickly gets unwieldy
557 * (too many defines). Also, I actually prefer to see when a variable
558 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000559#define INIT_G() do { \
560 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
561} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000562
563
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000564/* Function prototypes for builtins */
565static int builtin_cd(char **argv);
566static int builtin_echo(char **argv);
567static int builtin_eval(char **argv);
568static int builtin_exec(char **argv);
569static int builtin_exit(char **argv);
570static int builtin_export(char **argv);
571#if ENABLE_HUSH_JOB
572static int builtin_fg_bg(char **argv);
573static int builtin_jobs(char **argv);
574#endif
575#if ENABLE_HUSH_HELP
576static int builtin_help(char **argv);
577#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000578#if HUSH_DEBUG
579static int builtin_memleak(char **argv);
580#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000581static int builtin_pwd(char **argv);
582static int builtin_read(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000583static int builtin_set(char **argv);
584static int builtin_shift(char **argv);
585static int builtin_source(char **argv);
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000586static int builtin_test(char **argv);
587static int builtin_trap(char **argv);
588static int builtin_true(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000589static int builtin_umask(char **argv);
590static int builtin_unset(char **argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +0000591static int builtin_wait(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000592#if ENABLE_HUSH_LOOPS
593static int builtin_break(char **argv);
594static int builtin_continue(char **argv);
595#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000596
597/* Table of built-in functions. They can be forked or not, depending on
598 * context: within pipes, they fork. As simple commands, they do not.
599 * When used in non-forking context, they can change global variables
600 * in the parent shell process. If forked, of course they cannot.
601 * For example, 'unset foo | whatever' will parse and run, but foo will
602 * still be set at the end. */
603struct built_in_command {
604 const char *cmd;
605 int (*function)(char **argv);
606#if ENABLE_HUSH_HELP
607 const char *descr;
608#define BLTIN(cmd, func, help) { cmd, func, help }
609#else
610#define BLTIN(cmd, func, help) { cmd, func }
611#endif
612};
613
614/* For now, echo and test are unconditionally enabled.
615 * Maybe make it configurable? */
616static const struct built_in_command bltins[] = {
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000617 BLTIN("." , builtin_source , "Run commands in a file"),
618 BLTIN(":" , builtin_true , "No-op"),
619 BLTIN("[" , builtin_test , "Test condition"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000620#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000621 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000622#endif
623#if ENABLE_HUSH_LOOPS
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000624 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000625#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000626 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000627#if ENABLE_HUSH_LOOPS
628 BLTIN("continue", builtin_continue, "Start new loop iteration"),
629#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000630 BLTIN("echo" , builtin_echo , "Write to stdout"),
631 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
632 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
633 BLTIN("exit" , builtin_exit , "Exit"),
634 BLTIN("export" , builtin_export , "Set environment variable"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000635#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000636 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000637#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000638#if ENABLE_HUSH_HELP
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000639 BLTIN("help" , builtin_help , "List shell built-in commands"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000640#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000641#if ENABLE_HUSH_JOB
642 BLTIN("jobs" , builtin_jobs , "List active jobs"),
643#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000644#if HUSH_DEBUG
645 BLTIN("memleak" , builtin_memleak , "Debug tool"),
646#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000647 BLTIN("pwd" , builtin_pwd , "Print current directory"),
648 BLTIN("read" , builtin_read , "Input environment variable"),
649// BLTIN("return" , builtin_return , "Return from a function"),
650 BLTIN("set" , builtin_set , "Set/unset shell local variables"),
651 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
652 BLTIN("test" , builtin_test , "Test condition"),
653 BLTIN("trap" , builtin_trap , "Trap signals"),
654// BLTIN("ulimit" , builtin_return , "Control resource limits"),
655 BLTIN("umask" , builtin_umask , "Set file creation mask"),
656 BLTIN("unset" , builtin_unset , "Unset environment variable"),
657 BLTIN("wait" , builtin_wait , "Wait for process"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000658};
659
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000660
Mike Frysinger6379bb42009-03-28 18:55:03 +0000661static void maybe_die(const char *notice, const char *msg)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000662{
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000663 /* Was using fancy stuff:
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000664 * (G_interactive_fd ? bb_error_msg : bb_error_msg_and_die)(...params...)
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000665 * but it SEGVs. ?! Oh well... explicit temp ptr works around that */
Mike Frysinger6379bb42009-03-28 18:55:03 +0000666 void FAST_FUNC (*fp)(const char *s, ...) = bb_error_msg_and_die;
667#if ENABLE_HUSH_INTERACTIVE
Mike Frysingerdfa9de72009-04-03 22:48:10 +0000668 if (G_interactive_fd)
669 fp = bb_error_msg;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000670#endif
Mike Frysinger6379bb42009-03-28 18:55:03 +0000671 fp(msg ? "%s: %s" : notice, notice, msg);
672}
Mike Frysinger5a828452009-03-28 19:09:04 +0000673#if 1
674#define syntax(msg) maybe_die("syntax error", msg);
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000675#else
Mike Frysinger5a828452009-03-28 19:09:04 +0000676/* Debug -- trick gcc to expand __LINE__ and convert to string */
677#define __syntax(msg, line) maybe_die("syntax error hush.c:" # line, msg)
678#define _syntax(msg, line) __syntax(msg, line)
679#define syntax(msg) _syntax(msg, __LINE__)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000680#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000681
Denis Vlasenko552433b2009-04-04 19:29:21 +0000682
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000683static int glob_needed(const char *s)
684{
685 while (*s) {
686 if (*s == '\\')
687 s++;
688 if (*s == '*' || *s == '[' || *s == '?')
689 return 1;
690 s++;
691 }
692 return 0;
693}
694
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000695static int is_assignment(const char *s)
696{
Denis Vlasenkod4981312008-07-31 10:34:48 +0000697 if (!s || !(isalpha(*s) || *s == '_'))
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000698 return 0;
699 s++;
700 while (isalnum(*s) || *s == '_')
701 s++;
702 return *s == '=';
703}
704
Denis Vlasenko55789c62008-06-18 16:30:42 +0000705/* Replace each \x with x in place, return ptr past NUL. */
706static char *unbackslash(char *src)
707{
708 char *dst = src;
709 while (1) {
710 if (*src == '\\')
711 src++;
712 if ((*dst++ = *src++) == '\0')
713 break;
714 }
715 return dst;
716}
717
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000718static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000719{
720 int i;
721 unsigned count1;
722 unsigned count2;
723 char **v;
724
725 v = strings;
726 count1 = 0;
727 if (v) {
728 while (*v) {
729 count1++;
730 v++;
731 }
732 }
733 count2 = 0;
734 v = add;
735 while (*v) {
736 count2++;
737 v++;
738 }
739 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
740 v[count1 + count2] = NULL;
741 i = count2;
742 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000743 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000744 return v;
745}
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000746#ifdef FOR_HUSH_LEAKTOOL
747static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
748{
749 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
750 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
751 return ptr;
752}
753#define add_strings_to_strings(strings, add, need_to_dup) \
754 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
755#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000756
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000757static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000758{
759 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000760 v[0] = add;
761 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000762 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000763}
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000764#ifdef FOR_HUSH_LEAKTOOL
765static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
766{
767 char **ptr = add_string_to_strings(strings, add);
768 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
769 return ptr;
770}
771#define add_string_to_strings(strings, add) \
772 xx_add_string_to_strings(__LINE__, strings, add)
773#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000774
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000775static void putenv_all(char **strings)
776{
777 if (!strings)
778 return;
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000779 while (*strings) {
780 debug_printf_env("putenv '%s'\n", *strings);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000781 putenv(*strings++);
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000782 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000783}
784
785static char **putenv_all_and_save_old(char **strings)
786{
787 char **old = NULL;
788 char **s = strings;
789
790 if (!strings)
791 return old;
792 while (*strings) {
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000793 char *v, *eq;
794
795 eq = strchr(*strings, '=');
796 if (eq) {
797 *eq = '\0';
798 v = getenv(*strings);
799 *eq = '=';
800 if (v) {
801 /* v points to VAL in VAR=VAL, go back to VAR */
802 v -= (eq - *strings) + 1;
803 old = add_string_to_strings(old, v);
804 }
805 }
806 strings++;
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000807 }
808 putenv_all(s);
809 return old;
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000810}
811
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000812static void free_strings_and_unsetenv(char **strings, int unset)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000813{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000814 char **v;
815
816 if (!strings)
817 return;
818
819 v = strings;
820 while (*v) {
821 if (unset) {
Denis Vlasenko76ddc2e2008-12-30 05:05:31 +0000822 debug_printf_env("unsetenv '%s'\n", *v);
823 bb_unsetenv(*v);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000824 }
825 free(*v++);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000826 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000827 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000828}
829
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000830static void free_strings(char **strings)
Denis Vlasenko76d50412008-06-10 16:19:39 +0000831{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000832 free_strings_and_unsetenv(strings, 0);
Denis Vlasenko76d50412008-06-10 16:19:39 +0000833}
Denis Vlasenko76d50412008-06-10 16:19:39 +0000834
835
Denis Vlasenkod5762932009-03-31 11:22:57 +0000836/* Basic theory of signal handling in shell
837 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000838 * This does not describe what hush does, rather, it is current understanding
839 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000840 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
841 *
842 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
843 * is finished or backgrounded. It is the same in interactive and
844 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000845 * a user trap handler is installed or a shell special one is in effect.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000846 * ^C or ^Z from keyboard seem to execute "at once" because it usually
847 * backgrounds (i.e. stops) or kills all members of currently running
848 * pipe.
849 *
850 * Wait builtin in interruptible by signals for which user trap is set
851 * or by SIGINT in interactive shell.
852 *
853 * Trap handlers will execute even within trap handlers. (right?)
854 *
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000855 * User trap handlers are forgotten when subshell ("(cmd)") is entered.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000856 *
857 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000858 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000859 *
860 * Commands run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000861 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000862 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000863 * Ordinary commands have signals set to SIG_IGN/DFL set as inherited
864 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000865 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000866 * Siganls which differ from SIG_DFL action
867 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +0000868 *
869 * SIGQUIT: ignore
870 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000871 * SIGHUP (interactive):
872 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +0000873 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000874 * (note that ^Z is handled not by trapping SIGTSTP, but by seeing
875 * that all pipe members are stopped) (right?)
Denis Vlasenkod5762932009-03-31 11:22:57 +0000876 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000877 * of the command line, show prompt. NB: ^C does not send SIGINT
878 * to interactive shell while shell is waiting for a pipe,
879 * since shell is bg'ed (is not in foreground process group).
880 * (check/expand this)
881 * Example 1: this waits 5 sec, but does not execute ls:
882 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
883 * Example 2: this does not wait and does not execute ls:
884 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
885 * Example 3: this does not wait 5 sec, but executes ls:
886 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +0000887 *
888 * (What happens to signals which are IGN on shell start?)
889 * (What happens with signal mask on shell start?)
890 *
891 * Implementation in hush
892 * ======================
893 * We use in-kernel pending signal mask to determine which signals were sent.
894 * We block all signals which we don't want to take action immediately,
895 * i.e. we block all signals which need to have special handling as described
896 * above, and all signals which have traps set.
897 * After each pipe execution, we extract any pending signals via sigtimedwait()
898 * and act on them.
899 *
900 * unsigned non_DFL_mask: a mask of such "special" signals
901 * sigset_t blocked_set: current blocked signal set
902 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000903 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +0000904 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000905 * "trap 'cmd' SIGxxx":
906 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +0000907 * after [v]fork, if we plan to be a shell:
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000908 * nothing for {} child shell (say, "true | { true; true; } | true")
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000909 * unset all traps if () shell.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000910 * after [v]fork, if we plan to exec:
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000911 * POSIX says pending signal mask is cleared in child - no need to clear it.
912 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000913 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000914 * Note: as a result, we do not use signal handlers much. The only uses
915 * are to count SIGCHLDs [disabled - bug somewhere, + bloat]
916 * and to restore tty pgrp on signal-induced exit.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000917 */
918
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000919//static void SIGCHLD_handler(int sig UNUSED_PARAM)
920//{
921// G.count_SIGCHLD++;
922//}
923
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000924static int check_and_run_traps(int sig)
Denis Vlasenkod5762932009-03-31 11:22:57 +0000925{
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000926 static const struct timespec zero_timespec = { 0, 0 };
Denis Vlasenkod5762932009-03-31 11:22:57 +0000927 smalluint save_rcode;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000928 int last_sig = 0;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000929
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000930 if (sig)
931 goto jump_in;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000932 while (1) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000933 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
Denis Vlasenkod5762932009-03-31 11:22:57 +0000934 if (sig <= 0)
935 break;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000936 jump_in:
937 last_sig = sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000938 if (G.traps && G.traps[sig]) {
939 if (G.traps[sig][0]) {
940 /* We have user-defined handler */
941 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000942 save_rcode = G.last_exitcode;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000943 builtin_eval(argv);
944 free(argv[1]);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000945 G.last_exitcode = save_rcode;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000946 } /* else: "" trap, ignoring signal */
947 continue;
948 }
949 /* not a trap: special action */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000950 switch (sig) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000951// case SIGCHLD:
952// G.count_SIGCHLD++;
953// break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000954 case SIGINT:
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000955 bb_putchar('\n');
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000956 G.flag_SIGINT = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000957 break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000958//TODO
959// case SIGHUP: ...
960// break;
Denis Vlasenkod3f973e2009-04-06 10:21:42 +0000961 default: /* ignored: */
962 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000963 break;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000964 }
Denis Vlasenkod5762932009-03-31 11:22:57 +0000965 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000966 return last_sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000967}
968
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000969#if ENABLE_HUSH_JOB
Denis Vlasenko25af86f2009-04-07 13:29:27 +0000970
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000971/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
972#define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
Denis Vlasenko25af86f2009-04-07 13:29:27 +0000973/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000974#define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
975
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000976/* Restores tty foreground process group, and exits.
977 * May be called as signal handler for fatal signal
978 * (will faithfully resend signal to itself, producing correct exit state)
979 * or called directly with -EXITCODE.
980 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000981static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000982static void sigexit(int sig)
983{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000984 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000985 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000986
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000987 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000988 * tty pgrp then, only top-level shell process does that */
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000989 if (G_interactive_fd && getpid() == G.root_pid)
990 tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000991
992 /* Not a signal, just exit */
993 if (sig <= 0)
994 _exit(- sig);
995
Denis Vlasenko400d8bb2008-02-24 13:36:01 +0000996 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000997}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000998#else
999
1000#define disable_restore_tty_pgrp_on_exit() ((void)0)
1001#define enable_restore_tty_pgrp_on_exit() ((void)0)
1002
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001003#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001004
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001005/* Restores tty foreground process group, and exits. */
1006static void hush_exit(int exitcode) NORETURN;
1007static void hush_exit(int exitcode)
1008{
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001009 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1010 /* Prevent recursion:
1011 * trap "echo Hi; exit" EXIT; exit
1012 */
1013 char *argv[] = { NULL, G.traps[0], NULL };
1014 G.traps[0] = NULL;
1015 G.exiting = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001016 builtin_eval(argv);
1017 free(argv[1]);
1018 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001019
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001020#if ENABLE_HUSH_JOB
1021 fflush(NULL); /* flush all streams */
1022 sigexit(- (exitcode & 0xff));
1023#else
1024 exit(exitcode);
1025#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001026}
1027
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001028
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001029static const char *set_cwd(void)
1030{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001031 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1032 * we must not try to free(bb_msg_unknown) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00001033 if (G.cwd == bb_msg_unknown)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001034 G.cwd = NULL;
Denis Vlasenko87a86552008-07-29 19:43:10 +00001035 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1036 if (!G.cwd)
1037 G.cwd = bb_msg_unknown;
1038 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001039}
1040
Denis Vlasenko83506862007-11-23 13:11:42 +00001041
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001042/* Get/check local shell variables */
1043static struct variable *get_local_var(const char *name)
1044{
1045 struct variable *cur;
1046 int len;
1047
1048 if (!name)
1049 return NULL;
1050 len = strlen(name);
1051 for (cur = G.top_var; cur; cur = cur->next) {
1052 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
1053 return cur;
1054 }
1055 return NULL;
1056}
1057
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001058static const char *get_local_var_value(const char *src)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001059{
1060 struct variable *var = get_local_var(src);
1061 if (var)
1062 return strchr(var->varstr, '=') + 1;
1063 return NULL;
1064}
1065
1066/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001067 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001068 * flg_export:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001069 * 0: do not export
1070 * 1: export
1071 * -1: if NAME is set, leave export status alone
1072 * if NAME is not set, do not export
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001073 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001074 */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001075#if BB_MMU
1076#define set_local_var(str, flg_export, flg_read_only) \
1077 set_local_var(str, flg_export)
1078#endif
1079static int set_local_var(char *str, int flg_export, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001080{
1081 struct variable *cur;
1082 char *value;
1083 int name_len;
1084
1085 value = strchr(str, '=');
1086 if (!value) { /* not expected to ever happen? */
1087 free(str);
1088 return -1;
1089 }
1090
1091 name_len = value - str + 1; /* including '=' */
1092 cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
1093 while (1) {
1094 if (strncmp(cur->varstr, str, name_len) != 0) {
1095 if (!cur->next) {
1096 /* Bail out. Note that now cur points
1097 * to last var in linked list */
1098 break;
1099 }
1100 cur = cur->next;
1101 continue;
1102 }
1103 /* We found an existing var with this name */
1104 *value = '\0';
1105 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001106#if !BB_MMU
1107 if (!flg_read_only)
1108#endif
1109 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001110 free(str);
1111 return -1;
1112 }
1113 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1114 unsetenv(str); /* just in case */
1115 *value = '=';
1116 if (strcmp(cur->varstr, str) == 0) {
1117 free_and_exp:
1118 free(str);
1119 goto exp;
1120 }
1121 if (cur->max_len >= strlen(str)) {
1122 /* This one is from startup env, reuse space */
1123 strcpy(cur->varstr, str);
1124 goto free_and_exp;
1125 }
1126 /* max_len == 0 signifies "malloced" var, which we can
1127 * (and has to) free */
1128 if (!cur->max_len)
1129 free(cur->varstr);
1130 cur->max_len = 0;
1131 goto set_str_and_exp;
1132 }
1133
1134 /* Not found - create next variable struct */
1135 cur->next = xzalloc(sizeof(*cur));
1136 cur = cur->next;
1137
1138 set_str_and_exp:
1139 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001140#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001141 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001142#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001143 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001144 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001145 cur->flg_export = 1;
1146 if (cur->flg_export) {
1147 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1148 return putenv(cur->varstr);
1149 }
1150 return 0;
1151}
1152
Mike Frysingerd690f682009-03-30 06:50:54 +00001153static int unset_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001154{
1155 struct variable *cur;
1156 struct variable *prev = prev; /* for gcc */
1157 int name_len;
1158
1159 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001160 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001161 name_len = strlen(name);
1162 cur = G.top_var;
1163 while (cur) {
1164 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1165 if (cur->flg_read_only) {
1166 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001167 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001168 }
1169 /* prev is ok to use here because 1st variable, HUSH_VERSION,
1170 * is ro, and we cannot reach this code on the 1st pass */
1171 prev->next = cur->next;
1172 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1173 bb_unsetenv(cur->varstr);
1174 if (!cur->max_len)
1175 free(cur->varstr);
1176 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001177 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001178 }
1179 prev = cur;
1180 cur = cur->next;
1181 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001182 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001183}
1184
Mike Frysinger98c52642009-04-02 10:02:37 +00001185#if ENABLE_SH_MATH_SUPPORT
1186#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1187#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1188static char *endofname(const char *name)
1189{
1190 char *p;
1191
1192 p = (char *) name;
1193 if (!is_name(*p))
1194 return p;
1195 while (*++p) {
1196 if (!is_in_name(*p))
1197 break;
1198 }
1199 return p;
1200}
1201
1202static void arith_set_local_var(const char *name, const char *val, int flags)
1203{
1204 /* arith code doesnt malloc space, so do it for it */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001205 char *var = xasprintf("%s=%s", name, val);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001206 set_local_var(var, flags, 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001207}
1208#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001209
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001210
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001211/*
1212 * in_str support
1213 */
1214static int static_get(struct in_str *i)
1215{
1216 int ch = *i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001217 if (ch != '\0')
1218 return ch;
1219 i->p--;
1220 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001221}
1222
1223static int static_peek(struct in_str *i)
1224{
1225 return *i->p;
1226}
1227
1228#if ENABLE_HUSH_INTERACTIVE
1229
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001230static void cmdedit_set_initial_prompt(void)
1231{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001232 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1233 G.PS1 = getenv("PS1");
1234 if (G.PS1 == NULL)
1235 G.PS1 = "\\w \\$ ";
1236 } else
1237 G.PS1 = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001238}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001239
1240static const char* setup_prompt_string(int promptmode)
1241{
1242 const char *prompt_str;
1243 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001244 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1245 /* Set up the prompt */
1246 if (promptmode == 0) { /* PS1 */
1247 free((char*)G.PS1);
1248 G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#');
1249 prompt_str = G.PS1;
1250 } else
1251 prompt_str = G.PS2;
1252 } else
1253 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001254 debug_printf("result '%s'\n", prompt_str);
1255 return prompt_str;
1256}
1257
1258static void get_user_input(struct in_str *i)
1259{
1260 int r;
1261 const char *prompt_str;
1262
1263 prompt_str = setup_prompt_string(i->promptmode);
1264#if ENABLE_FEATURE_EDITING
1265 /* Enable command line editing only while a command line
1266 * is actually being read */
1267 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001268 G.flag_SIGINT = 0;
1269 /* buglet: SIGINT will not make new prompt to appear _at once_,
1270 * only after <Enter>. (^C will work) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001271 r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001272 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001273 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001274 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001275 i->eof_flag = (r < 0);
1276 if (i->eof_flag) { /* EOF/error detected */
1277 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1278 G.user_input_buf[1] = '\0';
1279 }
1280#else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001281 do {
1282 G.flag_SIGINT = 0;
1283 fputs(prompt_str, stdout);
1284 fflush(stdout);
1285 G.user_input_buf[0] = r = fgetc(i->file);
1286 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001287//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001288 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001289 i->eof_flag = (r == EOF);
1290#endif
1291 i->p = G.user_input_buf;
1292}
1293
1294#endif /* INTERACTIVE */
1295
1296/* This is the magic location that prints prompts
1297 * and gets data back from the user */
1298static int file_get(struct in_str *i)
1299{
1300 int ch;
1301
1302 /* If there is data waiting, eat it up */
1303 if (i->p && *i->p) {
1304#if ENABLE_HUSH_INTERACTIVE
1305 take_cached:
1306#endif
1307 ch = *i->p++;
1308 if (i->eof_flag && !*i->p)
1309 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001310 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001311 } else {
1312 /* need to double check i->file because we might be doing something
1313 * more complicated by now, like sourcing or substituting. */
1314#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001315 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001316 do {
1317 get_user_input(i);
1318 } while (!*i->p); /* need non-empty line */
1319 i->promptmode = 1; /* PS2 */
1320 i->promptme = 0;
1321 goto take_cached;
1322 }
1323#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001324 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001325 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001326 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001327#if ENABLE_HUSH_INTERACTIVE
1328 if (ch == '\n')
1329 i->promptme = 1;
1330#endif
1331 return ch;
1332}
1333
Denis Vlasenko913a2012009-04-05 22:17:04 +00001334/* All callers guarantee this routine will never
1335 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001336 */
1337static int file_peek(struct in_str *i)
1338{
1339 int ch;
1340 if (i->p && *i->p) {
1341 if (i->eof_flag && !i->p[1])
1342 return EOF;
1343 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001344 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001345 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001346 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001347 i->eof_flag = (ch == EOF);
1348 i->peek_buf[0] = ch;
1349 i->peek_buf[1] = '\0';
1350 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001351 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001352 return ch;
1353}
1354
1355static void setup_file_in_str(struct in_str *i, FILE *f)
1356{
1357 i->peek = file_peek;
1358 i->get = file_get;
1359#if ENABLE_HUSH_INTERACTIVE
1360 i->promptme = 1;
1361 i->promptmode = 0; /* PS1 */
1362#endif
1363 i->file = f;
1364 i->p = NULL;
1365}
1366
1367static void setup_string_in_str(struct in_str *i, const char *s)
1368{
1369 i->peek = static_peek;
1370 i->get = static_get;
1371#if ENABLE_HUSH_INTERACTIVE
1372 i->promptme = 1;
1373 i->promptmode = 0; /* PS1 */
1374#endif
1375 i->p = s;
1376 i->eof_flag = 0;
1377}
1378
1379
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001380/*
1381 * o_string support
1382 */
1383#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001384
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001385static void o_reset(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001386{
1387 o->length = 0;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001388 o->o_quoted = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001389 if (o->data)
1390 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001391}
1392
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001393static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001394{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001395 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001396 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001397}
1398
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001399static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1400{
1401 free(o->data);
1402}
1403
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001404static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001405{
1406 if (o->length + len > o->maxlen) {
1407 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1408 o->data = xrealloc(o->data, 1 + o->maxlen);
1409 }
1410}
1411
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001412static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001413{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001414 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1415 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001416 o->data[o->length] = ch;
1417 o->length++;
1418 o->data[o->length] = '\0';
1419}
1420
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001421static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001422{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001423 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001424 memcpy(&o->data[o->length], str, len);
1425 o->length += len;
1426 o->data[o->length] = '\0';
1427}
1428
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001429#if !BB_MMU
1430static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00001431{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001432 o_addblock(o, str, strlen(str));
1433}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001434static void nommu_addchr(o_string *o, int ch)
1435{
1436 if (o)
1437 o_addchr(o, ch);
1438}
1439#else
1440#define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001441#endif
1442
1443static void o_addstr_with_NUL(o_string *o, const char *str)
1444{
1445 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00001446}
1447
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001448static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
Denis Vlasenko55789c62008-06-18 16:30:42 +00001449{
1450 while (len) {
1451 o_addchr(o, *str);
1452 if (*str++ == '\\'
1453 && (*str != '*' && *str != '?' && *str != '[')
1454 ) {
1455 o_addchr(o, '\\');
1456 }
1457 len--;
1458 }
1459}
1460
Eric Andersen25f27032001-04-26 23:22:31 +00001461/* My analysis of quoting semantics tells me that state information
1462 * is associated with a destination, not a source.
1463 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001464static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001465{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001466 int sz = 1;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001467 char *found = strchr("*?[\\", ch);
1468 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001469 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001470 o_grow_by(o, sz);
1471 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001472 o->data[o->length] = '\\';
1473 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001474 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001475 o->data[o->length] = ch;
1476 o->length++;
1477 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001478}
1479
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001480static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001481{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001482 int sz = 1;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001483 if (o->o_escape && strchr("*?[\\", ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001484 sz++;
1485 o->data[o->length] = '\\';
1486 o->length++;
1487 }
1488 o_grow_by(o, sz);
1489 o->data[o->length] = ch;
1490 o->length++;
1491 o->data[o->length] = '\0';
1492}
1493
1494static void o_addQstr(o_string *o, const char *str, int len)
1495{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001496 if (!o->o_escape) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001497 o_addblock(o, str, len);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001498 return;
1499 }
1500 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001501 char ch;
1502 int sz;
1503 int ordinary_cnt = strcspn(str, "*?[\\");
1504 if (ordinary_cnt > len) /* paranoia */
1505 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001506 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001507 if (ordinary_cnt == len)
1508 return;
1509 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001510 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001511
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001512 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001513 sz = 1;
1514 if (ch) { /* it is necessarily one of "*?[\\" */
1515 sz++;
1516 o->data[o->length] = '\\';
1517 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001518 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001519 o_grow_by(o, sz);
1520 o->data[o->length] = ch;
1521 o->length++;
1522 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001523 }
1524}
1525
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001526/* A special kind of o_string for $VAR and `cmd` expansion.
1527 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001528 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001529 * list[i] contains an INDEX (int!) into this string data.
1530 * It means that if list[] needs to grow, data needs to be moved higher up
1531 * but list[i]'s need not be modified.
1532 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001533 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001534 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1535 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001536#if DEBUG_EXPAND || DEBUG_GLOB
1537static void debug_print_list(const char *prefix, o_string *o, int n)
1538{
1539 char **list = (char**)o->data;
1540 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1541 int i = 0;
1542 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1543 prefix, list, n, string_start, o->length, o->maxlen);
1544 while (i < n) {
1545 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1546 o->data + (int)list[i] + string_start,
1547 o->data + (int)list[i] + string_start);
1548 i++;
1549 }
1550 if (n) {
1551 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001552 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001553 }
1554}
1555#else
1556#define debug_print_list(prefix, o, n) ((void)0)
1557#endif
1558
1559/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1560 * in list[n] so that it points past last stored byte so far.
1561 * It returns n+1. */
1562static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001563{
1564 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001565 int string_start;
1566 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001567
1568 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001569 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1570 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001571 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001572 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001573 /* list[n] points to string_start, make space for 16 more pointers */
1574 o->maxlen += 0x10 * sizeof(list[0]);
1575 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00001576 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001577 memmove(list + n + 0x10, list + n, string_len);
1578 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001579 } else {
1580 debug_printf_list("list[%d]=%d string_start=%d\n",
1581 n, string_len, string_start);
1582 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001583 } else {
1584 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001585 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1586 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001587 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
1588 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001589 o->has_empty_slot = 0;
1590 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001591 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001592 return n + 1;
1593}
1594
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001595/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001596static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001597{
1598 char **list = (char**)o->data;
1599 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1600
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001601 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001602}
1603
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001604/* o_glob performs globbing on last list[], saving each result
Denis Vlasenko55789c62008-06-18 16:30:42 +00001605 * as a new list[]. */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001606static int o_glob(o_string *o, int n)
1607{
1608 glob_t globdata;
1609 int gr;
1610 char *pattern;
1611
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001612 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001613 if (!o->data)
1614 return o_save_ptr_helper(o, n);
1615 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001616 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001617 if (!glob_needed(pattern)) {
1618 literal:
1619 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001620 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001621 return o_save_ptr_helper(o, n);
1622 }
1623
1624 memset(&globdata, 0, sizeof(globdata));
1625 gr = glob(pattern, 0, NULL, &globdata);
1626 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1627 if (gr == GLOB_NOSPACE)
1628 bb_error_msg_and_die("out of memory during glob");
1629 if (gr == GLOB_NOMATCH) {
1630 globfree(&globdata);
1631 goto literal;
1632 }
1633 if (gr != 0) { /* GLOB_ABORTED ? */
1634//TODO: testcase for bad glob pattern behavior
1635 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1636 }
1637 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1638 char **argv = globdata.gl_pathv;
1639 o->length = pattern - o->data; /* "forget" pattern */
1640 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001641 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001642 n = o_save_ptr_helper(o, n);
1643 argv++;
1644 if (!*argv)
1645 break;
1646 }
1647 }
1648 globfree(&globdata);
1649 if (DEBUG_GLOB)
1650 debug_print_list("o_glob returning", o, n);
1651 return n;
1652}
1653
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001654/* If o->o_glob == 1, glob the string so far remembered.
1655 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001656static int o_save_ptr(o_string *o, int n)
1657{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00001658 if (o->o_glob) { /* if globbing is requested */
1659 /* If o->has_empty_slot, list[n] was already globbed
1660 * (if it was requested back then when it was filled)
1661 * so don't do that again! */
1662 if (!o->has_empty_slot)
1663 return o_glob(o, n); /* o_save_ptr_helper is inside */
1664 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001665 return o_save_ptr_helper(o, n);
1666}
1667
1668/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001669static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001670{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001671 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001672 int string_start;
1673
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001674 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
1675 if (DEBUG_EXPAND)
1676 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001677 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001678 list = (char**)o->data;
1679 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1680 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001681 while (n) {
1682 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001683 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001684 }
1685 return list;
1686}
1687
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001688
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001689/* Expansion can recurse */
1690#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001691static int process_command_subs(o_string *dest, const char *s);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001692#endif
1693static char *expand_string_to_string(const char *str);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001694#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001695#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001696 parse_stream_dquoted(dest, input, dquote_end)
1697#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001698static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001699 o_string *dest,
1700 struct in_str *input,
1701 int dquote_end);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001702
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001703/* expand_strvec_to_strvec() takes a list of strings, expands
1704 * all variable references within and returns a pointer to
1705 * a list of expanded strings, possibly with larger number
1706 * of strings. (Think VAR="a b"; echo $VAR).
1707 * This new list is allocated as a single malloc block.
1708 * NULL-terminated list of char* pointers is at the beginning of it,
1709 * followed by strings themself.
1710 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00001711
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001712/* Store given string, finalizing the word and starting new one whenever
1713 * we encounter IFS char(s). This is used for expanding variable values.
1714 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
1715static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00001716{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001717 while (1) {
1718 int word_len = strcspn(str, G.ifs);
1719 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001720 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001721 o_addQstr(output, str, word_len);
1722 else /* protect backslashes against globbing up :) */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001723 o_addblock_duplicate_backslash(output, str, word_len);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001724 str += word_len;
1725 }
1726 if (!*str) /* EOL - do not finalize word */
1727 break;
1728 o_addchr(output, '\0');
1729 debug_print_list("expand_on_ifs", output, n);
1730 n = o_save_ptr(output, n);
1731 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00001732 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001733 debug_print_list("expand_on_ifs[1]", output, n);
1734 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001735}
1736
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001737/* Helper to expand $((...)) and heredoc body. These act as if
1738 * they are in double quotes, with the exception that they are not :).
1739 * Just the rules are similar: "expand only $var and `cmd`"
1740 *
1741 * Returns malloced string.
1742 * As an optimization, we return NULL if expansion is not needed.
1743 */
1744static char *expand_pseudo_dquoted(const char *str)
1745{
1746 char *exp_str;
1747 struct in_str input;
1748 o_string dest = NULL_O_STRING;
1749
1750 if (strchr(str, '$') == NULL
1751#if ENABLE_HUSH_TICK
1752 && strchr(str, '`') == NULL
1753#endif
1754 ) {
1755 return NULL;
1756 }
1757
1758 /* We need to expand. Example:
1759 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
1760 */
1761 setup_string_in_str(&input, str);
1762 parse_stream_dquoted(NULL, &dest, &input, EOF);
1763 //bb_error_msg("'%s' -> '%s'", str, dest.data);
1764 exp_str = expand_string_to_string(dest.data);
1765 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
1766 o_free_unsafe(&dest);
1767 return exp_str;
1768}
1769
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001770/* Expand all variable references in given string, adding words to list[]
1771 * at n, n+1,... positions. Return updated n (so that list[n] is next one
1772 * to be filled). This routine is extremely tricky: has to deal with
1773 * variables/parameters with whitespace, $* and $@, and constructs like
1774 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
1775static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00001776{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001777 /* or_mask is either 0 (normal case) or 0x80
1778 * (expansion of right-hand side of assignment == 1-element expand.
1779 * It will also do no globbing, and thus we must not backslash-quote!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001780
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001781 char first_ch, ored_ch;
1782 int i;
1783 const char *val;
Mike Frysingera4f331d2009-04-07 06:03:22 +00001784 char *dyn_val, *p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001785
Mike Frysingera4f331d2009-04-07 06:03:22 +00001786 dyn_val = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001787 ored_ch = 0;
1788
1789 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
1790 debug_print_list("expand_vars_to_list", output, n);
1791 n = o_save_ptr(output, n);
1792 debug_print_list("expand_vars_to_list[0]", output, n);
1793
1794 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
1795#if ENABLE_HUSH_TICK
1796 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001797#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001798#if ENABLE_SH_MATH_SUPPORT
1799 char arith_buf[sizeof(arith_t)*3 + 2];
1800#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001801 o_addblock(output, arg, p - arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001802 debug_print_list("expand_vars_to_list[1]", output, n);
1803 arg = ++p;
1804 p = strchr(p, SPECIAL_VAR_SYMBOL);
1805
1806 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
1807 /* "$@" is special. Even if quoted, it can still
1808 * expand to nothing (not even an empty string) */
1809 if ((first_ch & 0x7f) != '@')
1810 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001811
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001812 val = NULL;
1813 switch (first_ch & 0x7f) {
1814 /* Highest bit in first_ch indicates that var is double-quoted */
1815 case '$': /* pid */
1816 val = utoa(G.root_pid);
1817 break;
1818 case '!': /* bg pid */
1819 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
1820 break;
1821 case '?': /* exitcode */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00001822 val = utoa(G.last_exitcode);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001823 break;
1824 case '#': /* argc */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001825 if (arg[1] != SPECIAL_VAR_SYMBOL)
1826 /* actually, it's a ${#var} */
1827 goto case_default;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001828 val = utoa(G.global_argc ? G.global_argc-1 : 0);
1829 break;
1830 case '*':
1831 case '@':
1832 i = 1;
1833 if (!G.global_argv[i])
1834 break;
1835 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
1836 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001837 smallint sv = output->o_escape;
1838 /* unquoted var's contents should be globbed, so don't escape */
1839 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001840 while (G.global_argv[i]) {
1841 n = expand_on_ifs(output, n, G.global_argv[i]);
1842 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
1843 if (G.global_argv[i++][0] && G.global_argv[i]) {
1844 /* this argv[] is not empty and not last:
1845 * put terminating NUL, start new word */
1846 o_addchr(output, '\0');
1847 debug_print_list("expand_vars_to_list[2]", output, n);
1848 n = o_save_ptr(output, n);
1849 debug_print_list("expand_vars_to_list[3]", output, n);
1850 }
1851 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001852 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001853 } else
1854 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
1855 * and in this case should treat it like '$*' - see 'else...' below */
1856 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
1857 while (1) {
1858 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1859 if (++i >= G.global_argc)
1860 break;
1861 o_addchr(output, '\0');
1862 debug_print_list("expand_vars_to_list[4]", output, n);
1863 n = o_save_ptr(output, n);
1864 }
1865 } else { /* quoted $*: add as one word */
1866 while (1) {
1867 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1868 if (!G.global_argv[++i])
1869 break;
1870 if (G.ifs[0])
1871 o_addchr(output, G.ifs[0]);
1872 }
1873 }
1874 break;
1875 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
1876 /* "Empty variable", used to make "" etc to not disappear */
1877 arg++;
1878 ored_ch = 0x80;
1879 break;
1880#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001881 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001882 *p = '\0';
1883 arg++;
1884//TODO: can we just stuff it into "output" directly?
1885 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001886 process_command_subs(&subst_result, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001887 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
1888 val = subst_result.data;
1889 goto store_val;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001890#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00001891#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001892 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001893 arith_eval_hooks_t hooks;
Mike Frysinger98c52642009-04-02 10:02:37 +00001894 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00001895 int errcode;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001896 char *exp_str;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001897
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001898 arg++; /* skip '+' */
1899 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00001900 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001901
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001902 exp_str = expand_pseudo_dquoted(arg);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001903 hooks.lookupvar = get_local_var_value;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001904 hooks.setvar = arith_set_local_var;
1905 hooks.endofname = endofname;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001906 res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
1907 free(exp_str);
1908
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001909 if (errcode < 0) {
Mike Frysinger98c52642009-04-02 10:02:37 +00001910 switch (errcode) {
1911 case -3: maybe_die("arith", "exponent less than 0"); break;
1912 case -2: maybe_die("arith", "divide by zero"); break;
1913 case -5: maybe_die("arith", "expression recursion loop detected"); break;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001914 default: maybe_die("arith", "syntax error"); break;
Mike Frysinger98c52642009-04-02 10:02:37 +00001915 }
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001916 }
Mike Frysinger98c52642009-04-02 10:02:37 +00001917 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001918 sprintf(arith_buf, arith_t_fmt, res);
1919 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00001920 break;
1921 }
1922#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001923 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001924 case_default: {
Denis Vlasenko232be3e2009-04-05 09:16:00 +00001925 bool exp_len = false;
1926 bool exp_null = false;
1927 char *var = arg;
1928 char exp_save = exp_save; /* for compiler */
1929 char exp_op = exp_op; /* for compiler */
1930 char *exp_word = exp_word; /* for compiler */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001931 size_t exp_off = 0;
Denis Vlasenko232be3e2009-04-05 09:16:00 +00001932
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001933 *p = '\0';
1934 arg[0] = first_ch & 0x7f;
Mike Frysinger6379bb42009-03-28 18:55:03 +00001935
1936 /* prepare for expansions */
1937 if (var[0] == '#') {
1938 /* handle length expansion ${#var} */
1939 exp_len = true;
1940 ++var;
1941 } else {
1942 /* maybe handle parameter expansion */
Mike Frysingera4f331d2009-04-07 06:03:22 +00001943 exp_off = strcspn(var, ":-=+?%#");
Mike Frysinger6379bb42009-03-28 18:55:03 +00001944 if (!var[exp_off])
1945 exp_off = 0;
1946 if (exp_off) {
1947 exp_save = var[exp_off];
1948 exp_null = exp_save == ':';
1949 exp_word = var + exp_off;
1950 if (exp_null) ++exp_word;
1951 exp_op = *exp_word++;
1952 var[exp_off] = '\0';
1953 }
1954 }
1955
1956 /* lookup the variable in question */
1957 if (isdigit(var[0])) {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00001958 /* handle_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001959 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001960 if (i < G.global_argc)
1961 val = G.global_argv[i];
1962 /* else val remains NULL: $N with too big N */
1963 } else
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001964 val = get_local_var_value(var);
Mike Frysinger6379bb42009-03-28 18:55:03 +00001965
1966 /* handle any expansions */
1967 if (exp_len) {
1968 debug_printf_expand("expand: length of '%s' = ", val);
1969 val = utoa(val ? strlen(val) : 0);
1970 debug_printf_expand("%s\n", val);
1971 } else if (exp_off) {
Mike Frysingera4f331d2009-04-07 06:03:22 +00001972 if (exp_op == '%' || exp_op == '#') {
1973 /* we need to do a pattern match */
1974 bool zero;
1975 char *loc;
1976 scan_t scan = pick_scan(exp_op, *exp_word, &zero);
1977 if (exp_op == *exp_word) /* ## or %% */
1978 ++exp_word;
1979 val = dyn_val = xstrdup(val);
1980 loc = scan(dyn_val, exp_word, zero);
1981 if (zero)
1982 val = loc;
Mike Frysinger6379bb42009-03-28 18:55:03 +00001983 else
Mike Frysingera4f331d2009-04-07 06:03:22 +00001984 *loc = '\0';
1985 } else {
1986 /* we need to do an expansion */
1987 int exp_test = (!val || (exp_null && !val[0]));
1988 if (exp_op == '+')
1989 exp_test = !exp_test;
1990 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
1991 exp_null ? "true" : "false", exp_test);
1992 if (exp_test) {
1993 if (exp_op == '?')
1994 maybe_die(var, *exp_word ? exp_word : "parameter null or not set");
1995 else
1996 val = exp_word;
Mike Frysinger6379bb42009-03-28 18:55:03 +00001997
Mike Frysingera4f331d2009-04-07 06:03:22 +00001998 if (exp_op == '=') {
1999 if (isdigit(var[0]) || var[0] == '#') {
2000 maybe_die(var, "special vars cannot assign in this way");
2001 val = NULL;
2002 } else {
2003 char *new_var = xmalloc(strlen(var) + strlen(val) + 2);
2004 sprintf(new_var, "%s=%s", var, val);
2005 set_local_var(new_var, -1, 0);
2006 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002007 }
2008 }
2009 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002010
Mike Frysinger6379bb42009-03-28 18:55:03 +00002011 var[exp_off] = exp_save;
2012 }
2013
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002014 arg[0] = first_ch;
2015#if ENABLE_HUSH_TICK
2016 store_val:
2017#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002018 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002019 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002020 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002021 /* unquoted var's contents should be globbed, so don't escape */
2022 smallint sv = output->o_escape;
2023 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002024 n = expand_on_ifs(output, n, val);
2025 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002026 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002027 }
2028 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002029 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002030 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002031 } /* default: */
2032 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002033 if (val) {
2034 o_addQstr(output, val, strlen(val));
2035 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002036 free(dyn_val);
2037 dyn_val = NULL;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002038 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002039 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00002040 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002041
2042#if ENABLE_HUSH_TICK
2043 o_free(&subst_result);
2044#endif
2045 arg = ++p;
2046 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
2047
2048 if (arg[0]) {
2049 debug_print_list("expand_vars_to_list[a]", output, n);
2050 /* this part is literal, and it was already pre-quoted
2051 * if needed (much earlier), do not use o_addQstr here! */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002052 o_addstr_with_NUL(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002053 debug_print_list("expand_vars_to_list[b]", output, n);
2054 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2055 && !(ored_ch & 0x80) /* and all vars were not quoted. */
2056 ) {
2057 n--;
2058 /* allow to reuse list[n] later without re-growth */
2059 output->has_empty_slot = 1;
2060 } else {
2061 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00002062 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002063 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00002064}
2065
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002066static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002067{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002068 int n;
2069 char **list;
2070 char **v;
2071 o_string output = NULL_O_STRING;
2072
2073 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002074 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002075 /* (unquoted $var will temporarily switch it off) */
2076 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002077 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002078
2079 n = 0;
2080 v = argv;
2081 while (*v) {
2082 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
2083 v++;
2084 }
2085 debug_print_list("expand_variables", &output, n);
2086
2087 /* output.data (malloced in one block) gets returned in "list" */
2088 list = o_finalize_list(&output, n);
2089 debug_print_strings("expand_variables[1]", list);
2090 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00002091}
2092
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002093static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002094{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002095 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00002096}
2097
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002098/* Used for expansion of right hand of assignments */
2099/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2100 * "v=/bin/c*" */
2101static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002102{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002103 char *argv[2], **list;
2104
2105 argv[0] = (char*)str;
2106 argv[1] = NULL;
2107 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2108 if (HUSH_DEBUG)
2109 if (!list[0] || list[1])
2110 bb_error_msg_and_die("BUG in varexp2");
2111 /* actually, just move string 2*sizeof(char*) bytes back */
2112 overlapping_strcpy((char*)list, list[0]);
2113 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2114 return (char*)list;
2115}
2116
2117/* Used for "eval" builtin */
2118static char* expand_strvec_to_string(char **argv)
2119{
2120 char **list;
2121
2122 list = expand_variables(argv, 0x80);
2123 /* Convert all NULs to spaces */
2124 if (list[0]) {
2125 int n = 1;
2126 while (list[n]) {
2127 if (HUSH_DEBUG)
2128 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2129 bb_error_msg_and_die("BUG in varexp3");
2130 list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */
2131 n++;
2132 }
2133 }
2134 overlapping_strcpy((char*)list, list[0]);
2135 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2136 return (char*)list;
2137}
2138
2139static char **expand_assignments(char **argv, int count)
2140{
2141 int i;
2142 char **p = NULL;
2143 /* Expand assignments into one string each */
2144 for (i = 0; i < count; i++) {
2145 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2146 }
2147 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002148}
2149
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002150
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002151#if BB_MMU
2152void re_execute_shell(const char *s, int is_heredoc); /* never called */
2153#define clean_up_after_re_execute() ((void)0)
2154static void reset_traps_to_defaults(void)
2155{
2156 unsigned sig;
2157 int dirty;
2158
2159 if (!G.traps)
2160 return;
2161 dirty = 0;
2162 for (sig = 0; sig < NSIG; sig++) {
2163 if (!G.traps[sig])
2164 continue;
2165 free(G.traps[sig]);
2166 G.traps[sig] = NULL;
2167 /* There is no signal for 0 (EXIT) */
2168 if (sig == 0)
2169 continue;
2170 /* there was a trap handler, we are removing it
2171 * (if sig has non-DFL handling,
2172 * we don't need to do anything) */
2173 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
2174 continue;
2175 sigdelset(&G.blocked_set, sig);
2176 dirty = 1;
2177 }
2178 if (dirty)
2179 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
2180}
2181
2182#else /* !BB_MMU */
2183
2184static void re_execute_shell(const char *s, int is_heredoc) NORETURN;
2185static void re_execute_shell(const char *s, int is_heredoc)
2186{
2187 char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4];
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002188 char *heredoc_argv[4];
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002189 struct variable *cur;
2190 char **argv, **pp, **pp2;
2191 unsigned cnt;
2192
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002193 if (is_heredoc) {
2194 argv = heredoc_argv;
2195 argv[0] = (char *) G.argv0_for_re_execing;
2196 argv[1] = (char *) "-<";
2197 argv[2] = (char *) s;
2198 argv[3] = NULL;
Denis Vlasenkof50caac2009-04-09 01:40:15 +00002199 pp = &argv[3]; /* used as pointer to empty environment */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002200 goto do_exec;
2201 }
2202
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002203 sprintf(param_buf, "-$%x:%x:%x" USE_HUSH_LOOPS(":%x")
2204 , (unsigned) G.root_pid
2205 , (unsigned) G.last_bg_pid
2206 , (unsigned) G.last_exitcode
2207 USE_HUSH_LOOPS(, G.depth_of_loop)
2208 );
2209 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...>
2210 * 3:-c 4:<cmd> <argN...> 5:NULL
2211 */
2212 cnt = 5 + G.global_argc;
2213 for (cur = G.top_var; cur; cur = cur->next) {
2214 if (!cur->flg_export || cur->flg_read_only)
2215 cnt += 2;
2216 }
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002217 G.argv_from_re_execing = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002218 *pp++ = (char *) G.argv0_for_re_execing;
2219 *pp++ = param_buf;
2220 for (cur = G.top_var; cur; cur = cur->next) {
2221 if (cur->varstr == hush_version_str)
2222 continue;
2223 if (cur->flg_read_only) {
2224 *pp++ = (char *) "-R";
2225 *pp++ = cur->varstr;
2226 } else if (!cur->flg_export) {
2227 *pp++ = (char *) "-V";
2228 *pp++ = cur->varstr;
2229 }
2230 }
2231//TODO: pass functions
2232 /* We can pass activated traps here. Say, -Tnn:trap_string
2233 *
2234 * However, POSIX says that subshells reset signals with traps
2235 * to SIG_DFL.
2236 * I tested bash-3.2 and it not only does that with true subshells
2237 * of the form ( list ), but with any forked children shells.
2238 * I set trap "echo W" WINCH; and then tried:
2239 *
2240 * { echo 1; sleep 20; echo 2; } &
2241 * while true; do echo 1; sleep 20; echo 2; break; done &
2242 * true | { echo 1; sleep 20; echo 2; } | cat
2243 *
2244 * In all these cases sending SIGWINCH to the child shell
2245 * did not run the trap. If I add trap "echo V" WINCH;
2246 * _inside_ group (just before echo 1), it works.
2247 *
2248 * I conclude it means we don't need to pass active traps here.
2249 * exec syscall below resets them to SIG_DFL for us.
2250 */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002251 *pp++ = (char *) "-c";
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002252 *pp++ = (char *) s;
2253 pp2 = G.global_argv;
2254 while (*pp2)
2255 *pp++ = *pp2++;
2256 /* *pp = NULL; - is already there */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002257 pp = environ;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002258
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002259 do_exec:
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002260 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
2261 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002262 execve(bb_busybox_exec_path, argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002263 /* Fallback. Useful for init=/bin/hush usage etc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002264 if (argv[0][0] == '/')
2265 execve(argv[0], argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002266 xfunc_error_retval = 127;
2267 bb_error_msg_and_die("can't re-execute the shell");
2268}
2269
2270static void clean_up_after_re_execute(void)
2271{
2272 char **pp = G.argv_from_re_execing;
2273 if (pp) {
2274 /* Must match re_execute_shell's allocations (if any) */
2275 free(pp);
2276 G.argv_from_re_execing = NULL;
2277 }
2278}
2279#endif /* !BB_MMU */
2280
2281
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002282static void setup_heredoc(struct redir_struct *redir)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002283{
2284 struct fd_pair pair;
2285 pid_t pid;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002286 int len, written;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002287 /* the _body_ of heredoc (misleading field name) */
2288 const char *heredoc = redir->rd_filename;
2289 char *expanded;
2290
2291 expanded = NULL;
2292 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
2293 expanded = expand_pseudo_dquoted(heredoc);
2294 if (expanded)
2295 heredoc = expanded;
2296 }
2297 len = strlen(heredoc);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002298
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002299 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002300 xpiped_pair(pair);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002301 xmove_fd(pair.rd, redir->rd_fd);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002302
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002303 /* Try writing without forking. Newer kernels have
2304 * dynamically growing pipes. Must use non-blocking write! */
2305 ndelay_on(pair.wr);
2306 while (1) {
2307 written = write(pair.wr, heredoc, len);
2308 if (written <= 0)
2309 break;
2310 len -= written;
2311 if (len == 0) {
2312 close(pair.wr);
2313 return;
2314 }
2315 heredoc += written;
2316 }
2317 ndelay_off(pair.wr);
2318
2319 /* Okay, pipe buffer was not big enough */
2320 /* Note: we must not create a stray child (bastard? :)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002321 * for the unsuspecting parent process. Child creates a grandchild
2322 * and exits before parent execs the process which consumes heredoc
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002323 * (that exec happens after we return from this function) */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002324 pid = vfork();
2325 if (pid < 0)
2326 bb_perror_msg_and_die("vfork");
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002327 if (pid == 0) {
2328 /* child */
2329 pid = BB_MMU ? fork() : vfork();
2330 if (pid < 0)
2331 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
2332 if (pid != 0)
2333 _exit(0);
2334 /* grandchild */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002335 close(redir->rd_fd); /* read side of the pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002336#if BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002337 full_write(pair.wr, heredoc, len); /* may loop or block */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002338 _exit(0);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002339#else
2340 /* Delegate blocking writes to another process */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002341 disable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002342 xmove_fd(pair.wr, STDOUT_FILENO);
2343 re_execute_shell(heredoc, 1);
2344#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002345 }
2346 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002347 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002348 clean_up_after_re_execute();
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002349 close(pair.wr);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002350 free(expanded);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002351 wait(NULL); /* wait till child has died */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002352}
2353
Eric Andersen25f27032001-04-26 23:22:31 +00002354/* squirrel != NULL means we squirrel away copies of stdin, stdout,
2355 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002356static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00002357{
2358 int openfd, mode;
2359 struct redir_struct *redir;
2360
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002361 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002362 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002363 if (squirrel && redir->rd_fd < 3) {
2364 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002365 }
2366 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
2367 * of the heredoc */
2368 debug_printf_parse("set heredoc '%s'\n",
2369 redir->rd_filename);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002370 setup_heredoc(redir);
Eric Andersen817e73c2001-06-06 17:56:09 +00002371 continue;
2372 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002373
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002374 if (redir->rd_dup == -1) {
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002375 char *p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002376 if (redir->rd_filename == NULL) {
2377 /* Something went wrong in the parse.
2378 * Pretend it didn't happen */
2379 continue;
2380 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00002381 mode = redir_table[redir->rd_type].mode;
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00002382//TODO: check redir for names like '\\'
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002383 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002384 openfd = open_or_warn(p, mode);
2385 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00002386 if (openfd < 0) {
2387 /* this could get lost if stderr has been redirected, but
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002388 * bash and ash both lose it as well (though zsh doesn't!) */
2389//what the above comment tries to say?
Eric Andersen25f27032001-04-26 23:22:31 +00002390 return 1;
2391 }
2392 } else {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002393 openfd = redir->rd_dup;
Eric Andersen25f27032001-04-26 23:22:31 +00002394 }
2395
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002396 if (openfd != redir->rd_fd) {
2397 if (squirrel && redir->rd_fd < 3) {
2398 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Eric Andersen25f27032001-04-26 23:22:31 +00002399 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002400 if (openfd == REDIRFD_CLOSE) {
2401 /* "n>-" means "close me" */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002402 close(redir->rd_fd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002403 } else {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002404 xdup2(openfd, redir->rd_fd);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002405 if (redir->rd_dup == -1)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002406 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002407 }
Eric Andersen25f27032001-04-26 23:22:31 +00002408 }
2409 }
2410 return 0;
2411}
2412
2413static void restore_redirects(int squirrel[])
2414{
2415 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002416 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002417 fd = squirrel[i];
2418 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002419 /* We simply die on error */
2420 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00002421 }
2422 }
2423}
2424
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002425
Denis Vlasenkoa0e65122009-04-05 23:39:14 +00002426#if !DEBUG_CLEAN
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002427#define free_pipe_list(head, indent) free_pipe_list(head)
2428#define free_pipe(pi, indent) free_pipe(pi)
2429#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002430static void free_pipe_list(struct pipe *head, int indent);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002431
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002432/* Return code is the exit status of the pipe */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002433static void free_pipe(struct pipe *pi, int indent)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002434{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002435 char **p;
2436 struct command *command;
2437 struct redir_struct *r, *rnext;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002438 int a, i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002439
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002440 if (pi->stopped_cmds > 0) /* why? */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002441 return;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002442 debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid());
2443 for (i = 0; i < pi->num_cmds; i++) {
2444 command = &pi->cmds[i];
2445 debug_printf_clean("%s command %d:\n", indenter(indent), i);
2446 if (command->argv) {
2447 for (a = 0, p = command->argv; *p; a++, p++) {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002448 debug_printf_clean("%s argv[%d] = %s\n",
2449 indenter(indent), a, *p);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002450 }
2451 free_strings(command->argv);
2452 command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002453 }
2454 /* not "else if": on syntax error, we may have both! */
2455 if (command->group) {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002456 debug_printf_clean("%s begin group (grp_type:%d)\n",
2457 indenter(indent), command->grp_type);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002458 free_pipe_list(command->group, indent+3);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002459 debug_printf_clean("%s end group\n", indenter(indent));
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002460 command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002461 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002462#if !BB_MMU
2463 free(command->group_as_string);
2464 command->group_as_string = NULL;
2465#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002466 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002467 debug_printf_clean("%s redirect %d%s", indenter(indent),
2468 r->fd, redir_table[r->rd_type].descrip);
2469 /* guard against the case >$FOO, where foo is unset or blank */
2470 if (r->rd_filename) {
2471 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
2472 free(r->rd_filename);
2473 r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002474 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002475 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002476 rnext = r->next;
2477 free(r);
2478 }
2479 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002480 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002481 free(pi->cmds); /* children are an array, they get freed all at once */
2482 pi->cmds = NULL;
2483#if ENABLE_HUSH_JOB
2484 free(pi->cmdtext);
2485 pi->cmdtext = NULL;
2486#endif
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002487}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002488
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002489static void free_pipe_list(struct pipe *head, int indent)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002490{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002491 struct pipe *pi, *next;
2492
2493 for (pi = head; pi; pi = next) {
2494#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002495 debug_printf_clean("%s pipe reserved word %d\n", indenter(indent), pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002496#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002497 free_pipe(pi, indent);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002498 debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup);
2499 next = pi->next;
2500 /*pi->next = NULL;*/
2501 free(pi);
2502 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002503}
2504
2505
Denis Vlasenkocc90f442009-04-08 16:40:34 +00002506#if BB_MMU
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002507#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
2508 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
2509#define pseudo_exec(nommu_save, command, argv_expanded) \
2510 pseudo_exec(command, argv_expanded)
2511#endif
2512
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002513/* Called after [v]fork() in run_pipe, or from builtin_exec.
Denis Vlasenko8412d792007-10-01 09:59:47 +00002514 * Never returns.
2515 * XXX no exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00002516 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002517 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002518static void pseudo_exec_argv(nommu_save_t *nommu_save,
2519 char **argv, int assignment_cnt,
2520 char **argv_expanded) NORETURN;
2521static void pseudo_exec_argv(nommu_save_t *nommu_save,
2522 char **argv, int assignment_cnt,
2523 char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00002524{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002525 char **new_env;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002526
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002527 /* Case when we are here: ... | var=val | ... */
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002528 if (!argv[assignment_cnt])
Denis Vlasenko1359da62007-04-21 23:27:30 +00002529 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002530
Denis Vlasenko9504e442008-10-29 01:19:15 +00002531 new_env = expand_assignments(argv, assignment_cnt);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002532#if BB_MMU
2533 putenv_all(new_env);
2534 free(new_env); /* optional */
2535#else
2536 nommu_save->new_env = new_env;
2537 nommu_save->old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002538#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002539 if (argv_expanded) {
2540 argv = argv_expanded;
2541 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00002542 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002543#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002544 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002545#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002546 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002547
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002548 /* On NOMMU, we must never block!
2549 * Example: { sleep 99999 | read line } & echo Ok
2550 * read builtin will block on read syscall, leaving parent blocked
2551 * in vfork. Therefore we can't do this:
2552 */
2553#if BB_MMU
2554 /* Check if the command matches any of the builtins.
Denis Vlasenko1359da62007-04-21 23:27:30 +00002555 * Depending on context, this might be redundant. But it's
2556 * easier to waste a few CPU cycles than it is to figure out
2557 * if this is one of those cases.
2558 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002559 {
2560 int rcode;
2561 const struct built_in_command *x;
2562 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
2563 if (strcmp(argv[0], x->cmd) == 0) {
2564 debug_printf_exec("running builtin '%s'\n",
2565 argv[0]);
2566 rcode = x->function(argv);
2567 fflush(NULL);
2568 _exit(rcode);
2569 }
Eric Andersen94ac2442001-05-22 19:05:18 +00002570 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00002571 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002572#endif
Eric Andersen78a7c992001-05-15 16:30:25 +00002573
Denis Vlasenko80d14be2007-04-10 23:03:30 +00002574#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002575 /* Check if the command matches any busybox applets */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002576 if (strchr(argv[0], '/') == NULL) {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002577 int a = find_applet_by_name(argv[0]);
2578 if (a >= 0) {
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002579#if BB_MMU /* see above why on NOMMU it is not allowed */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002580 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002581 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002582 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002583 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002584#endif
2585 /* Re-exec ourselves */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002586 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002587 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
2588 execv(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002589 /* If they called chroot or otherwise made the binary no longer
2590 * executable, fall through */
2591 }
2592 }
Eric Andersenaac75e52001-04-30 18:18:45 +00002593#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002594
2595 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002596 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002597 execvp(argv[0], argv);
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00002598 bb_perror_msg("can't exec '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00002599 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002600}
2601
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002602static int run_list(struct pipe *pi);
2603
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002604/* Called after [v]fork() in run_pipe
Denis Vlasenko8412d792007-10-01 09:59:47 +00002605 */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002606static void pseudo_exec(nommu_save_t *nommu_save,
2607 struct command *command,
2608 char **argv_expanded) NORETURN;
2609static void pseudo_exec(nommu_save_t *nommu_save,
2610 struct command *command,
2611 char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002612{
Denis Vlasenko552433b2009-04-04 19:29:21 +00002613 if (command->argv) {
2614 pseudo_exec_argv(nommu_save, command->argv,
2615 command->assignment_cnt, argv_expanded);
2616 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002617
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002618 if (command->group) {
Denis Vlasenko552433b2009-04-04 19:29:21 +00002619 /* Cases when we are here:
2620 * ( list )
2621 * { list } &
2622 * ... | ( list ) | ...
2623 * ... | { list } | ...
2624 */
2625#if BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00002626 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002627 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00002628 reset_traps_to_defaults();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002629 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00002630 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00002631 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00002632 _exit(rcode);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002633#else
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002634 re_execute_shell(command->group_as_string, 0);
Denis Vlasenko8412d792007-10-01 09:59:47 +00002635#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002636 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002637
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002638 /* Case when we are here: ... | >file */
2639 debug_printf_exec("pseudo_exec'ed null command\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002640 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00002641}
2642
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002643#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002644static const char *get_cmdtext(struct pipe *pi)
2645{
2646 char **argv;
2647 char *p;
2648 int len;
2649
2650 /* This is subtle. ->cmdtext is created only on first backgrounding.
2651 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002652 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002653 if (pi->cmdtext)
2654 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002655 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002656 if (!argv || !argv[0]) {
2657 pi->cmdtext = xzalloc(1);
2658 return pi->cmdtext;
2659 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002660
2661 len = 0;
2662 do len += strlen(*argv) + 1; while (*++argv);
2663 pi->cmdtext = p = xmalloc(len);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002664 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002665 do {
2666 len = strlen(*argv);
2667 memcpy(p, *argv, len);
2668 p += len;
2669 *p++ = ' ';
2670 } while (*++argv);
2671 p[-1] = '\0';
2672 return pi->cmdtext;
2673}
2674
Eric Andersenbafd94f2001-05-02 16:11:59 +00002675static void insert_bg_job(struct pipe *pi)
2676{
2677 struct pipe *thejob;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002678 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002679
2680 /* Linear search for the ID of the job to use */
2681 pi->jobid = 1;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002682 for (thejob = G.job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00002683 if (thejob->jobid >= pi->jobid)
2684 pi->jobid = thejob->jobid + 1;
2685
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002686 /* Add thejob to the list of running jobs */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002687 if (!G.job_list) {
2688 thejob = G.job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00002689 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002690 for (thejob = G.job_list; thejob->next; thejob = thejob->next)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002691 continue;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002692 thejob->next = xmalloc(sizeof(*thejob));
2693 thejob = thejob->next;
2694 }
2695
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002696 /* Physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00002697 memcpy(thejob, pi, sizeof(struct pipe));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002698 thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
2699 /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */
2700 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002701// TODO: do we really need to have so many fields which are just dead weight
2702// at execution stage?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002703 thejob->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002704 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002705 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00002706 thejob->next = NULL;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002707 thejob->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00002708
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002709 /* We don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00002710 to the list of backgrounded thejobs and leave it alone */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002711 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00002712 printf("[%d] %d %s\n", thejob->jobid, thejob->cmds[0].pid, thejob->cmdtext);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002713 G.last_bg_pid = thejob->cmds[0].pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002714 G.last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002715}
2716
Eric Andersenbafd94f2001-05-02 16:11:59 +00002717static void remove_bg_job(struct pipe *pi)
2718{
2719 struct pipe *prev_pipe;
2720
Denis Vlasenko87a86552008-07-29 19:43:10 +00002721 if (pi == G.job_list) {
2722 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002723 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002724 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002725 while (prev_pipe->next != pi)
2726 prev_pipe = prev_pipe->next;
2727 prev_pipe->next = pi->next;
2728 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00002729 if (G.job_list)
2730 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00002731 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00002732 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00002733}
Eric Andersen028b65b2001-06-28 01:10:11 +00002734
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002735/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00002736static void delete_finished_bg_job(struct pipe *pi)
2737{
2738 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002739 pi->stopped_cmds = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00002740 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00002741 free(pi);
2742}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002743#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00002744
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002745/* Check to see if any processes have exited -- if they
2746 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00002747static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00002748{
Eric Andersenc798b072001-06-22 06:23:03 +00002749 int attributes;
2750 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002751#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00002752 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002753#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00002754 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002755 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002756
Denis Vlasenkod5762932009-03-31 11:22:57 +00002757 debug_printf_jobs("checkjobs %p\n", fg_pipe);
2758
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002759 errno = 0;
2760// if (G.handled_SIGCHLD == G.count_SIGCHLD)
2761// /* avoid doing syscall, nothing there anyway */
2762// return rcode;
2763
Eric Andersenc798b072001-06-22 06:23:03 +00002764 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002765 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00002766 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00002767
Denis Vlasenko1359da62007-04-21 23:27:30 +00002768/* Do we do this right?
2769 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002770 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00002771 * [3]+ Stopped sleep 20 | false
2772 * bash-3.00# echo $?
2773 * 1 <========== bg pipe is not fully done, but exitcode is already known!
2774 */
2775
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002776//FIXME: non-interactive bash does not continue even if all processes in fg pipe
2777//are stopped. Testcase: "cat | cat" in a script (not on command line)
2778// + killall -STOP cat
2779
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002780 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002781 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002782 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002783 int dead;
2784
2785// i = G.count_SIGCHLD;
2786 childpid = waitpid(-1, &status, attributes);
2787 if (childpid <= 0) {
2788 if (childpid && errno != ECHILD)
2789 bb_perror_msg("waitpid");
2790// else /* Until next SIGCHLD, waitpid's are useless */
2791// G.handled_SIGCHLD = i;
2792 break;
2793 }
2794 dead = WIFEXITED(status) || WIFSIGNALED(status);
2795
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002796#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00002797 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002798 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002799 childpid, WSTOPSIG(status), WEXITSTATUS(status));
2800 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002801 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002802 childpid, WTERMSIG(status), WEXITSTATUS(status));
2803 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002804 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002805 childpid, WEXITSTATUS(status));
2806#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002807 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00002808 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002809 for (i = 0; i < fg_pipe->num_cmds; i++) {
2810 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
2811 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002812 continue;
2813 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
2814 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002815 fg_pipe->cmds[i].pid = 0;
2816 fg_pipe->alive_cmds--;
2817 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002818 /* last process gives overall exitstatus */
2819 rcode = WEXITSTATUS(status);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002820 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002821 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002822 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002823 fg_pipe->cmds[i].is_stopped = 1;
2824 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00002825 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002826 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
2827 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
2828 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002829 /* All processes in fg pipe have exited/stopped */
2830#if ENABLE_HUSH_JOB
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002831 if (fg_pipe->alive_cmds)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002832 insert_bg_job(fg_pipe);
2833#endif
2834 return rcode;
2835 }
2836 /* There are still running processes in the fg pipe */
2837 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00002838 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002839 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00002840 }
2841
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002842#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002843 /* We asked to wait for bg or orphaned children */
2844 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002845 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002846 for (i = 0; i < pi->num_cmds; i++) {
2847 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002848 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00002849 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00002850 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002851 /* Happens when shell is used as init process (init=/bin/sh) */
2852 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002853 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00002854
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002855 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00002856 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00002857 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002858 pi->cmds[i].pid = 0;
2859 pi->alive_cmds--;
2860 if (!pi->alive_cmds) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002861 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00002862 printf(JOB_STATUS_FORMAT, pi->jobid,
2863 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002864 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00002865 }
2866 } else {
2867 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002868 pi->cmds[i].is_stopped = 1;
2869 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002870 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002871#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002872 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00002873
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002874 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00002875}
2876
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002877#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00002878static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
2879{
2880 pid_t p;
2881 int rcode = checkjobs(fg_pipe);
2882 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002883 p = getpgid(0); /* pgid of our process */
2884 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002885 tcsetpgrp(G_interactive_fd, p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00002886 return rcode;
2887}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002888#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00002889
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002890/* Start all the jobs, but don't wait for anything to finish.
2891 * See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00002892 *
Denis Vlasenko552433b2009-04-04 19:29:21 +00002893 * Return code is normally -1, when the caller has to wait for children
Eric Andersen25f27032001-04-26 23:22:31 +00002894 * to finish to determine the exit status of the pipe. If the pipe
2895 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00002896 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00002897 * return value.
2898 *
Denis Vlasenko170435c2007-05-23 13:01:10 +00002899 * Returns -1 only if started some children. IOW: we have to
2900 * mask out retvals of builtins etc with 0xff!
Denis Vlasenko552433b2009-04-04 19:29:21 +00002901 *
2902 * The only case when we do not need to [v]fork is when the pipe
2903 * is single, non-backgrounded, non-subshell command. Examples:
2904 * cmd ; ... { list } ; ...
2905 * cmd && ... { list } && ...
2906 * cmd || ... { list } || ...
2907 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
2908 * or (if SH_STANDALONE) an applet, and we can run the { list }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002909 * with run_list(). If it isn't one of these, we fork and exec cmd.
Denis Vlasenko552433b2009-04-04 19:29:21 +00002910 *
2911 * Cases when we must fork:
2912 * non-single: cmd | cmd
2913 * backgrounded: cmd & { list } &
2914 * subshell: ( list ) [&]
Eric Andersen25f27032001-04-26 23:22:31 +00002915 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002916static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00002917{
Denis Vlasenko552433b2009-04-04 19:29:21 +00002918 static const char *const null_ptr = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002919 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002920 int nextin;
2921 int pipefds[2]; /* pipefds[0] is for reading */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002922 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002923 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002924 char **argv;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002925 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002926 /* it is not always needed, but we aim to smaller code */
2927 int squirrel[] = { -1, -1, -1 };
2928 int rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00002929
Denis Vlasenko552433b2009-04-04 19:29:21 +00002930 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00002931
Denis Vlasenko552433b2009-04-04 19:29:21 +00002932 USE_HUSH_JOB(pi->pgrp = -1;)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002933 pi->stopped_cmds = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002934 command = &(pi->cmds[0]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002935 argv_expanded = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002936
Denis Vlasenko552433b2009-04-04 19:29:21 +00002937 if (pi->num_cmds != 1
2938 || pi->followup == PIPE_BG
2939 || command->grp_type == GRP_SUBSHELL
2940 ) {
2941 goto must_fork;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002942 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002943
Denis Vlasenko552433b2009-04-04 19:29:21 +00002944 pi->alive_cmds = 1;
2945
2946 debug_printf_exec(": group:%p argv:'%s'\n",
2947 command->group, command->argv ? command->argv[0] : "NONE");
2948
2949 if (command->group) {
2950#if ENABLE_HUSH_FUNCTIONS
2951 if (command->grp_type == GRP_FUNCTION) {
2952 /* func () { list } */
2953 bb_error_msg("here we ought to remember function definition, and go on");
2954 return EXIT_SUCCESS;
2955 }
2956#endif
2957 /* { list } */
2958 debug_printf("non-subshell group\n");
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00002959 rcode = 1; /* exitcode if redir failed */
2960 if (setup_redirects(command, squirrel) == 0) {
2961 debug_printf_exec(": run_list\n");
2962 rcode = run_list(command->group) & 0xff;
2963 debug_printf_exec("run_pipe return %d\n", rcode);
2964 }
Eric Andersen04407e52001-06-07 16:42:05 +00002965 restore_redirects(squirrel);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002966 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko05743d72008-02-10 12:10:08 +00002967 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002968 }
2969
Denis Vlasenko552433b2009-04-04 19:29:21 +00002970 argv = command->argv ? command->argv : (char **) &null_ptr;
2971 {
2972 const struct built_in_command *x;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002973 char **new_env = NULL;
2974 char **old_env = NULL;
2975
Denis Vlasenko552433b2009-04-04 19:29:21 +00002976 if (argv[command->assignment_cnt] == NULL) {
2977 /* Assignments, but no command */
2978 /* Ensure redirects take effect. Try "a=t >file" */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00002979 rcode = setup_redirects(command, squirrel);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002980 restore_redirects(squirrel);
2981 /* Set shell variables */
2982 while (*argv) {
2983 p = expand_string_to_string(*argv);
2984 debug_printf_exec("set shell var:'%s'->'%s'\n",
2985 *argv, p);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002986 set_local_var(p, 0, 0);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002987 argv++;
Eric Andersen78a7c992001-05-15 16:30:25 +00002988 }
Denis Vlasenko552433b2009-04-04 19:29:21 +00002989 /* Do we need to flag set_local_var() errors?
2990 * "assignment to readonly var" and "putenv error"
2991 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00002992 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
2993 return rcode;
Eric Andersen78a7c992001-05-15 16:30:25 +00002994 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002995
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002996 /* Expand the rest into (possibly) many strings each */
Denis Vlasenko552433b2009-04-04 19:29:21 +00002997 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002998
Denis Vlasenkodd316dd2008-06-14 15:50:55 +00002999 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003000 if (strcmp(argv_expanded[0], x->cmd) != 0)
3001 continue;
3002 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
3003 debug_printf("exec with redirects only\n");
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003004 rcode = setup_redirects(command, NULL);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003005 goto clean_up_and_ret1;
Eric Andersen25f27032001-04-26 23:22:31 +00003006 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003007 debug_printf("builtin inline %s\n", argv_expanded[0]);
3008 /* XXX setup_redirects acts on file descriptors, not FILEs.
3009 * This is perfect for work that comes after exec().
3010 * Is it really safe for inline use? Experimentally,
3011 * things seem to work with glibc. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003012 rcode = setup_redirects(command, squirrel);
3013 if (rcode == 0) {
3014 new_env = expand_assignments(argv, command->assignment_cnt);
3015 old_env = putenv_all_and_save_old(new_env);
3016 debug_printf_exec(": builtin '%s' '%s'...\n",
3017 x->cmd, argv_expanded[1]);
3018 rcode = x->function(argv_expanded) & 0xff;
3019 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003020#if ENABLE_FEATURE_SH_STANDALONE
3021 clean_up_and_ret:
3022#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003023 restore_redirects(squirrel);
3024 free_strings_and_unsetenv(new_env, 1);
3025 putenv_all(old_env);
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003026 /* Free the pointers, but the strings themselves
3027 * are in environ now, don't use free_strings! */
3028 free(old_env);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003029 clean_up_and_ret1:
3030 free(argv_expanded);
3031 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
3032 debug_printf_exec("run_pipe return %d\n", rcode);
3033 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003034 }
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003035#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003036 i = find_applet_by_name(argv_expanded[0]);
3037 if (i >= 0 && APPLET_IS_NOFORK(i)) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003038 rcode = setup_redirects(command, squirrel);
3039 if (rcode == 0) {
3040 save_nofork_data(&G.nofork_save);
3041 new_env = expand_assignments(argv, command->assignment_cnt);
3042 old_env = putenv_all_and_save_old(new_env);
3043 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003044 argv_expanded[0], argv_expanded[1]);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003045 rcode = run_nofork_applet_prime(&G.nofork_save, i, argv_expanded);
3046 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003047 goto clean_up_and_ret;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003048 }
3049#endif
Denis Vlasenko552433b2009-04-04 19:29:21 +00003050 /* It is neither builtin nor applet. We must fork. */
Eric Andersen25f27032001-04-26 23:22:31 +00003051 }
3052
Denis Vlasenko552433b2009-04-04 19:29:21 +00003053 must_fork:
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003054 /* NB: argv_expanded may already be created, and that
3055 * might include `cmd` runs! Do not rerun it! We *must*
3056 * use argv_expanded if it's non-NULL */
3057
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003058 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003059 pi->alive_cmds = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003060 nextin = 0;
3061
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003062 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko76d50412008-06-10 16:19:39 +00003063#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003064 volatile nommu_save_t nommu_save;
3065 nommu_save.new_env = NULL;
3066 nommu_save.old_env = NULL;
3067 nommu_save.argv = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003068#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003069 command = &(pi->cmds[i]);
3070 if (command->argv) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003071 debug_printf_exec(": pipe member '%s' '%s'...\n",
3072 command->argv[0], command->argv[1]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003073 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003074 debug_printf_exec(": pipe member with no argv\n");
Denis Vlasenko552433b2009-04-04 19:29:21 +00003075 }
Eric Andersen25f27032001-04-26 23:22:31 +00003076
3077 /* pipes are inserted between pairs of commands */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003078 pipefds[0] = 0;
3079 pipefds[1] = 1;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003080 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003081 xpipe(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00003082
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003083 command->pid = BB_MMU ? fork() : vfork();
3084 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003085#if ENABLE_HUSH_JOB
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003086 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkod5762932009-03-31 11:22:57 +00003087
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003088 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00003089 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003090 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00003091 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003092 pgrp = pi->pgrp;
3093 if (pgrp < 0) /* true for 1st process only */
3094 pgrp = getpid();
3095 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003096 /* We do it in *every* child, not just first,
3097 * to avoid races */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003098 tcsetpgrp(G_interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003099 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003100 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003101#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +00003102 xmove_fd(nextin, 0);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003103 xmove_fd(pipefds[1], 1); /* write end */
3104 if (pipefds[0] > 1)
3105 close(pipefds[0]); /* read end */
Eric Andersen25f27032001-04-26 23:22:31 +00003106 /* Like bash, explicit redirects override pipes,
3107 * and the pipe fd is available for dup'ing. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003108 if (setup_redirects(command, NULL))
3109 _exit(1);
Eric Andersen52a97ca2001-06-22 06:49:26 +00003110
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003111 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003112 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
3113
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003114 /* Stores to nommu_save list of env vars putenv'ed
3115 * (NOMMU, on MMU we don't need that) */
3116 /* cast away volatility... */
3117 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003118 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00003119 }
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003120
Denis Vlasenkof9375282009-04-05 19:13:39 +00003121 /* parent or error */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003122 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003123#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003124 /* Clean up after vforked child */
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003125 clean_up_after_re_execute();
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003126 free(nommu_save.argv);
3127 free_strings_and_unsetenv(nommu_save.new_env, 1);
3128 putenv_all(nommu_save.old_env);
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003129 /* Free the pointers, but the strings themselves
3130 * are in environ now, don't use free_strings! */
3131 free(nommu_save.old_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003132#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003133 free(argv_expanded);
3134 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003135 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003136 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko82604e92008-07-01 15:59:42 +00003137 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003138 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003139 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003140#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003141 /* Second and next children need to know pid of first one */
3142 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003143 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003144#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003145 }
Eric Andersen25f27032001-04-26 23:22:31 +00003146
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003147 if (i)
3148 close(nextin);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003149 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003150 close(pipefds[1]); /* write end */
3151 /* Pass read (output) pipe end to next iteration */
Eric Andersen25f27032001-04-26 23:22:31 +00003152 nextin = pipefds[0];
3153 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003154
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003155 if (!pi->alive_cmds) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00003156 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
3157 return 1;
3158 }
3159
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003160 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00003161 return -1;
3162}
3163
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003164#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003165static void debug_print_tree(struct pipe *pi, int lvl)
3166{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003167 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003168 [PIPE_SEQ] = "SEQ",
3169 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003170 [PIPE_OR ] = "OR" ,
3171 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003172 };
3173 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003174 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003175#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003176 [RES_IF ] = "IF" ,
3177 [RES_THEN ] = "THEN" ,
3178 [RES_ELIF ] = "ELIF" ,
3179 [RES_ELSE ] = "ELSE" ,
3180 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003181#endif
3182#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003183 [RES_FOR ] = "FOR" ,
3184 [RES_WHILE] = "WHILE",
3185 [RES_UNTIL] = "UNTIL",
3186 [RES_DO ] = "DO" ,
3187 [RES_DONE ] = "DONE" ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003188#endif
3189#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003190 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003191#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003192#if ENABLE_HUSH_CASE
3193 [RES_CASE ] = "CASE" ,
3194 [RES_MATCH] = "MATCH",
3195 [RES_CASEI] = "CASEI",
3196 [RES_ESAC ] = "ESAC" ,
3197#endif
Denis Vlasenko06810332007-05-21 23:30:54 +00003198 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003199 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003200 };
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003201 static const char *const GRPTYPE[] = {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003202 "{}",
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00003203 "()",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003204#if ENABLE_HUSH_FUNCTIONS
3205 "func()",
3206#endif
3207 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003208
3209 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003210
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003211 pin = 0;
3212 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003213 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
3214 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003215 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003216 while (prn < pi->num_cmds) {
3217 struct command *command = &pi->cmds[prn];
3218 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003219
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003220 fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003221 lvl*2, "", prn,
3222 command->assignment_cnt);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003223 if (command->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003224 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003225 GRPTYPE[command->grp_type],
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003226 argv);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003227 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003228 prn++;
3229 continue;
3230 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003231 if (argv) while (*argv) {
3232 fprintf(stderr, " '%s'", *argv);
3233 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003234 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003235 fprintf(stderr, "\n");
3236 prn++;
3237 }
3238 pi = pi->next;
3239 pin++;
3240 }
3241}
3242#endif
3243
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003244/* NB: called by pseudo_exec, and therefore must not modify any
3245 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003246static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003247{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003248#if ENABLE_HUSH_CASE
3249 char *case_word = NULL;
3250#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003251#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003252 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003253 char *for_varname = NULL;
3254 char **for_lcur = NULL;
3255 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00003256#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003257 smallint last_followup;
3258 smalluint rcode;
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003259#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003260 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003261#else
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003262 enum { cond_code = 0 };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003263#endif
Denis Vlasenko0e151382009-04-06 18:40:31 +00003264#if HAS_KEYWORDS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003265 smallint rword; /* enum reserved_style */
3266 smallint last_rword; /* ditto */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003267#endif
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003268
Denis Vlasenko87a86552008-07-29 19:43:10 +00003269 debug_printf_exec("run_list start lvl %d\n", G.run_list_level + 1);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003270
Denis Vlasenko06810332007-05-21 23:30:54 +00003271#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003272 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003273 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
3274 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003275 continue;
3276 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003277 if (cpipe->next == NULL) {
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003278 syntax("malformed for");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003279 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003280 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003281 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003282 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003283 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003284 continue;
3285 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003286 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
3287 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003288 ) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003289 syntax("malformed for");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003290 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003291 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003292 }
3293 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003294#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003295
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003296 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00003297 * in order to return, no direct "return" statements please.
3298 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003299
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003300////TODO: ctrl-Z handling needs re-thinking and re-testing
Denis Vlasenkod5762932009-03-31 11:22:57 +00003301
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003302#if ENABLE_HUSH_JOB
3303 /* Example of nested list: "while true; do { sleep 1 | exit 2; } done".
3304 * We are saving state before entering outermost list ("while...done")
3305 * so that ctrl-Z will correctly background _entire_ outermost list,
3306 * not just a part of it (like "sleep 1 | exit 2") */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003307 if (++G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003308 if (sigsetjmp(G.toplevel_jb, 1)) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003309 /* ctrl-Z forked and we are parent; or ctrl-C.
3310 * Sighandler has longjmped us here */
3311 signal(SIGINT, SIG_IGN);
3312 signal(SIGTSTP, SIG_IGN);
3313 /* Restore level (we can be coming from deep inside
3314 * nested levels) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003315 G.run_list_level = 1;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003316#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko87a86552008-07-29 19:43:10 +00003317 if (G.nofork_save.saved) { /* if save area is valid */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003318 debug_printf_jobs("exiting nofork early\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003319 restore_nofork_data(&G.nofork_save);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003320 }
3321#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003322//// if (G.ctrl_z_flag) {
3323//// /* ctrl-Z has forked and stored pid of the child in pi->pid.
3324//// * Remember this child as background job */
3325//// insert_bg_job(pi);
3326//// } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003327 /* ctrl-C. We just stop doing whatever we were doing */
Denis Vlasenko4daad902007-09-27 10:20:47 +00003328 bb_putchar('\n');
Denis Vlasenkod5762932009-03-31 11:22:57 +00003329//// }
Denis Vlasenkoff29b4f2008-07-29 13:57:59 +00003330 USE_HUSH_LOOPS(loop_top = NULL;)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003331 USE_HUSH_LOOPS(G.depth_of_loop = 0;)
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003332 rcode = 0;
3333 goto ret;
3334 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00003335//// /* ctrl-Z handler will store pid etc in pi */
3336//// G.toplevel_list = pi;
3337//// G.ctrl_z_flag = 0;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003338#if ENABLE_FEATURE_SH_STANDALONE
3339 G.nofork_save.saved = 0; /* in case we will run a nofork later */
3340#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003341//// signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z);
3342//// signal(SIGINT, handler_ctrl_c);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003343 }
Denis Vlasenko05743d72008-02-10 12:10:08 +00003344#endif /* JOB */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003345
Denis Vlasenko0e151382009-04-06 18:40:31 +00003346#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003347 rword = RES_NONE;
3348 last_rword = RES_XXXX;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003349#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003350 last_followup = PIPE_SEQ;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003351 rcode = G.last_exitcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003352
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003353 /* Go through list of pipes, (maybe) executing them. */
3354 for (; pi; pi = USE_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00003355 if (G.flag_SIGINT)
3356 break;
3357
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003358 IF_HAS_KEYWORDS(rword = pi->res_word;)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003359 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
3360 rword, cond_code, last_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00003361#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00003362 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003363 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00003364 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003365 /* start of a loop: remember where loop starts */
3366 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003367 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003368 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003369#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003370 /* Still in the same "if...", "then..." or "do..." branch? */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003371 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003372 if ((rcode == 0 && last_followup == PIPE_OR)
3373 || (rcode != 0 && last_followup == PIPE_AND)
3374 ) {
3375 /* It is "<true> || CMD" or "<false> && CMD"
3376 * and we should not execute CMD */
3377 debug_printf_exec("skipped cmd because of || or &&\n");
3378 last_followup = pi->followup;
3379 continue;
3380 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003381 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003382 last_followup = pi->followup;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003383 IF_HAS_KEYWORDS(last_rword = rword;)
Denis Vlasenko06810332007-05-21 23:30:54 +00003384#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003385 if (cond_code) {
3386 if (rword == RES_THEN) {
Denis Vlasenko0e151382009-04-06 18:40:31 +00003387 /* if false; then ... fi has exitcode 0! */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003388 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003389 /* "if <false> THEN cmd": skip cmd */
3390 continue;
3391 }
3392 } else {
3393 if (rword == RES_ELSE || rword == RES_ELIF) {
3394 /* "if <true> then ... ELSE/ELIF cmd":
3395 * skip cmd and all following ones */
3396 break;
3397 }
3398 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003399#endif
3400#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003401 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003402 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003403 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003404
3405 static const char encoded_dollar_at[] ALIGN1 = {
3406 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
3407 }; /* encoded representation of "$@" */
3408 static const char *const encoded_dollar_at_argv[] = {
3409 encoded_dollar_at, NULL
3410 }; /* argv list with one element: "$@" */
3411 char **vals;
3412
3413 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003414 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003415 /* if no variable values after "in" we skip "for" */
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003416 if (!pi->next->cmds[0].argv) {
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003417 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003418 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003419 break;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003420 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003421 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003422 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003423 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003424 debug_print_strings("for_list made from", vals);
3425 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003426 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003427 debug_print_strings("for_list", for_list);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003428 for_varname = pi->cmds[0].argv[0];
3429 pi->cmds[0].argv[0] = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003430 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003431 free(pi->cmds[0].argv[0]);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003432 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00003433 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003434 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003435 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003436 for_lcur = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003437 pi->cmds[0].argv[0] = for_varname;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003438 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003439 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003440 /* Insert next value from for_lcur */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003441//TODO: does it need escaping?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003442 pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
3443 pi->cmds[0].assignment_cnt = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003444 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003445 if (rword == RES_IN) {
3446 continue; /* "for v IN list;..." - "in" has no cmds anyway */
3447 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003448 if (rword == RES_DONE) {
3449 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003450 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003451#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003452#if ENABLE_HUSH_CASE
3453 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003454 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003455 continue;
3456 }
3457 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003458 char **argv;
3459
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003460 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
3461 break;
3462 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003463 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003464 while (*argv) {
3465 char *pattern = expand_string_to_string(*argv);
3466 /* TODO: which FNM_xxx flags to use? */
3467 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
3468 free(pattern);
3469 if (cond_code == 0) { /* match! we will execute this branch */
3470 free(case_word); /* make future "word)" stop */
3471 case_word = NULL;
3472 break;
3473 }
3474 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003475 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003476 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003477 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003478 if (rword == RES_CASEI) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003479 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003480 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003481 }
3482#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003483 /* Just pressing <enter> in shell should check for jobs.
3484 * OTOH, in non-interactive shell this is useless
3485 * and only leads to extra job checks */
3486 if (pi->num_cmds == 0) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003487 if (G_interactive_fd)
Denis Vlasenkod5762932009-03-31 11:22:57 +00003488 goto check_jobs_and_continue;
3489 continue;
3490 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003491
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003492 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00003493 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003494 * after run_pipe to collect any background children,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003495 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003496 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003497 {
3498 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003499#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00003500 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003501#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003502 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
3503 if (r != -1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003504 /* We only ran a builtin: rcode is already known
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003505 * and we don't need to wait for anything. */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003506 G.last_exitcode = rcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003507 debug_printf_exec(": builtin exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003508 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003509#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003510 /* Was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003511 if (G.flag_break_continue) {
3512 smallint fbc = G.flag_break_continue;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003513 /* We might fall into outer *loop*,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003514 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003515 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003516 G.depth_break_continue--;
3517 if (G.depth_break_continue == 0)
3518 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003519 /* else: e.g. "continue 2" should *break* once, *then* continue */
3520 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003521 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003522 goto check_jobs_and_break;
3523 /* "continue": simulate end of loop */
3524 rword = RES_DONE;
3525 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003526 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003527#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003528 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003529 /* What does bash do with attempts to background builtins? */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003530 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003531 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
3532 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003533 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003534#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00003535 if (G.run_list_level == 1)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003536 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003537#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003538 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003539 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003540 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003541#if ENABLE_HUSH_JOB
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003542 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003543 /* Waits for completion, then fg's main shell */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003544 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003545 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003546 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003547 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003548#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003549 { /* This one just waits for completion */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003550 rcode = checkjobs(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003551 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003552 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003553 }
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003554 G.last_exitcode = rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003555 }
3556 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003557
3558 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00003559#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003560 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003561 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00003562#endif
3563#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003564 /* Beware of "while false; true; do ..."! */
3565 if (pi->next && pi->next->res_word == RES_DO) {
3566 if (rword == RES_WHILE) {
3567 if (rcode) {
3568 /* "while false; do...done" - exitcode 0 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003569 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003570 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
3571 goto check_jobs_and_break;
3572 }
Denis Vlasenko918a34b2008-07-28 23:17:31 +00003573 }
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003574 if (rword == RES_UNTIL) {
3575 if (!rcode) {
3576 debug_printf_exec(": until expr is true: breaking\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003577 check_jobs_and_break:
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003578 checkjobs(NULL);
3579 break;
3580 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003581 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003582 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003583#endif
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00003584
3585 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00003586 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003587 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003588
3589#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00003590//// if (G.ctrl_z_flag) {
3591//// /* ctrl-Z forked somewhere in the past, we are the child,
3592//// * and now we completed running the list. Exit. */
3593//////TODO: _exit?
3594//// exit(rcode);
3595//// }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003596 ret:
Denis Vlasenkod5762932009-03-31 11:22:57 +00003597 G.run_list_level--;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003598//// if (!G.run_list_level && G_interactive_fd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00003599//// signal(SIGTSTP, SIG_IGN);
3600//// signal(SIGINT, SIG_IGN);
3601//// }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003602#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00003603 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003604#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003605 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003606 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003607 free(for_list);
3608#endif
3609#if ENABLE_HUSH_CASE
3610 free(case_word);
3611#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003612 return rcode;
3613}
3614
Eric Andersen25f27032001-04-26 23:22:31 +00003615/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003616static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003617{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003618 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003619 debug_printf_exec("run_and_free_list entered\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003620 if (!G.fake_mode) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003621 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003622 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003623 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003624 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00003625 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00003626 * but doing that now would hobble the debugging effort. */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003627 free_pipe_list(pi, /* indent: */ 0);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003628 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003629 return rcode;
3630}
3631
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003632
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003633static struct pipe *new_pipe(void)
3634{
Eric Andersen25f27032001-04-26 23:22:31 +00003635 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003636 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003637 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003638 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003639 return pi;
3640}
3641
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003642/* Command (member of a pipe) is complete. The only possible error here
3643 * is out of memory, in which case xmalloc exits. */
3644static int done_command(struct parse_context *ctx)
3645{
3646 /* The command is really already in the pipe structure, so
3647 * advance the pipe counter and make a new, null command. */
3648 struct pipe *pi = ctx->pipe;
3649 struct command *command = ctx->command;
3650
3651 if (command) {
3652 if (command->group == NULL
3653 && command->argv == NULL
3654 && command->redirects == NULL
3655 ) {
3656 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003657 memset(command, 0, sizeof(*command)); /* paranoia */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003658 return pi->num_cmds;
3659 }
3660 pi->num_cmds++;
3661 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003662 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003663 } else {
3664 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3665 }
3666
3667 /* Only real trickiness here is that the uncommitted
3668 * command structure is not counted in pi->num_cmds. */
3669 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
3670 command = &pi->cmds[pi->num_cmds];
3671 memset(command, 0, sizeof(*command));
3672
3673 ctx->command = command;
3674 /* but ctx->pipe and ctx->list_head remain unchanged */
3675
3676 return pi->num_cmds; /* used only for 0/nonzero check */
3677}
3678
3679static void done_pipe(struct parse_context *ctx, pipe_style type)
3680{
3681 int not_null;
3682
3683 debug_printf_parse("done_pipe entered, followup %d\n", type);
3684 /* Close previous command */
3685 not_null = done_command(ctx);
3686 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003687#if HAS_KEYWORDS
3688 ctx->pipe->pi_inverted = ctx->ctx_inverted;
3689 ctx->ctx_inverted = 0;
3690 ctx->pipe->res_word = ctx->ctx_res_w;
3691#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003692
3693 /* Without this check, even just <enter> on command line generates
3694 * tree of three NOPs (!). Which is harmless but annoying.
3695 * IOW: it is safe to do it unconditionally.
3696 * RES_NONE case is for "for a in; do ..." (empty IN set)
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003697 * and other cases to work. */
3698 if (not_null
3699#if HAS_KEYWORDS
3700 || ctx->ctx_res_w == RES_FI
3701 || ctx->ctx_res_w == RES_DONE
3702 || ctx->ctx_res_w == RES_FOR
3703 || ctx->ctx_res_w == RES_IN
3704 || ctx->ctx_res_w == RES_ESAC
3705#endif
3706 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003707 struct pipe *new_p;
3708 debug_printf_parse("done_pipe: adding new pipe: "
3709 "not_null:%d ctx->ctx_res_w:%d\n",
3710 not_null, ctx->ctx_res_w);
3711 new_p = new_pipe();
3712 ctx->pipe->next = new_p;
3713 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003714 /* RES_THEN, RES_DO etc are "sticky" -
3715 * they remain set for commands inside if/while.
3716 * This is used to control execution.
3717 * RES_FOR and RES_IN are NOT sticky (needed to support
3718 * cases where variable or value happens to match a keyword):
3719 */
3720#if ENABLE_HUSH_LOOPS
3721 if (ctx->ctx_res_w == RES_FOR
3722 || ctx->ctx_res_w == RES_IN)
3723 ctx->ctx_res_w = RES_NONE;
3724#endif
3725#if ENABLE_HUSH_CASE
3726 if (ctx->ctx_res_w == RES_MATCH)
3727 ctx->ctx_res_w = RES_CASEI;
3728#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003729 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003730 /* Create the memory for command, roughly:
3731 * ctx->pipe->cmds = new struct command;
3732 * ctx->command = &ctx->pipe->cmds[0];
3733 */
3734 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003735 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003736 }
3737 debug_printf_parse("done_pipe return\n");
3738}
3739
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003740static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003741{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003742 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003743 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003744 /* Create the memory for command, roughly:
3745 * ctx->pipe->cmds = new struct command;
3746 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003747 */
3748 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003749}
3750
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003751/* If a reserved word is found and processed, parse context is modified
3752 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003753 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003754#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003755struct reserved_combo {
3756 char literal[6];
3757 unsigned char res;
3758 unsigned char assignment_flag;
3759 int flag;
3760};
3761enum {
3762 FLAG_END = (1 << RES_NONE ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003763#if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003764 FLAG_IF = (1 << RES_IF ),
3765 FLAG_THEN = (1 << RES_THEN ),
3766 FLAG_ELIF = (1 << RES_ELIF ),
3767 FLAG_ELSE = (1 << RES_ELSE ),
3768 FLAG_FI = (1 << RES_FI ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003769#endif
3770#if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003771 FLAG_FOR = (1 << RES_FOR ),
3772 FLAG_WHILE = (1 << RES_WHILE),
3773 FLAG_UNTIL = (1 << RES_UNTIL),
3774 FLAG_DO = (1 << RES_DO ),
3775 FLAG_DONE = (1 << RES_DONE ),
3776 FLAG_IN = (1 << RES_IN ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003777#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003778#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003779 FLAG_MATCH = (1 << RES_MATCH),
3780 FLAG_ESAC = (1 << RES_ESAC ),
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003781#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003782 FLAG_START = (1 << RES_XXXX ),
3783};
3784
3785static const struct reserved_combo* match_reserved_word(o_string *word)
3786{
Eric Andersen25f27032001-04-26 23:22:31 +00003787 /* Mostly a list of accepted follow-up reserved words.
3788 * FLAG_END means we are done with the sequence, and are ready
3789 * to turn the compound list into a command.
3790 * FLAG_START means the word must start a new compound list.
3791 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003792 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00003793#if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003794 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3795 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
3796 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3797 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
3798 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
3799 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003800#endif
3801#if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003802 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3803 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3804 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3805 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3806 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
3807 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003808#endif
3809#if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003810 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3811 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003812#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003813 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003814 const struct reserved_combo *r;
3815
3816 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
3817 if (strcmp(word->data, r->literal) == 0)
3818 return r;
3819 }
3820 return NULL;
3821}
3822static int reserved_word(o_string *word, struct parse_context *ctx)
3823{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003824#if ENABLE_HUSH_CASE
3825 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003826 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003827 };
3828#endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003829 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003830
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003831 r = match_reserved_word(word);
3832 if (!r)
3833 return 0;
3834
3835 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003836#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003837 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE)
3838 /* "case word IN ..." - IN part starts first match part */
3839 r = &reserved_match;
3840 else
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003841#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003842 if (r->flag == 0) { /* '!' */
3843 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003844 syntax("! ! command");
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003845 IF_HAS_KEYWORDS(ctx->ctx_res_w = RES_SNTX;)
Eric Andersen25f27032001-04-26 23:22:31 +00003846 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003847 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003848 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003849 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003850 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003851 struct parse_context *old;
3852 old = xmalloc(sizeof(*old));
3853 debug_printf_parse("push stack %p\n", old);
3854 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003855 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003856 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003857 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003858 syntax(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003859 ctx->ctx_res_w = RES_SNTX;
3860 return 1;
3861 }
3862 ctx->ctx_res_w = r->res;
3863 ctx->old_flag = r->flag;
3864 if (ctx->old_flag & FLAG_END) {
3865 struct parse_context *old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003866 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003867 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003868 old = ctx->stack;
3869 old->command->group = ctx->list_head;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003870 old->command->grp_type = GRP_NORMAL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003871#if !BB_MMU
3872 o_addstr(&old->as_string, ctx->as_string.data);
3873 o_free_unsafe(&ctx->as_string);
3874 old->command->group_as_string = xstrdup(old->as_string.data);
3875 debug_printf_parse("pop, remembering as:'%s'\n",
3876 old->command->group_as_string);
3877#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003878 *ctx = *old; /* physical copy */
3879 free(old);
3880 }
3881 word->o_assignment = r->assignment_flag;
3882 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003883}
Denis Vlasenko06810332007-05-21 23:30:54 +00003884#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003885
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003886/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003887 * Normal return is 0. Syntax errors return 1.
3888 * Note: on return, word is reset, but not o_free'd!
3889 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003890static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003891{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003892 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003893
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003894 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003895 if (word->length == 0 && word->o_quoted == 0) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003896 debug_printf_parse("done_word return 0: true null, ignored\n");
3897 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003898 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003899 /* If this word wasn't an assignment, next ones definitely
3900 * can't be assignments. Even if they look like ones. */
3901 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3902 && word->o_assignment != WORD_IS_KEYWORD
3903 ) {
3904 word->o_assignment = NOT_ASSIGNMENT;
3905 } else {
3906 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003907 command->assignment_cnt++;
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003908 word->o_assignment = MAYBE_ASSIGNMENT;
3909 }
3910
Eric Andersen25f27032001-04-26 23:22:31 +00003911 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003912 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3913 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003914 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3915 * "2.7 Redirection
3916 * ...the word that follows the redirection operator
3917 * shall be subjected to tilde expansion, parameter expansion,
3918 * command substitution, arithmetic expansion, and quote
3919 * removal. Pathname expansion shall not be performed
3920 * on the word by a non-interactive shell; an interactive
3921 * shell may perform it, but shall do so only when
3922 * the expansion would result in one word."
3923 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003924 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003925 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC
3926 && word->o_quoted
3927 ) {
3928 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
3929 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00003930 word->o_assignment = NOT_ASSIGNMENT;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003931 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Eric Andersen25f27032001-04-26 23:22:31 +00003932 } else {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003933 /* "{ echo foo; } echo bar" - bad */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003934 /* NB: bash allows e.g.:
3935 * if true; then { echo foo; } fi
3936 * while if false; then false; fi do break; done
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003937 * and disallows:
3938 * while if false; then false; fi; do; break; done
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003939 * TODO? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003940 if (command->group) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003941 syntax(word->data);
3942 debug_printf_parse("done_word return 1: syntax error, "
3943 "groups and arglists don't mix\n");
Denis Vlasenko395ae452008-07-14 06:29:38 +00003944 return 1;
3945 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003946#if HAS_KEYWORDS
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003947#if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003948 if (ctx->ctx_dsemicolon
3949 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3950 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003951 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003952 /* ctx->ctx_res_w = RES_MATCH; */
3953 ctx->ctx_dsemicolon = 0;
3954 } else
3955#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003956 if (!command->argv /* if it's the first word... */
Denis Vlasenko6bdff082008-07-09 20:14:53 +00003957#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003958 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3959 && ctx->ctx_res_w != RES_IN
Denis Vlasenko6bdff082008-07-09 20:14:53 +00003960#endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003961 ) {
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003962 debug_printf_parse(": checking '%s' for reserved-ness\n", word->data);
3963 if (reserved_word(word, ctx)) {
3964 o_reset(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003965 debug_printf_parse("done_word return %d\n",
3966 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003967 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003968 }
Eric Andersen25f27032001-04-26 23:22:31 +00003969 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003970#endif
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003971 if (word->o_quoted /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00003972 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3973 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003974 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003975 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003976 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003977 char *p = word->data;
3978 while (p[0] == SPECIAL_VAR_SYMBOL
3979 && (p[1] & 0x7f) == '@'
3980 && p[2] == SPECIAL_VAR_SYMBOL
3981 ) {
3982 p += 3;
3983 }
3984 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003985 /* saw no "$@", or not only "$@" but some
3986 * real text is there too */
3987 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003988 * e.g. "", $empty"" etc to not disappear */
3989 o_addchr(word, SPECIAL_VAR_SYMBOL);
3990 o_addchr(word, SPECIAL_VAR_SYMBOL);
3991 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003992 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003993 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003994 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003995 }
Eric Andersen25f27032001-04-26 23:22:31 +00003996
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003997 o_reset(word);
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003998 ctx->pending_redirect = NULL;
3999
Denis Vlasenko06810332007-05-21 23:30:54 +00004000#if ENABLE_HUSH_LOOPS
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004001 /* Force FOR to have just one word (variable name) */
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004002 /* NB: basically, this makes hush see "for v in ..." syntax as if
4003 * as it is "for v; in ...". FOR and IN become two pipe structs
4004 * in parse tree. */
4005 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004006//TODO: check that command->argv[0] is a valid variable name!
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004007 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004008 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004009#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004010#if ENABLE_HUSH_CASE
4011 /* Force CASE to have just one word */
4012 if (ctx->ctx_res_w == RES_CASE) {
4013 done_pipe(ctx, PIPE_SEQ);
4014 }
4015#endif
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004016 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004017 return 0;
4018}
4019
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004020
4021/* Peek ahead in the input to find out if we have a "&n" construct,
4022 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004023 * Return: REDIRFD_CLOSE (-3) if >&- "close fd" construct is seen,
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004024 * -2 (syntax error), -1 if no & was seen, or the number found.
4025 */
4026#if BB_MMU
4027#define redirect_dup_num(as_string, input) \
4028 redirect_dup_num(input)
4029#endif
4030static int redirect_dup_num(o_string *as_string, struct in_str *input)
4031{
4032 int ch, d, ok;
4033
4034 ch = i_peek(input);
4035 if (ch != '&')
4036 return -1;
4037
4038 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004039 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004040 ch = i_peek(input);
4041 if (ch == '-') {
4042 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004043 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004044 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004045 }
4046 d = 0;
4047 ok = 0;
4048 while (ch != EOF && isdigit(ch)) {
4049 d = d*10 + (ch-'0');
4050 ok = 1;
4051 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004052 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004053 ch = i_peek(input);
4054 }
4055 if (ok) return d;
4056
4057//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
4058
4059 bb_error_msg("ambiguous redirect");
4060 return -2;
4061}
4062
4063/* Return code is 0 normally, 1 if a syntax error is detected
4064 */
4065static int parse_redirect(struct parse_context *ctx,
4066 int fd,
4067 redir_type style,
4068 struct in_str *input)
4069{
4070 struct command *command = ctx->command;
4071 struct redir_struct *redir;
4072 struct redir_struct **redirp;
4073 int dup_num;
4074
4075 dup_num = -1;
4076 if (style != REDIRECT_HEREDOC) {
4077 /* Check for a '2>&1' type redirect */
4078 dup_num = redirect_dup_num(&ctx->as_string, input);
4079 if (dup_num == -2)
4080 return 1; /* syntax error */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004081 } else {
4082 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004083 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004084 if (dup_num) { /* <<-... */
4085 ch = i_getch(input);
4086 nommu_addchr(&ctx->as_string, ch);
4087 ch = i_peek(input);
4088 }
4089 /* <<[-] word is the same as <<[-]word */
4090 while (ch == ' ' || ch == '\t') {
4091 ch = i_getch(input);
4092 nommu_addchr(&ctx->as_string, ch);
4093 ch = i_peek(input);
4094 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004095 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004096
4097 if (style == REDIRECT_OVERWRITE && dup_num == -1) {
4098 int ch = i_peek(input);
4099 if (ch == '|') {
4100 /* >|FILE redirect ("clobbering" >).
4101 * Since we do not support "set -o noclobber" yet,
4102 * >| and > are the same for now. Just eat |.
4103 */
4104 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004105 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004106 }
4107 }
4108
4109 /* Create a new redir_struct and append it to the linked list */
4110 redirp = &command->redirects;
4111 while ((redir = *redirp) != NULL) {
4112 redirp = &(redir->next);
4113 }
4114 *redirp = redir = xzalloc(sizeof(*redir));
4115 /* redir->next = NULL; */
4116 /* redir->rd_filename = NULL; */
4117 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004118 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004119
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004120 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
4121 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004122
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004123 redir->rd_dup = dup_num;
4124 if (style != REDIRECT_HEREDOC && dup_num != -1) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004125 /* Erik had a check here that the file descriptor in question
4126 * is legit; I postpone that to "run time"
4127 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004128 debug_printf_parse("duplicating redirect '%d>&%d'\n",
4129 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004130 } else {
4131 /* Set ctx->pending_redirect, so we know what to do at the
4132 * end of the next parsed word. */
4133 ctx->pending_redirect = redir;
4134 }
4135 return 0;
4136}
4137
Eric Andersen25f27032001-04-26 23:22:31 +00004138/* If a redirect is immediately preceded by a number, that number is
4139 * supposed to tell which file descriptor to redirect. This routine
4140 * looks for such preceding numbers. In an ideal world this routine
4141 * needs to handle all the following classes of redirects...
4142 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
4143 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
4144 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
4145 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004146 *
4147 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4148 * "2.7 Redirection
4149 * ... If n is quoted, the number shall not be recognized as part of
4150 * the redirection expression. For example:
4151 * echo \2>a
4152 * writes the character 2 into file a"
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004153 * We are getting it right by setting ->o_quoted on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004154 *
4155 * A -1 return means no valid number was found,
4156 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00004157 */
4158static int redirect_opt_num(o_string *o)
4159{
4160 int num;
4161
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004162 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004163 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004164 num = bb_strtou(o->data, NULL, 10);
4165 if (errno || num < 0)
4166 return -1;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004167 o_reset(o);
Eric Andersen25f27032001-04-26 23:22:31 +00004168 return num;
4169}
4170
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004171#if BB_MMU
4172#define fetch_till_str(as_string, input, word, skip_tabs) \
4173 fetch_till_str(input, word, skip_tabs)
4174#endif
4175static char *fetch_till_str(o_string *as_string,
4176 struct in_str *input,
4177 const char *word,
4178 int skip_tabs)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004179{
4180 o_string heredoc = NULL_O_STRING;
4181 int past_EOL = 0;
4182 int ch;
4183
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004184 goto jump_in;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004185 while (1) {
4186 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004187 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004188 if (ch == '\n') {
4189 if (strcmp(heredoc.data + past_EOL, word) == 0) {
4190 heredoc.data[past_EOL] = '\0';
4191 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
4192 return heredoc.data;
4193 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004194 do {
4195 o_addchr(&heredoc, ch);
4196 past_EOL = heredoc.length;
4197 jump_in:
4198 do {
4199 ch = i_getch(input);
4200 nommu_addchr(as_string, ch);
4201 } while (skip_tabs && ch == '\t');
4202 } while (ch == '\n');
4203 }
4204 if (ch == EOF) {
4205 o_free_unsafe(&heredoc);
4206 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004207 }
4208 o_addchr(&heredoc, ch);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004209 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004210 }
4211}
4212
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004213/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
4214 * and load them all. There should be exactly heredoc_cnt of them.
4215 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004216static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
4217{
4218 struct pipe *pi = ctx->list_head;
4219
4220 while (pi) {
4221 int i;
4222 struct command *cmd = pi->cmds;
4223
4224 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
4225 pi->num_cmds,
4226 cmd->argv ? cmd->argv[0] : "NONE");
4227 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004228 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004229
4230 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
4231 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004232 while (redir) {
4233 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004234 char *p;
4235
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004236 if (heredoc_cnt <= 0) {
4237 syntax("heredoc BUG 1");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004238 return 1; /* error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004239 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004240 redir->rd_type = REDIRECT_HEREDOC2;
4241 /* redir->dup is (ab)used to indicate <<- */
4242 p = fetch_till_str(&ctx->as_string, input,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004243 redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004244 if (!p) {
4245 syntax("unexpected EOF in here document");
4246 return 1;
4247 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004248 free(redir->rd_filename);
4249 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004250 heredoc_cnt--;
4251 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004252 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004253 }
4254 cmd++;
4255 }
4256 pi = pi->next;
4257 }
4258 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004259 if (heredoc_cnt)
4260 syntax("heredoc BUG 2");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004261 return heredoc_cnt;
4262}
4263
4264
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004265#if BB_MMU
4266#define parse_stream(pstring, input, end_trigger) \
4267 parse_stream(input, end_trigger)
4268#endif
4269static struct pipe *parse_stream(char **pstring,
4270 struct in_str *input,
4271 int end_trigger);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004272static void parse_and_run_string(const char *s);
Mike Frysingerddbee972009-03-22 22:48:41 +00004273
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004274#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004275static FILE *generate_stream_from_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004276{
4277 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004278 int pid, channel[2];
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004279
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00004280 xpipe(channel);
Denis Vlasenko82604e92008-07-01 15:59:42 +00004281 pid = BB_MMU ? fork() : vfork();
4282 if (pid < 0)
4283 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004284
Denis Vlasenko05743d72008-02-10 12:10:08 +00004285 if (pid == 0) { /* child */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004286 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004287 /* Process substitution is not considered to be usual
4288 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00004289 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
4290 */
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00004291 bb_signals(0
4292 + (1 << SIGTSTP)
4293 + (1 << SIGTTIN)
4294 + (1 << SIGTTOU)
4295 , SIG_IGN);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004296 close(channel[0]); /* NB: close _first_, then move fd! */
4297 xmove_fd(channel[1], 1);
4298 /* Prevent it from trying to handle ctrl-z etc */
4299 USE_HUSH_JOB(G.run_list_level = 1;)
4300#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004301 reset_traps_to_defaults();
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004302 parse_and_run_string(s);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004303 _exit(G.last_exitcode);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004304#else
4305 /* We re-execute after vfork on NOMMU. This makes this script safe:
Denis Vlasenkof9375282009-04-05 19:13:39 +00004306 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
4307 * huge=`cat BIG` # was blocking here forever
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004308 * echo OK
4309 */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00004310 re_execute_shell(s, 0);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004311#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004312 }
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004313
4314 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004315 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00004316 clean_up_after_re_execute();
Eric Andersen25f27032001-04-26 23:22:31 +00004317 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00004318 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00004319 return pf;
4320}
4321
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004322/* Return code is exit status of the process that is run. */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004323static int process_command_subs(o_string *dest, const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004324{
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004325 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004326 struct in_str pipe_str;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004327 int ch, eol_cnt;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004328
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004329 pf = generate_stream_from_string(s);
4330 if (pf == NULL)
Denis Vlasenko05743d72008-02-10 12:10:08 +00004331 return 1;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004332 close_on_exec_on(fileno(pf));
Eric Andersen25f27032001-04-26 23:22:31 +00004333
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004334 /* Now send results of command back into original context */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004335 setup_file_in_str(&pipe_str, pf);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004336 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004337 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004338 if (ch == '\n') {
4339 eol_cnt++;
4340 continue;
4341 }
4342 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00004343 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004344 eol_cnt--;
4345 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00004346 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004347 }
4348
4349 debug_printf("done reading from pipe, pclose()ing\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004350 /* Note: we got EOF, and we just close the read end of the pipe.
4351 * We do not wait for the `cmd` child to terminate. bash and ash do.
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004352 * Try these:
4353 * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
4354 * `false`; echo $? - bash outputs "1"
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004355 */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004356 fclose(pf);
4357 debug_printf("closed FILE from child. return 0\n");
4358 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004359}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004360#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004361
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004362static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004363 struct in_str *input, int ch)
4364{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004365 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004366 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004367 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004368 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004369 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004370 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004371
4372 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004373#if ENABLE_HUSH_FUNCTIONS
4374 if (ch == 'F') { /* function definition? */
4375 bb_error_msg("aha '%s' is a function, parsing it...", dest->data);
4376 //command->fname = dest->data;
4377 command->grp_type = GRP_FUNCTION;
4378//TODO: review every o_reset() location... do they handle all o_string fields correctly?
4379 memset(dest, 0, sizeof(*dest));
4380 }
4381#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004382 if (command->argv /* word [word](... */
4383 || dest->length /* word(... */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004384 || dest->o_quoted /* ""(... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004385 ) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004386 syntax(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004387 debug_printf_parse("parse_group return 1: "
4388 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004389 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004390 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004391 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004392 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004393 endch = ')';
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004394 command->grp_type = GRP_SUBSHELL;
Eric Andersen25f27032001-04-26 23:22:31 +00004395 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004396 {
4397#if !BB_MMU
4398 char *as_string = NULL;
4399#endif
4400 pipe_list = parse_stream(&as_string, input, endch);
4401#if !BB_MMU
4402 if (as_string)
4403 o_addstr(&ctx->as_string, as_string);
4404#endif
4405 /* empty ()/{} or parse error? */
4406 if (!pipe_list || pipe_list == ERR_PTR) {
4407#if !BB_MMU
4408 free(as_string);
4409#endif
4410 syntax(NULL);
4411 debug_printf_parse("parse_group return 1: "
4412 "parse_stream returned %p\n", pipe_list);
4413 return 1;
4414 }
4415 command->group = pipe_list;
4416#if !BB_MMU
4417 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4418 command->group_as_string = as_string;
4419 debug_printf_parse("end of group, remembering as:'%s'\n",
4420 command->group_as_string);
4421#endif
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004422 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004423 debug_printf_parse("parse_group return 0\n");
4424 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004425 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004426}
4427
Mike Frysinger98c52642009-04-02 10:02:37 +00004428#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004429/* Subroutines for copying $(...) and `...` things */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004430static int add_till_backquote(o_string *dest, struct in_str *input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004431/* '...' */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004432static int add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004433{
4434 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004435 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004436 if (ch == EOF) {
4437 syntax("unterminated '");
4438 return 1;
4439 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004440 if (ch == '\'')
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004441 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004442 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004443 }
4444}
4445/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004446static int add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004447{
4448 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004449 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004450 if (ch == EOF) {
4451 syntax("unterminated \"");
4452 return 1;
4453 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004454 if (ch == '"')
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004455 return 0;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004456 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004457 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004458 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004459 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004460 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004461 if (ch == '`') {
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004462 if (add_till_backquote(dest, input))
4463 return 1;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004464 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004465 continue;
4466 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004467 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004468 }
4469}
4470/* Process `cmd` - copy contents until "`" is seen. Complicated by
4471 * \` quoting.
4472 * "Within the backquoted style of command substitution, backslash
4473 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4474 * The search for the matching backquote shall be satisfied by the first
4475 * backquote found without a preceding backslash; during this search,
4476 * if a non-escaped backquote is encountered within a shell comment,
4477 * a here-document, an embedded command substitution of the $(command)
4478 * form, or a quoted string, undefined results occur. A single-quoted
4479 * or double-quoted string that begins, but does not end, within the
4480 * "`...`" sequence produces undefined results."
4481 * Example Output
4482 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4483 */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004484static int add_till_backquote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004485{
4486 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004487 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004488 if (ch == EOF) {
4489 syntax("unterminated `");
4490 return 1;
4491 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004492 if (ch == '`')
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004493 return 0;
4494 if (ch == '\\') {
4495 /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004496 int ch2 = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004497 if (ch2 == EOF) {
4498 syntax("unterminated `");
4499 return 1;
4500 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004501 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004502 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004503 ch = ch2;
4504 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004505 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004506 }
4507}
4508/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4509 * quoting and nested ()s.
4510 * "With the $(command) style of command substitution, all characters
4511 * following the open parenthesis to the matching closing parenthesis
4512 * constitute the command. Any valid shell script can be used for command,
4513 * except a script consisting solely of redirections which produces
4514 * unspecified results."
4515 * Example Output
4516 * echo $(echo '(TEST)' BEST) (TEST) BEST
4517 * echo $(echo 'TEST)' BEST) TEST) BEST
4518 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
4519 */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004520static int add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004521{
4522 int count = 0;
4523 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004524 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004525 if (ch == EOF) {
4526 syntax("unterminated )");
4527 return 1;
4528 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004529 if (ch == '(')
4530 count++;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004531 if (ch == ')') {
Mike Frysinger98c52642009-04-02 10:02:37 +00004532 if (--count < 0) {
4533 if (!dbl)
4534 break;
4535 if (i_peek(input) == ')') {
4536 i_getch(input);
4537 break;
4538 }
4539 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004540 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004541 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004542 if (ch == '\'') {
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004543 if (add_till_single_quote(dest, input))
4544 return 1;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004545 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004546 continue;
4547 }
4548 if (ch == '"') {
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004549 if (add_till_double_quote(dest, input))
4550 return 1;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004551 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004552 continue;
4553 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004554 if (ch == '\\') {
4555 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004556 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004557 if (ch == EOF) {
4558 syntax("unterminated )");
4559 return 1;
4560 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004561 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004562 continue;
4563 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004564 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004565 return 0;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004566}
Mike Frysinger98c52642009-04-02 10:02:37 +00004567#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004568
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004569/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004570#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004571#define handle_dollar(as_string, dest, input) \
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004572 handle_dollar(dest, input)
4573#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004574static int handle_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004575 o_string *dest,
4576 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00004577{
Mike Frysinger6379bb42009-03-28 18:55:03 +00004578 int expansion;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004579 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004580 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004581
4582 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004583 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004584 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004585 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00004586 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004587 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004588 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004589 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004590 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004591 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004592 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004593 if (!isalnum(ch) && ch != '_')
4594 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004595 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004596 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004597 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004598 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004599 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004600 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004601 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004602 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004603 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004604 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004605 o_addchr(dest, ch | quote_mask);
4606 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004607 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004608 case '$': /* pid */
4609 case '!': /* last bg pid */
4610 case '?': /* last exit code */
4611 case '#': /* number of args */
4612 case '*': /* args */
4613 case '@': /* args */
4614 goto make_one_char_var;
4615 case '{': {
4616 bool first_char, all_digits;
Mike Frysinger6379bb42009-03-28 18:55:03 +00004617
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004618 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004619 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004620 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004621 /* XXX maybe someone will try to escape the '}' */
4622 expansion = 0;
4623 first_char = true;
4624 all_digits = false;
4625 while (1) {
4626 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004627 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004628 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004629 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004630
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004631 if (first_char) {
4632 if (ch == '#')
4633 /* ${#var}: length of var contents */
4634 goto char_ok;
4635 else if (isdigit(ch)) {
4636 all_digits = true;
4637 goto char_ok;
4638 }
4639 }
4640
4641 if (expansion < 2
4642 && ( (all_digits && !isdigit(ch))
4643 || (!all_digits && !isalnum(ch) && ch != '_')
4644 )
4645 ) {
4646 /* handle parameter expansions
4647 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4648 */
4649 if (first_char)
4650 goto case_default;
4651 switch (ch) {
4652 case ':': /* null modifier */
4653 if (expansion == 0) {
4654 debug_printf_parse(": null modifier\n");
4655 ++expansion;
4656 break;
4657 }
4658 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004659 case '#': /* remove prefix */
4660 case '%': /* remove suffix */
4661 if (expansion == 0) {
4662 debug_printf_parse(": remove suffix/prefix\n");
4663 expansion = 2;
4664 break;
4665 }
4666 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004667 case '-': /* default value */
4668 case '=': /* assign default */
4669 case '+': /* alternative */
4670 case '?': /* error indicate */
4671 debug_printf_parse(": parameter expansion\n");
4672 expansion = 2;
4673 break;
4674 default:
4675 case_default:
4676 syntax("unterminated ${name}");
4677 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
4678 return 1;
4679 }
4680 }
4681 char_ok:
4682 debug_printf_parse(": '%c'\n", ch);
4683 o_addchr(dest, ch | quote_mask);
4684 quote_mask = 0;
4685 first_char = false;
4686 }
4687 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4688 break;
4689 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004690#if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK)
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004691 case '(': {
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004692# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004693 int pos;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004694# endif
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004695 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004696 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004697# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004698 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004699 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004700 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004701 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4702 o_addchr(dest, /*quote_mask |*/ '+');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004703# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004704 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004705# endif
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004706 if (add_till_closing_paren(dest, input, true))
4707 return 1;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004708# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004709 if (as_string) {
4710 o_addstr(as_string, dest->data + pos);
4711 o_addchr(as_string, ')');
4712 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004713 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004714# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004715 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004716 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004717 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004718# endif
4719# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004720 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4721 o_addchr(dest, quote_mask | '`');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004722# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004723 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004724# endif
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004725 if (add_till_closing_paren(dest, input, false))
4726 return 1;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004727# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004728 if (as_string) {
4729 o_addstr(as_string, dest->data + pos);
4730 o_addchr(as_string, '`');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004731 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004732# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004733 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004734# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004735 break;
4736 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004737#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004738 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004739 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004740 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004741 ch = i_peek(input);
4742 if (isalnum(ch)) { /* it's $_name or $_123 */
4743 ch = '_';
4744 goto make_var;
4745 }
4746 /* else: it's $_ */
4747 /* TODO: */
4748 /* $_ Shell or shell script name; or last cmd name */
4749 /* $- Option flags set by set builtin or shell options (-i etc) */
4750 default:
4751 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004752 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004753 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004754 return 0;
4755}
4756
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004757#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004758#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004759 parse_stream_dquoted(dest, input, dquote_end)
4760#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004761static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004762 o_string *dest,
4763 struct in_str *input,
4764 int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004765{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004766 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004767 int next;
4768
4769 again:
4770 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004771 if (ch != EOF)
4772 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004773 if (ch == dquote_end) { /* may be only '"' or EOF */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004774 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004775 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004776 debug_printf_parse("parse_stream_dquoted return 0\n");
4777 return 0;
4778 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004779 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004780 if (ch == EOF) {
4781 syntax("unterminated \"");
4782 debug_printf_parse("parse_stream_dquoted return 1: unterminated \"\n");
4783 return 1;
4784 }
4785 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004786 if (ch != '\n') {
4787 next = i_peek(input);
4788 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004789 debug_printf_parse(": ch=%c (%d) escape=%d\n",
4790 ch, ch, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004791 if (ch == '\\') {
4792 if (next == EOF) {
4793 syntax("\\<eof>");
4794 debug_printf_parse("parse_stream_dquoted return 1: \\<eof>\n");
4795 return 1;
4796 }
4797 /* bash:
4798 * "The backslash retains its special meaning [in "..."]
4799 * only when followed by one of the following characters:
4800 * $, `, ", \, or <newline>. A double quote may be quoted
4801 * within double quotes by preceding it with a backslash.
4802 * If enabled, history expansion will be performed unless
4803 * an ! appearing in double quotes is escaped using
4804 * a backslash. The backslash preceding the ! is not removed."
4805 */
4806 if (strchr("$`\"\\", next) != NULL) {
4807 o_addqchr(dest, i_getch(input));
4808 } else {
4809 o_addqchr(dest, '\\');
4810 }
4811 goto again;
4812 }
4813 if (ch == '$') {
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004814 if (handle_dollar(as_string, dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004815 debug_printf_parse("parse_stream_dquoted return 1: "
4816 "handle_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004817 return 1;
4818 }
4819 goto again;
4820 }
4821#if ENABLE_HUSH_TICK
4822 if (ch == '`') {
4823 //int pos = dest->length;
4824 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4825 o_addchr(dest, 0x80 | '`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004826 if (add_till_backquote(dest, input))
4827 return 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004828 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4829 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004830 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004831 }
4832#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004833 o_addQchr(dest, ch);
4834 if (ch == '='
4835 && (dest->o_assignment == MAYBE_ASSIGNMENT
4836 || dest->o_assignment == WORD_IS_KEYWORD)
4837 && is_assignment(dest->data)
4838 ) {
4839 dest->o_assignment = DEFINITELY_ASSIGNMENT;
4840 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004841 goto again;
4842}
4843
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004844/*
4845 * Scan input until EOF or end_trigger char.
4846 * Return a list of pipes to execute, or NULL on EOF
4847 * or if end_trigger character is met.
4848 * On syntax error, exit is shell is not interactive,
4849 * reset parsing machinery and start parsing anew,
4850 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004851 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004852static struct pipe *parse_stream(char **pstring,
4853 struct in_str *input,
4854 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004855{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004856 struct parse_context ctx;
4857 o_string dest = NULL_O_STRING;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004858 int is_in_dquote;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004859 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00004860
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004861 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00004862 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004863 * found. When recursing, quote state is passed in via dest->o_escape.
4864 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004865 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
4866 end_trigger ? : 'X');
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004867
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004868 G.ifs = get_local_var_value("IFS");
4869 if (G.ifs == NULL)
4870 G.ifs = " \t\n";
4871
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004872 reset:
4873#if ENABLE_HUSH_INTERACTIVE
4874 input->promptmode = 0; /* PS1 */
4875#endif
4876 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
4877 initialize_context(&ctx);
4878 is_in_dquote = 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004879 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004880 while (1) {
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004881 const char *is_ifs;
4882 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004883 int ch;
4884 int next;
4885 int redir_fd;
4886 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004887
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004888 if (is_in_dquote) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004889 /* dest.o_quoted = 1; - already is (see below) */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004890 if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004891 goto parse_error;
4892 }
4893 /* We reached closing '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004894 is_in_dquote = 0;
4895 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004896 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004897 debug_printf_parse(": ch=%c (%d) escape=%d\n",
4898 ch, ch, dest.o_escape);
4899 if (ch == EOF) {
4900 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004901
4902 if (heredoc_cnt) {
4903 syntax("unterminated here document");
4904 goto parse_error;
4905 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004906 if (done_word(&dest, &ctx)) {
4907 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004908 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004909 o_free(&dest);
4910 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004911 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004912 /* If we got nothing... */
4913// TODO: test script consisting of just "&"
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004914 if (pi->num_cmds == 0
4915 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
4916 ) {
4917 free_pipe_list(pi, 0);
4918 pi = NULL;
4919 }
4920 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004921#if !BB_MMU
4922 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
4923 if (pstring)
4924 *pstring = ctx.as_string.data;
4925 else
4926 o_free_unsafe(&ctx.as_string);
4927#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004928 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004929 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004930 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004931 is_ifs = strchr(G.ifs, ch);
4932 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
4933 "\\$\"" USE_HUSH_TICK("`") /* always special */
4934 , ch);
4935
4936 if (!is_special && !is_ifs) { /* ordinary char */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004937 o_addQchr(&dest, ch);
4938 if ((dest.o_assignment == MAYBE_ASSIGNMENT
4939 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004940 && ch == '='
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004941 && is_assignment(dest.data)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004942 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004943 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004944 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004945 continue;
4946 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004947
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004948 if (is_ifs) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004949 if (done_word(&dest, &ctx)) {
4950 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00004951 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004952 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00004953#if ENABLE_HUSH_CASE
4954 /* "case ... in <newline> word) ..." -
4955 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004956 if (ctx.command->argv == NULL
4957 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00004958 ) {
4959 continue;
4960 }
4961#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004962 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004963 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004964 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
4965 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004966 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004967 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004968 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004969 heredoc_cnt = 0;
4970 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004971 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004972 ch = ';';
Denis Vlasenko7c986122009-04-04 12:15:42 +00004973 /* note: if (is_ifs) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004974 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004975 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004976 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004977 if (end_trigger && end_trigger == ch
4978 && (heredoc_cnt == 0 || end_trigger != ';')
4979 ) {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004980//TODO: disallow "{ cmd }" without semicolon
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004981 if (heredoc_cnt) {
4982 /* This is technically valid:
4983 * { cat <<HERE; }; echo Ok
4984 * heredoc
4985 * heredoc
4986 * heredoc
4987 * HERE
4988 * but we don't support this.
4989 * We require heredoc to be in enclosing {}/(),
4990 * if any.
4991 */
4992 syntax("unterminated here document");
4993 goto parse_error;
4994 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004995 if (done_word(&dest, &ctx)) {
4996 goto parse_error;
4997 }
4998 done_pipe(&ctx, PIPE_SEQ);
4999 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005000 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00005001 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005002 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00005003 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005004 debug_printf_parse("parse_stream return %p: "
5005 "end_trigger char found\n",
5006 ctx.list_head);
5007 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005008#if !BB_MMU
5009 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5010 if (pstring)
5011 *pstring = ctx.as_string.data;
5012 else
5013 o_free_unsafe(&ctx.as_string);
5014#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005015 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005016 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005017 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005018 if (is_ifs)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005019 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005020
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005021 if (dest.o_assignment == MAYBE_ASSIGNMENT) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00005022 /* ch is a special char and thus this word
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005023 * cannot be an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005024 dest.o_assignment = NOT_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005025 }
5026
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005027 next = '\0';
5028 if (ch != '\n') {
5029 next = i_peek(input);
5030 }
5031
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005032 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00005033 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005034 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005035 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005036 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005037 if (ch == EOF || ch == '\n')
5038 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005039 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005040 /* note: we do not add it to &ctx.as_string */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005041 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005042 nommu_addchr(&ctx.as_string, '\n');
Eric Andersen25f27032001-04-26 23:22:31 +00005043 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005044 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005045 }
5046 break;
5047 case '\\':
5048 if (next == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005049 syntax("\\<eof>");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005050 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005051 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005052 o_addchr(&dest, '\\');
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005053 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005054 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005055 o_addchr(&dest, ch);
5056 /* Example: echo Hello \2>file
5057 * we need to know that word 2 is quoted */
5058 dest.o_quoted = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005059 break;
5060 case '$':
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005061 if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005062 debug_printf_parse("parse_stream parse error: "
5063 "handle_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005064 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005065 }
Eric Andersen25f27032001-04-26 23:22:31 +00005066 break;
5067 case '\'':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005068 dest.o_quoted = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005069 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005070 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005071 if (ch == EOF) {
5072 syntax("unterminated '");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005073 goto parse_error;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005074 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005075 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005076 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005077 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005078 if (dest.o_assignment == NOT_ASSIGNMENT)
5079 o_addqchr(&dest, ch);
Denis Vlasenko55789c62008-06-18 16:30:42 +00005080 else
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005081 o_addchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005082 }
Eric Andersen25f27032001-04-26 23:22:31 +00005083 break;
5084 case '"':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005085 dest.o_quoted = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005086 is_in_dquote ^= 1; /* invert */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005087 if (dest.o_assignment == NOT_ASSIGNMENT)
5088 dest.o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005089 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005090#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005091 case '`': {
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005092#if !BB_MMU
5093 int pos;
5094#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005095 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5096 o_addchr(&dest, '`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005097#if !BB_MMU
5098 pos = dest.length;
5099#endif
5100 if (add_till_backquote(&dest, input))
5101 goto parse_error;
5102#if !BB_MMU
5103 o_addstr(&ctx.as_string, dest.data + pos);
5104 o_addchr(&ctx.as_string, '`');
5105#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005106 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5107 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00005108 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005109 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005110#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005111 case '>':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005112 redir_fd = redirect_opt_num(&dest);
5113 if (done_word(&dest, &ctx)) {
5114 goto parse_error;
5115 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005116 redir_style = REDIRECT_OVERWRITE;
Eric Andersen25f27032001-04-26 23:22:31 +00005117 if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005118 redir_style = REDIRECT_APPEND;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005119 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005120 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005121 }
5122#if 0
5123 else if (next == '(') {
5124 syntax(">(process) not supported");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005125 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005126 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005127#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005128 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5129 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005130 break;
5131 case '<':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005132 redir_fd = redirect_opt_num(&dest);
5133 if (done_word(&dest, &ctx)) {
5134 goto parse_error;
5135 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005136 redir_style = REDIRECT_INPUT;
Eric Andersen25f27032001-04-26 23:22:31 +00005137 if (next == '<') {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005138 redir_style = REDIRECT_HEREDOC;
5139 heredoc_cnt++;
5140 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005141 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005142 nommu_addchr(&ctx.as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005143 } else if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005144 redir_style = REDIRECT_IO;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005145 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005146 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005147 }
5148#if 0
5149 else if (next == '(') {
5150 syntax("<(process) not supported");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005151 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005152 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005153#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005154 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5155 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005156 break;
5157 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005158#if ENABLE_HUSH_CASE
5159 case_semi:
5160#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005161 if (done_word(&dest, &ctx)) {
5162 goto parse_error;
5163 }
5164 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005165#if ENABLE_HUSH_CASE
5166 /* Eat multiple semicolons, detect
5167 * whether it means something special */
5168 while (1) {
5169 ch = i_peek(input);
5170 if (ch != ';')
5171 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005172 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005173 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005174 if (ctx.ctx_res_w == RES_CASEI) {
5175 ctx.ctx_dsemicolon = 1;
5176 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005177 break;
5178 }
5179 }
5180#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005181 new_cmd:
5182 /* We just finished a cmd. New one may start
5183 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005184 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00005185 break;
5186 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005187 if (done_word(&dest, &ctx)) {
5188 goto parse_error;
5189 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005190 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005191 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005192 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005193 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005194 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005195 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005196 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005197 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005198 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005199 if (done_word(&dest, &ctx)) {
5200 goto parse_error;
5201 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005202#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005203 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005204 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005205#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005206 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005207 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005208 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005209 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005210 } else {
5211 /* we could pick up a file descriptor choice here
5212 * with redirect_opt_num(), but bash doesn't do it.
5213 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005214 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005215 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005216 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005217 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005218#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005219 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005220 if (ctx.ctx_res_w == RES_MATCH
5221 && ctx.command->argv == NULL /* not (word|(... */
5222 && dest.length == 0 /* not word(... */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005223 && dest.o_quoted == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005224 ) {
5225 continue;
5226 }
5227#endif
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005228#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005229 if (dest.length != 0 /* not just () but word() */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005230 && dest.o_quoted == 0 /* not a"b"c() */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005231 && ctx.command->argv == NULL /* it's the first word */
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005232//TODO: "func ( ) {...}" - note spaces - is valid format too in bash
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005233 && i_peek(input) == ')'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005234 && !match_reserved_word(&dest)
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005235 ) {
5236 bb_error_msg("seems like a function definition");
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005237 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005238//if !BB_MMU o_addchr(&ctx.as_string...
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005239 do {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005240//TODO: do it properly.
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005241 ch = i_getch(input);
5242 } while (ch == ' ' || ch == '\n');
5243 if (ch != '{') {
5244 syntax("was expecting {");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005245 goto parse_error;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005246 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005247 ch = 'F'; /* magic value */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005248 }
5249#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005250 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005251 if (parse_group(&dest, &ctx, input, ch) != 0) {
5252 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005253 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005254 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005255 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005256#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005257 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005258 goto case_semi;
5259#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005260 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005261 /* proper use of this character is caught by end_trigger:
5262 * if we see {, we call parse_group(..., end_trigger='}')
5263 * and it will match } earlier (not here). */
Denis Vlasenkoa8442002008-06-14 11:00:17 +00005264 syntax("unexpected } or )");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005265 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005266 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005267 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005268 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005269 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005270 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005271
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005272 parse_error:
5273 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005274 struct parse_context *pctx;
5275 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005276
5277 /* Clean up allocated tree.
5278 * Samples for finding leaks on syntax error recovery path.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005279 * Run them from interactive shell, watch pmap `pidof hush`.
5280 * while if false; then false; fi do break; done
5281 * (bash accepts it)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005282 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005283 * Samples to catch leaks at execution:
5284 * while if (true | {true;}); then echo ok; fi; do break; done
5285 * 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 +00005286 */
5287 pctx = &ctx;
5288 do {
5289 /* Update pipe/command counts,
5290 * otherwise freeing may miss some */
5291 done_pipe(pctx, PIPE_SEQ);
5292 debug_printf_clean("freeing list %p from ctx %p\n",
5293 pctx->list_head, pctx);
5294 debug_print_tree(pctx->list_head, 0);
5295 free_pipe_list(pctx->list_head, 0);
5296 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005297#if !BB_MMU
5298 o_free_unsafe(&pctx->as_string);
5299#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005300 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005301 if (pctx != &ctx) {
5302 free(pctx);
5303 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005304 IF_HAS_KEYWORDS(pctx = p2;)
5305 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005306 /* Free text, clear all dest fields */
5307 o_free(&dest);
5308 /* If we are not in top-level parse, we return,
5309 * our caller will propagate error.
5310 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005311 if (end_trigger != ';') {
5312#if !BB_MMU
5313 if (pstring)
5314 *pstring = NULL;
5315#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005316 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005317 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005318 /* Discard cached input, force prompt */
5319 input->p = NULL;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005320 USE_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005321 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005322 }
Eric Andersen25f27032001-04-26 23:22:31 +00005323}
5324
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005325/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005326 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
5327 * end_trigger controls how often we stop parsing
5328 * NUL: parse all, execute, return
5329 * ';': parse till ';' or newline, execute, repeat till EOF
5330 */
5331static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005332{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005333 while (1) {
5334 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005335
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005336 pipe_list = parse_stream(NULL, inp, end_trigger);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005337 if (!pipe_list) /* EOF */
5338 break;
5339 debug_print_tree(pipe_list, 0);
5340 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
5341 run_and_free_list(pipe_list);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005342 }
Eric Andersen25f27032001-04-26 23:22:31 +00005343}
5344
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005345static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005346{
5347 struct in_str input;
5348 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005349 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00005350}
5351
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005352static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00005353{
Eric Andersen25f27032001-04-26 23:22:31 +00005354 struct in_str input;
5355 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005356 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00005357}
5358
Denis Vlasenkof9375282009-04-05 19:13:39 +00005359/* Called a few times only (or even once if "sh -c") */
5360static void block_signals(int second_time)
Eric Andersen52a97ca2001-06-22 06:49:26 +00005361{
Denis Vlasenkof9375282009-04-05 19:13:39 +00005362 unsigned sig;
5363 unsigned mask;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005364
Denis Vlasenkof9375282009-04-05 19:13:39 +00005365 mask = (1 << SIGQUIT);
5366 if (G_interactive_fd) {
5367 mask = 0
5368 | (1 << SIGQUIT)
5369 | (1 << SIGTERM)
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005370//TODO | (1 << SIGHUP)
Denis Vlasenkof9375282009-04-05 19:13:39 +00005371#if ENABLE_HUSH_JOB
5372 | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP)
5373#endif
5374 | (1 << SIGINT)
5375 ;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005376 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005377 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00005378
Denis Vlasenkof9375282009-04-05 19:13:39 +00005379 if (!second_time)
5380 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
5381 sig = 0;
5382 while (mask) {
5383 if (mask & 1)
5384 sigaddset(&G.blocked_set, sig);
5385 mask >>= 1;
5386 sig++;
5387 }
5388 sigdelset(&G.blocked_set, SIGCHLD);
5389
5390 sigprocmask(SIG_SETMASK, &G.blocked_set,
5391 second_time ? NULL : &G.inherited_set);
5392 /* POSIX allows shell to re-enable SIGCHLD
5393 * even if it was SIG_IGN on entry */
5394// G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
5395 if (!second_time)
5396 signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler);
5397}
5398
5399#if ENABLE_HUSH_JOB
5400/* helper */
5401static void maybe_set_to_sigexit(int sig)
5402{
5403 void (*handler)(int);
5404 /* non_DFL_mask'ed signals are, well, masked,
5405 * no need to set handler for them.
5406 */
5407 if (!((G.non_DFL_mask >> sig) & 1)) {
5408 handler = signal(sig, sigexit);
5409 if (handler == SIG_IGN) /* oops... restore back to IGN! */
5410 signal(sig, handler);
5411 }
5412}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005413/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005414static void set_fatal_handlers(void)
5415{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00005416 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005417 if (HUSH_DEBUG) {
5418 maybe_set_to_sigexit(SIGILL );
5419 maybe_set_to_sigexit(SIGFPE );
5420 maybe_set_to_sigexit(SIGBUS );
5421 maybe_set_to_sigexit(SIGSEGV);
5422 maybe_set_to_sigexit(SIGTRAP);
5423 } /* else: hush is perfect. what SEGV? */
5424 maybe_set_to_sigexit(SIGABRT);
5425 /* bash 3.2 seems to handle these just like 'fatal' ones */
5426 maybe_set_to_sigexit(SIGPIPE);
5427 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005428//TODO: disable and move down when proper SIGHUP handling is added
Denis Vlasenkof9375282009-04-05 19:13:39 +00005429 maybe_set_to_sigexit(SIGHUP );
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005430 /* if we are interactive, [SIGHUP,] SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00005431 * if we aren't interactive... but in this case
5432 * we never want to restore pgrp on exit, and this fn is not called */
5433 /*maybe_set_to_sigexit(SIGTERM);*/
5434 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00005435}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00005436#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00005437
Denis Vlasenkod5762932009-03-31 11:22:57 +00005438static int set_mode(const char cstate, const char mode)
5439{
5440 int state = (cstate == '-' ? 1 : 0);
5441 switch (mode) {
5442 case 'n': G.fake_mode = state; break;
5443 case 'x': /*G.debug_mode = state;*/ break;
5444 default: return EXIT_FAILURE;
5445 }
5446 return EXIT_SUCCESS;
5447}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005448
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00005449int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00005450int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00005451{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005452 static const struct variable const_shell_ver = {
5453 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005454 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005455 .max_len = 1, /* 0 can provoke free(name) */
5456 .flg_export = 1,
5457 .flg_read_only = 1,
5458 };
Denis Vlasenkof9375282009-04-05 19:13:39 +00005459 int signal_mask_is_inited = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00005460 int opt;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005461 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005462 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00005463
Denis Vlasenko574f2f42008-02-27 18:41:59 +00005464 INIT_G();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005465 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005466 G.last_exitcode = EXIT_SUCCESS;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005467#if !BB_MMU
5468 G.argv0_for_re_execing = argv[0];
5469#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005470 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005471 G.shell_ver = const_shell_ver; /* copying struct here */
5472 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005473 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005474 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
5475 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005476 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005477 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005478 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005479 if (e) while (*e) {
5480 char *value = strchr(*e, '=');
5481 if (value) { /* paranoia */
5482 cur_var->next = xzalloc(sizeof(*cur_var));
5483 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00005484 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005485 cur_var->max_len = strlen(*e);
5486 cur_var->flg_export = 1;
5487 }
5488 e++;
5489 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005490 debug_printf_env("putenv '%s'\n", hush_version_str);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005491 putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
Denis Vlasenko38f63192007-01-22 09:03:07 +00005492#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00005493 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00005494#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00005495 G.global_argc = argc;
5496 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00005497 /* Initialize some more globals to non-zero values */
5498 set_cwd();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005499#if ENABLE_HUSH_INTERACTIVE
Mike Frysingerec2c6552009-03-28 12:24:44 +00005500 if (ENABLE_FEATURE_EDITING)
5501 cmdedit_set_initial_prompt();
Denis Vlasenko87a86552008-07-29 19:43:10 +00005502 G.PS2 = "> ";
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005503#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00005504
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005505 /* Shell is non-interactive at first. We need to call
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005506 * block_signals(0) if we are going to execute "sh <script>",
5507 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005508 * If we later decide that we are interactive, we run block_signals(0)
5509 * (or re-run block_signals(1) if we ran block_signals(0) before)
5510 * in order to intercept (more) signals.
5511 */
5512
5513 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005514 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005515 while (1) {
5516 opt = getopt(argc, argv, "c:xins"
5517#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00005518 "<:$:!:?:D:R:V:"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005519#endif
5520 );
5521 if (opt <= 0)
5522 break;
Eric Andersen25f27032001-04-26 23:22:31 +00005523 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005524 case 'c':
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005525 if (!G.root_pid)
5526 G.root_pid = getpid();
Denis Vlasenko87a86552008-07-29 19:43:10 +00005527 G.global_argv = argv + optind;
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00005528 if (!argv[optind]) {
5529 /* -c 'script' (no params): prevent empty $0 */
5530 *--G.global_argv = argv[0];
5531 optind--;
5532 } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005533 G.global_argc = argc - optind;
Denis Vlasenkof9375282009-04-05 19:13:39 +00005534 block_signals(0); /* 0: called 1st time */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005535 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005536 goto final_return;
5537 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00005538 /* Well, we cannot just declare interactiveness,
5539 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005540 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005541 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005542 case 's':
5543 /* "-s" means "read from stdin", but this is how we always
5544 * operate, so simply do nothing here. */
5545 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005546#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00005547 case '<': /* "big heredoc" support */
5548 full_write(STDOUT_FILENO, optarg, strlen(optarg));
5549 _exit(0);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005550 case '$':
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005551 G.root_pid = bb_strtou(optarg, &optarg, 16);
5552 optarg++;
5553 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
5554 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005555 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005556# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005557 optarg++;
5558 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005559# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005560 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005561 case 'R':
5562 case 'V':
5563 set_local_var(xstrdup(optarg), 0, opt == 'R');
5564 break;
5565#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005566 case 'n':
5567 case 'x':
Denis Vlasenkod5762932009-03-31 11:22:57 +00005568 if (!set_mode('-', opt))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005569 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005570 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005571#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005572 fprintf(stderr, "Usage: sh [FILE]...\n"
5573 " or: sh -c command [args]...\n\n");
5574 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005575#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005576 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005577#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005578 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005579 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005580
5581 if (!G.root_pid)
5582 G.root_pid = getpid();
Denis Vlasenkof9375282009-04-05 19:13:39 +00005583
5584 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005585 if (argv[0] && argv[0][0] == '-') {
5586 FILE *input;
5587 /* XXX what should argv be while sourcing /etc/profile? */
5588 debug_printf("sourcing /etc/profile\n");
5589 input = fopen_for_read("/etc/profile");
5590 if (input != NULL) {
5591 close_on_exec_on(fileno(input));
Denis Vlasenkof9375282009-04-05 19:13:39 +00005592 block_signals(0); /* 0: called 1st time */
5593 signal_mask_is_inited = 1;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005594 parse_and_run_file(input);
5595 fclose(input);
5596 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005597 /* bash: after sourcing /etc/profile,
5598 * tries to source (in the given order):
5599 * ~/.bash_profile, ~/.bash_login, ~/.profile,
5600 * stopping of first found. --noprofile turns this off.
5601 * bash also sources ~/.bash_logout on exit.
5602 * If called as sh, skips .bash_XXX files.
5603 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005604 }
5605
Denis Vlasenkof9375282009-04-05 19:13:39 +00005606 if (argv[optind]) {
5607 FILE *input;
5608 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005609 * "bash <script>" (which is never interactive (unless -i?))
5610 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00005611 * If called as sh, does the same but with $ENV.
5612 */
5613 debug_printf("running script '%s'\n", argv[optind]);
5614 G.global_argv = argv + optind;
5615 G.global_argc = argc - optind;
5616 input = xfopen_for_read(argv[optind]);
5617 close_on_exec_on(fileno(input));
5618 if (!signal_mask_is_inited)
5619 block_signals(0); /* 0: called 1st time */
5620 parse_and_run_file(input);
5621#if ENABLE_FEATURE_CLEAN_UP
5622 fclose(input);
5623#endif
5624 goto final_return;
5625 }
5626
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005627 /* Up to here, shell was non-interactive. Now it may become one.
5628 * NB: don't forget to (re)run block_signals(0/1) as needed.
5629 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005630
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005631 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00005632 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00005633 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00005634 * no arguments remaining or the -s flag given
5635 * standard input is a terminal
5636 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00005637 * Refer to Posix.2, the description of the 'sh' utility.
5638 */
5639#if ENABLE_HUSH_JOB
5640 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005641 G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
Denis Vlasenkof9375282009-04-05 19:13:39 +00005642 debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005643//TODO: "interactive" and "have job control" are two different things.
5644//If tcgetpgrp fails here, "have job control" is false, but "interactive"
5645//should stay on! Currently, we mix these into one.
Denis Vlasenko87a86552008-07-29 19:43:10 +00005646 if (G.saved_tty_pgrp >= 0) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00005647 /* try to dup stdin to high fd#, >= 255 */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005648 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
5649 if (G_interactive_fd < 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005650 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005651 G_interactive_fd = dup(STDIN_FILENO);
5652 if (G_interactive_fd < 0)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005653 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005654 G_interactive_fd = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005655 }
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005656// TODO: track & disallow any attempts of user
5657// to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005658 }
Eric Andersen25f27032001-04-26 23:22:31 +00005659 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005660 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005661 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00005662 pid_t shell_pgrp;
5663
5664 /* We are indeed interactive shell, and we will perform
5665 * job control. Setting up for that. */
5666
5667 close_on_exec_on(G_interactive_fd);
5668 /* If we were run as 'hush &', sleep until we are
5669 * in the foreground (tty pgrp == our pgrp).
5670 * If we get started under a job aware app (like bash),
5671 * make sure we are now in charge so we don't fight over
5672 * who gets the foreground */
5673 while (1) {
5674 shell_pgrp = getpgrp();
5675 G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
5676 if (G.saved_tty_pgrp == shell_pgrp)
5677 break;
5678 /* send TTIN to ourself (should stop us) */
5679 kill(- shell_pgrp, SIGTTIN);
5680 }
5681 /* Block some signals */
5682 block_signals(signal_mask_is_inited);
5683 /* Set other signals to restore saved_tty_pgrp */
5684 set_fatal_handlers();
5685 /* Put ourselves in our own process group */
5686 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
5687 /* Grab control of the terminal */
5688 tcsetpgrp(G_interactive_fd, getpid());
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00005689 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00005690 * (we reset die_sleep = 0 whereever we [v]fork) */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005691 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005692 if (setjmp(die_jmp)) {
5693 /* xfunc has failed! die die die */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00005694 /* no EXIT traps, this is an escape hatch! */
5695 G.exiting = 1;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005696 hush_exit(xfunc_error_retval);
5697 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005698 } else if (!signal_mask_is_inited) {
5699 block_signals(0); /* 0: called 1st time */
5700 } /* else: block_signals(0) was done before */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005701#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00005702 /* No job control compiled in, only prompt/line editing */
5703 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005704 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
5705 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005706 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005707 G_interactive_fd = dup(STDIN_FILENO);
5708 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005709 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005710 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005711 }
5712 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005713 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00005714 close_on_exec_on(G_interactive_fd);
5715 block_signals(signal_mask_is_inited);
5716 } else if (!signal_mask_is_inited) {
5717 block_signals(0);
5718 }
5719#else
5720 /* We have interactiveness code disabled */
5721 if (!signal_mask_is_inited) {
5722 block_signals(0);
5723 }
5724#endif
5725 /* bash:
5726 * if interactive but not a login shell, sources ~/.bashrc
5727 * (--norc turns this off, --rcfile <file> overrides)
5728 */
5729
5730 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Mike Frysinger258275d2009-04-05 21:19:43 +00005731 printf("\n\n%s hush - the humble shell\n", bb_banner);
Mike Frysingerb2705e12009-03-23 08:44:02 +00005732 printf("Enter 'help' for a list of built-in commands.\n\n");
5733 }
5734
Denis Vlasenkof9375282009-04-05 19:13:39 +00005735 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00005736
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005737 final_return:
Denis Vlasenko38f63192007-01-22 09:03:07 +00005738#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko87a86552008-07-29 19:43:10 +00005739 if (G.cwd != bb_msg_unknown)
5740 free((char*)G.cwd);
5741 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005742 while (cur_var) {
5743 struct variable *tmp = cur_var;
5744 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00005745 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005746 cur_var = cur_var->next;
5747 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00005748 }
Eric Andersen25f27032001-04-26 23:22:31 +00005749#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005750 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00005751}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00005752
5753
5754#if ENABLE_LASH
5755int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
5756int lash_main(int argc, char **argv)
5757{
5758 //bb_error_msg("lash is deprecated, please use hush instead");
5759 return hush_main(argc, argv);
5760}
5761#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005762
5763
5764/*
5765 * Built-ins
5766 */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005767static int builtin_trap(char **argv)
5768{
Denis Vlasenkod5762932009-03-31 11:22:57 +00005769 int i;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005770 int sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005771 char *new_cmd;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005772
5773 if (!G.traps)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005774 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005775
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005776 argv++;
5777 if (!*argv) {
5778 /* No args: print all trapped. This isn't 100% correct as we
5779 * should be escaping the cmd so that it can be pasted back in
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005780 */
5781 for (i = 0; i < NSIG; ++i)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005782 if (G.traps[i])
5783 printf("trap -- '%s' %s\n", G.traps[i], get_signame(i));
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005784 return EXIT_SUCCESS;
5785 }
5786
Denis Vlasenkod5762932009-03-31 11:22:57 +00005787 new_cmd = NULL;
5788 i = 0;
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005789 /* If first arg is decimal: reset all specified signals */
5790 sig = bb_strtou(*argv, NULL, 10);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005791 if (errno == 0) {
5792 int ret;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005793 set_all:
5794 ret = EXIT_SUCCESS;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005795 while (*argv) {
5796 sig = get_signum(*argv++);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005797 if (sig < 0 || sig >= NSIG) {
5798 ret = EXIT_FAILURE;
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005799 /* Mimic bash message exactly */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005800 bb_perror_msg("trap: %s: invalid signal specification", argv[i]);
5801 continue;
5802 }
5803
Denis Vlasenkod5762932009-03-31 11:22:57 +00005804 free(G.traps[sig]);
5805 G.traps[sig] = xstrdup(new_cmd);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005806
Denis Vlasenkod5762932009-03-31 11:22:57 +00005807 debug_printf("trap: setting SIG%s (%i) to '%s'",
5808 get_signame(sig), sig, G.traps[sig]);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005809
5810 /* There is no signal for 0 (EXIT) */
5811 if (sig == 0)
5812 continue;
5813
5814 if (new_cmd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00005815 sigaddset(&G.blocked_set, sig);
5816 } else {
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005817 /* There was a trap handler, we are removing it
Denis Vlasenkod5762932009-03-31 11:22:57 +00005818 * (if sig has non-DFL handling,
5819 * we don't need to do anything) */
5820 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
5821 continue;
5822 sigdelset(&G.blocked_set, sig);
5823 }
5824 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005825 }
5826 return ret;
5827 }
5828
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005829 /* First arg is "-": reset all specified to default */
5830 /* First arg is "": ignore all specified */
5831 /* Everything else: execute first arg upon signal */
Denis Vlasenkod5762932009-03-31 11:22:57 +00005832 if (!argv[1]) {
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005833 bb_error_msg("trap: invalid arguments");
5834 return EXIT_FAILURE;
5835 }
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005836 if (NOT_LONE_DASH(*argv))
Denis Vlasenkod5762932009-03-31 11:22:57 +00005837 new_cmd = *argv;
5838 argv++;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005839 goto set_all;
5840}
5841
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005842static int builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005843{
5844 return 0;
5845}
5846
5847static int builtin_test(char **argv)
5848{
5849 int argc = 0;
5850 while (*argv) {
5851 argc++;
5852 argv++;
5853 }
5854 return test_main(argc, argv - argc);
5855}
5856
5857static int builtin_echo(char **argv)
5858{
5859 int argc = 0;
5860 while (*argv) {
5861 argc++;
5862 argv++;
5863 }
5864 return echo_main(argc, argv - argc);
5865}
5866
5867static int builtin_eval(char **argv)
5868{
5869 int rcode = EXIT_SUCCESS;
5870
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005871 if (*++argv) {
5872 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005873 /* bash:
5874 * eval "echo Hi; done" ("done" is syntax error):
5875 * "echo Hi" will not execute too.
5876 */
5877 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005878 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005879 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005880 }
5881 return rcode;
5882}
5883
5884static int builtin_cd(char **argv)
5885{
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00005886 const char *newdir = argv[1];
5887 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005888 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
5889 * bash says "bash: cd: HOME not set" and does nothing (exitcode 1)
5890 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005891 newdir = getenv("HOME") ? : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005892 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005893 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00005894 /* Mimic bash message exactly */
5895 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005896 return EXIT_FAILURE;
5897 }
5898 set_cwd();
5899 return EXIT_SUCCESS;
5900}
5901
5902static int builtin_exec(char **argv)
5903{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005904 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005905 return EXIT_SUCCESS; /* bash does this */
5906 {
5907#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005908 nommu_save_t dummy;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005909#endif
5910// FIXME: if exec fails, bash does NOT exit! We do...
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005911 pseudo_exec_argv(&dummy, argv, 0, NULL);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005912 /* never returns */
5913 }
5914}
5915
5916static int builtin_exit(char **argv)
5917{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00005918 debug_printf_exec("%s()\n", __func__);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005919// TODO: bash does it ONLY on top-level sh exit (+interacive only?)
5920 //puts("exit"); /* bash does it */
5921// TODO: warn if we have background jobs: "There are stopped jobs"
5922// On second consecutive 'exit', exit anyway.
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00005923// perhaps use G.exiting = -1 as indicator "last cmd was exit"
5924
5925 /* note: EXIT trap is run by hush_exit */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005926 if (*++argv == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005927 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005928 /* mimic bash: exit 123abc == exit 255 + error msg */
5929 xfunc_error_retval = 255;
5930 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005931 hush_exit(xatoi(*argv) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005932}
5933
5934static int builtin_export(char **argv)
5935{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005936 if (*++argv == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005937 // TODO:
5938 // ash emits: export VAR='VAL'
5939 // bash: declare -x VAR="VAL"
5940 // (both also escape as needed (quotes, $, etc))
5941 char **e = environ;
5942 if (e)
5943 while (*e)
5944 puts(*e++);
5945 return EXIT_SUCCESS;
5946 }
5947
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005948 do {
5949 const char *value;
5950 char *name = *argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005951
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005952 value = strchr(name, '=');
5953 if (!value) {
5954 /* They are exporting something without a =VALUE */
5955 struct variable *var;
5956
5957 var = get_local_var(name);
5958 if (var) {
5959 var->flg_export = 1;
5960 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
5961 putenv(var->varstr);
5962 }
5963 /* bash does not return an error when trying to export
5964 * an undefined variable. Do likewise. */
5965 continue;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005966 }
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005967 set_local_var(xstrdup(name), 1, 0);
5968 } while (*++argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005969
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005970 return EXIT_SUCCESS;
5971}
5972
5973#if ENABLE_HUSH_JOB
5974/* built-in 'fg' and 'bg' handler */
5975static int builtin_fg_bg(char **argv)
5976{
5977 int i, jobnum;
5978 struct pipe *pi;
5979
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005980 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005981 return EXIT_FAILURE;
5982 /* If they gave us no args, assume they want the last backgrounded task */
5983 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005984 for (pi = G.job_list; pi; pi = pi->next) {
5985 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005986 goto found;
5987 }
5988 }
5989 bb_error_msg("%s: no current job", argv[0]);
5990 return EXIT_FAILURE;
5991 }
5992 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
5993 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
5994 return EXIT_FAILURE;
5995 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005996 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005997 if (pi->jobid == jobnum) {
5998 goto found;
5999 }
6000 }
6001 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
6002 return EXIT_FAILURE;
6003 found:
6004 // TODO: bash prints a string representation
6005 // of job being foregrounded (like "sleep 1 | cat")
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006006 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006007 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006008 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006009 }
6010
6011 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006012 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
6013 for (i = 0; i < pi->num_cmds; i++) {
6014 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
6015 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006016 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006017 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006018
6019 i = kill(- pi->pgrp, SIGCONT);
6020 if (i < 0) {
6021 if (errno == ESRCH) {
6022 delete_finished_bg_job(pi);
6023 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006024 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006025 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006026 }
6027
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006028 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006029 remove_bg_job(pi);
6030 return checkjobs_and_fg_shell(pi);
6031 }
6032 return EXIT_SUCCESS;
6033}
6034#endif
6035
6036#if ENABLE_HUSH_HELP
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006037static int builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006038{
6039 const struct built_in_command *x;
6040
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006041 printf("\n"
6042 "Built-in commands:\n"
6043 "------------------\n");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006044 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
6045 printf("%s\t%s\n", x->cmd, x->descr);
6046 }
6047 printf("\n\n");
6048 return EXIT_SUCCESS;
6049}
6050#endif
6051
6052#if ENABLE_HUSH_JOB
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006053static int builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006054{
6055 struct pipe *job;
6056 const char *status_string;
6057
Denis Vlasenko87a86552008-07-29 19:43:10 +00006058 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006059 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006060 status_string = "Stopped";
6061 else
6062 status_string = "Running";
6063
6064 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
6065 }
6066 return EXIT_SUCCESS;
6067}
6068#endif
6069
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00006070#if HUSH_DEBUG
6071static int builtin_memleak(char **argv UNUSED_PARAM)
6072{
6073 void *p;
6074 unsigned long l;
6075
6076 /* Crude attempt to find where "free memory" starts,
6077 * sans fragmentation. */
6078 p = malloc(240);
6079 l = (unsigned long)p;
6080 free(p);
6081 p = malloc(3400);
6082 if (l < (unsigned long)p) l = (unsigned long)p;
6083 free(p);
6084
6085 if (!G.memleak_value)
6086 G.memleak_value = l;
6087
6088 l -= G.memleak_value;
6089 if ((long)l < 0)
6090 l = 0;
6091 l /= 1024;
6092 if (l > 127)
6093 l = 127;
6094
6095 /* Exitcode is "how many kilobytes we leaked since 1st call" */
6096 return l;
6097}
6098#endif
6099
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006100static int builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006101{
6102 puts(set_cwd());
6103 return EXIT_SUCCESS;
6104}
6105
6106static int builtin_read(char **argv)
6107{
6108 char *string;
6109 const char *name = argv[1] ? argv[1] : "REPLY";
Denis Vlasenkoa0e65122009-04-05 23:39:14 +00006110//TODO: check that argv[1] is a valid variable name
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006111
6112 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006113 return set_local_var(string, 0, 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006114}
6115
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006116/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
6117 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006118 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006119 * set [-abCefhmnuvx] [-o option] [argument...]
6120 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006121 * set -- [argument...]
6122 * set -o
6123 * set +o
6124 * Implementations shall support the options in both their hyphen and
6125 * plus-sign forms. These options can also be specified as options to sh.
6126 * Examples:
6127 * Write out all variables and their values: set
6128 * Set $1, $2, and $3 and set "$#" to 3: set c a b
6129 * Turn on the -x and -v options: set -xv
6130 * Unset all positional parameters: set --
6131 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
6132 * Set the positional parameters to the expansion of x, even if x expands
6133 * with a leading '-' or '+': set -- $x
6134 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006135 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006136 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006137static int builtin_set(char **argv)
6138{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006139 int n;
6140 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006141 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006142
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006143 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006144 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00006145 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006146 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006147 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006148 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006149
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006150 do {
6151 if (!strcmp(arg, "--")) {
6152 ++argv;
6153 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006154 }
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006155
6156 if (arg[0] == '+' || arg[0] == '-') {
6157 for (n = 1; arg[n]; ++n)
Denis Vlasenkod5762932009-03-31 11:22:57 +00006158 if (set_mode(arg[0], arg[n]))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006159 goto error;
6160 continue;
6161 }
6162
6163 break;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006164 } while ((arg = *++argv) != NULL);
6165 /* Now argv[0] is 1st argument */
6166
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006167 /* Only reset global_argv if we didn't process anything */
6168 if (arg == NULL)
6169 return EXIT_SUCCESS;
6170 set_argv:
6171
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006172 /* NB: G.global_argv[0] ($0) is never freed/changed */
6173 g_argv = G.global_argv;
6174 if (G.global_args_malloced) {
6175 pp = g_argv;
6176 while (*++pp)
6177 free(*pp);
6178 g_argv[1] = NULL;
6179 } else {
6180 G.global_args_malloced = 1;
6181 pp = xzalloc(sizeof(pp[0]) * 2);
6182 pp[0] = g_argv[0]; /* retain $0 */
6183 g_argv = pp;
6184 }
6185 /* This realloc's G.global_argv */
6186 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
6187
6188 n = 1;
6189 while (*++pp)
6190 n++;
6191 G.global_argc = n;
6192
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006193 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006194
6195 /* Nothing known, so abort */
6196 error:
6197 bb_error_msg("set: %s: invalid option", arg);
6198 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006199}
6200
6201static int builtin_shift(char **argv)
6202{
6203 int n = 1;
6204 if (argv[1]) {
6205 n = atoi(argv[1]);
6206 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006207 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006208 if (G.global_args_malloced) {
6209 int m = 1;
6210 while (m <= n)
6211 free(G.global_argv[m++]);
6212 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006213 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006214 memmove(&G.global_argv[1], &G.global_argv[n+1],
6215 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006216 return EXIT_SUCCESS;
6217 }
6218 return EXIT_FAILURE;
6219}
6220
6221static int builtin_source(char **argv)
6222{
6223 FILE *input;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006224
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006225 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006226 return EXIT_FAILURE;
6227
6228 /* XXX search through $PATH is missing */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006229 input = fopen_or_warn(*argv, "r");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006230 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006231 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006232 return EXIT_FAILURE;
6233 }
6234 close_on_exec_on(fileno(input));
6235
6236 /* Now run the file */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006237//TODO:
Denis Vlasenko87a86552008-07-29 19:43:10 +00006238 /* XXX argv and argc are broken; need to save old G.global_argv
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006239 * (pointer only is OK!) on this stack frame,
Denis Vlasenko87a86552008-07-29 19:43:10 +00006240 * set G.global_argv=argv+1, recurse, and restore. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006241 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006242 fclose(input);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006243 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006244}
6245
6246static int builtin_umask(char **argv)
6247{
6248 mode_t new_umask;
6249 const char *arg = argv[1];
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006250 if (arg) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006251//TODO: umask may take chmod-like symbolic masks
Mike Frysinger40b8dc42009-03-29 00:50:30 +00006252 new_umask = bb_strtou(arg, NULL, 8);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006253 if (errno) {
6254 //Message? bash examples:
6255 //bash: umask: 'q': invalid symbolic mode operator
6256 //bash: umask: 999: octal number out of range
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006257 return EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006258 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006259 } else {
6260 new_umask = umask(0);
6261 printf("%.3o\n", (unsigned) new_umask);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006262 /* fall through and restore new_umask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006263 }
6264 umask(new_umask);
6265 return EXIT_SUCCESS;
6266}
6267
Mike Frysingerd690f682009-03-30 06:50:54 +00006268/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006269static int builtin_unset(char **argv)
6270{
Mike Frysingerd690f682009-03-30 06:50:54 +00006271 int ret;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006272 char var;
Mike Frysingerd690f682009-03-30 06:50:54 +00006273
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006274 if (!*++argv)
Mike Frysingerd690f682009-03-30 06:50:54 +00006275 return EXIT_SUCCESS;
6276
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006277 var = 'v';
6278 if (argv[0][0] == '-') {
6279 switch (argv[0][1]) {
6280 case 'v':
6281 case 'f':
6282 var = argv[0][1];
6283 break;
Mike Frysingerd690f682009-03-30 06:50:54 +00006284 default:
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006285 bb_error_msg("unset: %s: invalid option", *argv);
Mike Frysingerd690f682009-03-30 06:50:54 +00006286 return EXIT_FAILURE;
6287 }
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006288//TODO: disallow "unset -vf ..." too
6289 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006290 }
6291
6292 ret = EXIT_SUCCESS;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006293 while (*argv) {
6294 if (var == 'v') {
6295 if (unset_local_var(*argv)) {
6296 /* unset <nonexistent_var> doesn't fail.
6297 * Error is when one tries to unset RO var.
6298 * Message was printed by unset_local_var. */
Mike Frysingerd690f682009-03-30 06:50:54 +00006299 ret = EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006300 }
Mike Frysingerd690f682009-03-30 06:50:54 +00006301 }
6302#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006303 else {
6304 unset_local_func(*argv);
6305 }
Mike Frysingerd690f682009-03-30 06:50:54 +00006306#endif
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006307 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006308 }
6309 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006310}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006311
Mike Frysinger56bdea12009-03-28 20:01:58 +00006312/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
6313static int builtin_wait(char **argv)
6314{
6315 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006316 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00006317
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006318 if (*++argv == NULL) {
6319 /* Don't care about wait results */
6320 /* Note 1: must wait until there are no more children */
6321 /* Note 2: must be interruptible */
6322 /* Examples:
6323 * $ sleep 3 & sleep 6 & wait
6324 * [1] 30934 sleep 3
6325 * [2] 30935 sleep 6
6326 * [1] Done sleep 3
6327 * [2] Done sleep 6
6328 * $ sleep 3 & sleep 6 & wait
6329 * [1] 30936 sleep 3
6330 * [2] 30937 sleep 6
6331 * [1] Done sleep 3
6332 * ^C <-- after ~4 sec from keyboard
6333 * $
6334 */
6335 sigaddset(&G.blocked_set, SIGCHLD);
6336 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6337 while (1) {
6338 checkjobs(NULL);
6339 if (errno == ECHILD)
6340 break;
6341 /* Wait for SIGCHLD or any other signal of interest */
6342 /* sigtimedwait with infinite timeout: */
6343 sig = sigwaitinfo(&G.blocked_set, NULL);
6344 if (sig > 0) {
6345 sig = check_and_run_traps(sig);
6346 if (sig && sig != SIGCHLD) { /* see note 2 */
6347 ret = 128 + sig;
6348 break;
6349 }
6350 }
6351 }
6352 sigdelset(&G.blocked_set, SIGCHLD);
6353 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6354 return ret;
6355 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00006356
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006357 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00006358 while (*argv) {
6359 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00006360 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006361 /* mimic bash message */
6362 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00006363 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00006364 }
6365 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00006366 if (WIFSIGNALED(status))
6367 ret = 128 + WTERMSIG(status);
6368 else if (WIFEXITED(status))
6369 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00006370 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00006371 ret = EXIT_FAILURE;
6372 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006373 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00006374 ret = 127;
6375 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00006376 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00006377 }
6378
6379 return ret;
6380}
6381
Denis Vlasenkodadfb492008-07-29 10:16:05 +00006382#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006383static int builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006384{
Denis Vlasenko87a86552008-07-29 19:43:10 +00006385 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006386 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00006387 return EXIT_SUCCESS; /* bash compat */
6388 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006389 G.flag_break_continue++; /* BC_BREAK = 1 */
6390 G.depth_break_continue = 1;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006391 if (argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006392 G.depth_break_continue = bb_strtou(argv[1], NULL, 10);
6393 if (errno || !G.depth_break_continue || argv[2]) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006394 bb_error_msg("%s: bad arguments", argv[0]);
Denis Vlasenko87a86552008-07-29 19:43:10 +00006395 G.flag_break_continue = BC_BREAK;
6396 G.depth_break_continue = UINT_MAX;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006397 }
6398 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006399 if (G.depth_of_loop < G.depth_break_continue)
6400 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006401 return EXIT_SUCCESS;
6402}
6403
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006404static int builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006405{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006406 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
6407 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006408}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00006409#endif