blob: bb4fdc295165b0bbf9a7278b75600c696d9d56ac [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 */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000067#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denis Vlasenkobe709c22008-07-28 00:01:16 +000068#include <glob.h>
69/* #include <dmalloc.h> */
70#if ENABLE_HUSH_CASE
71#include <fnmatch.h>
72#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000073#include "math.h"
Mike Frysingera4f331d2009-04-07 06:03:22 +000074#include "match.h"
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000075#ifndef PIPE_BUF
76# define PIPE_BUF 4096 /* amount of buffering in a pipe */
77#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000078
Denis Vlasenko1943aec2009-04-09 14:15:57 +000079
80/* Debug build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +000081#define LEAK_HUNTING 0
82#define BUILD_AS_NOMMU 0
83/* Enable/disable sanity checks. Ok to enable in production,
84 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
85 * Keeping 1 for now even in released versions.
86 */
87#define HUSH_DEBUG 1
88/* In progress... */
89#define ENABLE_HUSH_FUNCTIONS 0
Denis Vlasenko1943aec2009-04-09 14:15:57 +000090
91
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +000092#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +000093# undef BB_MMU
94# undef USE_FOR_NOMMU
95# undef USE_FOR_MMU
96# define BB_MMU 0
97# define USE_FOR_NOMMU(...) __VA_ARGS__
98# define USE_FOR_MMU(...)
99#endif
100
Denis Vlasenko61befda2008-11-25 01:36:03 +0000101#if defined SINGLE_APPLET_MAIN
102/* STANDALONE does not make sense, and won't compile */
103#undef CONFIG_FEATURE_SH_STANDALONE
104#undef ENABLE_FEATURE_SH_STANDALONE
105#undef USE_FEATURE_SH_STANDALONE
106#define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
107#define ENABLE_FEATURE_SH_STANDALONE 0
108#define USE_FEATURE_SH_STANDALONE(...)
109#define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
110#endif
111
Denis Vlasenko05743d72008-02-10 12:10:08 +0000112#if !ENABLE_HUSH_INTERACTIVE
113#undef ENABLE_FEATURE_EDITING
114#define ENABLE_FEATURE_EDITING 0
115#undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
116#define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000117#endif
118
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000119/* Do we support ANY keywords? */
120#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
121#define HAS_KEYWORDS 1
122#define IF_HAS_KEYWORDS(...) __VA_ARGS__
123#define IF_HAS_NO_KEYWORDS(...)
124#else
125#define HAS_KEYWORDS 0
126#define IF_HAS_KEYWORDS(...)
127#define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
128#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000129
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000130/* If you comment out one of these below, it will be #defined later
131 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000132#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000133/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000134#define debug_printf_parse(...) do {} while (0)
135#define debug_print_tree(a, b) do {} while (0)
136#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000137#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000138#define debug_printf_jobs(...) do {} while (0)
139#define debug_printf_expand(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000140#define debug_printf_glob(...) do {} while (0)
141#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000142#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000143#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000144
145#ifndef debug_printf
146#define debug_printf(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000147#endif
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000148
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000149#ifndef debug_printf_parse
150#define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000151#endif
152
153#ifndef debug_printf_exec
154#define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__)
155#endif
156
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000157#ifndef debug_printf_env
158#define debug_printf_env(...) fprintf(stderr, __VA_ARGS__)
159#endif
160
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000161#ifndef debug_printf_jobs
162#define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000163#define DEBUG_JOBS 1
164#else
165#define DEBUG_JOBS 0
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000166#endif
167
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000168#ifndef debug_printf_expand
169#define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__)
170#define DEBUG_EXPAND 1
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000171#else
172#define DEBUG_EXPAND 0
173#endif
174
175#ifndef debug_printf_glob
176#define debug_printf_glob(...) fprintf(stderr, __VA_ARGS__)
177#define DEBUG_GLOB 1
178#else
179#define DEBUG_GLOB 0
180#endif
181
182#ifndef debug_printf_list
183#define debug_printf_list(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000184#endif
185
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000186#ifndef debug_printf_subst
187#define debug_printf_subst(...) fprintf(stderr, __VA_ARGS__)
188#endif
189
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000190#ifndef debug_printf_clean
191/* broken, of course, but OK for testing */
192static const char *indenter(int i)
193{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000194 static const char blanks[] ALIGN1 =
195 " ";
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000196 return &blanks[sizeof(blanks) - i - 1];
197}
198#define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000199#define DEBUG_CLEAN 1
Denis Vlasenkoa0e65122009-04-05 23:39:14 +0000200#else
201#define DEBUG_CLEAN 0
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000202#endif
203
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000204#if DEBUG_EXPAND
205static void debug_print_strings(const char *prefix, char **vv)
206{
207 fprintf(stderr, "%s:\n", prefix);
208 while (*vv)
209 fprintf(stderr, " '%s'\n", *vv++);
210}
211#else
212#define debug_print_strings(prefix, vv) ((void)0)
213#endif
214
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000215#define ERR_PTR ((void*)(long)1)
216
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000217#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000218
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000219#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000220
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000221static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
222
223/* This supports saving pointers malloced in vfork child,
224 * to be freed in the parent. One pointer is saved in
225 * G.argv_from_re_execing global var instead. TODO: unify.
226 */
227#if !BB_MMU
228typedef struct nommu_save_t {
229 char **new_env;
230 char **old_env;
231 char **argv;
232} nommu_save_t;
233#endif
234
Denis Vlasenko55789c62008-06-18 16:30:42 +0000235/* The descrip member of this structure is only used to make
236 * debugging output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000237static const struct {
238 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000239 signed char default_fd;
240 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000241} redir_table[] = {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000242 { 0, 0, "??" },
Eric Andersen25f27032001-04-26 23:22:31 +0000243 { O_RDONLY, 0, "<" },
244 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
245 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000246 { O_RDONLY, 0, "<<" },
247 { O_CREAT|O_RDWR, 1, "<>" },
248/* Should not be needed. Bogus default_fd helps in debugging */
249/* { O_RDONLY, 77, "<<" }, */
Eric Andersen25f27032001-04-26 23:22:31 +0000250};
251
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000252typedef enum reserved_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000253 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000254#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000255 RES_IF ,
256 RES_THEN ,
257 RES_ELIF ,
258 RES_ELSE ,
259 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000260#endif
261#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000262 RES_FOR ,
263 RES_WHILE ,
264 RES_UNTIL ,
265 RES_DO ,
266 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000267#endif
268#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000269 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000270#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000271#if ENABLE_HUSH_CASE
272 RES_CASE ,
273 /* two pseudo-keywords support contrived "case" syntax: */
274 RES_MATCH , /* "word)" */
275 RES_CASEI , /* "this command is inside CASE" */
276 RES_ESAC ,
277#endif
278 RES_XXXX ,
279 RES_SNTX
Eric Andersen25f27032001-04-26 23:22:31 +0000280} reserved_style;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000281
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000282typedef struct o_string {
283 char *data;
284 int length; /* position where data is appended */
285 int maxlen;
286 /* Protect newly added chars against globbing
287 * (by prepending \ to *, ?, [, \) */
288 smallint o_escape;
289 smallint o_glob;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000290 /* At least some part of the string was inside '' or "",
291 * possibly empty one: word"", wo''rd etc. */
292 smallint o_quoted;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000293 smallint has_empty_slot;
294 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
295} o_string;
296enum {
297 MAYBE_ASSIGNMENT = 0,
298 DEFINITELY_ASSIGNMENT = 1,
299 NOT_ASSIGNMENT = 2,
300 WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
301};
302/* Used for initialization: o_string foo = NULL_O_STRING; */
303#define NULL_O_STRING { NULL }
304
305/* I can almost use ordinary FILE*. Is open_memstream() universally
306 * available? Where is it documented? */
307typedef struct in_str {
308 const char *p;
309 /* eof_flag=1: last char in ->p is really an EOF */
310 char eof_flag; /* meaningless if ->p == NULL */
311 char peek_buf[2];
312#if ENABLE_HUSH_INTERACTIVE
313 smallint promptme;
314 smallint promptmode; /* 0: PS1, 1: PS2 */
315#endif
316 FILE *file;
317 int (*get) (struct in_str *);
318 int (*peek) (struct in_str *);
319} in_str;
320#define i_getch(input) ((input)->get(input))
321#define i_peek(input) ((input)->peek(input))
322
Eric Andersen25f27032001-04-26 23:22:31 +0000323struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000324 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000325 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000326 int rd_fd; /* fd to redirect */
327 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
328 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000329 smallint rd_type; /* (enum redir_type) */
330 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000331 * and subsequently heredoc itself; and rd_dup is a bitmask:
332 * 1: do we need to trim leading tabs?
333 * 2: is heredoc quoted (<<'dleim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000334 */
Eric Andersen25f27032001-04-26 23:22:31 +0000335};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000336typedef enum redir_type {
337 REDIRECT_INVALID = 0,
338 REDIRECT_INPUT = 1,
339 REDIRECT_OVERWRITE = 2,
340 REDIRECT_APPEND = 3,
341 REDIRECT_HEREDOC = 4,
342 REDIRECT_IO = 5,
343 REDIRECT_HEREDOC2 = 6, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000344
345 REDIRFD_CLOSE = -3,
346 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko551bdfe2009-04-10 11:13:26 +0000347 REDIRFD_TO_FILE = -1,
348 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000349
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000350 HEREDOC_SKIPTABS = 1,
351 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000352} redir_type;
353
Eric Andersen25f27032001-04-26 23:22:31 +0000354
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000355struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000356 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000357 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000358 smallint is_stopped; /* is the command currently running? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000359 smallint grp_type; /* GRP_xxx */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000360 struct pipe *group; /* if non-NULL, this "command" is { list },
361 * ( list ), or a compound statement */
362#if !BB_MMU
363 char *group_as_string;
364#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000365 char **argv; /* command name and arguments */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000366 struct redir_struct *redirects; /* I/O redirections */
Eric Andersen25f27032001-04-26 23:22:31 +0000367};
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000368/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
369 * and on execution these are substituted with their values.
370 * Substitution can make _several_ words out of one argv[n]!
371 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000372 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000373 */
Denis Vlasenko371de4a2008-10-14 12:43:13 +0000374#define GRP_NORMAL 0
375#define GRP_SUBSHELL 1
376#if ENABLE_HUSH_FUNCTIONS
377#define GRP_FUNCTION 2
378#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000379
380struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000381 struct pipe *next;
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000382 int num_cmds; /* total number of commands in job */
383 int alive_cmds; /* number of commands running (not exited) */
384 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000385#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000386 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000387 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000388 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000389#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000390 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000391 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000392 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
393 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000394};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000395typedef enum pipe_style {
396 PIPE_SEQ = 1,
397 PIPE_AND = 2,
398 PIPE_OR = 3,
399 PIPE_BG = 4,
400} pipe_style;
Eric Andersen25f27032001-04-26 23:22:31 +0000401
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000402/* This holds pointers to the various results of parsing */
403struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000404 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000405 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000406 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000407 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000408 /* last command in pipe (being constructed right now) */
409 struct command *command;
410 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000411 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000412#if !BB_MMU
413 o_string as_string;
414#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000415#if HAS_KEYWORDS
416 smallint ctx_res_w;
417 smallint ctx_inverted; /* "! cmd | cmd" */
418#if ENABLE_HUSH_CASE
419 smallint ctx_dsemicolon; /* ";;" seen */
420#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000421 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
422 int old_flag;
423 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000424 * example: "if pipe1; pipe2; then pipe3; fi"
425 * when we see "if" or "then", we malloc and copy current context,
426 * and make ->stack point to it. then we parse pipeN.
427 * when closing "then" / fi" / whatever is found,
428 * we move list_head into ->stack->command->group,
429 * copy ->stack into current context, and delete ->stack.
430 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000431 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000432 struct parse_context *stack;
433#endif
434};
435
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000436/* On program start, environ points to initial environment.
437 * putenv adds new pointers into it, unsetenv removes them.
438 * Neither of these (de)allocates the strings.
439 * setenv allocates new strings in malloc space and does putenv,
440 * and thus setenv is unusable (leaky) for shell's purposes */
441#define setenv(...) setenv_is_leaky_dont_use()
442struct variable {
443 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000444 char *varstr; /* points to "name=" portion */
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000445 int max_len; /* if > 0, name is part of initial env; else name is malloced */
446 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000447 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000448};
449
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000450enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000451 BC_BREAK = 1,
452 BC_CONTINUE = 2,
453};
454
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000455
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000456/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000457/* Sorted roughly by size (smaller offsets == smaller code) */
458struct globals {
459#if ENABLE_HUSH_INTERACTIVE
460 /* 'interactive_fd' is a fd# open to ctty, if we have one
461 * _AND_ if we decided to act interactively */
462 int interactive_fd;
463 const char *PS1;
464 const char *PS2;
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000465#define G_interactive_fd (G.interactive_fd)
466#else
467#define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000468#endif
469#if ENABLE_FEATURE_EDITING
470 line_input_t *line_input_state;
471#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000472 pid_t root_pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000473 pid_t last_bg_pid;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000474#if ENABLE_HUSH_JOB
475 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000476 pid_t saved_tty_pgrp;
477 int last_jobid;
478 struct pipe *job_list;
479 struct pipe *toplevel_list;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000480//// smallint ctrl_z_flag;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000481#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000482 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000483#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000484 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000485#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000486 smallint fake_mode;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000487 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000488 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000489 smalluint last_exitcode;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000490 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000491 smalluint global_args_malloced;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000492 /* how many non-NULL argv's we have. NB: $# + 1 */
493 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000494 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000495#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000496 char *argv0_for_re_execing;
497 char **argv_from_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000498#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000499#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000500 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000501 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000502#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000503 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000504 const char *cwd;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000505 struct variable *top_var; /* = &G.shell_ver (set in main()) */
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000506 struct variable shell_ver;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000507 /* Signal and trap handling */
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000508// unsigned count_SIGCHLD;
509// unsigned handled_SIGCHLD;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000510 /* which signals have non-DFL handler (even with no traps set)? */
511 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000512 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000513 sigset_t blocked_set;
514 sigset_t inherited_set;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000515#if HUSH_DEBUG
516 unsigned long memleak_value;
517#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000518 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
519#if ENABLE_FEATURE_SH_STANDALONE
520 struct nofork_save_area nofork_save;
521#endif
522#if ENABLE_HUSH_JOB
523 sigjmp_buf toplevel_jb;
524#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000525};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000526#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000527/* Not #defining name to G.name - this quickly gets unwieldy
528 * (too many defines). Also, I actually prefer to see when a variable
529 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000530#define INIT_G() do { \
531 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
532} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000533
534
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000535/* Function prototypes for builtins */
536static int builtin_cd(char **argv);
537static int builtin_echo(char **argv);
538static int builtin_eval(char **argv);
539static int builtin_exec(char **argv);
540static int builtin_exit(char **argv);
541static int builtin_export(char **argv);
542#if ENABLE_HUSH_JOB
543static int builtin_fg_bg(char **argv);
544static int builtin_jobs(char **argv);
545#endif
546#if ENABLE_HUSH_HELP
547static int builtin_help(char **argv);
548#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000549#if HUSH_DEBUG
550static int builtin_memleak(char **argv);
551#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000552static int builtin_pwd(char **argv);
553static int builtin_read(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000554static int builtin_set(char **argv);
555static int builtin_shift(char **argv);
556static int builtin_source(char **argv);
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000557static int builtin_test(char **argv);
558static int builtin_trap(char **argv);
559static int builtin_true(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000560static int builtin_umask(char **argv);
561static int builtin_unset(char **argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +0000562static int builtin_wait(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000563#if ENABLE_HUSH_LOOPS
564static int builtin_break(char **argv);
565static int builtin_continue(char **argv);
566#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000567
568/* Table of built-in functions. They can be forked or not, depending on
569 * context: within pipes, they fork. As simple commands, they do not.
570 * When used in non-forking context, they can change global variables
571 * in the parent shell process. If forked, of course they cannot.
572 * For example, 'unset foo | whatever' will parse and run, but foo will
573 * still be set at the end. */
574struct built_in_command {
575 const char *cmd;
576 int (*function)(char **argv);
577#if ENABLE_HUSH_HELP
578 const char *descr;
579#define BLTIN(cmd, func, help) { cmd, func, help }
580#else
581#define BLTIN(cmd, func, help) { cmd, func }
582#endif
583};
584
585/* For now, echo and test are unconditionally enabled.
586 * Maybe make it configurable? */
587static const struct built_in_command bltins[] = {
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000588 BLTIN("." , builtin_source , "Run commands in a file"),
589 BLTIN(":" , builtin_true , "No-op"),
590 BLTIN("[" , builtin_test , "Test condition"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000591#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000592 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000593#endif
594#if ENABLE_HUSH_LOOPS
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000595 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000596#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000597 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000598#if ENABLE_HUSH_LOOPS
599 BLTIN("continue", builtin_continue, "Start new loop iteration"),
600#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000601 BLTIN("echo" , builtin_echo , "Write to stdout"),
602 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
603 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
604 BLTIN("exit" , builtin_exit , "Exit"),
605 BLTIN("export" , builtin_export , "Set environment variable"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000606#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000607 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000608#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000609#if ENABLE_HUSH_HELP
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000610 BLTIN("help" , builtin_help , "List shell built-in commands"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000611#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000612#if ENABLE_HUSH_JOB
613 BLTIN("jobs" , builtin_jobs , "List active jobs"),
614#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000615#if HUSH_DEBUG
616 BLTIN("memleak" , builtin_memleak , "Debug tool"),
617#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000618 BLTIN("pwd" , builtin_pwd , "Print current directory"),
619 BLTIN("read" , builtin_read , "Input environment variable"),
620// BLTIN("return" , builtin_return , "Return from a function"),
621 BLTIN("set" , builtin_set , "Set/unset shell local variables"),
622 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
623 BLTIN("test" , builtin_test , "Test condition"),
624 BLTIN("trap" , builtin_trap , "Trap signals"),
625// BLTIN("ulimit" , builtin_return , "Control resource limits"),
626 BLTIN("umask" , builtin_umask , "Set file creation mask"),
627 BLTIN("unset" , builtin_unset , "Unset environment variable"),
628 BLTIN("wait" , builtin_wait , "Wait for process"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000629};
630
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000631
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000632/* Leak hunting. Use hush_leaktool.sh for post-processing.
633 */
634#if LEAK_HUNTING
635static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000636{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000637 void *ptr = xmalloc((size + 0xff) & ~0xff);
638 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
639 return ptr;
640}
641static void *xxrealloc(int lineno, void *ptr, size_t size)
642{
643 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
644 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
645 return ptr;
646}
647static char *xxstrdup(int lineno, const char *str)
648{
649 char *ptr = xstrdup(str);
650 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
651 return ptr;
652}
653static void xxfree(void *ptr)
654{
655 fdprintf(2, "free %p\n", ptr);
656 free(ptr);
657}
658#define xmalloc(s) xxmalloc(__LINE__, s)
659#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
660#define xstrdup(s) xxstrdup(__LINE__, s)
661#define free(p) xxfree(p)
662#endif
663
664
665/* Syntax and runtime errors. They always abort scripts.
666 * In interactive use they usually discard unparsed and/or unexecuted commands
667 * and return to the prompt.
668 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
669 */
670#if HUSH_DEBUG < 2
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000671# define die_if_script(lineno, fmt...) die_if_script(fmt)
672# define syntax_error(lineno, msg) syntax_error(msg)
673# define syntax_error_at(lineno, msg) syntax_error_at(msg)
674# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
675# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000676#endif
677
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000678static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000679{
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000680 va_list p;
681
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000682#if HUSH_DEBUG >= 2
683 bb_error_msg("hush.c:%u", lineno);
684#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000685 va_start(p, fmt);
686 bb_verror_msg(fmt, p, NULL);
687 va_end(p);
688 if (!G_interactive_fd)
689 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +0000690}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000691
692static void syntax_error(unsigned lineno, const char *msg)
693{
694 if (msg)
695 die_if_script(lineno, "syntax error: %s", msg);
696 else
697 die_if_script(lineno, "syntax error", NULL);
698}
699
700static void syntax_error_at(unsigned lineno, const char *msg)
701{
702 die_if_script(lineno, "syntax error at '%s'", msg);
703}
704
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000705static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000706{
707 char msg[2];
708 msg[0] = ch;
709 msg[1] = '\0';
710 die_if_script(lineno, "syntax error: unterminated %s", msg);
711}
712
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000713static void syntax_error_unterm_str(unsigned lineno, const char *s)
714{
715 die_if_script(lineno, "syntax error: unterminated %s", s);
716}
717
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000718#if HUSH_DEBUG < 2
719# undef die_if_script
720# undef syntax_error
721# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000722# undef syntax_error_unterm_ch
723# undef syntax_error_unterm_str
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000724#else
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000725# define die_if_script(fmt...) die_if_script(__LINE__, fmt)
726# define syntax_error(msg) syntax_error(__LINE__, msg)
727# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
728# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
729# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000730#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000731
Denis Vlasenko552433b2009-04-04 19:29:21 +0000732
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000733/* Utility functions
734 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000735static int glob_needed(const char *s)
736{
737 while (*s) {
738 if (*s == '\\')
739 s++;
740 if (*s == '*' || *s == '[' || *s == '?')
741 return 1;
742 s++;
743 }
744 return 0;
745}
746
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000747static int is_well_formed_var_name(const char *s, char terminator)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000748{
Denis Vlasenkod4981312008-07-31 10:34:48 +0000749 if (!s || !(isalpha(*s) || *s == '_'))
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000750 return 0;
751 s++;
752 while (isalnum(*s) || *s == '_')
753 s++;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000754 return *s == terminator;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000755}
756
Denis Vlasenko55789c62008-06-18 16:30:42 +0000757/* Replace each \x with x in place, return ptr past NUL. */
758static char *unbackslash(char *src)
759{
760 char *dst = src;
761 while (1) {
762 if (*src == '\\')
763 src++;
764 if ((*dst++ = *src++) == '\0')
765 break;
766 }
767 return dst;
768}
769
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000770static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000771{
772 int i;
773 unsigned count1;
774 unsigned count2;
775 char **v;
776
777 v = strings;
778 count1 = 0;
779 if (v) {
780 while (*v) {
781 count1++;
782 v++;
783 }
784 }
785 count2 = 0;
786 v = add;
787 while (*v) {
788 count2++;
789 v++;
790 }
791 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
792 v[count1 + count2] = NULL;
793 i = count2;
794 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000795 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000796 return v;
797}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000798#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000799static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
800{
801 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
802 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
803 return ptr;
804}
805#define add_strings_to_strings(strings, add, need_to_dup) \
806 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
807#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000808
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000809static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000810{
811 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000812 v[0] = add;
813 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000814 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000815}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000816#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000817static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
818{
819 char **ptr = add_string_to_strings(strings, add);
820 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
821 return ptr;
822}
823#define add_string_to_strings(strings, add) \
824 xx_add_string_to_strings(__LINE__, strings, add)
825#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000826
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000827static void putenv_all(char **strings)
828{
829 if (!strings)
830 return;
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000831 while (*strings) {
832 debug_printf_env("putenv '%s'\n", *strings);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000833 putenv(*strings++);
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000834 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000835}
836
837static char **putenv_all_and_save_old(char **strings)
838{
839 char **old = NULL;
840 char **s = strings;
841
842 if (!strings)
843 return old;
844 while (*strings) {
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000845 char *v, *eq;
846
847 eq = strchr(*strings, '=');
848 if (eq) {
849 *eq = '\0';
850 v = getenv(*strings);
851 *eq = '=';
852 if (v) {
853 /* v points to VAL in VAR=VAL, go back to VAR */
854 v -= (eq - *strings) + 1;
855 old = add_string_to_strings(old, v);
856 }
857 }
858 strings++;
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000859 }
860 putenv_all(s);
861 return old;
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000862}
863
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000864static void free_strings_and_unsetenv(char **strings, int unset)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000865{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000866 char **v;
867
868 if (!strings)
869 return;
870
871 v = strings;
872 while (*v) {
873 if (unset) {
Denis Vlasenko76ddc2e2008-12-30 05:05:31 +0000874 debug_printf_env("unsetenv '%s'\n", *v);
875 bb_unsetenv(*v);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000876 }
877 free(*v++);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000878 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000879 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000880}
881
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000882static void free_strings(char **strings)
Denis Vlasenko76d50412008-06-10 16:19:39 +0000883{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000884 free_strings_and_unsetenv(strings, 0);
Denis Vlasenko76d50412008-06-10 16:19:39 +0000885}
Denis Vlasenko76d50412008-06-10 16:19:39 +0000886
887
Denis Vlasenkod5762932009-03-31 11:22:57 +0000888/* Basic theory of signal handling in shell
889 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000890 * This does not describe what hush does, rather, it is current understanding
891 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000892 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
893 *
894 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
895 * is finished or backgrounded. It is the same in interactive and
896 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000897 * a user trap handler is installed or a shell special one is in effect.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000898 * ^C or ^Z from keyboard seem to execute "at once" because it usually
899 * backgrounds (i.e. stops) or kills all members of currently running
900 * pipe.
901 *
902 * Wait builtin in interruptible by signals for which user trap is set
903 * or by SIGINT in interactive shell.
904 *
905 * Trap handlers will execute even within trap handlers. (right?)
906 *
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000907 * User trap handlers are forgotten when subshell ("(cmd)") is entered.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000908 *
909 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000910 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000911 *
912 * Commands run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000913 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000914 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000915 * Ordinary commands have signals set to SIG_IGN/DFL set as inherited
916 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000917 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000918 * Siganls which differ from SIG_DFL action
919 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +0000920 *
921 * SIGQUIT: ignore
922 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000923 * SIGHUP (interactive):
924 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +0000925 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000926 * (note that ^Z is handled not by trapping SIGTSTP, but by seeing
927 * that all pipe members are stopped) (right?)
Denis Vlasenkod5762932009-03-31 11:22:57 +0000928 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000929 * of the command line, show prompt. NB: ^C does not send SIGINT
930 * to interactive shell while shell is waiting for a pipe,
931 * since shell is bg'ed (is not in foreground process group).
932 * (check/expand this)
933 * Example 1: this waits 5 sec, but does not execute ls:
934 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
935 * Example 2: this does not wait and does not execute ls:
936 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
937 * Example 3: this does not wait 5 sec, but executes ls:
938 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +0000939 *
940 * (What happens to signals which are IGN on shell start?)
941 * (What happens with signal mask on shell start?)
942 *
943 * Implementation in hush
944 * ======================
945 * We use in-kernel pending signal mask to determine which signals were sent.
946 * We block all signals which we don't want to take action immediately,
947 * i.e. we block all signals which need to have special handling as described
948 * above, and all signals which have traps set.
949 * After each pipe execution, we extract any pending signals via sigtimedwait()
950 * and act on them.
951 *
952 * unsigned non_DFL_mask: a mask of such "special" signals
953 * sigset_t blocked_set: current blocked signal set
954 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000955 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +0000956 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000957 * "trap 'cmd' SIGxxx":
958 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +0000959 * after [v]fork, if we plan to be a shell:
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000960 * nothing for {} child shell (say, "true | { true; true; } | true")
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000961 * unset all traps if () shell.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000962 * after [v]fork, if we plan to exec:
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000963 * POSIX says pending signal mask is cleared in child - no need to clear it.
964 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000965 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000966 * Note: as a result, we do not use signal handlers much. The only uses
967 * are to count SIGCHLDs [disabled - bug somewhere, + bloat]
968 * and to restore tty pgrp on signal-induced exit.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000969 */
970
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000971//static void SIGCHLD_handler(int sig UNUSED_PARAM)
972//{
973// G.count_SIGCHLD++;
974//}
975
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000976static int check_and_run_traps(int sig)
Denis Vlasenkod5762932009-03-31 11:22:57 +0000977{
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000978 static const struct timespec zero_timespec = { 0, 0 };
Denis Vlasenkod5762932009-03-31 11:22:57 +0000979 smalluint save_rcode;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000980 int last_sig = 0;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000981
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000982 if (sig)
983 goto jump_in;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000984 while (1) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000985 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
Denis Vlasenkod5762932009-03-31 11:22:57 +0000986 if (sig <= 0)
987 break;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000988 jump_in:
989 last_sig = sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000990 if (G.traps && G.traps[sig]) {
991 if (G.traps[sig][0]) {
992 /* We have user-defined handler */
993 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000994 save_rcode = G.last_exitcode;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000995 builtin_eval(argv);
996 free(argv[1]);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000997 G.last_exitcode = save_rcode;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000998 } /* else: "" trap, ignoring signal */
999 continue;
1000 }
1001 /* not a trap: special action */
Denis Vlasenkod5762932009-03-31 11:22:57 +00001002 switch (sig) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001003// case SIGCHLD:
1004// G.count_SIGCHLD++;
1005// break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001006 case SIGINT:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001007 bb_putchar('\n');
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001008 G.flag_SIGINT = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001009 break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001010//TODO
1011// case SIGHUP: ...
1012// break;
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00001013 default: /* ignored: */
1014 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001015 break;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001016 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00001017 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001018 return last_sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001019}
1020
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001021#if ENABLE_HUSH_JOB
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001022
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001023/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
1024#define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001025/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001026#define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
1027
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001028/* Restores tty foreground process group, and exits.
1029 * May be called as signal handler for fatal signal
1030 * (will faithfully resend signal to itself, producing correct exit state)
1031 * or called directly with -EXITCODE.
1032 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001033static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001034static void sigexit(int sig)
1035{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001036 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001037 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001038
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001039 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001040 * tty pgrp then, only top-level shell process does that */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001041 if (G_interactive_fd && getpid() == G.root_pid)
1042 tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001043
1044 /* Not a signal, just exit */
1045 if (sig <= 0)
1046 _exit(- sig);
1047
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001048 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001049}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001050#else
1051
1052#define disable_restore_tty_pgrp_on_exit() ((void)0)
1053#define enable_restore_tty_pgrp_on_exit() ((void)0)
1054
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001055#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001056
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001057/* Restores tty foreground process group, and exits. */
1058static void hush_exit(int exitcode) NORETURN;
1059static void hush_exit(int exitcode)
1060{
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001061 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1062 /* Prevent recursion:
1063 * trap "echo Hi; exit" EXIT; exit
1064 */
1065 char *argv[] = { NULL, G.traps[0], NULL };
1066 G.traps[0] = NULL;
1067 G.exiting = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001068 builtin_eval(argv);
1069 free(argv[1]);
1070 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001071
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001072#if ENABLE_HUSH_JOB
1073 fflush(NULL); /* flush all streams */
1074 sigexit(- (exitcode & 0xff));
1075#else
1076 exit(exitcode);
1077#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001078}
1079
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001080
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001081static const char *set_cwd(void)
1082{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001083 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1084 * we must not try to free(bb_msg_unknown) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00001085 if (G.cwd == bb_msg_unknown)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001086 G.cwd = NULL;
Denis Vlasenko87a86552008-07-29 19:43:10 +00001087 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1088 if (!G.cwd)
1089 G.cwd = bb_msg_unknown;
1090 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001091}
1092
Denis Vlasenko83506862007-11-23 13:11:42 +00001093
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001094/* Get/check local shell variables */
1095static struct variable *get_local_var(const char *name)
1096{
1097 struct variable *cur;
1098 int len;
1099
1100 if (!name)
1101 return NULL;
1102 len = strlen(name);
1103 for (cur = G.top_var; cur; cur = cur->next) {
1104 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
1105 return cur;
1106 }
1107 return NULL;
1108}
1109
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001110static const char *get_local_var_value(const char *src)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001111{
1112 struct variable *var = get_local_var(src);
1113 if (var)
1114 return strchr(var->varstr, '=') + 1;
1115 return NULL;
1116}
1117
1118/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001119 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001120 * flg_export:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001121 * 0: do not export
1122 * 1: export
1123 * -1: if NAME is set, leave export status alone
1124 * if NAME is not set, do not export
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001125 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001126 */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001127#if BB_MMU
1128#define set_local_var(str, flg_export, flg_read_only) \
1129 set_local_var(str, flg_export)
1130#endif
1131static int set_local_var(char *str, int flg_export, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001132{
1133 struct variable *cur;
1134 char *value;
1135 int name_len;
1136
1137 value = strchr(str, '=');
1138 if (!value) { /* not expected to ever happen? */
1139 free(str);
1140 return -1;
1141 }
1142
1143 name_len = value - str + 1; /* including '=' */
1144 cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
1145 while (1) {
1146 if (strncmp(cur->varstr, str, name_len) != 0) {
1147 if (!cur->next) {
1148 /* Bail out. Note that now cur points
1149 * to last var in linked list */
1150 break;
1151 }
1152 cur = cur->next;
1153 continue;
1154 }
1155 /* We found an existing var with this name */
1156 *value = '\0';
1157 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001158#if !BB_MMU
1159 if (!flg_read_only)
1160#endif
1161 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001162 free(str);
1163 return -1;
1164 }
1165 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1166 unsetenv(str); /* just in case */
1167 *value = '=';
1168 if (strcmp(cur->varstr, str) == 0) {
1169 free_and_exp:
1170 free(str);
1171 goto exp;
1172 }
1173 if (cur->max_len >= strlen(str)) {
1174 /* This one is from startup env, reuse space */
1175 strcpy(cur->varstr, str);
1176 goto free_and_exp;
1177 }
1178 /* max_len == 0 signifies "malloced" var, which we can
1179 * (and has to) free */
1180 if (!cur->max_len)
1181 free(cur->varstr);
1182 cur->max_len = 0;
1183 goto set_str_and_exp;
1184 }
1185
1186 /* Not found - create next variable struct */
1187 cur->next = xzalloc(sizeof(*cur));
1188 cur = cur->next;
1189
1190 set_str_and_exp:
1191 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001192#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001193 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001194#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001195 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001196 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001197 cur->flg_export = 1;
1198 if (cur->flg_export) {
1199 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1200 return putenv(cur->varstr);
1201 }
1202 return 0;
1203}
1204
Mike Frysingerd690f682009-03-30 06:50:54 +00001205static int unset_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001206{
1207 struct variable *cur;
1208 struct variable *prev = prev; /* for gcc */
1209 int name_len;
1210
1211 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001212 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001213 name_len = strlen(name);
1214 cur = G.top_var;
1215 while (cur) {
1216 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1217 if (cur->flg_read_only) {
1218 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001219 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001220 }
1221 /* prev is ok to use here because 1st variable, HUSH_VERSION,
1222 * is ro, and we cannot reach this code on the 1st pass */
1223 prev->next = cur->next;
1224 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1225 bb_unsetenv(cur->varstr);
1226 if (!cur->max_len)
1227 free(cur->varstr);
1228 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001229 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001230 }
1231 prev = cur;
1232 cur = cur->next;
1233 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001234 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001235}
1236
Mike Frysinger98c52642009-04-02 10:02:37 +00001237#if ENABLE_SH_MATH_SUPPORT
1238#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1239#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1240static char *endofname(const char *name)
1241{
1242 char *p;
1243
1244 p = (char *) name;
1245 if (!is_name(*p))
1246 return p;
1247 while (*++p) {
1248 if (!is_in_name(*p))
1249 break;
1250 }
1251 return p;
1252}
1253
1254static void arith_set_local_var(const char *name, const char *val, int flags)
1255{
1256 /* arith code doesnt malloc space, so do it for it */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001257 char *var = xasprintf("%s=%s", name, val);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001258 set_local_var(var, flags, 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001259}
1260#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001261
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001262
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001263/*
1264 * in_str support
1265 */
1266static int static_get(struct in_str *i)
1267{
1268 int ch = *i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001269 if (ch != '\0')
1270 return ch;
1271 i->p--;
1272 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001273}
1274
1275static int static_peek(struct in_str *i)
1276{
1277 return *i->p;
1278}
1279
1280#if ENABLE_HUSH_INTERACTIVE
1281
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001282static void cmdedit_set_initial_prompt(void)
1283{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001284 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1285 G.PS1 = getenv("PS1");
1286 if (G.PS1 == NULL)
1287 G.PS1 = "\\w \\$ ";
1288 } else
1289 G.PS1 = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001290}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001291
1292static const char* setup_prompt_string(int promptmode)
1293{
1294 const char *prompt_str;
1295 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001296 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1297 /* Set up the prompt */
1298 if (promptmode == 0) { /* PS1 */
1299 free((char*)G.PS1);
1300 G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#');
1301 prompt_str = G.PS1;
1302 } else
1303 prompt_str = G.PS2;
1304 } else
1305 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001306 debug_printf("result '%s'\n", prompt_str);
1307 return prompt_str;
1308}
1309
1310static void get_user_input(struct in_str *i)
1311{
1312 int r;
1313 const char *prompt_str;
1314
1315 prompt_str = setup_prompt_string(i->promptmode);
1316#if ENABLE_FEATURE_EDITING
1317 /* Enable command line editing only while a command line
1318 * is actually being read */
1319 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001320 G.flag_SIGINT = 0;
1321 /* buglet: SIGINT will not make new prompt to appear _at once_,
1322 * only after <Enter>. (^C will work) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001323 r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001324 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001325 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001326 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001327 i->eof_flag = (r < 0);
1328 if (i->eof_flag) { /* EOF/error detected */
1329 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1330 G.user_input_buf[1] = '\0';
1331 }
1332#else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001333 do {
1334 G.flag_SIGINT = 0;
1335 fputs(prompt_str, stdout);
1336 fflush(stdout);
1337 G.user_input_buf[0] = r = fgetc(i->file);
1338 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001339//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001340 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001341 i->eof_flag = (r == EOF);
1342#endif
1343 i->p = G.user_input_buf;
1344}
1345
1346#endif /* INTERACTIVE */
1347
1348/* This is the magic location that prints prompts
1349 * and gets data back from the user */
1350static int file_get(struct in_str *i)
1351{
1352 int ch;
1353
1354 /* If there is data waiting, eat it up */
1355 if (i->p && *i->p) {
1356#if ENABLE_HUSH_INTERACTIVE
1357 take_cached:
1358#endif
1359 ch = *i->p++;
1360 if (i->eof_flag && !*i->p)
1361 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001362 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001363 } else {
1364 /* need to double check i->file because we might be doing something
1365 * more complicated by now, like sourcing or substituting. */
1366#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001367 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001368 do {
1369 get_user_input(i);
1370 } while (!*i->p); /* need non-empty line */
1371 i->promptmode = 1; /* PS2 */
1372 i->promptme = 0;
1373 goto take_cached;
1374 }
1375#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001376 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001377 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001378 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001379#if ENABLE_HUSH_INTERACTIVE
1380 if (ch == '\n')
1381 i->promptme = 1;
1382#endif
1383 return ch;
1384}
1385
Denis Vlasenko913a2012009-04-05 22:17:04 +00001386/* All callers guarantee this routine will never
1387 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001388 */
1389static int file_peek(struct in_str *i)
1390{
1391 int ch;
1392 if (i->p && *i->p) {
1393 if (i->eof_flag && !i->p[1])
1394 return EOF;
1395 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001396 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001397 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001398 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001399 i->eof_flag = (ch == EOF);
1400 i->peek_buf[0] = ch;
1401 i->peek_buf[1] = '\0';
1402 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001403 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001404 return ch;
1405}
1406
1407static void setup_file_in_str(struct in_str *i, FILE *f)
1408{
1409 i->peek = file_peek;
1410 i->get = file_get;
1411#if ENABLE_HUSH_INTERACTIVE
1412 i->promptme = 1;
1413 i->promptmode = 0; /* PS1 */
1414#endif
1415 i->file = f;
1416 i->p = NULL;
1417}
1418
1419static void setup_string_in_str(struct in_str *i, const char *s)
1420{
1421 i->peek = static_peek;
1422 i->get = static_get;
1423#if ENABLE_HUSH_INTERACTIVE
1424 i->promptme = 1;
1425 i->promptmode = 0; /* PS1 */
1426#endif
1427 i->p = s;
1428 i->eof_flag = 0;
1429}
1430
1431
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001432/*
1433 * o_string support
1434 */
1435#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001436
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001437static void o_reset(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001438{
1439 o->length = 0;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001440 o->o_quoted = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001441 if (o->data)
1442 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001443}
1444
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001445static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001446{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001447 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001448 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001449}
1450
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001451static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1452{
1453 free(o->data);
1454}
1455
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001456static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001457{
1458 if (o->length + len > o->maxlen) {
1459 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1460 o->data = xrealloc(o->data, 1 + o->maxlen);
1461 }
1462}
1463
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001464static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001465{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001466 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1467 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001468 o->data[o->length] = ch;
1469 o->length++;
1470 o->data[o->length] = '\0';
1471}
1472
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001473static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001474{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001475 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001476 memcpy(&o->data[o->length], str, len);
1477 o->length += len;
1478 o->data[o->length] = '\0';
1479}
1480
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001481#if !BB_MMU
1482static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00001483{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001484 o_addblock(o, str, strlen(str));
1485}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001486static void nommu_addchr(o_string *o, int ch)
1487{
1488 if (o)
1489 o_addchr(o, ch);
1490}
1491#else
1492#define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001493#endif
1494
1495static void o_addstr_with_NUL(o_string *o, const char *str)
1496{
1497 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00001498}
1499
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001500static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
Denis Vlasenko55789c62008-06-18 16:30:42 +00001501{
1502 while (len) {
1503 o_addchr(o, *str);
1504 if (*str++ == '\\'
1505 && (*str != '*' && *str != '?' && *str != '[')
1506 ) {
1507 o_addchr(o, '\\');
1508 }
1509 len--;
1510 }
1511}
1512
Eric Andersen25f27032001-04-26 23:22:31 +00001513/* My analysis of quoting semantics tells me that state information
1514 * is associated with a destination, not a source.
1515 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001516static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001517{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001518 int sz = 1;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001519 char *found = strchr("*?[\\", ch);
1520 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001521 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001522 o_grow_by(o, sz);
1523 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001524 o->data[o->length] = '\\';
1525 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001526 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001527 o->data[o->length] = ch;
1528 o->length++;
1529 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001530}
1531
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001532static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001533{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001534 int sz = 1;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001535 if (o->o_escape && strchr("*?[\\", ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001536 sz++;
1537 o->data[o->length] = '\\';
1538 o->length++;
1539 }
1540 o_grow_by(o, sz);
1541 o->data[o->length] = ch;
1542 o->length++;
1543 o->data[o->length] = '\0';
1544}
1545
1546static void o_addQstr(o_string *o, const char *str, int len)
1547{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001548 if (!o->o_escape) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001549 o_addblock(o, str, len);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001550 return;
1551 }
1552 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001553 char ch;
1554 int sz;
1555 int ordinary_cnt = strcspn(str, "*?[\\");
1556 if (ordinary_cnt > len) /* paranoia */
1557 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001558 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001559 if (ordinary_cnt == len)
1560 return;
1561 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001562 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001563
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001564 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001565 sz = 1;
1566 if (ch) { /* it is necessarily one of "*?[\\" */
1567 sz++;
1568 o->data[o->length] = '\\';
1569 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001570 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001571 o_grow_by(o, sz);
1572 o->data[o->length] = ch;
1573 o->length++;
1574 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001575 }
1576}
1577
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001578/* A special kind of o_string for $VAR and `cmd` expansion.
1579 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001580 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001581 * list[i] contains an INDEX (int!) into this string data.
1582 * It means that if list[] needs to grow, data needs to be moved higher up
1583 * but list[i]'s need not be modified.
1584 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001585 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001586 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1587 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001588#if DEBUG_EXPAND || DEBUG_GLOB
1589static void debug_print_list(const char *prefix, o_string *o, int n)
1590{
1591 char **list = (char**)o->data;
1592 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1593 int i = 0;
1594 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1595 prefix, list, n, string_start, o->length, o->maxlen);
1596 while (i < n) {
1597 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1598 o->data + (int)list[i] + string_start,
1599 o->data + (int)list[i] + string_start);
1600 i++;
1601 }
1602 if (n) {
1603 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001604 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001605 }
1606}
1607#else
1608#define debug_print_list(prefix, o, n) ((void)0)
1609#endif
1610
1611/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1612 * in list[n] so that it points past last stored byte so far.
1613 * It returns n+1. */
1614static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001615{
1616 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001617 int string_start;
1618 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001619
1620 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001621 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1622 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001623 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001624 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001625 /* list[n] points to string_start, make space for 16 more pointers */
1626 o->maxlen += 0x10 * sizeof(list[0]);
1627 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00001628 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001629 memmove(list + n + 0x10, list + n, string_len);
1630 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001631 } else {
1632 debug_printf_list("list[%d]=%d string_start=%d\n",
1633 n, string_len, string_start);
1634 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001635 } else {
1636 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001637 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1638 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001639 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
1640 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001641 o->has_empty_slot = 0;
1642 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001643 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001644 return n + 1;
1645}
1646
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001647/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001648static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001649{
1650 char **list = (char**)o->data;
1651 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1652
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001653 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001654}
1655
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001656/* o_glob performs globbing on last list[], saving each result
Denis Vlasenko55789c62008-06-18 16:30:42 +00001657 * as a new list[]. */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001658static int o_glob(o_string *o, int n)
1659{
1660 glob_t globdata;
1661 int gr;
1662 char *pattern;
1663
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001664 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001665 if (!o->data)
1666 return o_save_ptr_helper(o, n);
1667 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001668 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001669 if (!glob_needed(pattern)) {
1670 literal:
1671 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001672 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001673 return o_save_ptr_helper(o, n);
1674 }
1675
1676 memset(&globdata, 0, sizeof(globdata));
1677 gr = glob(pattern, 0, NULL, &globdata);
1678 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1679 if (gr == GLOB_NOSPACE)
1680 bb_error_msg_and_die("out of memory during glob");
1681 if (gr == GLOB_NOMATCH) {
1682 globfree(&globdata);
1683 goto literal;
1684 }
1685 if (gr != 0) { /* GLOB_ABORTED ? */
1686//TODO: testcase for bad glob pattern behavior
1687 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1688 }
1689 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1690 char **argv = globdata.gl_pathv;
1691 o->length = pattern - o->data; /* "forget" pattern */
1692 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001693 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001694 n = o_save_ptr_helper(o, n);
1695 argv++;
1696 if (!*argv)
1697 break;
1698 }
1699 }
1700 globfree(&globdata);
1701 if (DEBUG_GLOB)
1702 debug_print_list("o_glob returning", o, n);
1703 return n;
1704}
1705
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001706/* If o->o_glob == 1, glob the string so far remembered.
1707 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001708static int o_save_ptr(o_string *o, int n)
1709{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00001710 if (o->o_glob) { /* if globbing is requested */
1711 /* If o->has_empty_slot, list[n] was already globbed
1712 * (if it was requested back then when it was filled)
1713 * so don't do that again! */
1714 if (!o->has_empty_slot)
1715 return o_glob(o, n); /* o_save_ptr_helper is inside */
1716 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001717 return o_save_ptr_helper(o, n);
1718}
1719
1720/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001721static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001722{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001723 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001724 int string_start;
1725
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001726 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
1727 if (DEBUG_EXPAND)
1728 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001729 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001730 list = (char**)o->data;
1731 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1732 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001733 while (n) {
1734 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001735 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001736 }
1737 return list;
1738}
1739
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001740
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001741/* Expansion can recurse */
1742#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001743static int process_command_subs(o_string *dest, const char *s);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001744#endif
1745static char *expand_string_to_string(const char *str);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001746#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001747#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001748 parse_stream_dquoted(dest, input, dquote_end)
1749#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001750static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001751 o_string *dest,
1752 struct in_str *input,
1753 int dquote_end);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001754
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001755/* expand_strvec_to_strvec() takes a list of strings, expands
1756 * all variable references within and returns a pointer to
1757 * a list of expanded strings, possibly with larger number
1758 * of strings. (Think VAR="a b"; echo $VAR).
1759 * This new list is allocated as a single malloc block.
1760 * NULL-terminated list of char* pointers is at the beginning of it,
1761 * followed by strings themself.
1762 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00001763
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001764/* Store given string, finalizing the word and starting new one whenever
1765 * we encounter IFS char(s). This is used for expanding variable values.
1766 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
1767static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00001768{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001769 while (1) {
1770 int word_len = strcspn(str, G.ifs);
1771 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001772 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001773 o_addQstr(output, str, word_len);
1774 else /* protect backslashes against globbing up :) */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001775 o_addblock_duplicate_backslash(output, str, word_len);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001776 str += word_len;
1777 }
1778 if (!*str) /* EOL - do not finalize word */
1779 break;
1780 o_addchr(output, '\0');
1781 debug_print_list("expand_on_ifs", output, n);
1782 n = o_save_ptr(output, n);
1783 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00001784 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001785 debug_print_list("expand_on_ifs[1]", output, n);
1786 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001787}
1788
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001789/* Helper to expand $((...)) and heredoc body. These act as if
1790 * they are in double quotes, with the exception that they are not :).
1791 * Just the rules are similar: "expand only $var and `cmd`"
1792 *
1793 * Returns malloced string.
1794 * As an optimization, we return NULL if expansion is not needed.
1795 */
1796static char *expand_pseudo_dquoted(const char *str)
1797{
1798 char *exp_str;
1799 struct in_str input;
1800 o_string dest = NULL_O_STRING;
1801
1802 if (strchr(str, '$') == NULL
1803#if ENABLE_HUSH_TICK
1804 && strchr(str, '`') == NULL
1805#endif
1806 ) {
1807 return NULL;
1808 }
1809
1810 /* We need to expand. Example:
1811 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
1812 */
1813 setup_string_in_str(&input, str);
1814 parse_stream_dquoted(NULL, &dest, &input, EOF);
1815 //bb_error_msg("'%s' -> '%s'", str, dest.data);
1816 exp_str = expand_string_to_string(dest.data);
1817 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
1818 o_free_unsafe(&dest);
1819 return exp_str;
1820}
1821
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001822/* Expand all variable references in given string, adding words to list[]
1823 * at n, n+1,... positions. Return updated n (so that list[n] is next one
1824 * to be filled). This routine is extremely tricky: has to deal with
1825 * variables/parameters with whitespace, $* and $@, and constructs like
1826 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
1827static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00001828{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001829 /* or_mask is either 0 (normal case) or 0x80
1830 * (expansion of right-hand side of assignment == 1-element expand.
1831 * It will also do no globbing, and thus we must not backslash-quote!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001832
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001833 char first_ch, ored_ch;
1834 int i;
1835 const char *val;
Mike Frysingera4f331d2009-04-07 06:03:22 +00001836 char *dyn_val, *p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001837
Mike Frysingera4f331d2009-04-07 06:03:22 +00001838 dyn_val = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001839 ored_ch = 0;
1840
1841 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
1842 debug_print_list("expand_vars_to_list", output, n);
1843 n = o_save_ptr(output, n);
1844 debug_print_list("expand_vars_to_list[0]", output, n);
1845
1846 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
1847#if ENABLE_HUSH_TICK
1848 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001849#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001850#if ENABLE_SH_MATH_SUPPORT
1851 char arith_buf[sizeof(arith_t)*3 + 2];
1852#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001853 o_addblock(output, arg, p - arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001854 debug_print_list("expand_vars_to_list[1]", output, n);
1855 arg = ++p;
1856 p = strchr(p, SPECIAL_VAR_SYMBOL);
1857
1858 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
1859 /* "$@" is special. Even if quoted, it can still
1860 * expand to nothing (not even an empty string) */
1861 if ((first_ch & 0x7f) != '@')
1862 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001863
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001864 val = NULL;
1865 switch (first_ch & 0x7f) {
1866 /* Highest bit in first_ch indicates that var is double-quoted */
1867 case '$': /* pid */
1868 val = utoa(G.root_pid);
1869 break;
1870 case '!': /* bg pid */
1871 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
1872 break;
1873 case '?': /* exitcode */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00001874 val = utoa(G.last_exitcode);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001875 break;
1876 case '#': /* argc */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001877 if (arg[1] != SPECIAL_VAR_SYMBOL)
1878 /* actually, it's a ${#var} */
1879 goto case_default;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001880 val = utoa(G.global_argc ? G.global_argc-1 : 0);
1881 break;
1882 case '*':
1883 case '@':
1884 i = 1;
1885 if (!G.global_argv[i])
1886 break;
1887 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
1888 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001889 smallint sv = output->o_escape;
1890 /* unquoted var's contents should be globbed, so don't escape */
1891 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001892 while (G.global_argv[i]) {
1893 n = expand_on_ifs(output, n, G.global_argv[i]);
1894 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
1895 if (G.global_argv[i++][0] && G.global_argv[i]) {
1896 /* this argv[] is not empty and not last:
1897 * put terminating NUL, start new word */
1898 o_addchr(output, '\0');
1899 debug_print_list("expand_vars_to_list[2]", output, n);
1900 n = o_save_ptr(output, n);
1901 debug_print_list("expand_vars_to_list[3]", output, n);
1902 }
1903 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001904 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001905 } else
1906 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
1907 * and in this case should treat it like '$*' - see 'else...' below */
1908 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
1909 while (1) {
1910 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1911 if (++i >= G.global_argc)
1912 break;
1913 o_addchr(output, '\0');
1914 debug_print_list("expand_vars_to_list[4]", output, n);
1915 n = o_save_ptr(output, n);
1916 }
1917 } else { /* quoted $*: add as one word */
1918 while (1) {
1919 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1920 if (!G.global_argv[++i])
1921 break;
1922 if (G.ifs[0])
1923 o_addchr(output, G.ifs[0]);
1924 }
1925 }
1926 break;
1927 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
1928 /* "Empty variable", used to make "" etc to not disappear */
1929 arg++;
1930 ored_ch = 0x80;
1931 break;
1932#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001933 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001934 *p = '\0';
1935 arg++;
1936//TODO: can we just stuff it into "output" directly?
1937 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001938 process_command_subs(&subst_result, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001939 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
1940 val = subst_result.data;
1941 goto store_val;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001942#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00001943#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001944 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001945 arith_eval_hooks_t hooks;
Mike Frysinger98c52642009-04-02 10:02:37 +00001946 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00001947 int errcode;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001948 char *exp_str;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001949
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001950 arg++; /* skip '+' */
1951 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00001952 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001953
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001954 exp_str = expand_pseudo_dquoted(arg);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001955 hooks.lookupvar = get_local_var_value;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001956 hooks.setvar = arith_set_local_var;
1957 hooks.endofname = endofname;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001958 res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
1959 free(exp_str);
1960
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001961 if (errcode < 0) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001962 const char *msg = "error in arithmetic";
Mike Frysinger98c52642009-04-02 10:02:37 +00001963 switch (errcode) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001964 case -3:
1965 msg = "exponent less than 0";
1966 break;
1967 case -2:
1968 msg = "divide by 0";
1969 break;
1970 case -5:
1971 msg = "expression recursion loop detected";
1972 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00001973 }
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001974 die_if_script(msg);
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001975 }
Mike Frysinger98c52642009-04-02 10:02:37 +00001976 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001977 sprintf(arith_buf, arith_t_fmt, res);
1978 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00001979 break;
1980 }
1981#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001982 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001983 case_default: {
Denis Vlasenko232be3e2009-04-05 09:16:00 +00001984 bool exp_len = false;
1985 bool exp_null = false;
1986 char *var = arg;
1987 char exp_save = exp_save; /* for compiler */
1988 char exp_op = exp_op; /* for compiler */
1989 char *exp_word = exp_word; /* for compiler */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001990 size_t exp_off = 0;
Denis Vlasenko232be3e2009-04-05 09:16:00 +00001991
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001992 *p = '\0';
1993 arg[0] = first_ch & 0x7f;
Mike Frysinger6379bb42009-03-28 18:55:03 +00001994
1995 /* prepare for expansions */
1996 if (var[0] == '#') {
1997 /* handle length expansion ${#var} */
1998 exp_len = true;
1999 ++var;
2000 } else {
2001 /* maybe handle parameter expansion */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002002 exp_off = strcspn(var, ":-=+?%#");
Mike Frysinger6379bb42009-03-28 18:55:03 +00002003 if (!var[exp_off])
2004 exp_off = 0;
2005 if (exp_off) {
2006 exp_save = var[exp_off];
2007 exp_null = exp_save == ':';
2008 exp_word = var + exp_off;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002009 if (exp_null)
2010 ++exp_word;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002011 exp_op = *exp_word++;
2012 var[exp_off] = '\0';
2013 }
2014 }
2015
2016 /* lookup the variable in question */
2017 if (isdigit(var[0])) {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00002018 /* handle_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002019 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002020 if (i < G.global_argc)
2021 val = G.global_argv[i];
2022 /* else val remains NULL: $N with too big N */
2023 } else
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002024 val = get_local_var_value(var);
Mike Frysinger6379bb42009-03-28 18:55:03 +00002025
2026 /* handle any expansions */
2027 if (exp_len) {
2028 debug_printf_expand("expand: length of '%s' = ", val);
2029 val = utoa(val ? strlen(val) : 0);
2030 debug_printf_expand("%s\n", val);
2031 } else if (exp_off) {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002032 if (exp_op == '%' || exp_op == '#') {
Mike Frysinger57e74672009-04-09 23:00:33 +00002033 if (val) {
2034 /* we need to do a pattern match */
2035 bool zero;
2036 char *loc;
2037 scan_t scan = pick_scan(exp_op, *exp_word, &zero);
2038 if (exp_op == *exp_word) /* ## or %% */
2039 ++exp_word;
2040 val = dyn_val = xstrdup(val);
2041 loc = scan(dyn_val, exp_word, zero);
2042 if (zero)
2043 val = loc;
2044 else
2045 *loc = '\0';
2046 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002047 } else {
2048 /* we need to do an expansion */
2049 int exp_test = (!val || (exp_null && !val[0]));
2050 if (exp_op == '+')
2051 exp_test = !exp_test;
2052 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
2053 exp_null ? "true" : "false", exp_test);
2054 if (exp_test) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002055 if (exp_op == '?') {
2056//TODO: how interactive bash aborts expansion mid-command?
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002057 /* ${var?[error_msg_if_unset]} */
2058 /* ${var:?[error_msg_if_unset_or_null]} */
2059 /* mimic bash message */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002060 die_if_script("%s: %s",
2061 var,
2062 exp_word[0] ? exp_word : "parameter null or not set"
2063 );
2064 } else {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002065 val = exp_word;
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002066 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002067
Mike Frysingera4f331d2009-04-07 06:03:22 +00002068 if (exp_op == '=') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002069 /* ${var=[word]} or ${var:=[word]} */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002070 if (isdigit(var[0]) || var[0] == '#') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002071 /* mimic bash message */
2072 die_if_script("$%s: cannot assign in this way", var);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002073 val = NULL;
2074 } else {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002075 char *new_var = xasprintf("%s=%s", var, val);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002076 set_local_var(new_var, -1, 0);
2077 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002078 }
2079 }
2080 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002081
Mike Frysinger6379bb42009-03-28 18:55:03 +00002082 var[exp_off] = exp_save;
2083 }
2084
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002085 arg[0] = first_ch;
2086#if ENABLE_HUSH_TICK
2087 store_val:
2088#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002089 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002090 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002091 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002092 /* unquoted var's contents should be globbed, so don't escape */
2093 smallint sv = output->o_escape;
2094 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002095 n = expand_on_ifs(output, n, val);
2096 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002097 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002098 }
2099 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002100 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002101 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002102 } /* default: */
2103 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002104 if (val) {
2105 o_addQstr(output, val, strlen(val));
2106 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002107 free(dyn_val);
2108 dyn_val = NULL;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002109 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002110 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00002111 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002112
2113#if ENABLE_HUSH_TICK
2114 o_free(&subst_result);
2115#endif
2116 arg = ++p;
2117 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
2118
2119 if (arg[0]) {
2120 debug_print_list("expand_vars_to_list[a]", output, n);
2121 /* this part is literal, and it was already pre-quoted
2122 * if needed (much earlier), do not use o_addQstr here! */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002123 o_addstr_with_NUL(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002124 debug_print_list("expand_vars_to_list[b]", output, n);
2125 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2126 && !(ored_ch & 0x80) /* and all vars were not quoted. */
2127 ) {
2128 n--;
2129 /* allow to reuse list[n] later without re-growth */
2130 output->has_empty_slot = 1;
2131 } else {
2132 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00002133 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002134 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00002135}
2136
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002137static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002138{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002139 int n;
2140 char **list;
2141 char **v;
2142 o_string output = NULL_O_STRING;
2143
2144 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002145 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002146 /* (unquoted $var will temporarily switch it off) */
2147 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002148 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002149
2150 n = 0;
2151 v = argv;
2152 while (*v) {
2153 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
2154 v++;
2155 }
2156 debug_print_list("expand_variables", &output, n);
2157
2158 /* output.data (malloced in one block) gets returned in "list" */
2159 list = o_finalize_list(&output, n);
2160 debug_print_strings("expand_variables[1]", list);
2161 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00002162}
2163
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002164static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002165{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002166 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00002167}
2168
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002169/* Used for expansion of right hand of assignments */
2170/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2171 * "v=/bin/c*" */
2172static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002173{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002174 char *argv[2], **list;
2175
2176 argv[0] = (char*)str;
2177 argv[1] = NULL;
2178 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2179 if (HUSH_DEBUG)
2180 if (!list[0] || list[1])
2181 bb_error_msg_and_die("BUG in varexp2");
2182 /* actually, just move string 2*sizeof(char*) bytes back */
2183 overlapping_strcpy((char*)list, list[0]);
2184 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2185 return (char*)list;
2186}
2187
2188/* Used for "eval" builtin */
2189static char* expand_strvec_to_string(char **argv)
2190{
2191 char **list;
2192
2193 list = expand_variables(argv, 0x80);
2194 /* Convert all NULs to spaces */
2195 if (list[0]) {
2196 int n = 1;
2197 while (list[n]) {
2198 if (HUSH_DEBUG)
2199 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2200 bb_error_msg_and_die("BUG in varexp3");
2201 list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */
2202 n++;
2203 }
2204 }
2205 overlapping_strcpy((char*)list, list[0]);
2206 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2207 return (char*)list;
2208}
2209
2210static char **expand_assignments(char **argv, int count)
2211{
2212 int i;
2213 char **p = NULL;
2214 /* Expand assignments into one string each */
2215 for (i = 0; i < count; i++) {
2216 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2217 }
2218 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002219}
2220
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002221
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002222#if BB_MMU
2223void re_execute_shell(const char *s, int is_heredoc); /* never called */
2224#define clean_up_after_re_execute() ((void)0)
2225static void reset_traps_to_defaults(void)
2226{
2227 unsigned sig;
2228 int dirty;
2229
2230 if (!G.traps)
2231 return;
2232 dirty = 0;
2233 for (sig = 0; sig < NSIG; sig++) {
2234 if (!G.traps[sig])
2235 continue;
2236 free(G.traps[sig]);
2237 G.traps[sig] = NULL;
2238 /* There is no signal for 0 (EXIT) */
2239 if (sig == 0)
2240 continue;
2241 /* there was a trap handler, we are removing it
2242 * (if sig has non-DFL handling,
2243 * we don't need to do anything) */
2244 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
2245 continue;
2246 sigdelset(&G.blocked_set, sig);
2247 dirty = 1;
2248 }
2249 if (dirty)
2250 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
2251}
2252
2253#else /* !BB_MMU */
2254
2255static void re_execute_shell(const char *s, int is_heredoc) NORETURN;
2256static void re_execute_shell(const char *s, int is_heredoc)
2257{
2258 char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4];
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002259 char *heredoc_argv[4];
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002260 struct variable *cur;
2261 char **argv, **pp, **pp2;
2262 unsigned cnt;
2263
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002264 if (is_heredoc) {
2265 argv = heredoc_argv;
2266 argv[0] = (char *) G.argv0_for_re_execing;
2267 argv[1] = (char *) "-<";
2268 argv[2] = (char *) s;
2269 argv[3] = NULL;
Denis Vlasenkof50caac2009-04-09 01:40:15 +00002270 pp = &argv[3]; /* used as pointer to empty environment */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002271 goto do_exec;
2272 }
2273
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002274 sprintf(param_buf, "-$%x:%x:%x" USE_HUSH_LOOPS(":%x")
2275 , (unsigned) G.root_pid
2276 , (unsigned) G.last_bg_pid
2277 , (unsigned) G.last_exitcode
2278 USE_HUSH_LOOPS(, G.depth_of_loop)
2279 );
2280 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...>
2281 * 3:-c 4:<cmd> <argN...> 5:NULL
2282 */
2283 cnt = 5 + G.global_argc;
2284 for (cur = G.top_var; cur; cur = cur->next) {
2285 if (!cur->flg_export || cur->flg_read_only)
2286 cnt += 2;
2287 }
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002288 G.argv_from_re_execing = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002289 *pp++ = (char *) G.argv0_for_re_execing;
2290 *pp++ = param_buf;
2291 for (cur = G.top_var; cur; cur = cur->next) {
2292 if (cur->varstr == hush_version_str)
2293 continue;
2294 if (cur->flg_read_only) {
2295 *pp++ = (char *) "-R";
2296 *pp++ = cur->varstr;
2297 } else if (!cur->flg_export) {
2298 *pp++ = (char *) "-V";
2299 *pp++ = cur->varstr;
2300 }
2301 }
2302//TODO: pass functions
2303 /* We can pass activated traps here. Say, -Tnn:trap_string
2304 *
2305 * However, POSIX says that subshells reset signals with traps
2306 * to SIG_DFL.
2307 * I tested bash-3.2 and it not only does that with true subshells
2308 * of the form ( list ), but with any forked children shells.
2309 * I set trap "echo W" WINCH; and then tried:
2310 *
2311 * { echo 1; sleep 20; echo 2; } &
2312 * while true; do echo 1; sleep 20; echo 2; break; done &
2313 * true | { echo 1; sleep 20; echo 2; } | cat
2314 *
2315 * In all these cases sending SIGWINCH to the child shell
2316 * did not run the trap. If I add trap "echo V" WINCH;
2317 * _inside_ group (just before echo 1), it works.
2318 *
2319 * I conclude it means we don't need to pass active traps here.
2320 * exec syscall below resets them to SIG_DFL for us.
2321 */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002322 *pp++ = (char *) "-c";
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002323 *pp++ = (char *) s;
2324 pp2 = G.global_argv;
2325 while (*pp2)
2326 *pp++ = *pp2++;
2327 /* *pp = NULL; - is already there */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002328 pp = environ;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002329
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002330 do_exec:
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002331 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
2332 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002333 execve(bb_busybox_exec_path, argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002334 /* Fallback. Useful for init=/bin/hush usage etc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002335 if (argv[0][0] == '/')
2336 execve(argv[0], argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002337 xfunc_error_retval = 127;
2338 bb_error_msg_and_die("can't re-execute the shell");
2339}
2340
2341static void clean_up_after_re_execute(void)
2342{
2343 char **pp = G.argv_from_re_execing;
2344 if (pp) {
2345 /* Must match re_execute_shell's allocations (if any) */
2346 free(pp);
2347 G.argv_from_re_execing = NULL;
2348 }
2349}
2350#endif /* !BB_MMU */
2351
2352
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002353static void setup_heredoc(struct redir_struct *redir)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002354{
2355 struct fd_pair pair;
2356 pid_t pid;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002357 int len, written;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002358 /* the _body_ of heredoc (misleading field name) */
2359 const char *heredoc = redir->rd_filename;
2360 char *expanded;
2361
2362 expanded = NULL;
2363 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
2364 expanded = expand_pseudo_dquoted(heredoc);
2365 if (expanded)
2366 heredoc = expanded;
2367 }
2368 len = strlen(heredoc);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002369
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002370 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002371 xpiped_pair(pair);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002372 xmove_fd(pair.rd, redir->rd_fd);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002373
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002374 /* Try writing without forking. Newer kernels have
2375 * dynamically growing pipes. Must use non-blocking write! */
2376 ndelay_on(pair.wr);
2377 while (1) {
2378 written = write(pair.wr, heredoc, len);
2379 if (written <= 0)
2380 break;
2381 len -= written;
2382 if (len == 0) {
2383 close(pair.wr);
Denis Vlasenko1943aec2009-04-09 14:15:57 +00002384 free(expanded);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002385 return;
2386 }
2387 heredoc += written;
2388 }
2389 ndelay_off(pair.wr);
2390
2391 /* Okay, pipe buffer was not big enough */
2392 /* Note: we must not create a stray child (bastard? :)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002393 * for the unsuspecting parent process. Child creates a grandchild
2394 * and exits before parent execs the process which consumes heredoc
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002395 * (that exec happens after we return from this function) */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002396 pid = vfork();
2397 if (pid < 0)
2398 bb_perror_msg_and_die("vfork");
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002399 if (pid == 0) {
2400 /* child */
2401 pid = BB_MMU ? fork() : vfork();
2402 if (pid < 0)
2403 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
2404 if (pid != 0)
2405 _exit(0);
2406 /* grandchild */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002407 close(redir->rd_fd); /* read side of the pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002408#if BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002409 full_write(pair.wr, heredoc, len); /* may loop or block */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002410 _exit(0);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002411#else
2412 /* Delegate blocking writes to another process */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002413 disable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002414 xmove_fd(pair.wr, STDOUT_FILENO);
2415 re_execute_shell(heredoc, 1);
2416#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002417 }
2418 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002419 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002420 clean_up_after_re_execute();
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002421 close(pair.wr);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002422 free(expanded);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002423 wait(NULL); /* wait till child has died */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002424}
2425
Eric Andersen25f27032001-04-26 23:22:31 +00002426/* squirrel != NULL means we squirrel away copies of stdin, stdout,
2427 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002428static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00002429{
2430 int openfd, mode;
2431 struct redir_struct *redir;
2432
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002433 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002434 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002435 /* rd_fd<<HERE case */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002436 if (squirrel && redir->rd_fd < 3) {
2437 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002438 }
2439 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
2440 * of the heredoc */
2441 debug_printf_parse("set heredoc '%s'\n",
2442 redir->rd_filename);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002443 setup_heredoc(redir);
Eric Andersen817e73c2001-06-06 17:56:09 +00002444 continue;
2445 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002446
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002447 if (redir->rd_dup == REDIRFD_TO_FILE) {
2448 /* rd_fd<*>file case (<*> is <,>,>>,<>) */
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002449 char *p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002450 if (redir->rd_filename == NULL) {
2451 /* Something went wrong in the parse.
2452 * Pretend it didn't happen */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002453 bb_error_msg("bug in redirect parse");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002454 continue;
2455 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00002456 mode = redir_table[redir->rd_type].mode;
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002457 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002458 openfd = open_or_warn(p, mode);
2459 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00002460 if (openfd < 0) {
2461 /* this could get lost if stderr has been redirected, but
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002462 * bash and ash both lose it as well (though zsh doesn't!) */
2463//what the above comment tries to say?
Eric Andersen25f27032001-04-26 23:22:31 +00002464 return 1;
2465 }
2466 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002467 /* rd_fd<*>rd_dup or rd_fd<*>- cases */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002468 openfd = redir->rd_dup;
Eric Andersen25f27032001-04-26 23:22:31 +00002469 }
2470
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002471 if (openfd != redir->rd_fd) {
2472 if (squirrel && redir->rd_fd < 3) {
2473 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Eric Andersen25f27032001-04-26 23:22:31 +00002474 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002475 if (openfd == REDIRFD_CLOSE) {
2476 /* "n>-" means "close me" */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002477 close(redir->rd_fd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002478 } else {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002479 xdup2(openfd, redir->rd_fd);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002480 if (redir->rd_dup == REDIRFD_TO_FILE)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002481 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002482 }
Eric Andersen25f27032001-04-26 23:22:31 +00002483 }
2484 }
2485 return 0;
2486}
2487
2488static void restore_redirects(int squirrel[])
2489{
2490 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002491 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002492 fd = squirrel[i];
2493 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002494 /* We simply die on error */
2495 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00002496 }
2497 }
2498}
2499
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002500
Denis Vlasenkoa0e65122009-04-05 23:39:14 +00002501#if !DEBUG_CLEAN
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002502#define free_pipe_list(head, indent) free_pipe_list(head)
2503#define free_pipe(pi, indent) free_pipe(pi)
2504#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002505static void free_pipe_list(struct pipe *head, int indent);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002506
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002507/* Return code is the exit status of the pipe */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002508static void free_pipe(struct pipe *pi, int indent)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002509{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002510 char **p;
2511 struct command *command;
2512 struct redir_struct *r, *rnext;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002513 int a, i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002514
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002515 if (pi->stopped_cmds > 0) /* why? */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002516 return;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002517 debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid());
2518 for (i = 0; i < pi->num_cmds; i++) {
2519 command = &pi->cmds[i];
2520 debug_printf_clean("%s command %d:\n", indenter(indent), i);
2521 if (command->argv) {
2522 for (a = 0, p = command->argv; *p; a++, p++) {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002523 debug_printf_clean("%s argv[%d] = %s\n",
2524 indenter(indent), a, *p);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002525 }
2526 free_strings(command->argv);
2527 command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002528 }
2529 /* not "else if": on syntax error, we may have both! */
2530 if (command->group) {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002531 debug_printf_clean("%s begin group (grp_type:%d)\n",
2532 indenter(indent), command->grp_type);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002533 free_pipe_list(command->group, indent+3);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002534 debug_printf_clean("%s end group\n", indenter(indent));
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002535 command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002536 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002537#if !BB_MMU
2538 free(command->group_as_string);
2539 command->group_as_string = NULL;
2540#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002541 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002542 debug_printf_clean("%s redirect %d%s", indenter(indent),
2543 r->fd, redir_table[r->rd_type].descrip);
2544 /* guard against the case >$FOO, where foo is unset or blank */
2545 if (r->rd_filename) {
2546 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
2547 free(r->rd_filename);
2548 r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002549 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002550 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002551 rnext = r->next;
2552 free(r);
2553 }
2554 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002555 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002556 free(pi->cmds); /* children are an array, they get freed all at once */
2557 pi->cmds = NULL;
2558#if ENABLE_HUSH_JOB
2559 free(pi->cmdtext);
2560 pi->cmdtext = NULL;
2561#endif
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002562}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002563
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002564static void free_pipe_list(struct pipe *head, int indent)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002565{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002566 struct pipe *pi, *next;
2567
2568 for (pi = head; pi; pi = next) {
2569#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002570 debug_printf_clean("%s pipe reserved word %d\n", indenter(indent), pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002571#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002572 free_pipe(pi, indent);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002573 debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup);
2574 next = pi->next;
2575 /*pi->next = NULL;*/
2576 free(pi);
2577 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002578}
2579
2580
Denis Vlasenkocc90f442009-04-08 16:40:34 +00002581#if BB_MMU
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002582#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
2583 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
2584#define pseudo_exec(nommu_save, command, argv_expanded) \
2585 pseudo_exec(command, argv_expanded)
2586#endif
2587
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002588/* Called after [v]fork() in run_pipe, or from builtin_exec.
Denis Vlasenko8412d792007-10-01 09:59:47 +00002589 * Never returns.
2590 * XXX no exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00002591 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002592 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002593static void pseudo_exec_argv(nommu_save_t *nommu_save,
2594 char **argv, int assignment_cnt,
2595 char **argv_expanded) NORETURN;
2596static void pseudo_exec_argv(nommu_save_t *nommu_save,
2597 char **argv, int assignment_cnt,
2598 char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00002599{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002600 char **new_env;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002601
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002602 /* Case when we are here: ... | var=val | ... */
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002603 if (!argv[assignment_cnt])
Denis Vlasenko1359da62007-04-21 23:27:30 +00002604 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002605
Denis Vlasenko9504e442008-10-29 01:19:15 +00002606 new_env = expand_assignments(argv, assignment_cnt);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002607#if BB_MMU
2608 putenv_all(new_env);
2609 free(new_env); /* optional */
2610#else
2611 nommu_save->new_env = new_env;
2612 nommu_save->old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002613#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002614 if (argv_expanded) {
2615 argv = argv_expanded;
2616 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00002617 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002618#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002619 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002620#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002621 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002622
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002623 /* On NOMMU, we must never block!
2624 * Example: { sleep 99999 | read line } & echo Ok
2625 * read builtin will block on read syscall, leaving parent blocked
2626 * in vfork. Therefore we can't do this:
2627 */
2628#if BB_MMU
2629 /* Check if the command matches any of the builtins.
Denis Vlasenko1359da62007-04-21 23:27:30 +00002630 * Depending on context, this might be redundant. But it's
2631 * easier to waste a few CPU cycles than it is to figure out
2632 * if this is one of those cases.
2633 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002634 {
2635 int rcode;
2636 const struct built_in_command *x;
2637 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
2638 if (strcmp(argv[0], x->cmd) == 0) {
2639 debug_printf_exec("running builtin '%s'\n",
2640 argv[0]);
2641 rcode = x->function(argv);
2642 fflush(NULL);
2643 _exit(rcode);
2644 }
Eric Andersen94ac2442001-05-22 19:05:18 +00002645 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00002646 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002647#endif
Eric Andersen78a7c992001-05-15 16:30:25 +00002648
Denis Vlasenko80d14be2007-04-10 23:03:30 +00002649#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002650 /* Check if the command matches any busybox applets */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002651 if (strchr(argv[0], '/') == NULL) {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002652 int a = find_applet_by_name(argv[0]);
2653 if (a >= 0) {
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002654#if BB_MMU /* see above why on NOMMU it is not allowed */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002655 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002656 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002657 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002658 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002659#endif
2660 /* Re-exec ourselves */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002661 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002662 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
2663 execv(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002664 /* If they called chroot or otherwise made the binary no longer
2665 * executable, fall through */
2666 }
2667 }
Eric Andersenaac75e52001-04-30 18:18:45 +00002668#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002669
2670 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002671 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002672 execvp(argv[0], argv);
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00002673 bb_perror_msg("can't exec '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00002674 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002675}
2676
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002677static int run_list(struct pipe *pi);
2678
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002679/* Called after [v]fork() in run_pipe
Denis Vlasenko8412d792007-10-01 09:59:47 +00002680 */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002681static void pseudo_exec(nommu_save_t *nommu_save,
2682 struct command *command,
2683 char **argv_expanded) NORETURN;
2684static void pseudo_exec(nommu_save_t *nommu_save,
2685 struct command *command,
2686 char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002687{
Denis Vlasenko552433b2009-04-04 19:29:21 +00002688 if (command->argv) {
2689 pseudo_exec_argv(nommu_save, command->argv,
2690 command->assignment_cnt, argv_expanded);
2691 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002692
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002693 if (command->group) {
Denis Vlasenko552433b2009-04-04 19:29:21 +00002694 /* Cases when we are here:
2695 * ( list )
2696 * { list } &
2697 * ... | ( list ) | ...
2698 * ... | { list } | ...
2699 */
2700#if BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00002701 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002702 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00002703 reset_traps_to_defaults();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002704 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00002705 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00002706 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00002707 _exit(rcode);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002708#else
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002709 re_execute_shell(command->group_as_string, 0);
Denis Vlasenko8412d792007-10-01 09:59:47 +00002710#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002711 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002712
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002713 /* Case when we are here: ... | >file */
2714 debug_printf_exec("pseudo_exec'ed null command\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002715 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00002716}
2717
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002718#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002719static const char *get_cmdtext(struct pipe *pi)
2720{
2721 char **argv;
2722 char *p;
2723 int len;
2724
2725 /* This is subtle. ->cmdtext is created only on first backgrounding.
2726 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002727 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002728 if (pi->cmdtext)
2729 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002730 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002731 if (!argv || !argv[0]) {
2732 pi->cmdtext = xzalloc(1);
2733 return pi->cmdtext;
2734 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002735
2736 len = 0;
2737 do len += strlen(*argv) + 1; while (*++argv);
2738 pi->cmdtext = p = xmalloc(len);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002739 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002740 do {
2741 len = strlen(*argv);
2742 memcpy(p, *argv, len);
2743 p += len;
2744 *p++ = ' ';
2745 } while (*++argv);
2746 p[-1] = '\0';
2747 return pi->cmdtext;
2748}
2749
Eric Andersenbafd94f2001-05-02 16:11:59 +00002750static void insert_bg_job(struct pipe *pi)
2751{
2752 struct pipe *thejob;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002753 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002754
2755 /* Linear search for the ID of the job to use */
2756 pi->jobid = 1;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002757 for (thejob = G.job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00002758 if (thejob->jobid >= pi->jobid)
2759 pi->jobid = thejob->jobid + 1;
2760
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002761 /* Add thejob to the list of running jobs */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002762 if (!G.job_list) {
2763 thejob = G.job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00002764 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002765 for (thejob = G.job_list; thejob->next; thejob = thejob->next)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002766 continue;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002767 thejob->next = xmalloc(sizeof(*thejob));
2768 thejob = thejob->next;
2769 }
2770
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002771 /* Physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00002772 memcpy(thejob, pi, sizeof(struct pipe));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002773 thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
2774 /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */
2775 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002776// TODO: do we really need to have so many fields which are just dead weight
2777// at execution stage?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002778 thejob->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002779 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002780 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00002781 thejob->next = NULL;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002782 thejob->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00002783
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002784 /* We don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00002785 to the list of backgrounded thejobs and leave it alone */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002786 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00002787 printf("[%d] %d %s\n", thejob->jobid, thejob->cmds[0].pid, thejob->cmdtext);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002788 G.last_bg_pid = thejob->cmds[0].pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002789 G.last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002790}
2791
Eric Andersenbafd94f2001-05-02 16:11:59 +00002792static void remove_bg_job(struct pipe *pi)
2793{
2794 struct pipe *prev_pipe;
2795
Denis Vlasenko87a86552008-07-29 19:43:10 +00002796 if (pi == G.job_list) {
2797 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002798 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002799 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002800 while (prev_pipe->next != pi)
2801 prev_pipe = prev_pipe->next;
2802 prev_pipe->next = pi->next;
2803 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00002804 if (G.job_list)
2805 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00002806 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00002807 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00002808}
Eric Andersen028b65b2001-06-28 01:10:11 +00002809
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002810/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00002811static void delete_finished_bg_job(struct pipe *pi)
2812{
2813 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002814 pi->stopped_cmds = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00002815 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00002816 free(pi);
2817}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002818#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00002819
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002820/* Check to see if any processes have exited -- if they
2821 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00002822static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00002823{
Eric Andersenc798b072001-06-22 06:23:03 +00002824 int attributes;
2825 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002826#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00002827 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002828#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00002829 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002830 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002831
Denis Vlasenkod5762932009-03-31 11:22:57 +00002832 debug_printf_jobs("checkjobs %p\n", fg_pipe);
2833
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002834 errno = 0;
2835// if (G.handled_SIGCHLD == G.count_SIGCHLD)
2836// /* avoid doing syscall, nothing there anyway */
2837// return rcode;
2838
Eric Andersenc798b072001-06-22 06:23:03 +00002839 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002840 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00002841 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00002842
Denis Vlasenko1359da62007-04-21 23:27:30 +00002843/* Do we do this right?
2844 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002845 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00002846 * [3]+ Stopped sleep 20 | false
2847 * bash-3.00# echo $?
2848 * 1 <========== bg pipe is not fully done, but exitcode is already known!
2849 */
2850
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002851//FIXME: non-interactive bash does not continue even if all processes in fg pipe
2852//are stopped. Testcase: "cat | cat" in a script (not on command line)
2853// + killall -STOP cat
2854
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002855 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002856 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002857 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002858 int dead;
2859
2860// i = G.count_SIGCHLD;
2861 childpid = waitpid(-1, &status, attributes);
2862 if (childpid <= 0) {
2863 if (childpid && errno != ECHILD)
2864 bb_perror_msg("waitpid");
2865// else /* Until next SIGCHLD, waitpid's are useless */
2866// G.handled_SIGCHLD = i;
2867 break;
2868 }
2869 dead = WIFEXITED(status) || WIFSIGNALED(status);
2870
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002871#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00002872 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002873 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002874 childpid, WSTOPSIG(status), WEXITSTATUS(status));
2875 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002876 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002877 childpid, WTERMSIG(status), WEXITSTATUS(status));
2878 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002879 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002880 childpid, WEXITSTATUS(status));
2881#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002882 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00002883 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002884 for (i = 0; i < fg_pipe->num_cmds; i++) {
2885 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
2886 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002887 continue;
2888 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
2889 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002890 fg_pipe->cmds[i].pid = 0;
2891 fg_pipe->alive_cmds--;
2892 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002893 /* last process gives overall exitstatus */
2894 rcode = WEXITSTATUS(status);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002895 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002896 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002897 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002898 fg_pipe->cmds[i].is_stopped = 1;
2899 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00002900 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002901 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
2902 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
2903 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002904 /* All processes in fg pipe have exited/stopped */
2905#if ENABLE_HUSH_JOB
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002906 if (fg_pipe->alive_cmds)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002907 insert_bg_job(fg_pipe);
2908#endif
2909 return rcode;
2910 }
2911 /* There are still running processes in the fg pipe */
2912 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00002913 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002914 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00002915 }
2916
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002917#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002918 /* We asked to wait for bg or orphaned children */
2919 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002920 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002921 for (i = 0; i < pi->num_cmds; i++) {
2922 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002923 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00002924 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00002925 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002926 /* Happens when shell is used as init process (init=/bin/sh) */
2927 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002928 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00002929
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002930 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00002931 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00002932 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002933 pi->cmds[i].pid = 0;
2934 pi->alive_cmds--;
2935 if (!pi->alive_cmds) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002936 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00002937 printf(JOB_STATUS_FORMAT, pi->jobid,
2938 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002939 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00002940 }
2941 } else {
2942 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002943 pi->cmds[i].is_stopped = 1;
2944 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002945 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002946#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002947 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00002948
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002949 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00002950}
2951
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002952#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00002953static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
2954{
2955 pid_t p;
2956 int rcode = checkjobs(fg_pipe);
2957 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002958 p = getpgid(0); /* pgid of our process */
2959 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002960 tcsetpgrp(G_interactive_fd, p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00002961 return rcode;
2962}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002963#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00002964
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002965/* Start all the jobs, but don't wait for anything to finish.
2966 * See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00002967 *
Denis Vlasenko552433b2009-04-04 19:29:21 +00002968 * Return code is normally -1, when the caller has to wait for children
Eric Andersen25f27032001-04-26 23:22:31 +00002969 * to finish to determine the exit status of the pipe. If the pipe
2970 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00002971 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00002972 * return value.
2973 *
Denis Vlasenko170435c2007-05-23 13:01:10 +00002974 * Returns -1 only if started some children. IOW: we have to
2975 * mask out retvals of builtins etc with 0xff!
Denis Vlasenko552433b2009-04-04 19:29:21 +00002976 *
2977 * The only case when we do not need to [v]fork is when the pipe
2978 * is single, non-backgrounded, non-subshell command. Examples:
2979 * cmd ; ... { list } ; ...
2980 * cmd && ... { list } && ...
2981 * cmd || ... { list } || ...
2982 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
2983 * or (if SH_STANDALONE) an applet, and we can run the { list }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002984 * with run_list(). If it isn't one of these, we fork and exec cmd.
Denis Vlasenko552433b2009-04-04 19:29:21 +00002985 *
2986 * Cases when we must fork:
2987 * non-single: cmd | cmd
2988 * backgrounded: cmd & { list } &
2989 * subshell: ( list ) [&]
Eric Andersen25f27032001-04-26 23:22:31 +00002990 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002991static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00002992{
Denis Vlasenko552433b2009-04-04 19:29:21 +00002993 static const char *const null_ptr = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002994 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002995 int nextin;
2996 int pipefds[2]; /* pipefds[0] is for reading */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002997 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002998 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002999 char **argv;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003000 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003001 /* it is not always needed, but we aim to smaller code */
3002 int squirrel[] = { -1, -1, -1 };
3003 int rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003004
Denis Vlasenko552433b2009-04-04 19:29:21 +00003005 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003006
Denis Vlasenko552433b2009-04-04 19:29:21 +00003007 USE_HUSH_JOB(pi->pgrp = -1;)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003008 pi->stopped_cmds = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003009 command = &(pi->cmds[0]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003010 argv_expanded = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003011
Denis Vlasenko552433b2009-04-04 19:29:21 +00003012 if (pi->num_cmds != 1
3013 || pi->followup == PIPE_BG
3014 || command->grp_type == GRP_SUBSHELL
3015 ) {
3016 goto must_fork;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003017 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003018
Denis Vlasenko552433b2009-04-04 19:29:21 +00003019 pi->alive_cmds = 1;
3020
3021 debug_printf_exec(": group:%p argv:'%s'\n",
3022 command->group, command->argv ? command->argv[0] : "NONE");
3023
3024 if (command->group) {
3025#if ENABLE_HUSH_FUNCTIONS
3026 if (command->grp_type == GRP_FUNCTION) {
3027 /* func () { list } */
3028 bb_error_msg("here we ought to remember function definition, and go on");
3029 return EXIT_SUCCESS;
3030 }
3031#endif
3032 /* { list } */
3033 debug_printf("non-subshell group\n");
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003034 rcode = 1; /* exitcode if redir failed */
3035 if (setup_redirects(command, squirrel) == 0) {
3036 debug_printf_exec(": run_list\n");
3037 rcode = run_list(command->group) & 0xff;
3038 debug_printf_exec("run_pipe return %d\n", rcode);
3039 }
Eric Andersen04407e52001-06-07 16:42:05 +00003040 restore_redirects(squirrel);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003041 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko05743d72008-02-10 12:10:08 +00003042 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003043 }
3044
Denis Vlasenko552433b2009-04-04 19:29:21 +00003045 argv = command->argv ? command->argv : (char **) &null_ptr;
3046 {
3047 const struct built_in_command *x;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003048 char **new_env = NULL;
3049 char **old_env = NULL;
3050
Denis Vlasenko552433b2009-04-04 19:29:21 +00003051 if (argv[command->assignment_cnt] == NULL) {
3052 /* Assignments, but no command */
3053 /* Ensure redirects take effect. Try "a=t >file" */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003054 rcode = setup_redirects(command, squirrel);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003055 restore_redirects(squirrel);
3056 /* Set shell variables */
3057 while (*argv) {
3058 p = expand_string_to_string(*argv);
3059 debug_printf_exec("set shell var:'%s'->'%s'\n",
3060 *argv, p);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00003061 set_local_var(p, 0, 0);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003062 argv++;
Eric Andersen78a7c992001-05-15 16:30:25 +00003063 }
Denis Vlasenko552433b2009-04-04 19:29:21 +00003064 /* Do we need to flag set_local_var() errors?
3065 * "assignment to readonly var" and "putenv error"
3066 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003067 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
3068 return rcode;
Eric Andersen78a7c992001-05-15 16:30:25 +00003069 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003070
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003071 /* Expand the rest into (possibly) many strings each */
Denis Vlasenko552433b2009-04-04 19:29:21 +00003072 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003073
Denis Vlasenkodd316dd2008-06-14 15:50:55 +00003074 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003075 if (strcmp(argv_expanded[0], x->cmd) != 0)
3076 continue;
3077 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
3078 debug_printf("exec with redirects only\n");
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003079 rcode = setup_redirects(command, NULL);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003080 goto clean_up_and_ret1;
Eric Andersen25f27032001-04-26 23:22:31 +00003081 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003082 debug_printf("builtin inline %s\n", argv_expanded[0]);
3083 /* XXX setup_redirects acts on file descriptors, not FILEs.
3084 * This is perfect for work that comes after exec().
3085 * Is it really safe for inline use? Experimentally,
3086 * things seem to work with glibc. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003087 rcode = setup_redirects(command, squirrel);
3088 if (rcode == 0) {
3089 new_env = expand_assignments(argv, command->assignment_cnt);
3090 old_env = putenv_all_and_save_old(new_env);
3091 debug_printf_exec(": builtin '%s' '%s'...\n",
3092 x->cmd, argv_expanded[1]);
3093 rcode = x->function(argv_expanded) & 0xff;
3094 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003095#if ENABLE_FEATURE_SH_STANDALONE
3096 clean_up_and_ret:
3097#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003098 restore_redirects(squirrel);
3099 free_strings_and_unsetenv(new_env, 1);
3100 putenv_all(old_env);
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003101 /* Free the pointers, but the strings themselves
3102 * are in environ now, don't use free_strings! */
3103 free(old_env);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003104 clean_up_and_ret1:
3105 free(argv_expanded);
3106 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
3107 debug_printf_exec("run_pipe return %d\n", rcode);
3108 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003109 }
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003110#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003111 i = find_applet_by_name(argv_expanded[0]);
3112 if (i >= 0 && APPLET_IS_NOFORK(i)) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003113 rcode = setup_redirects(command, squirrel);
3114 if (rcode == 0) {
3115 save_nofork_data(&G.nofork_save);
3116 new_env = expand_assignments(argv, command->assignment_cnt);
3117 old_env = putenv_all_and_save_old(new_env);
3118 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003119 argv_expanded[0], argv_expanded[1]);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003120 rcode = run_nofork_applet_prime(&G.nofork_save, i, argv_expanded);
3121 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003122 goto clean_up_and_ret;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003123 }
3124#endif
Denis Vlasenko552433b2009-04-04 19:29:21 +00003125 /* It is neither builtin nor applet. We must fork. */
Eric Andersen25f27032001-04-26 23:22:31 +00003126 }
3127
Denis Vlasenko552433b2009-04-04 19:29:21 +00003128 must_fork:
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003129 /* NB: argv_expanded may already be created, and that
3130 * might include `cmd` runs! Do not rerun it! We *must*
3131 * use argv_expanded if it's non-NULL */
3132
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003133 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003134 pi->alive_cmds = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003135 nextin = 0;
3136
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003137 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko76d50412008-06-10 16:19:39 +00003138#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003139 volatile nommu_save_t nommu_save;
3140 nommu_save.new_env = NULL;
3141 nommu_save.old_env = NULL;
3142 nommu_save.argv = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003143#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003144 command = &(pi->cmds[i]);
3145 if (command->argv) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003146 debug_printf_exec(": pipe member '%s' '%s'...\n",
3147 command->argv[0], command->argv[1]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003148 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003149 debug_printf_exec(": pipe member with no argv\n");
Denis Vlasenko552433b2009-04-04 19:29:21 +00003150 }
Eric Andersen25f27032001-04-26 23:22:31 +00003151
3152 /* pipes are inserted between pairs of commands */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003153 pipefds[0] = 0;
3154 pipefds[1] = 1;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003155 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003156 xpipe(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00003157
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003158 command->pid = BB_MMU ? fork() : vfork();
3159 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003160#if ENABLE_HUSH_JOB
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003161 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkod5762932009-03-31 11:22:57 +00003162
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003163 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00003164 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003165 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00003166 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003167 pgrp = pi->pgrp;
3168 if (pgrp < 0) /* true for 1st process only */
3169 pgrp = getpid();
3170 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003171 /* We do it in *every* child, not just first,
3172 * to avoid races */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003173 tcsetpgrp(G_interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003174 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003175 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003176#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +00003177 xmove_fd(nextin, 0);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003178 xmove_fd(pipefds[1], 1); /* write end */
3179 if (pipefds[0] > 1)
3180 close(pipefds[0]); /* read end */
Eric Andersen25f27032001-04-26 23:22:31 +00003181 /* Like bash, explicit redirects override pipes,
3182 * and the pipe fd is available for dup'ing. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003183 if (setup_redirects(command, NULL))
3184 _exit(1);
Eric Andersen52a97ca2001-06-22 06:49:26 +00003185
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003186 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003187 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
3188
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003189 /* Stores to nommu_save list of env vars putenv'ed
3190 * (NOMMU, on MMU we don't need that) */
3191 /* cast away volatility... */
3192 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003193 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00003194 }
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003195
Denis Vlasenkof9375282009-04-05 19:13:39 +00003196 /* parent or error */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003197 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003198#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003199 /* Clean up after vforked child */
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003200 clean_up_after_re_execute();
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003201 free(nommu_save.argv);
3202 free_strings_and_unsetenv(nommu_save.new_env, 1);
3203 putenv_all(nommu_save.old_env);
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003204 /* Free the pointers, but the strings themselves
3205 * are in environ now, don't use free_strings! */
3206 free(nommu_save.old_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003207#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003208 free(argv_expanded);
3209 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003210 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003211 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko82604e92008-07-01 15:59:42 +00003212 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003213 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003214 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003215#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003216 /* Second and next children need to know pid of first one */
3217 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003218 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003219#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003220 }
Eric Andersen25f27032001-04-26 23:22:31 +00003221
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003222 if (i)
3223 close(nextin);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003224 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003225 close(pipefds[1]); /* write end */
3226 /* Pass read (output) pipe end to next iteration */
Eric Andersen25f27032001-04-26 23:22:31 +00003227 nextin = pipefds[0];
3228 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003229
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003230 if (!pi->alive_cmds) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00003231 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
3232 return 1;
3233 }
3234
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003235 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00003236 return -1;
3237}
3238
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003239#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003240static void debug_print_tree(struct pipe *pi, int lvl)
3241{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003242 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003243 [PIPE_SEQ] = "SEQ",
3244 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003245 [PIPE_OR ] = "OR" ,
3246 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003247 };
3248 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003249 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003250#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003251 [RES_IF ] = "IF" ,
3252 [RES_THEN ] = "THEN" ,
3253 [RES_ELIF ] = "ELIF" ,
3254 [RES_ELSE ] = "ELSE" ,
3255 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003256#endif
3257#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003258 [RES_FOR ] = "FOR" ,
3259 [RES_WHILE] = "WHILE",
3260 [RES_UNTIL] = "UNTIL",
3261 [RES_DO ] = "DO" ,
3262 [RES_DONE ] = "DONE" ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003263#endif
3264#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003265 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003266#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003267#if ENABLE_HUSH_CASE
3268 [RES_CASE ] = "CASE" ,
3269 [RES_MATCH] = "MATCH",
3270 [RES_CASEI] = "CASEI",
3271 [RES_ESAC ] = "ESAC" ,
3272#endif
Denis Vlasenko06810332007-05-21 23:30:54 +00003273 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003274 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003275 };
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003276 static const char *const GRPTYPE[] = {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003277 "{}",
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00003278 "()",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003279#if ENABLE_HUSH_FUNCTIONS
3280 "func()",
3281#endif
3282 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003283
3284 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003285
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003286 pin = 0;
3287 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003288 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
3289 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003290 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003291 while (prn < pi->num_cmds) {
3292 struct command *command = &pi->cmds[prn];
3293 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003294
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003295 fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003296 lvl*2, "", prn,
3297 command->assignment_cnt);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003298 if (command->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003299 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003300 GRPTYPE[command->grp_type],
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003301 argv);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003302 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003303 prn++;
3304 continue;
3305 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003306 if (argv) while (*argv) {
3307 fprintf(stderr, " '%s'", *argv);
3308 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003309 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003310 fprintf(stderr, "\n");
3311 prn++;
3312 }
3313 pi = pi->next;
3314 pin++;
3315 }
3316}
3317#endif
3318
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003319/* NB: called by pseudo_exec, and therefore must not modify any
3320 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003321static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003322{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003323#if ENABLE_HUSH_CASE
3324 char *case_word = NULL;
3325#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003326#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003327 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003328 char *for_varname = NULL;
3329 char **for_lcur = NULL;
3330 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00003331#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003332 smallint last_followup;
3333 smalluint rcode;
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003334#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003335 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003336#else
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003337 enum { cond_code = 0 };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003338#endif
Denis Vlasenko0e151382009-04-06 18:40:31 +00003339#if HAS_KEYWORDS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003340 smallint rword; /* enum reserved_style */
3341 smallint last_rword; /* ditto */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003342#endif
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003343
Denis Vlasenko87a86552008-07-29 19:43:10 +00003344 debug_printf_exec("run_list start lvl %d\n", G.run_list_level + 1);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003345
Denis Vlasenko06810332007-05-21 23:30:54 +00003346#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003347 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003348 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
3349 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003350 continue;
3351 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003352 if (cpipe->next == NULL) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003353 syntax_error("malformed for");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003354 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003355 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003356 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003357 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003358 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003359 continue;
3360 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003361 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
3362 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003363 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003364 syntax_error("malformed for");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003365 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003366 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003367 }
3368 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003369#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003370
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003371 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00003372 * in order to return, no direct "return" statements please.
3373 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003374
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003375////TODO: ctrl-Z handling needs re-thinking and re-testing
Denis Vlasenkod5762932009-03-31 11:22:57 +00003376
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003377#if ENABLE_HUSH_JOB
3378 /* Example of nested list: "while true; do { sleep 1 | exit 2; } done".
3379 * We are saving state before entering outermost list ("while...done")
3380 * so that ctrl-Z will correctly background _entire_ outermost list,
3381 * not just a part of it (like "sleep 1 | exit 2") */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003382 if (++G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003383 if (sigsetjmp(G.toplevel_jb, 1)) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003384 /* ctrl-Z forked and we are parent; or ctrl-C.
3385 * Sighandler has longjmped us here */
3386 signal(SIGINT, SIG_IGN);
3387 signal(SIGTSTP, SIG_IGN);
3388 /* Restore level (we can be coming from deep inside
3389 * nested levels) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003390 G.run_list_level = 1;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003391#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko87a86552008-07-29 19:43:10 +00003392 if (G.nofork_save.saved) { /* if save area is valid */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003393 debug_printf_jobs("exiting nofork early\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003394 restore_nofork_data(&G.nofork_save);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003395 }
3396#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003397//// if (G.ctrl_z_flag) {
3398//// /* ctrl-Z has forked and stored pid of the child in pi->pid.
3399//// * Remember this child as background job */
3400//// insert_bg_job(pi);
3401//// } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003402 /* ctrl-C. We just stop doing whatever we were doing */
Denis Vlasenko4daad902007-09-27 10:20:47 +00003403 bb_putchar('\n');
Denis Vlasenkod5762932009-03-31 11:22:57 +00003404//// }
Denis Vlasenkoff29b4f2008-07-29 13:57:59 +00003405 USE_HUSH_LOOPS(loop_top = NULL;)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003406 USE_HUSH_LOOPS(G.depth_of_loop = 0;)
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003407 rcode = 0;
3408 goto ret;
3409 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00003410//// /* ctrl-Z handler will store pid etc in pi */
3411//// G.toplevel_list = pi;
3412//// G.ctrl_z_flag = 0;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003413#if ENABLE_FEATURE_SH_STANDALONE
3414 G.nofork_save.saved = 0; /* in case we will run a nofork later */
3415#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003416//// signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z);
3417//// signal(SIGINT, handler_ctrl_c);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003418 }
Denis Vlasenko05743d72008-02-10 12:10:08 +00003419#endif /* JOB */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003420
Denis Vlasenko0e151382009-04-06 18:40:31 +00003421#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003422 rword = RES_NONE;
3423 last_rword = RES_XXXX;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003424#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003425 last_followup = PIPE_SEQ;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003426 rcode = G.last_exitcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003427
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003428 /* Go through list of pipes, (maybe) executing them. */
3429 for (; pi; pi = USE_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00003430 if (G.flag_SIGINT)
3431 break;
3432
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003433 IF_HAS_KEYWORDS(rword = pi->res_word;)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003434 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
3435 rword, cond_code, last_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00003436#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00003437 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003438 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00003439 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003440 /* start of a loop: remember where loop starts */
3441 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003442 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003443 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003444#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003445 /* Still in the same "if...", "then..." or "do..." branch? */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003446 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003447 if ((rcode == 0 && last_followup == PIPE_OR)
3448 || (rcode != 0 && last_followup == PIPE_AND)
3449 ) {
3450 /* It is "<true> || CMD" or "<false> && CMD"
3451 * and we should not execute CMD */
3452 debug_printf_exec("skipped cmd because of || or &&\n");
3453 last_followup = pi->followup;
3454 continue;
3455 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003456 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003457 last_followup = pi->followup;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003458 IF_HAS_KEYWORDS(last_rword = rword;)
Denis Vlasenko06810332007-05-21 23:30:54 +00003459#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003460 if (cond_code) {
3461 if (rword == RES_THEN) {
Denis Vlasenko0e151382009-04-06 18:40:31 +00003462 /* if false; then ... fi has exitcode 0! */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003463 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003464 /* "if <false> THEN cmd": skip cmd */
3465 continue;
3466 }
3467 } else {
3468 if (rword == RES_ELSE || rword == RES_ELIF) {
3469 /* "if <true> then ... ELSE/ELIF cmd":
3470 * skip cmd and all following ones */
3471 break;
3472 }
3473 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003474#endif
3475#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003476 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003477 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003478 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003479
3480 static const char encoded_dollar_at[] ALIGN1 = {
3481 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
3482 }; /* encoded representation of "$@" */
3483 static const char *const encoded_dollar_at_argv[] = {
3484 encoded_dollar_at, NULL
3485 }; /* argv list with one element: "$@" */
3486 char **vals;
3487
3488 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003489 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003490 /* if no variable values after "in" we skip "for" */
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003491 if (!pi->next->cmds[0].argv) {
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003492 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003493 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003494 break;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003495 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003496 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003497 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003498 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003499 debug_print_strings("for_list made from", vals);
3500 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003501 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003502 debug_print_strings("for_list", for_list);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003503 for_varname = pi->cmds[0].argv[0];
3504 pi->cmds[0].argv[0] = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003505 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003506 free(pi->cmds[0].argv[0]);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003507 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00003508 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003509 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003510 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003511 for_lcur = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003512 pi->cmds[0].argv[0] = for_varname;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003513 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003514 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003515 /* Insert next value from for_lcur */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003516 /* note: *for_lcur already has quotes removed, $var expanded, etc */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003517 pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
3518 pi->cmds[0].assignment_cnt = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003519 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003520 if (rword == RES_IN) {
3521 continue; /* "for v IN list;..." - "in" has no cmds anyway */
3522 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003523 if (rword == RES_DONE) {
3524 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003525 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003526#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003527#if ENABLE_HUSH_CASE
3528 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003529 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003530 continue;
3531 }
3532 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003533 char **argv;
3534
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003535 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
3536 break;
3537 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003538 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003539 while (*argv) {
3540 char *pattern = expand_string_to_string(*argv);
3541 /* TODO: which FNM_xxx flags to use? */
3542 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
3543 free(pattern);
3544 if (cond_code == 0) { /* match! we will execute this branch */
3545 free(case_word); /* make future "word)" stop */
3546 case_word = NULL;
3547 break;
3548 }
3549 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003550 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003551 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003552 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003553 if (rword == RES_CASEI) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003554 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003555 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003556 }
3557#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003558 /* Just pressing <enter> in shell should check for jobs.
3559 * OTOH, in non-interactive shell this is useless
3560 * and only leads to extra job checks */
3561 if (pi->num_cmds == 0) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003562 if (G_interactive_fd)
Denis Vlasenkod5762932009-03-31 11:22:57 +00003563 goto check_jobs_and_continue;
3564 continue;
3565 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003566
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003567 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00003568 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003569 * after run_pipe to collect any background children,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003570 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003571 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003572 {
3573 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003574#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00003575 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003576#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003577 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
3578 if (r != -1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003579 /* We only ran a builtin: rcode is already known
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003580 * and we don't need to wait for anything. */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003581 G.last_exitcode = rcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003582 debug_printf_exec(": builtin exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003583 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003584#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003585 /* Was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003586 if (G.flag_break_continue) {
3587 smallint fbc = G.flag_break_continue;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003588 /* We might fall into outer *loop*,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003589 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003590 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003591 G.depth_break_continue--;
3592 if (G.depth_break_continue == 0)
3593 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003594 /* else: e.g. "continue 2" should *break* once, *then* continue */
3595 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003596 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003597 goto check_jobs_and_break;
3598 /* "continue": simulate end of loop */
3599 rword = RES_DONE;
3600 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003601 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003602#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003603 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003604 /* What does bash do with attempts to background builtins? */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003605 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003606 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
3607 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003608 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003609#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00003610 if (G.run_list_level == 1)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003611 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003612#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003613 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003614 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003615 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003616#if ENABLE_HUSH_JOB
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003617 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003618 /* Waits for completion, then fg's main shell */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003619 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003620 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003621 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003622 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003623#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003624 { /* This one just waits for completion */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003625 rcode = checkjobs(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003626 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003627 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003628 }
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003629 G.last_exitcode = rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003630 }
3631 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003632
3633 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00003634#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003635 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003636 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00003637#endif
3638#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003639 /* Beware of "while false; true; do ..."! */
3640 if (pi->next && pi->next->res_word == RES_DO) {
3641 if (rword == RES_WHILE) {
3642 if (rcode) {
3643 /* "while false; do...done" - exitcode 0 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003644 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003645 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
3646 goto check_jobs_and_break;
3647 }
Denis Vlasenko918a34b2008-07-28 23:17:31 +00003648 }
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003649 if (rword == RES_UNTIL) {
3650 if (!rcode) {
3651 debug_printf_exec(": until expr is true: breaking\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003652 check_jobs_and_break:
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003653 checkjobs(NULL);
3654 break;
3655 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003656 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003657 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003658#endif
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00003659
3660 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00003661 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003662 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003663
3664#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00003665//// if (G.ctrl_z_flag) {
3666//// /* ctrl-Z forked somewhere in the past, we are the child,
3667//// * and now we completed running the list. Exit. */
3668//////TODO: _exit?
3669//// exit(rcode);
3670//// }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003671 ret:
Denis Vlasenkod5762932009-03-31 11:22:57 +00003672 G.run_list_level--;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003673//// if (!G.run_list_level && G_interactive_fd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00003674//// signal(SIGTSTP, SIG_IGN);
3675//// signal(SIGINT, SIG_IGN);
3676//// }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003677#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00003678 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003679#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003680 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003681 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003682 free(for_list);
3683#endif
3684#if ENABLE_HUSH_CASE
3685 free(case_word);
3686#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003687 return rcode;
3688}
3689
Eric Andersen25f27032001-04-26 23:22:31 +00003690/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003691static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003692{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003693 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003694 debug_printf_exec("run_and_free_list entered\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003695 if (!G.fake_mode) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003696 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003697 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003698 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003699 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00003700 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00003701 * but doing that now would hobble the debugging effort. */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003702 free_pipe_list(pi, /* indent: */ 0);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003703 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003704 return rcode;
3705}
3706
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003707
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003708static struct pipe *new_pipe(void)
3709{
Eric Andersen25f27032001-04-26 23:22:31 +00003710 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003711 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003712 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003713 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003714 return pi;
3715}
3716
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003717/* Command (member of a pipe) is complete. The only possible error here
3718 * is out of memory, in which case xmalloc exits. */
3719static int done_command(struct parse_context *ctx)
3720{
3721 /* The command is really already in the pipe structure, so
3722 * advance the pipe counter and make a new, null command. */
3723 struct pipe *pi = ctx->pipe;
3724 struct command *command = ctx->command;
3725
3726 if (command) {
3727 if (command->group == NULL
3728 && command->argv == NULL
3729 && command->redirects == NULL
3730 ) {
3731 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003732 memset(command, 0, sizeof(*command)); /* paranoia */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003733 return pi->num_cmds;
3734 }
3735 pi->num_cmds++;
3736 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003737 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003738 } else {
3739 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3740 }
3741
3742 /* Only real trickiness here is that the uncommitted
3743 * command structure is not counted in pi->num_cmds. */
3744 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
3745 command = &pi->cmds[pi->num_cmds];
3746 memset(command, 0, sizeof(*command));
3747
3748 ctx->command = command;
3749 /* but ctx->pipe and ctx->list_head remain unchanged */
3750
3751 return pi->num_cmds; /* used only for 0/nonzero check */
3752}
3753
3754static void done_pipe(struct parse_context *ctx, pipe_style type)
3755{
3756 int not_null;
3757
3758 debug_printf_parse("done_pipe entered, followup %d\n", type);
3759 /* Close previous command */
3760 not_null = done_command(ctx);
3761 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003762#if HAS_KEYWORDS
3763 ctx->pipe->pi_inverted = ctx->ctx_inverted;
3764 ctx->ctx_inverted = 0;
3765 ctx->pipe->res_word = ctx->ctx_res_w;
3766#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003767
3768 /* Without this check, even just <enter> on command line generates
3769 * tree of three NOPs (!). Which is harmless but annoying.
3770 * IOW: it is safe to do it unconditionally.
3771 * RES_NONE case is for "for a in; do ..." (empty IN set)
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003772 * and other cases to work. */
3773 if (not_null
3774#if HAS_KEYWORDS
3775 || ctx->ctx_res_w == RES_FI
3776 || ctx->ctx_res_w == RES_DONE
3777 || ctx->ctx_res_w == RES_FOR
3778 || ctx->ctx_res_w == RES_IN
3779 || ctx->ctx_res_w == RES_ESAC
3780#endif
3781 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003782 struct pipe *new_p;
3783 debug_printf_parse("done_pipe: adding new pipe: "
3784 "not_null:%d ctx->ctx_res_w:%d\n",
3785 not_null, ctx->ctx_res_w);
3786 new_p = new_pipe();
3787 ctx->pipe->next = new_p;
3788 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003789 /* RES_THEN, RES_DO etc are "sticky" -
3790 * they remain set for commands inside if/while.
3791 * This is used to control execution.
3792 * RES_FOR and RES_IN are NOT sticky (needed to support
3793 * cases where variable or value happens to match a keyword):
3794 */
3795#if ENABLE_HUSH_LOOPS
3796 if (ctx->ctx_res_w == RES_FOR
3797 || ctx->ctx_res_w == RES_IN)
3798 ctx->ctx_res_w = RES_NONE;
3799#endif
3800#if ENABLE_HUSH_CASE
3801 if (ctx->ctx_res_w == RES_MATCH)
3802 ctx->ctx_res_w = RES_CASEI;
3803#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003804 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003805 /* Create the memory for command, roughly:
3806 * ctx->pipe->cmds = new struct command;
3807 * ctx->command = &ctx->pipe->cmds[0];
3808 */
3809 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003810 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003811 }
3812 debug_printf_parse("done_pipe return\n");
3813}
3814
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003815static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003816{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003817 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003818 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003819 /* Create the memory for command, roughly:
3820 * ctx->pipe->cmds = new struct command;
3821 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003822 */
3823 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003824}
3825
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003826/* If a reserved word is found and processed, parse context is modified
3827 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003828 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003829#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003830struct reserved_combo {
3831 char literal[6];
3832 unsigned char res;
3833 unsigned char assignment_flag;
3834 int flag;
3835};
3836enum {
3837 FLAG_END = (1 << RES_NONE ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003838#if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003839 FLAG_IF = (1 << RES_IF ),
3840 FLAG_THEN = (1 << RES_THEN ),
3841 FLAG_ELIF = (1 << RES_ELIF ),
3842 FLAG_ELSE = (1 << RES_ELSE ),
3843 FLAG_FI = (1 << RES_FI ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003844#endif
3845#if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003846 FLAG_FOR = (1 << RES_FOR ),
3847 FLAG_WHILE = (1 << RES_WHILE),
3848 FLAG_UNTIL = (1 << RES_UNTIL),
3849 FLAG_DO = (1 << RES_DO ),
3850 FLAG_DONE = (1 << RES_DONE ),
3851 FLAG_IN = (1 << RES_IN ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003852#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003853#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003854 FLAG_MATCH = (1 << RES_MATCH),
3855 FLAG_ESAC = (1 << RES_ESAC ),
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003856#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003857 FLAG_START = (1 << RES_XXXX ),
3858};
3859
3860static const struct reserved_combo* match_reserved_word(o_string *word)
3861{
Eric Andersen25f27032001-04-26 23:22:31 +00003862 /* Mostly a list of accepted follow-up reserved words.
3863 * FLAG_END means we are done with the sequence, and are ready
3864 * to turn the compound list into a command.
3865 * FLAG_START means the word must start a new compound list.
3866 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003867 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00003868#if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003869 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3870 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
3871 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3872 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
3873 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
3874 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003875#endif
3876#if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003877 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3878 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3879 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3880 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3881 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
3882 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003883#endif
3884#if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003885 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3886 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003887#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003888 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003889 const struct reserved_combo *r;
3890
3891 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
3892 if (strcmp(word->data, r->literal) == 0)
3893 return r;
3894 }
3895 return NULL;
3896}
3897static int reserved_word(o_string *word, struct parse_context *ctx)
3898{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003899#if ENABLE_HUSH_CASE
3900 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003901 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003902 };
3903#endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003904 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003905
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003906 r = match_reserved_word(word);
3907 if (!r)
3908 return 0;
3909
3910 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003911#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003912 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE)
3913 /* "case word IN ..." - IN part starts first match part */
3914 r = &reserved_match;
3915 else
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003916#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003917 if (r->flag == 0) { /* '!' */
3918 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003919 syntax_error("! ! command");
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003920 IF_HAS_KEYWORDS(ctx->ctx_res_w = RES_SNTX;)
Eric Andersen25f27032001-04-26 23:22:31 +00003921 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003922 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003923 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003924 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003925 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003926 struct parse_context *old;
3927 old = xmalloc(sizeof(*old));
3928 debug_printf_parse("push stack %p\n", old);
3929 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003930 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003931 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003932 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003933 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003934 ctx->ctx_res_w = RES_SNTX;
3935 return 1;
3936 }
3937 ctx->ctx_res_w = r->res;
3938 ctx->old_flag = r->flag;
3939 if (ctx->old_flag & FLAG_END) {
3940 struct parse_context *old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003941 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003942 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003943 old = ctx->stack;
3944 old->command->group = ctx->list_head;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003945 old->command->grp_type = GRP_NORMAL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003946#if !BB_MMU
3947 o_addstr(&old->as_string, ctx->as_string.data);
3948 o_free_unsafe(&ctx->as_string);
3949 old->command->group_as_string = xstrdup(old->as_string.data);
3950 debug_printf_parse("pop, remembering as:'%s'\n",
3951 old->command->group_as_string);
3952#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003953 *ctx = *old; /* physical copy */
3954 free(old);
3955 }
3956 word->o_assignment = r->assignment_flag;
3957 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003958}
Denis Vlasenko06810332007-05-21 23:30:54 +00003959#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003960
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003961/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003962 * Normal return is 0. Syntax errors return 1.
3963 * Note: on return, word is reset, but not o_free'd!
3964 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003965static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003966{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003967 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003968
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003969 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003970 if (word->length == 0 && word->o_quoted == 0) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003971 debug_printf_parse("done_word return 0: true null, ignored\n");
3972 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003973 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003974
Eric Andersen25f27032001-04-26 23:22:31 +00003975 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003976 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3977 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003978 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3979 * "2.7 Redirection
3980 * ...the word that follows the redirection operator
3981 * shall be subjected to tilde expansion, parameter expansion,
3982 * command substitution, arithmetic expansion, and quote
3983 * removal. Pathname expansion shall not be performed
3984 * on the word by a non-interactive shell; an interactive
3985 * shell may perform it, but shall do so only when
3986 * the expansion would result in one word."
3987 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003988 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003989 /* Cater for >\file case:
3990 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
3991 * Same with heredocs:
3992 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
3993 */
3994 unbackslash(ctx->pending_redirect->rd_filename);
3995 /* Is it <<"HEREDOC"? */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003996 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC
3997 && word->o_quoted
3998 ) {
3999 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
4000 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004001 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Eric Andersen25f27032001-04-26 23:22:31 +00004002 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004003 /* If this word wasn't an assignment, next ones definitely
4004 * can't be assignments. Even if they look like ones. */
4005 if (word->o_assignment != DEFINITELY_ASSIGNMENT
4006 && word->o_assignment != WORD_IS_KEYWORD
4007 ) {
4008 word->o_assignment = NOT_ASSIGNMENT;
4009 } else {
4010 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
4011 command->assignment_cnt++;
4012 word->o_assignment = MAYBE_ASSIGNMENT;
4013 }
4014
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004015 if (command->group) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004016 /* "{ echo foo; } echo bar" - bad */
4017 /* NB: bash allows e.g.:
4018 * if true; then { echo foo; } fi
4019 * while if false; then false; fi do break; done
4020 * and disallows:
4021 * while if false; then false; fi; do; break; done
4022 * TODO? */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004023 syntax_error_at(word->data);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004024 debug_printf_parse("done_word return 1: syntax error, "
4025 "groups and arglists don't mix\n");
Denis Vlasenko395ae452008-07-14 06:29:38 +00004026 return 1;
4027 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004028#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004029# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00004030 if (ctx->ctx_dsemicolon
4031 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
4032 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00004033 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004034 /* ctx->ctx_res_w = RES_MATCH; */
4035 ctx->ctx_dsemicolon = 0;
4036 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004037# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004038 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004039# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004040 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
4041 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004042# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004043 ) {
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004044 debug_printf_parse(": checking '%s' for reserved-ness\n", word->data);
4045 if (reserved_word(word, ctx)) {
4046 o_reset(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004047 debug_printf_parse("done_word return %d\n",
4048 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004049 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004050 }
Eric Andersen25f27032001-04-26 23:22:31 +00004051 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004052#endif
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004053 if (word->o_quoted /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00004054 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
4055 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004056 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004057 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004058 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004059 char *p = word->data;
4060 while (p[0] == SPECIAL_VAR_SYMBOL
4061 && (p[1] & 0x7f) == '@'
4062 && p[2] == SPECIAL_VAR_SYMBOL
4063 ) {
4064 p += 3;
4065 }
4066 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004067 /* saw no "$@", or not only "$@" but some
4068 * real text is there too */
4069 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004070 * e.g. "", $empty"" etc to not disappear */
4071 o_addchr(word, SPECIAL_VAR_SYMBOL);
4072 o_addchr(word, SPECIAL_VAR_SYMBOL);
4073 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00004074 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004075 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004076 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004077 }
Eric Andersen25f27032001-04-26 23:22:31 +00004078
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004079 o_reset(word);
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004080 ctx->pending_redirect = NULL;
4081
Denis Vlasenko06810332007-05-21 23:30:54 +00004082#if ENABLE_HUSH_LOOPS
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004083 /* Force FOR to have just one word (variable name) */
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004084 /* NB: basically, this makes hush see "for v in ..." syntax as if
4085 * as it is "for v; in ...". FOR and IN become two pipe structs
4086 * in parse tree. */
4087 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004088 if (!is_well_formed_var_name(command->argv[0], '\0')) {
4089 syntax_error("malformed variable name in for");
4090 return 1;
4091 }
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004092 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004093 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004094#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004095#if ENABLE_HUSH_CASE
4096 /* Force CASE to have just one word */
4097 if (ctx->ctx_res_w == RES_CASE) {
4098 done_pipe(ctx, PIPE_SEQ);
4099 }
4100#endif
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004101 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004102 return 0;
4103}
4104
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004105
4106/* Peek ahead in the input to find out if we have a "&n" construct,
4107 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004108 * Return:
4109 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
4110 * REDIRFD_SYNTAX_ERR if syntax error,
4111 * REDIRFD_TO_FILE if no & was seen,
4112 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004113 */
4114#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004115#define parse_redir_right_fd(as_string, input) \
4116 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004117#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004118static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004119{
4120 int ch, d, ok;
4121
4122 ch = i_peek(input);
4123 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004124 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004125
4126 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004127 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004128 ch = i_peek(input);
4129 if (ch == '-') {
4130 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004131 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004132 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004133 }
4134 d = 0;
4135 ok = 0;
4136 while (ch != EOF && isdigit(ch)) {
4137 d = d*10 + (ch-'0');
4138 ok = 1;
4139 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004140 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004141 ch = i_peek(input);
4142 }
4143 if (ok) return d;
4144
4145//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
4146
4147 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004148 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004149}
4150
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004151/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004152 */
4153static int parse_redirect(struct parse_context *ctx,
4154 int fd,
4155 redir_type style,
4156 struct in_str *input)
4157{
4158 struct command *command = ctx->command;
4159 struct redir_struct *redir;
4160 struct redir_struct **redirp;
4161 int dup_num;
4162
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004163 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004164 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004165 /* Check for a '>&1' type redirect */
4166 dup_num = parse_redir_right_fd(&ctx->as_string, input);
4167 if (dup_num == REDIRFD_SYNTAX_ERR)
4168 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004169 } else {
4170 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004171 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004172 if (dup_num) { /* <<-... */
4173 ch = i_getch(input);
4174 nommu_addchr(&ctx->as_string, ch);
4175 ch = i_peek(input);
4176 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004177 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004178
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004179 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004180 int ch = i_peek(input);
4181 if (ch == '|') {
4182 /* >|FILE redirect ("clobbering" >).
4183 * Since we do not support "set -o noclobber" yet,
4184 * >| and > are the same for now. Just eat |.
4185 */
4186 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004187 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004188 }
4189 }
4190
4191 /* Create a new redir_struct and append it to the linked list */
4192 redirp = &command->redirects;
4193 while ((redir = *redirp) != NULL) {
4194 redirp = &(redir->next);
4195 }
4196 *redirp = redir = xzalloc(sizeof(*redir));
4197 /* redir->next = NULL; */
4198 /* redir->rd_filename = NULL; */
4199 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004200 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004201
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004202 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
4203 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004204
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004205 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004206 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004207 /* Erik had a check here that the file descriptor in question
4208 * is legit; I postpone that to "run time"
4209 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004210 debug_printf_parse("duplicating redirect '%d>&%d'\n",
4211 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004212 } else {
4213 /* Set ctx->pending_redirect, so we know what to do at the
4214 * end of the next parsed word. */
4215 ctx->pending_redirect = redir;
4216 }
4217 return 0;
4218}
4219
Eric Andersen25f27032001-04-26 23:22:31 +00004220/* If a redirect is immediately preceded by a number, that number is
4221 * supposed to tell which file descriptor to redirect. This routine
4222 * looks for such preceding numbers. In an ideal world this routine
4223 * needs to handle all the following classes of redirects...
4224 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
4225 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
4226 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
4227 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004228 *
4229 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4230 * "2.7 Redirection
4231 * ... If n is quoted, the number shall not be recognized as part of
4232 * the redirection expression. For example:
4233 * echo \2>a
4234 * writes the character 2 into file a"
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004235 * We are getting it right by setting ->o_quoted on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004236 *
4237 * A -1 return means no valid number was found,
4238 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00004239 */
4240static int redirect_opt_num(o_string *o)
4241{
4242 int num;
4243
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004244 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004245 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004246 num = bb_strtou(o->data, NULL, 10);
4247 if (errno || num < 0)
4248 return -1;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004249 o_reset(o);
Eric Andersen25f27032001-04-26 23:22:31 +00004250 return num;
4251}
4252
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004253#if BB_MMU
4254#define fetch_till_str(as_string, input, word, skip_tabs) \
4255 fetch_till_str(input, word, skip_tabs)
4256#endif
4257static char *fetch_till_str(o_string *as_string,
4258 struct in_str *input,
4259 const char *word,
4260 int skip_tabs)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004261{
4262 o_string heredoc = NULL_O_STRING;
4263 int past_EOL = 0;
4264 int ch;
4265
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004266 goto jump_in;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004267 while (1) {
4268 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004269 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004270 if (ch == '\n') {
4271 if (strcmp(heredoc.data + past_EOL, word) == 0) {
4272 heredoc.data[past_EOL] = '\0';
4273 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
4274 return heredoc.data;
4275 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004276 do {
4277 o_addchr(&heredoc, ch);
4278 past_EOL = heredoc.length;
4279 jump_in:
4280 do {
4281 ch = i_getch(input);
4282 nommu_addchr(as_string, ch);
4283 } while (skip_tabs && ch == '\t');
4284 } while (ch == '\n');
4285 }
4286 if (ch == EOF) {
4287 o_free_unsafe(&heredoc);
4288 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004289 }
4290 o_addchr(&heredoc, ch);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004291 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004292 }
4293}
4294
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004295/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
4296 * and load them all. There should be exactly heredoc_cnt of them.
4297 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004298static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
4299{
4300 struct pipe *pi = ctx->list_head;
4301
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004302 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004303 int i;
4304 struct command *cmd = pi->cmds;
4305
4306 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
4307 pi->num_cmds,
4308 cmd->argv ? cmd->argv[0] : "NONE");
4309 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004310 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004311
4312 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
4313 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004314 while (redir) {
4315 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004316 char *p;
4317
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004318 redir->rd_type = REDIRECT_HEREDOC2;
4319 /* redir->dup is (ab)used to indicate <<- */
4320 p = fetch_till_str(&ctx->as_string, input,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004321 redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004322 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004323 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004324 return 1;
4325 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004326 free(redir->rd_filename);
4327 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004328 heredoc_cnt--;
4329 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004330 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004331 }
4332 cmd++;
4333 }
4334 pi = pi->next;
4335 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004336#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004337 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004338 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004339 bb_error_msg_and_die("heredoc BUG 2");
4340#endif
4341 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004342}
4343
4344
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004345#if BB_MMU
4346#define parse_stream(pstring, input, end_trigger) \
4347 parse_stream(input, end_trigger)
4348#endif
4349static struct pipe *parse_stream(char **pstring,
4350 struct in_str *input,
4351 int end_trigger);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004352static void parse_and_run_string(const char *s);
Mike Frysingerddbee972009-03-22 22:48:41 +00004353
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004354#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004355static FILE *generate_stream_from_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004356{
4357 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004358 int pid, channel[2];
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004359
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00004360 xpipe(channel);
Denis Vlasenko82604e92008-07-01 15:59:42 +00004361 pid = BB_MMU ? fork() : vfork();
4362 if (pid < 0)
4363 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004364
Denis Vlasenko05743d72008-02-10 12:10:08 +00004365 if (pid == 0) { /* child */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004366 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004367 /* Process substitution is not considered to be usual
4368 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00004369 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
4370 */
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00004371 bb_signals(0
4372 + (1 << SIGTSTP)
4373 + (1 << SIGTTIN)
4374 + (1 << SIGTTOU)
4375 , SIG_IGN);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004376 close(channel[0]); /* NB: close _first_, then move fd! */
4377 xmove_fd(channel[1], 1);
4378 /* Prevent it from trying to handle ctrl-z etc */
4379 USE_HUSH_JOB(G.run_list_level = 1;)
4380#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004381 reset_traps_to_defaults();
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004382 parse_and_run_string(s);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004383 _exit(G.last_exitcode);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004384#else
4385 /* We re-execute after vfork on NOMMU. This makes this script safe:
Denis Vlasenkof9375282009-04-05 19:13:39 +00004386 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
4387 * huge=`cat BIG` # was blocking here forever
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004388 * echo OK
4389 */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00004390 re_execute_shell(s, 0);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004391#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004392 }
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004393
4394 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004395 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00004396 clean_up_after_re_execute();
Eric Andersen25f27032001-04-26 23:22:31 +00004397 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00004398 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00004399 return pf;
4400}
4401
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004402/* Return code is exit status of the process that is run. */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004403static int process_command_subs(o_string *dest, const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004404{
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004405 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004406 struct in_str pipe_str;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004407 int ch, eol_cnt;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004408
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004409 pf = generate_stream_from_string(s);
4410 if (pf == NULL)
Denis Vlasenko05743d72008-02-10 12:10:08 +00004411 return 1;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004412 close_on_exec_on(fileno(pf));
Eric Andersen25f27032001-04-26 23:22:31 +00004413
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004414 /* Now send results of command back into original context */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004415 setup_file_in_str(&pipe_str, pf);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004416 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004417 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004418 if (ch == '\n') {
4419 eol_cnt++;
4420 continue;
4421 }
4422 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00004423 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004424 eol_cnt--;
4425 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00004426 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004427 }
4428
4429 debug_printf("done reading from pipe, pclose()ing\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004430 /* Note: we got EOF, and we just close the read end of the pipe.
4431 * We do not wait for the `cmd` child to terminate. bash and ash do.
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004432 * Try these:
4433 * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
4434 * `false`; echo $? - bash outputs "1"
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004435 */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004436 fclose(pf);
4437 debug_printf("closed FILE from child. return 0\n");
4438 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004439}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004440#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004441
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004442static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004443 struct in_str *input, int ch)
4444{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004445 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004446 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004447 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004448 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004449 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004450 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004451
4452 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004453#if ENABLE_HUSH_FUNCTIONS
4454 if (ch == 'F') { /* function definition? */
4455 bb_error_msg("aha '%s' is a function, parsing it...", dest->data);
4456 //command->fname = dest->data;
4457 command->grp_type = GRP_FUNCTION;
4458//TODO: review every o_reset() location... do they handle all o_string fields correctly?
4459 memset(dest, 0, sizeof(*dest));
4460 }
4461#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004462 if (command->argv /* word [word](... */
4463 || dest->length /* word(... */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004464 || dest->o_quoted /* ""(... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004465 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004466 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004467 debug_printf_parse("parse_group return 1: "
4468 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004469 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004470 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004471 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004472 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004473 endch = ')';
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004474 command->grp_type = GRP_SUBSHELL;
Eric Andersen25f27032001-04-26 23:22:31 +00004475 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004476 {
4477#if !BB_MMU
4478 char *as_string = NULL;
4479#endif
4480 pipe_list = parse_stream(&as_string, input, endch);
4481#if !BB_MMU
4482 if (as_string)
4483 o_addstr(&ctx->as_string, as_string);
4484#endif
4485 /* empty ()/{} or parse error? */
4486 if (!pipe_list || pipe_list == ERR_PTR) {
4487#if !BB_MMU
4488 free(as_string);
4489#endif
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004490 syntax_error(NULL);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004491 debug_printf_parse("parse_group return 1: "
4492 "parse_stream returned %p\n", pipe_list);
4493 return 1;
4494 }
4495 command->group = pipe_list;
4496#if !BB_MMU
4497 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4498 command->group_as_string = as_string;
4499 debug_printf_parse("end of group, remembering as:'%s'\n",
4500 command->group_as_string);
4501#endif
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004502 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004503 debug_printf_parse("parse_group return 0\n");
4504 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004505 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004506}
4507
Mike Frysinger98c52642009-04-02 10:02:37 +00004508#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004509/* Subroutines for copying $(...) and `...` things */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004510static int add_till_backquote(o_string *dest, struct in_str *input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004511/* '...' */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004512static int add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004513{
4514 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004515 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004516 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004517 syntax_error_unterm_ch('\'');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004518 return 1;
4519 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004520 if (ch == '\'')
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004521 return 0;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004522 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004523 }
4524}
4525/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004526static int add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004527{
4528 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004529 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004530 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004531 syntax_error_unterm_ch('"');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004532 return 1;
4533 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004534 if (ch == '"')
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004535 return 0;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004536 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004537 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004538 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004539 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004540 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004541 if (ch == '`') {
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004542 if (add_till_backquote(dest, input))
4543 return 1;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004544 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004545 continue;
4546 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004547 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004548 }
4549}
4550/* Process `cmd` - copy contents until "`" is seen. Complicated by
4551 * \` quoting.
4552 * "Within the backquoted style of command substitution, backslash
4553 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4554 * The search for the matching backquote shall be satisfied by the first
4555 * backquote found without a preceding backslash; during this search,
4556 * if a non-escaped backquote is encountered within a shell comment,
4557 * a here-document, an embedded command substitution of the $(command)
4558 * form, or a quoted string, undefined results occur. A single-quoted
4559 * or double-quoted string that begins, but does not end, within the
4560 * "`...`" sequence produces undefined results."
4561 * Example Output
4562 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4563 */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004564static int add_till_backquote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004565{
4566 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004567 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004568 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004569 syntax_error_unterm_ch('`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004570 return 1;
4571 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004572 if (ch == '`')
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004573 return 0;
4574 if (ch == '\\') {
4575 /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004576 int ch2 = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004577 if (ch2 == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004578 syntax_error_unterm_ch('`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004579 return 1;
4580 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004581 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004582 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004583 ch = ch2;
4584 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004585 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004586 }
4587}
4588/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4589 * quoting and nested ()s.
4590 * "With the $(command) style of command substitution, all characters
4591 * following the open parenthesis to the matching closing parenthesis
4592 * constitute the command. Any valid shell script can be used for command,
4593 * except a script consisting solely of redirections which produces
4594 * unspecified results."
4595 * Example Output
4596 * echo $(echo '(TEST)' BEST) (TEST) BEST
4597 * echo $(echo 'TEST)' BEST) TEST) BEST
4598 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
4599 */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004600static int add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004601{
4602 int count = 0;
4603 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004604 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004605 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004606 syntax_error_unterm_ch(')');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004607 return 1;
4608 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004609 if (ch == '(')
4610 count++;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004611 if (ch == ')') {
Mike Frysinger98c52642009-04-02 10:02:37 +00004612 if (--count < 0) {
4613 if (!dbl)
4614 break;
4615 if (i_peek(input) == ')') {
4616 i_getch(input);
4617 break;
4618 }
4619 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004620 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004621 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004622 if (ch == '\'') {
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004623 if (add_till_single_quote(dest, input))
4624 return 1;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004625 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004626 continue;
4627 }
4628 if (ch == '"') {
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004629 if (add_till_double_quote(dest, input))
4630 return 1;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004631 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004632 continue;
4633 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004634 if (ch == '\\') {
4635 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004636 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004637 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004638 syntax_error_unterm_ch(')');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004639 return 1;
4640 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004641 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004642 continue;
4643 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004644 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004645 return 0;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004646}
Mike Frysinger98c52642009-04-02 10:02:37 +00004647#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004648
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004649/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004650#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004651#define handle_dollar(as_string, dest, input) \
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004652 handle_dollar(dest, input)
4653#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004654static int handle_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004655 o_string *dest,
4656 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00004657{
Mike Frysinger6379bb42009-03-28 18:55:03 +00004658 int expansion;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004659 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004660 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004661
4662 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004663 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004664 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004665 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00004666 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004667 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004668 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004669 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004670 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004671 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004672 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004673 if (!isalnum(ch) && ch != '_')
4674 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004675 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004676 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004677 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004678 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004679 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004680 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004681 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004682 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004683 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004684 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004685 o_addchr(dest, ch | quote_mask);
4686 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004687 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004688 case '$': /* pid */
4689 case '!': /* last bg pid */
4690 case '?': /* last exit code */
4691 case '#': /* number of args */
4692 case '*': /* args */
4693 case '@': /* args */
4694 goto make_one_char_var;
4695 case '{': {
4696 bool first_char, all_digits;
Mike Frysinger6379bb42009-03-28 18:55:03 +00004697
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004698 o_addchr(dest, SPECIAL_VAR_SYMBOL);
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 /* XXX maybe someone will try to escape the '}' */
4702 expansion = 0;
4703 first_char = true;
4704 all_digits = false;
4705 while (1) {
4706 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004707 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004708 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004709 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004710
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004711 if (first_char) {
4712 if (ch == '#')
4713 /* ${#var}: length of var contents */
4714 goto char_ok;
4715 else if (isdigit(ch)) {
4716 all_digits = true;
4717 goto char_ok;
4718 }
4719 }
4720
4721 if (expansion < 2
4722 && ( (all_digits && !isdigit(ch))
4723 || (!all_digits && !isalnum(ch) && ch != '_')
4724 )
4725 ) {
4726 /* handle parameter expansions
4727 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4728 */
4729 if (first_char)
4730 goto case_default;
4731 switch (ch) {
4732 case ':': /* null modifier */
4733 if (expansion == 0) {
4734 debug_printf_parse(": null modifier\n");
4735 ++expansion;
4736 break;
4737 }
4738 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004739 case '#': /* remove prefix */
4740 case '%': /* remove suffix */
4741 if (expansion == 0) {
4742 debug_printf_parse(": remove suffix/prefix\n");
4743 expansion = 2;
4744 break;
4745 }
4746 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004747 case '-': /* default value */
4748 case '=': /* assign default */
4749 case '+': /* alternative */
4750 case '?': /* error indicate */
4751 debug_printf_parse(": parameter expansion\n");
4752 expansion = 2;
4753 break;
4754 default:
4755 case_default:
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004756 syntax_error_unterm_str("${name}");
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004757 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
4758 return 1;
4759 }
4760 }
4761 char_ok:
4762 debug_printf_parse(": '%c'\n", ch);
4763 o_addchr(dest, ch | quote_mask);
4764 quote_mask = 0;
4765 first_char = false;
4766 }
4767 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4768 break;
4769 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004770#if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK)
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004771 case '(': {
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004772# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004773 int pos;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004774# endif
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004775 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004776 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004777# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004778 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004779 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004780 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004781 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4782 o_addchr(dest, /*quote_mask |*/ '+');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004783# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004784 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004785# endif
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004786 if (add_till_closing_paren(dest, input, true))
4787 return 1;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004788# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004789 if (as_string) {
4790 o_addstr(as_string, dest->data + pos);
4791 o_addchr(as_string, ')');
4792 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004793 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004794# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004795 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004796 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004797 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004798# endif
4799# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004800 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4801 o_addchr(dest, quote_mask | '`');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004802# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004803 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004804# endif
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004805 if (add_till_closing_paren(dest, input, false))
4806 return 1;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004807# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004808 if (as_string) {
4809 o_addstr(as_string, dest->data + pos);
4810 o_addchr(as_string, '`');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004811 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004812# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004813 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004814# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004815 break;
4816 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004817#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004818 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004819 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004820 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004821 ch = i_peek(input);
4822 if (isalnum(ch)) { /* it's $_name or $_123 */
4823 ch = '_';
4824 goto make_var;
4825 }
4826 /* else: it's $_ */
4827 /* TODO: */
4828 /* $_ Shell or shell script name; or last cmd name */
4829 /* $- Option flags set by set builtin or shell options (-i etc) */
4830 default:
4831 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004832 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004833 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004834 return 0;
4835}
4836
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004837#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004838#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004839 parse_stream_dquoted(dest, input, dquote_end)
4840#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004841static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004842 o_string *dest,
4843 struct in_str *input,
4844 int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004845{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004846 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004847 int next;
4848
4849 again:
4850 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004851 if (ch != EOF)
4852 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004853 if (ch == dquote_end) { /* may be only '"' or EOF */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004854 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004855 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004856 debug_printf_parse("parse_stream_dquoted return 0\n");
4857 return 0;
4858 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004859 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004860 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004861 syntax_error_unterm_ch('"');
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004862 debug_printf_parse("parse_stream_dquoted return 1: unterminated \"\n");
4863 return 1;
4864 }
4865 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004866 if (ch != '\n') {
4867 next = i_peek(input);
4868 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004869 debug_printf_parse(": ch=%c (%d) escape=%d\n",
4870 ch, ch, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004871 if (ch == '\\') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004872//TODO: check interactive behavior
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004873 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004874 syntax_error("\\<eof>");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004875 debug_printf_parse("parse_stream_dquoted return 1: \\<eof>\n");
4876 return 1;
4877 }
4878 /* bash:
4879 * "The backslash retains its special meaning [in "..."]
4880 * only when followed by one of the following characters:
4881 * $, `, ", \, or <newline>. A double quote may be quoted
4882 * within double quotes by preceding it with a backslash.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004883 */
4884 if (strchr("$`\"\\", next) != NULL) {
4885 o_addqchr(dest, i_getch(input));
4886 } else {
4887 o_addqchr(dest, '\\');
4888 }
4889 goto again;
4890 }
4891 if (ch == '$') {
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004892 if (handle_dollar(as_string, dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004893 debug_printf_parse("parse_stream_dquoted return 1: "
4894 "handle_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004895 return 1;
4896 }
4897 goto again;
4898 }
4899#if ENABLE_HUSH_TICK
4900 if (ch == '`') {
4901 //int pos = dest->length;
4902 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4903 o_addchr(dest, 0x80 | '`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004904 if (add_till_backquote(dest, input))
4905 return 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004906 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4907 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004908 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004909 }
4910#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004911 o_addQchr(dest, ch);
4912 if (ch == '='
4913 && (dest->o_assignment == MAYBE_ASSIGNMENT
4914 || dest->o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004915 && is_well_formed_var_name(dest->data, '=')
Denis Vlasenkof328e002009-04-02 16:55:38 +00004916 ) {
4917 dest->o_assignment = DEFINITELY_ASSIGNMENT;
4918 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004919 goto again;
4920}
4921
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004922/*
4923 * Scan input until EOF or end_trigger char.
4924 * Return a list of pipes to execute, or NULL on EOF
4925 * or if end_trigger character is met.
4926 * On syntax error, exit is shell is not interactive,
4927 * reset parsing machinery and start parsing anew,
4928 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004929 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004930static struct pipe *parse_stream(char **pstring,
4931 struct in_str *input,
4932 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004933{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004934 struct parse_context ctx;
4935 o_string dest = NULL_O_STRING;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004936 int is_in_dquote;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004937 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00004938
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004939 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00004940 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004941 * found. When recursing, quote state is passed in via dest->o_escape.
4942 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004943 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
4944 end_trigger ? : 'X');
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004945
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004946 G.ifs = get_local_var_value("IFS");
4947 if (G.ifs == NULL)
4948 G.ifs = " \t\n";
4949
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004950 reset:
4951#if ENABLE_HUSH_INTERACTIVE
4952 input->promptmode = 0; /* PS1 */
4953#endif
4954 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
4955 initialize_context(&ctx);
4956 is_in_dquote = 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004957 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004958 while (1) {
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004959 const char *is_ifs;
4960 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004961 int ch;
4962 int next;
4963 int redir_fd;
4964 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004965
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004966 if (is_in_dquote) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004967 /* dest.o_quoted = 1; - already is (see below) */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004968 if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004969 goto parse_error;
4970 }
4971 /* We reached closing '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004972 is_in_dquote = 0;
4973 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004974 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004975 debug_printf_parse(": ch=%c (%d) escape=%d\n",
4976 ch, ch, dest.o_escape);
4977 if (ch == EOF) {
4978 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004979
4980 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004981 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004982 goto parse_error;
4983 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004984 if (done_word(&dest, &ctx)) {
4985 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004986 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004987 o_free(&dest);
4988 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004989 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004990 /* If we got nothing... */
4991// TODO: test script consisting of just "&"
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004992 if (pi->num_cmds == 0
4993 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
4994 ) {
4995 free_pipe_list(pi, 0);
4996 pi = NULL;
4997 }
4998 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004999#if !BB_MMU
5000 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5001 if (pstring)
5002 *pstring = ctx.as_string.data;
5003 else
5004 o_free_unsafe(&ctx.as_string);
5005#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005006 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005007 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005008 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005009 is_ifs = strchr(G.ifs, ch);
5010 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
5011 "\\$\"" USE_HUSH_TICK("`") /* always special */
5012 , ch);
5013
5014 if (!is_special && !is_ifs) { /* ordinary char */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005015 o_addQchr(&dest, ch);
5016 if ((dest.o_assignment == MAYBE_ASSIGNMENT
5017 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00005018 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005019 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00005020 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005021 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005022 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005023 continue;
5024 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00005025
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005026 if (is_ifs) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005027 if (done_word(&dest, &ctx)) {
5028 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00005029 }
Denis Vlasenko37181682009-04-03 03:19:15 +00005030 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00005031#if ENABLE_HUSH_CASE
5032 /* "case ... in <newline> word) ..." -
5033 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005034 if (ctx.command->argv == NULL
5035 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00005036 ) {
5037 continue;
5038 }
5039#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00005040 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005041 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005042 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
5043 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005044 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005045 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005046 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005047 heredoc_cnt = 0;
5048 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005049 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005050 ch = ';';
Denis Vlasenko7c986122009-04-04 12:15:42 +00005051 /* note: if (is_ifs) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005052 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005053 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005054 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005055 if (end_trigger && end_trigger == ch
5056 && (heredoc_cnt == 0 || end_trigger != ';')
5057 ) {
Denis Vlasenko240c2552009-04-03 03:45:05 +00005058//TODO: disallow "{ cmd }" without semicolon
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005059 if (heredoc_cnt) {
5060 /* This is technically valid:
5061 * { cat <<HERE; }; echo Ok
5062 * heredoc
5063 * heredoc
5064 * heredoc
5065 * HERE
5066 * but we don't support this.
5067 * We require heredoc to be in enclosing {}/(),
5068 * if any.
5069 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005070 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005071 goto parse_error;
5072 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005073 if (done_word(&dest, &ctx)) {
5074 goto parse_error;
5075 }
5076 done_pipe(&ctx, PIPE_SEQ);
5077 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005078 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00005079 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005080 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00005081 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005082 debug_printf_parse("parse_stream return %p: "
5083 "end_trigger char found\n",
5084 ctx.list_head);
5085 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005086#if !BB_MMU
5087 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5088 if (pstring)
5089 *pstring = ctx.as_string.data;
5090 else
5091 o_free_unsafe(&ctx.as_string);
5092#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005093 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005094 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005095 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005096 if (is_ifs)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005097 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005098
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005099 next = '\0';
5100 if (ch != '\n') {
5101 next = i_peek(input);
5102 }
5103
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005104 /* Catch <, > before deciding whether this word is
5105 * an assignment. a=1 2>z b=2: b=2 is still assignment */
5106 switch (ch) {
5107 case '>':
5108 redir_fd = redirect_opt_num(&dest);
5109 if (done_word(&dest, &ctx)) {
5110 goto parse_error;
5111 }
5112 redir_style = REDIRECT_OVERWRITE;
5113 if (next == '>') {
5114 redir_style = REDIRECT_APPEND;
5115 ch = i_getch(input);
5116 nommu_addchr(&ctx.as_string, ch);
5117 }
5118#if 0
5119 else if (next == '(') {
5120 syntax_error(">(process) not supported");
5121 goto parse_error;
5122 }
5123#endif
5124 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5125 goto parse_error;
5126 continue; /* back to top of while (1) */
5127 case '<':
5128 redir_fd = redirect_opt_num(&dest);
5129 if (done_word(&dest, &ctx)) {
5130 goto parse_error;
5131 }
5132 redir_style = REDIRECT_INPUT;
5133 if (next == '<') {
5134 redir_style = REDIRECT_HEREDOC;
5135 heredoc_cnt++;
5136 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
5137 ch = i_getch(input);
5138 nommu_addchr(&ctx.as_string, ch);
5139 } else if (next == '>') {
5140 redir_style = REDIRECT_IO;
5141 ch = i_getch(input);
5142 nommu_addchr(&ctx.as_string, ch);
5143 }
5144#if 0
5145 else if (next == '(') {
5146 syntax_error("<(process) not supported");
5147 goto parse_error;
5148 }
5149#endif
5150 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5151 goto parse_error;
5152 continue; /* back to top of while (1) */
5153 }
5154
5155 if (dest.o_assignment == MAYBE_ASSIGNMENT
5156 /* check that we are not in word in "a=1 2>word b=1": */
5157 && !ctx.pending_redirect
5158 ) {
5159 /* ch is a special char and thus this word
5160 * cannot be an assignment */
5161 dest.o_assignment = NOT_ASSIGNMENT;
5162 }
5163
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005164 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00005165 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005166 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005167 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005168 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005169 if (ch == EOF || ch == '\n')
5170 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005171 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005172 /* note: we do not add it to &ctx.as_string */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005173 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005174 nommu_addchr(&ctx.as_string, '\n');
Eric Andersen25f27032001-04-26 23:22:31 +00005175 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005176 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005177 }
5178 break;
5179 case '\\':
5180 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005181 syntax_error("\\<eof>");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005182 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005183 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005184 o_addchr(&dest, '\\');
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005185 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005186 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005187 o_addchr(&dest, ch);
5188 /* Example: echo Hello \2>file
5189 * we need to know that word 2 is quoted */
5190 dest.o_quoted = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005191 break;
5192 case '$':
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005193 if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005194 debug_printf_parse("parse_stream parse error: "
5195 "handle_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005196 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005197 }
Eric Andersen25f27032001-04-26 23:22:31 +00005198 break;
5199 case '\'':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005200 dest.o_quoted = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005201 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005202 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005203 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005204 syntax_error_unterm_ch('\'');
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005205 goto parse_error;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005206 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005207 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005208 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005209 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005210 if (dest.o_assignment == NOT_ASSIGNMENT)
5211 o_addqchr(&dest, ch);
Denis Vlasenko55789c62008-06-18 16:30:42 +00005212 else
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005213 o_addchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005214 }
Eric Andersen25f27032001-04-26 23:22:31 +00005215 break;
5216 case '"':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005217 dest.o_quoted = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005218 is_in_dquote ^= 1; /* invert */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005219 if (dest.o_assignment == NOT_ASSIGNMENT)
5220 dest.o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005221 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005222#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005223 case '`': {
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005224#if !BB_MMU
5225 int pos;
5226#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005227 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5228 o_addchr(&dest, '`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005229#if !BB_MMU
5230 pos = dest.length;
5231#endif
5232 if (add_till_backquote(&dest, input))
5233 goto parse_error;
5234#if !BB_MMU
5235 o_addstr(&ctx.as_string, dest.data + pos);
5236 o_addchr(&ctx.as_string, '`');
5237#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005238 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5239 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00005240 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005241 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005242#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005243 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005244#if ENABLE_HUSH_CASE
5245 case_semi:
5246#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005247 if (done_word(&dest, &ctx)) {
5248 goto parse_error;
5249 }
5250 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005251#if ENABLE_HUSH_CASE
5252 /* Eat multiple semicolons, detect
5253 * whether it means something special */
5254 while (1) {
5255 ch = i_peek(input);
5256 if (ch != ';')
5257 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005258 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005259 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005260 if (ctx.ctx_res_w == RES_CASEI) {
5261 ctx.ctx_dsemicolon = 1;
5262 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005263 break;
5264 }
5265 }
5266#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005267 new_cmd:
5268 /* We just finished a cmd. New one may start
5269 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005270 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00005271 break;
5272 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005273 if (done_word(&dest, &ctx)) {
5274 goto parse_error;
5275 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005276 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005277 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005278 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005279 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005280 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005281 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005282 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005283 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005284 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005285 if (done_word(&dest, &ctx)) {
5286 goto parse_error;
5287 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005288#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005289 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005290 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005291#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005292 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005293 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005294 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005295 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005296 } else {
5297 /* we could pick up a file descriptor choice here
5298 * with redirect_opt_num(), but bash doesn't do it.
5299 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005300 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005301 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005302 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005303 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005304#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005305 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005306 if (ctx.ctx_res_w == RES_MATCH
5307 && ctx.command->argv == NULL /* not (word|(... */
5308 && dest.length == 0 /* not word(... */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005309 && dest.o_quoted == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005310 ) {
5311 continue;
5312 }
5313#endif
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005314#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005315 if (dest.length != 0 /* not just () but word() */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005316 && dest.o_quoted == 0 /* not a"b"c() */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005317 && ctx.command->argv == NULL /* it's the first word */
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005318//TODO: "func ( ) {...}" - note spaces - is valid format too in bash
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005319 && i_peek(input) == ')'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005320 && !match_reserved_word(&dest)
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005321 ) {
5322 bb_error_msg("seems like a function definition");
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005323 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005324//if !BB_MMU o_addchr(&ctx.as_string...
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005325 do {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005326//TODO: do it properly.
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005327 ch = i_getch(input);
5328 } while (ch == ' ' || ch == '\n');
5329 if (ch != '{') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005330 syntax_error("was expecting {");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005331 goto parse_error;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005332 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005333 ch = 'F'; /* magic value */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005334 }
5335#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005336 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005337 if (parse_group(&dest, &ctx, input, ch) != 0) {
5338 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005339 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005340 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005341 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005342#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005343 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005344 goto case_semi;
5345#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005346 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005347 /* proper use of this character is caught by end_trigger:
5348 * if we see {, we call parse_group(..., end_trigger='}')
5349 * and it will match } earlier (not here). */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005350 syntax_error("unexpected } or )");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005351 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005352 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005353 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005354 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005355 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005356 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005357
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005358 parse_error:
5359 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005360 struct parse_context *pctx;
5361 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005362
5363 /* Clean up allocated tree.
5364 * Samples for finding leaks on syntax error recovery path.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005365 * Run them from interactive shell, watch pmap `pidof hush`.
5366 * while if false; then false; fi do break; done
5367 * (bash accepts it)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005368 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005369 * Samples to catch leaks at execution:
5370 * while if (true | {true;}); then echo ok; fi; do break; done
5371 * 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 +00005372 */
5373 pctx = &ctx;
5374 do {
5375 /* Update pipe/command counts,
5376 * otherwise freeing may miss some */
5377 done_pipe(pctx, PIPE_SEQ);
5378 debug_printf_clean("freeing list %p from ctx %p\n",
5379 pctx->list_head, pctx);
5380 debug_print_tree(pctx->list_head, 0);
5381 free_pipe_list(pctx->list_head, 0);
5382 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005383#if !BB_MMU
5384 o_free_unsafe(&pctx->as_string);
5385#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005386 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005387 if (pctx != &ctx) {
5388 free(pctx);
5389 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005390 IF_HAS_KEYWORDS(pctx = p2;)
5391 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005392 /* Free text, clear all dest fields */
5393 o_free(&dest);
5394 /* If we are not in top-level parse, we return,
5395 * our caller will propagate error.
5396 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005397 if (end_trigger != ';') {
5398#if !BB_MMU
5399 if (pstring)
5400 *pstring = NULL;
5401#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005402 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005403 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005404 /* Discard cached input, force prompt */
5405 input->p = NULL;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005406 USE_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005407 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005408 }
Eric Andersen25f27032001-04-26 23:22:31 +00005409}
5410
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005411/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005412 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
5413 * end_trigger controls how often we stop parsing
5414 * NUL: parse all, execute, return
5415 * ';': parse till ';' or newline, execute, repeat till EOF
5416 */
5417static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005418{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005419 while (1) {
5420 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005421
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005422 pipe_list = parse_stream(NULL, inp, end_trigger);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005423 if (!pipe_list) /* EOF */
5424 break;
5425 debug_print_tree(pipe_list, 0);
5426 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
5427 run_and_free_list(pipe_list);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005428 }
Eric Andersen25f27032001-04-26 23:22:31 +00005429}
5430
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005431static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005432{
5433 struct in_str input;
5434 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005435 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00005436}
5437
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005438static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00005439{
Eric Andersen25f27032001-04-26 23:22:31 +00005440 struct in_str input;
5441 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005442 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00005443}
5444
Denis Vlasenkof9375282009-04-05 19:13:39 +00005445/* Called a few times only (or even once if "sh -c") */
5446static void block_signals(int second_time)
Eric Andersen52a97ca2001-06-22 06:49:26 +00005447{
Denis Vlasenkof9375282009-04-05 19:13:39 +00005448 unsigned sig;
5449 unsigned mask;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005450
Denis Vlasenkof9375282009-04-05 19:13:39 +00005451 mask = (1 << SIGQUIT);
5452 if (G_interactive_fd) {
5453 mask = 0
5454 | (1 << SIGQUIT)
5455 | (1 << SIGTERM)
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005456//TODO | (1 << SIGHUP)
Denis Vlasenkof9375282009-04-05 19:13:39 +00005457#if ENABLE_HUSH_JOB
5458 | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP)
5459#endif
5460 | (1 << SIGINT)
5461 ;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005462 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005463 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00005464
Denis Vlasenkof9375282009-04-05 19:13:39 +00005465 if (!second_time)
5466 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
5467 sig = 0;
5468 while (mask) {
5469 if (mask & 1)
5470 sigaddset(&G.blocked_set, sig);
5471 mask >>= 1;
5472 sig++;
5473 }
5474 sigdelset(&G.blocked_set, SIGCHLD);
5475
5476 sigprocmask(SIG_SETMASK, &G.blocked_set,
5477 second_time ? NULL : &G.inherited_set);
5478 /* POSIX allows shell to re-enable SIGCHLD
5479 * even if it was SIG_IGN on entry */
5480// G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
5481 if (!second_time)
5482 signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler);
5483}
5484
5485#if ENABLE_HUSH_JOB
5486/* helper */
5487static void maybe_set_to_sigexit(int sig)
5488{
5489 void (*handler)(int);
5490 /* non_DFL_mask'ed signals are, well, masked,
5491 * no need to set handler for them.
5492 */
5493 if (!((G.non_DFL_mask >> sig) & 1)) {
5494 handler = signal(sig, sigexit);
5495 if (handler == SIG_IGN) /* oops... restore back to IGN! */
5496 signal(sig, handler);
5497 }
5498}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005499/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005500static void set_fatal_handlers(void)
5501{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00005502 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005503 if (HUSH_DEBUG) {
5504 maybe_set_to_sigexit(SIGILL );
5505 maybe_set_to_sigexit(SIGFPE );
5506 maybe_set_to_sigexit(SIGBUS );
5507 maybe_set_to_sigexit(SIGSEGV);
5508 maybe_set_to_sigexit(SIGTRAP);
5509 } /* else: hush is perfect. what SEGV? */
5510 maybe_set_to_sigexit(SIGABRT);
5511 /* bash 3.2 seems to handle these just like 'fatal' ones */
5512 maybe_set_to_sigexit(SIGPIPE);
5513 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005514//TODO: disable and move down when proper SIGHUP handling is added
Denis Vlasenkof9375282009-04-05 19:13:39 +00005515 maybe_set_to_sigexit(SIGHUP );
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005516 /* if we are interactive, [SIGHUP,] SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00005517 * if we aren't interactive... but in this case
5518 * we never want to restore pgrp on exit, and this fn is not called */
5519 /*maybe_set_to_sigexit(SIGTERM);*/
5520 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00005521}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00005522#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00005523
Denis Vlasenkod5762932009-03-31 11:22:57 +00005524static int set_mode(const char cstate, const char mode)
5525{
5526 int state = (cstate == '-' ? 1 : 0);
5527 switch (mode) {
5528 case 'n': G.fake_mode = state; break;
5529 case 'x': /*G.debug_mode = state;*/ break;
5530 default: return EXIT_FAILURE;
5531 }
5532 return EXIT_SUCCESS;
5533}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005534
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00005535int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00005536int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00005537{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005538 static const struct variable const_shell_ver = {
5539 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005540 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005541 .max_len = 1, /* 0 can provoke free(name) */
5542 .flg_export = 1,
5543 .flg_read_only = 1,
5544 };
Denis Vlasenkof9375282009-04-05 19:13:39 +00005545 int signal_mask_is_inited = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00005546 int opt;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005547 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005548 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00005549
Denis Vlasenko574f2f42008-02-27 18:41:59 +00005550 INIT_G();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005551 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005552 G.last_exitcode = EXIT_SUCCESS;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005553#if !BB_MMU
5554 G.argv0_for_re_execing = argv[0];
5555#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005556 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005557 G.shell_ver = const_shell_ver; /* copying struct here */
5558 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005559 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005560 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
5561 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005562 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005563 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005564 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005565 if (e) while (*e) {
5566 char *value = strchr(*e, '=');
5567 if (value) { /* paranoia */
5568 cur_var->next = xzalloc(sizeof(*cur_var));
5569 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00005570 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005571 cur_var->max_len = strlen(*e);
5572 cur_var->flg_export = 1;
5573 }
5574 e++;
5575 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005576 debug_printf_env("putenv '%s'\n", hush_version_str);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005577 putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
Denis Vlasenko38f63192007-01-22 09:03:07 +00005578#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00005579 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00005580#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00005581 G.global_argc = argc;
5582 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00005583 /* Initialize some more globals to non-zero values */
5584 set_cwd();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005585#if ENABLE_HUSH_INTERACTIVE
Mike Frysingerec2c6552009-03-28 12:24:44 +00005586 if (ENABLE_FEATURE_EDITING)
5587 cmdedit_set_initial_prompt();
Denis Vlasenko87a86552008-07-29 19:43:10 +00005588 G.PS2 = "> ";
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005589#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00005590
Denis Vlasenkoed782372009-04-10 00:45:02 +00005591 if (setjmp(die_jmp)) {
5592 /* xfunc has failed! die die die */
5593 /* no EXIT traps, this is an escape hatch! */
5594 G.exiting = 1;
5595 hush_exit(xfunc_error_retval);
5596 }
5597
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005598 /* Shell is non-interactive at first. We need to call
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005599 * block_signals(0) if we are going to execute "sh <script>",
5600 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005601 * If we later decide that we are interactive, we run block_signals(0)
5602 * (or re-run block_signals(1) if we ran block_signals(0) before)
5603 * in order to intercept (more) signals.
5604 */
5605
5606 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005607 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005608 while (1) {
5609 opt = getopt(argc, argv, "c:xins"
5610#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00005611 "<:$:!:?:D:R:V:"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005612#endif
5613 );
5614 if (opt <= 0)
5615 break;
Eric Andersen25f27032001-04-26 23:22:31 +00005616 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005617 case 'c':
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005618 if (!G.root_pid)
5619 G.root_pid = getpid();
Denis Vlasenko87a86552008-07-29 19:43:10 +00005620 G.global_argv = argv + optind;
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00005621 if (!argv[optind]) {
5622 /* -c 'script' (no params): prevent empty $0 */
5623 *--G.global_argv = argv[0];
5624 optind--;
5625 } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005626 G.global_argc = argc - optind;
Denis Vlasenkof9375282009-04-05 19:13:39 +00005627 block_signals(0); /* 0: called 1st time */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005628 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005629 goto final_return;
5630 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00005631 /* Well, we cannot just declare interactiveness,
5632 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005633 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005634 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005635 case 's':
5636 /* "-s" means "read from stdin", but this is how we always
5637 * operate, so simply do nothing here. */
5638 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005639#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00005640 case '<': /* "big heredoc" support */
5641 full_write(STDOUT_FILENO, optarg, strlen(optarg));
5642 _exit(0);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005643 case '$':
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005644 G.root_pid = bb_strtou(optarg, &optarg, 16);
5645 optarg++;
5646 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
5647 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005648 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005649# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005650 optarg++;
5651 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005652# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005653 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005654 case 'R':
5655 case 'V':
5656 set_local_var(xstrdup(optarg), 0, opt == 'R');
5657 break;
5658#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005659 case 'n':
5660 case 'x':
Denis Vlasenkod5762932009-03-31 11:22:57 +00005661 if (!set_mode('-', opt))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005662 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005663 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005664#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005665 fprintf(stderr, "Usage: sh [FILE]...\n"
5666 " or: sh -c command [args]...\n\n");
5667 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005668#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005669 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005670#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005671 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005672 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005673
5674 if (!G.root_pid)
5675 G.root_pid = getpid();
Denis Vlasenkof9375282009-04-05 19:13:39 +00005676
5677 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005678 if (argv[0] && argv[0][0] == '-') {
5679 FILE *input;
5680 /* XXX what should argv be while sourcing /etc/profile? */
5681 debug_printf("sourcing /etc/profile\n");
5682 input = fopen_for_read("/etc/profile");
5683 if (input != NULL) {
5684 close_on_exec_on(fileno(input));
Denis Vlasenkof9375282009-04-05 19:13:39 +00005685 block_signals(0); /* 0: called 1st time */
5686 signal_mask_is_inited = 1;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005687 parse_and_run_file(input);
5688 fclose(input);
5689 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005690 /* bash: after sourcing /etc/profile,
5691 * tries to source (in the given order):
5692 * ~/.bash_profile, ~/.bash_login, ~/.profile,
5693 * stopping of first found. --noprofile turns this off.
5694 * bash also sources ~/.bash_logout on exit.
5695 * If called as sh, skips .bash_XXX files.
5696 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005697 }
5698
Denis Vlasenkof9375282009-04-05 19:13:39 +00005699 if (argv[optind]) {
5700 FILE *input;
5701 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005702 * "bash <script>" (which is never interactive (unless -i?))
5703 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00005704 * If called as sh, does the same but with $ENV.
5705 */
5706 debug_printf("running script '%s'\n", argv[optind]);
5707 G.global_argv = argv + optind;
5708 G.global_argc = argc - optind;
5709 input = xfopen_for_read(argv[optind]);
5710 close_on_exec_on(fileno(input));
5711 if (!signal_mask_is_inited)
5712 block_signals(0); /* 0: called 1st time */
5713 parse_and_run_file(input);
5714#if ENABLE_FEATURE_CLEAN_UP
5715 fclose(input);
5716#endif
5717 goto final_return;
5718 }
5719
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005720 /* Up to here, shell was non-interactive. Now it may become one.
5721 * NB: don't forget to (re)run block_signals(0/1) as needed.
5722 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005723
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005724 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00005725 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00005726 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00005727 * no arguments remaining or the -s flag given
5728 * standard input is a terminal
5729 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00005730 * Refer to Posix.2, the description of the 'sh' utility.
5731 */
5732#if ENABLE_HUSH_JOB
5733 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005734 G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
Denis Vlasenkof9375282009-04-05 19:13:39 +00005735 debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005736//TODO: "interactive" and "have job control" are two different things.
5737//If tcgetpgrp fails here, "have job control" is false, but "interactive"
5738//should stay on! Currently, we mix these into one.
Denis Vlasenko87a86552008-07-29 19:43:10 +00005739 if (G.saved_tty_pgrp >= 0) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00005740 /* try to dup stdin to high fd#, >= 255 */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005741 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
5742 if (G_interactive_fd < 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005743 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005744 G_interactive_fd = dup(STDIN_FILENO);
5745 if (G_interactive_fd < 0)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005746 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005747 G_interactive_fd = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005748 }
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005749// TODO: track & disallow any attempts of user
5750// to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005751 }
Eric Andersen25f27032001-04-26 23:22:31 +00005752 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005753 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005754 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00005755 pid_t shell_pgrp;
5756
5757 /* We are indeed interactive shell, and we will perform
5758 * job control. Setting up for that. */
5759
5760 close_on_exec_on(G_interactive_fd);
5761 /* If we were run as 'hush &', sleep until we are
5762 * in the foreground (tty pgrp == our pgrp).
5763 * If we get started under a job aware app (like bash),
5764 * make sure we are now in charge so we don't fight over
5765 * who gets the foreground */
5766 while (1) {
5767 shell_pgrp = getpgrp();
5768 G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
5769 if (G.saved_tty_pgrp == shell_pgrp)
5770 break;
5771 /* send TTIN to ourself (should stop us) */
5772 kill(- shell_pgrp, SIGTTIN);
5773 }
5774 /* Block some signals */
5775 block_signals(signal_mask_is_inited);
5776 /* Set other signals to restore saved_tty_pgrp */
5777 set_fatal_handlers();
5778 /* Put ourselves in our own process group */
5779 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
5780 /* Grab control of the terminal */
5781 tcsetpgrp(G_interactive_fd, getpid());
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00005782 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00005783 * (we reset die_sleep = 0 whereever we [v]fork) */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005784 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005785 } else if (!signal_mask_is_inited) {
5786 block_signals(0); /* 0: called 1st time */
5787 } /* else: block_signals(0) was done before */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005788#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00005789 /* No job control compiled in, only prompt/line editing */
5790 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005791 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
5792 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005793 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005794 G_interactive_fd = dup(STDIN_FILENO);
5795 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005796 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005797 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005798 }
5799 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005800 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00005801 close_on_exec_on(G_interactive_fd);
5802 block_signals(signal_mask_is_inited);
5803 } else if (!signal_mask_is_inited) {
5804 block_signals(0);
5805 }
5806#else
5807 /* We have interactiveness code disabled */
5808 if (!signal_mask_is_inited) {
5809 block_signals(0);
5810 }
5811#endif
5812 /* bash:
5813 * if interactive but not a login shell, sources ~/.bashrc
5814 * (--norc turns this off, --rcfile <file> overrides)
5815 */
5816
5817 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Mike Frysinger258275d2009-04-05 21:19:43 +00005818 printf("\n\n%s hush - the humble shell\n", bb_banner);
Mike Frysingerb2705e12009-03-23 08:44:02 +00005819 printf("Enter 'help' for a list of built-in commands.\n\n");
5820 }
5821
Denis Vlasenkof9375282009-04-05 19:13:39 +00005822 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00005823
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005824 final_return:
Denis Vlasenko38f63192007-01-22 09:03:07 +00005825#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko87a86552008-07-29 19:43:10 +00005826 if (G.cwd != bb_msg_unknown)
5827 free((char*)G.cwd);
5828 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005829 while (cur_var) {
5830 struct variable *tmp = cur_var;
5831 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00005832 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005833 cur_var = cur_var->next;
5834 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00005835 }
Eric Andersen25f27032001-04-26 23:22:31 +00005836#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005837 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00005838}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00005839
5840
5841#if ENABLE_LASH
5842int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
5843int lash_main(int argc, char **argv)
5844{
5845 //bb_error_msg("lash is deprecated, please use hush instead");
5846 return hush_main(argc, argv);
5847}
5848#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005849
5850
5851/*
5852 * Built-ins
5853 */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005854static int builtin_trap(char **argv)
5855{
Denis Vlasenkod5762932009-03-31 11:22:57 +00005856 int i;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005857 int sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005858 char *new_cmd;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005859
5860 if (!G.traps)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005861 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005862
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005863 argv++;
5864 if (!*argv) {
5865 /* No args: print all trapped. This isn't 100% correct as we
5866 * should be escaping the cmd so that it can be pasted back in
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005867 */
5868 for (i = 0; i < NSIG; ++i)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005869 if (G.traps[i])
5870 printf("trap -- '%s' %s\n", G.traps[i], get_signame(i));
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005871 return EXIT_SUCCESS;
5872 }
5873
Denis Vlasenkod5762932009-03-31 11:22:57 +00005874 new_cmd = NULL;
5875 i = 0;
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005876 /* If first arg is decimal: reset all specified signals */
5877 sig = bb_strtou(*argv, NULL, 10);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005878 if (errno == 0) {
5879 int ret;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005880 set_all:
5881 ret = EXIT_SUCCESS;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005882 while (*argv) {
5883 sig = get_signum(*argv++);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005884 if (sig < 0 || sig >= NSIG) {
5885 ret = EXIT_FAILURE;
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005886 /* Mimic bash message exactly */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005887 bb_perror_msg("trap: %s: invalid signal specification", argv[i]);
5888 continue;
5889 }
5890
Denis Vlasenkod5762932009-03-31 11:22:57 +00005891 free(G.traps[sig]);
5892 G.traps[sig] = xstrdup(new_cmd);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005893
Denis Vlasenkod5762932009-03-31 11:22:57 +00005894 debug_printf("trap: setting SIG%s (%i) to '%s'",
5895 get_signame(sig), sig, G.traps[sig]);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005896
5897 /* There is no signal for 0 (EXIT) */
5898 if (sig == 0)
5899 continue;
5900
5901 if (new_cmd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00005902 sigaddset(&G.blocked_set, sig);
5903 } else {
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005904 /* There was a trap handler, we are removing it
Denis Vlasenkod5762932009-03-31 11:22:57 +00005905 * (if sig has non-DFL handling,
5906 * we don't need to do anything) */
5907 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
5908 continue;
5909 sigdelset(&G.blocked_set, sig);
5910 }
5911 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005912 }
5913 return ret;
5914 }
5915
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005916 /* First arg is "-": reset all specified to default */
5917 /* First arg is "": ignore all specified */
5918 /* Everything else: execute first arg upon signal */
Denis Vlasenkod5762932009-03-31 11:22:57 +00005919 if (!argv[1]) {
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005920 bb_error_msg("trap: invalid arguments");
5921 return EXIT_FAILURE;
5922 }
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005923 if (NOT_LONE_DASH(*argv))
Denis Vlasenkod5762932009-03-31 11:22:57 +00005924 new_cmd = *argv;
5925 argv++;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005926 goto set_all;
5927}
5928
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005929static int builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005930{
5931 return 0;
5932}
5933
5934static int builtin_test(char **argv)
5935{
5936 int argc = 0;
5937 while (*argv) {
5938 argc++;
5939 argv++;
5940 }
5941 return test_main(argc, argv - argc);
5942}
5943
5944static int builtin_echo(char **argv)
5945{
5946 int argc = 0;
5947 while (*argv) {
5948 argc++;
5949 argv++;
5950 }
5951 return echo_main(argc, argv - argc);
5952}
5953
5954static int builtin_eval(char **argv)
5955{
5956 int rcode = EXIT_SUCCESS;
5957
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005958 if (*++argv) {
5959 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005960 /* bash:
5961 * eval "echo Hi; done" ("done" is syntax error):
5962 * "echo Hi" will not execute too.
5963 */
5964 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005965 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005966 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005967 }
5968 return rcode;
5969}
5970
5971static int builtin_cd(char **argv)
5972{
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00005973 const char *newdir = argv[1];
5974 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005975 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
5976 * bash says "bash: cd: HOME not set" and does nothing (exitcode 1)
5977 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005978 newdir = getenv("HOME") ? : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005979 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005980 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00005981 /* Mimic bash message exactly */
5982 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005983 return EXIT_FAILURE;
5984 }
5985 set_cwd();
5986 return EXIT_SUCCESS;
5987}
5988
5989static int builtin_exec(char **argv)
5990{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005991 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005992 return EXIT_SUCCESS; /* bash does this */
5993 {
5994#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005995 nommu_save_t dummy;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005996#endif
5997// FIXME: if exec fails, bash does NOT exit! We do...
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005998 pseudo_exec_argv(&dummy, argv, 0, NULL);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005999 /* never returns */
6000 }
6001}
6002
6003static int builtin_exit(char **argv)
6004{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00006005 debug_printf_exec("%s()\n", __func__);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006006// TODO: bash does it ONLY on top-level sh exit (+interacive only?)
6007 //puts("exit"); /* bash does it */
6008// TODO: warn if we have background jobs: "There are stopped jobs"
6009// On second consecutive 'exit', exit anyway.
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00006010// perhaps use G.exiting = -1 as indicator "last cmd was exit"
6011
6012 /* note: EXIT trap is run by hush_exit */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006013 if (*++argv == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006014 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006015 /* mimic bash: exit 123abc == exit 255 + error msg */
6016 xfunc_error_retval = 255;
6017 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006018 hush_exit(xatoi(*argv) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006019}
6020
6021static int builtin_export(char **argv)
6022{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006023 if (*++argv == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006024 // TODO:
6025 // ash emits: export VAR='VAL'
6026 // bash: declare -x VAR="VAL"
6027 // (both also escape as needed (quotes, $, etc))
6028 char **e = environ;
6029 if (e)
6030 while (*e)
6031 puts(*e++);
6032 return EXIT_SUCCESS;
6033 }
6034
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006035 do {
6036 const char *value;
6037 char *name = *argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006038
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006039 value = strchr(name, '=');
6040 if (!value) {
6041 /* They are exporting something without a =VALUE */
6042 struct variable *var;
6043
6044 var = get_local_var(name);
6045 if (var) {
6046 var->flg_export = 1;
6047 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
6048 putenv(var->varstr);
6049 }
6050 /* bash does not return an error when trying to export
6051 * an undefined variable. Do likewise. */
6052 continue;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006053 }
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006054 set_local_var(xstrdup(name), 1, 0);
6055 } while (*++argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006056
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006057 return EXIT_SUCCESS;
6058}
6059
6060#if ENABLE_HUSH_JOB
6061/* built-in 'fg' and 'bg' handler */
6062static int builtin_fg_bg(char **argv)
6063{
6064 int i, jobnum;
6065 struct pipe *pi;
6066
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006067 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006068 return EXIT_FAILURE;
6069 /* If they gave us no args, assume they want the last backgrounded task */
6070 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006071 for (pi = G.job_list; pi; pi = pi->next) {
6072 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006073 goto found;
6074 }
6075 }
6076 bb_error_msg("%s: no current job", argv[0]);
6077 return EXIT_FAILURE;
6078 }
6079 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
6080 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
6081 return EXIT_FAILURE;
6082 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006083 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006084 if (pi->jobid == jobnum) {
6085 goto found;
6086 }
6087 }
6088 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
6089 return EXIT_FAILURE;
6090 found:
6091 // TODO: bash prints a string representation
6092 // of job being foregrounded (like "sleep 1 | cat")
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006093 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006094 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006095 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006096 }
6097
6098 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006099 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
6100 for (i = 0; i < pi->num_cmds; i++) {
6101 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
6102 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006103 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006104 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006105
6106 i = kill(- pi->pgrp, SIGCONT);
6107 if (i < 0) {
6108 if (errno == ESRCH) {
6109 delete_finished_bg_job(pi);
6110 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006111 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006112 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006113 }
6114
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006115 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006116 remove_bg_job(pi);
6117 return checkjobs_and_fg_shell(pi);
6118 }
6119 return EXIT_SUCCESS;
6120}
6121#endif
6122
6123#if ENABLE_HUSH_HELP
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006124static int builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006125{
6126 const struct built_in_command *x;
6127
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006128 printf("\n"
6129 "Built-in commands:\n"
6130 "------------------\n");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006131 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
6132 printf("%s\t%s\n", x->cmd, x->descr);
6133 }
6134 printf("\n\n");
6135 return EXIT_SUCCESS;
6136}
6137#endif
6138
6139#if ENABLE_HUSH_JOB
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006140static int builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006141{
6142 struct pipe *job;
6143 const char *status_string;
6144
Denis Vlasenko87a86552008-07-29 19:43:10 +00006145 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006146 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006147 status_string = "Stopped";
6148 else
6149 status_string = "Running";
6150
6151 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
6152 }
6153 return EXIT_SUCCESS;
6154}
6155#endif
6156
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00006157#if HUSH_DEBUG
6158static int builtin_memleak(char **argv UNUSED_PARAM)
6159{
6160 void *p;
6161 unsigned long l;
6162
6163 /* Crude attempt to find where "free memory" starts,
6164 * sans fragmentation. */
6165 p = malloc(240);
6166 l = (unsigned long)p;
6167 free(p);
6168 p = malloc(3400);
6169 if (l < (unsigned long)p) l = (unsigned long)p;
6170 free(p);
6171
6172 if (!G.memleak_value)
6173 G.memleak_value = l;
6174
6175 l -= G.memleak_value;
6176 if ((long)l < 0)
6177 l = 0;
6178 l /= 1024;
6179 if (l > 127)
6180 l = 127;
6181
6182 /* Exitcode is "how many kilobytes we leaked since 1st call" */
6183 return l;
6184}
6185#endif
6186
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006187static int builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006188{
6189 puts(set_cwd());
6190 return EXIT_SUCCESS;
6191}
6192
6193static int builtin_read(char **argv)
6194{
6195 char *string;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006196 const char *name = "REPLY";
6197
6198 if (argv[1]) {
6199 name = argv[1];
6200 if (!is_well_formed_var_name(name, '\0')) {
6201 /* Mimic bash message */
6202 bb_error_msg("read: '%s': not a valid identifier", name);
6203 return 1;
6204 }
6205 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006206
6207 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006208 return set_local_var(string, 0, 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006209}
6210
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006211/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
6212 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006213 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006214 * set [-abCefhmnuvx] [-o option] [argument...]
6215 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006216 * set -- [argument...]
6217 * set -o
6218 * set +o
6219 * Implementations shall support the options in both their hyphen and
6220 * plus-sign forms. These options can also be specified as options to sh.
6221 * Examples:
6222 * Write out all variables and their values: set
6223 * Set $1, $2, and $3 and set "$#" to 3: set c a b
6224 * Turn on the -x and -v options: set -xv
6225 * Unset all positional parameters: set --
6226 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
6227 * Set the positional parameters to the expansion of x, even if x expands
6228 * with a leading '-' or '+': set -- $x
6229 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006230 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006231 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006232static int builtin_set(char **argv)
6233{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006234 int n;
6235 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006236 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006237
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006238 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006239 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00006240 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006241 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006242 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006243 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006244
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006245 do {
6246 if (!strcmp(arg, "--")) {
6247 ++argv;
6248 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006249 }
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006250
6251 if (arg[0] == '+' || arg[0] == '-') {
6252 for (n = 1; arg[n]; ++n)
Denis Vlasenkod5762932009-03-31 11:22:57 +00006253 if (set_mode(arg[0], arg[n]))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006254 goto error;
6255 continue;
6256 }
6257
6258 break;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006259 } while ((arg = *++argv) != NULL);
6260 /* Now argv[0] is 1st argument */
6261
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006262 /* Only reset global_argv if we didn't process anything */
6263 if (arg == NULL)
6264 return EXIT_SUCCESS;
6265 set_argv:
6266
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006267 /* NB: G.global_argv[0] ($0) is never freed/changed */
6268 g_argv = G.global_argv;
6269 if (G.global_args_malloced) {
6270 pp = g_argv;
6271 while (*++pp)
6272 free(*pp);
6273 g_argv[1] = NULL;
6274 } else {
6275 G.global_args_malloced = 1;
6276 pp = xzalloc(sizeof(pp[0]) * 2);
6277 pp[0] = g_argv[0]; /* retain $0 */
6278 g_argv = pp;
6279 }
6280 /* This realloc's G.global_argv */
6281 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
6282
6283 n = 1;
6284 while (*++pp)
6285 n++;
6286 G.global_argc = n;
6287
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006288 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006289
6290 /* Nothing known, so abort */
6291 error:
6292 bb_error_msg("set: %s: invalid option", arg);
6293 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006294}
6295
6296static int builtin_shift(char **argv)
6297{
6298 int n = 1;
6299 if (argv[1]) {
6300 n = atoi(argv[1]);
6301 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006302 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006303 if (G.global_args_malloced) {
6304 int m = 1;
6305 while (m <= n)
6306 free(G.global_argv[m++]);
6307 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006308 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006309 memmove(&G.global_argv[1], &G.global_argv[n+1],
6310 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006311 return EXIT_SUCCESS;
6312 }
6313 return EXIT_FAILURE;
6314}
6315
6316static int builtin_source(char **argv)
6317{
6318 FILE *input;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006319
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006320 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006321 return EXIT_FAILURE;
6322
6323 /* XXX search through $PATH is missing */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006324 input = fopen_or_warn(*argv, "r");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006325 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006326 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006327 return EXIT_FAILURE;
6328 }
6329 close_on_exec_on(fileno(input));
6330
6331 /* Now run the file */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006332//TODO:
Denis Vlasenko87a86552008-07-29 19:43:10 +00006333 /* XXX argv and argc are broken; need to save old G.global_argv
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006334 * (pointer only is OK!) on this stack frame,
Denis Vlasenko87a86552008-07-29 19:43:10 +00006335 * set G.global_argv=argv+1, recurse, and restore. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006336 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006337 fclose(input);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006338 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006339}
6340
6341static int builtin_umask(char **argv)
6342{
6343 mode_t new_umask;
6344 const char *arg = argv[1];
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006345 if (arg) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006346//TODO: umask may take chmod-like symbolic masks
Mike Frysinger40b8dc42009-03-29 00:50:30 +00006347 new_umask = bb_strtou(arg, NULL, 8);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006348 if (errno) {
6349 //Message? bash examples:
6350 //bash: umask: 'q': invalid symbolic mode operator
6351 //bash: umask: 999: octal number out of range
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006352 return EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006353 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006354 } else {
6355 new_umask = umask(0);
6356 printf("%.3o\n", (unsigned) new_umask);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006357 /* fall through and restore new_umask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006358 }
6359 umask(new_umask);
6360 return EXIT_SUCCESS;
6361}
6362
Mike Frysingerd690f682009-03-30 06:50:54 +00006363/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006364static int builtin_unset(char **argv)
6365{
Mike Frysingerd690f682009-03-30 06:50:54 +00006366 int ret;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006367 char var;
Mike Frysingerd690f682009-03-30 06:50:54 +00006368
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006369 if (!*++argv)
Mike Frysingerd690f682009-03-30 06:50:54 +00006370 return EXIT_SUCCESS;
6371
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006372 var = 'v';
6373 if (argv[0][0] == '-') {
6374 switch (argv[0][1]) {
6375 case 'v':
6376 case 'f':
6377 var = argv[0][1];
6378 break;
Mike Frysingerd690f682009-03-30 06:50:54 +00006379 default:
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006380 bb_error_msg("unset: %s: invalid option", *argv);
Mike Frysingerd690f682009-03-30 06:50:54 +00006381 return EXIT_FAILURE;
6382 }
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006383//TODO: disallow "unset -vf ..." too
6384 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006385 }
6386
6387 ret = EXIT_SUCCESS;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006388 while (*argv) {
6389 if (var == 'v') {
6390 if (unset_local_var(*argv)) {
6391 /* unset <nonexistent_var> doesn't fail.
6392 * Error is when one tries to unset RO var.
6393 * Message was printed by unset_local_var. */
Mike Frysingerd690f682009-03-30 06:50:54 +00006394 ret = EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006395 }
Mike Frysingerd690f682009-03-30 06:50:54 +00006396 }
6397#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006398 else {
6399 unset_local_func(*argv);
6400 }
Mike Frysingerd690f682009-03-30 06:50:54 +00006401#endif
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006402 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006403 }
6404 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006405}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006406
Mike Frysinger56bdea12009-03-28 20:01:58 +00006407/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
6408static int builtin_wait(char **argv)
6409{
6410 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006411 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00006412
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006413 if (*++argv == NULL) {
6414 /* Don't care about wait results */
6415 /* Note 1: must wait until there are no more children */
6416 /* Note 2: must be interruptible */
6417 /* Examples:
6418 * $ sleep 3 & sleep 6 & wait
6419 * [1] 30934 sleep 3
6420 * [2] 30935 sleep 6
6421 * [1] Done sleep 3
6422 * [2] Done sleep 6
6423 * $ sleep 3 & sleep 6 & wait
6424 * [1] 30936 sleep 3
6425 * [2] 30937 sleep 6
6426 * [1] Done sleep 3
6427 * ^C <-- after ~4 sec from keyboard
6428 * $
6429 */
6430 sigaddset(&G.blocked_set, SIGCHLD);
6431 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6432 while (1) {
6433 checkjobs(NULL);
6434 if (errno == ECHILD)
6435 break;
6436 /* Wait for SIGCHLD or any other signal of interest */
6437 /* sigtimedwait with infinite timeout: */
6438 sig = sigwaitinfo(&G.blocked_set, NULL);
6439 if (sig > 0) {
6440 sig = check_and_run_traps(sig);
6441 if (sig && sig != SIGCHLD) { /* see note 2 */
6442 ret = 128 + sig;
6443 break;
6444 }
6445 }
6446 }
6447 sigdelset(&G.blocked_set, SIGCHLD);
6448 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6449 return ret;
6450 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00006451
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006452 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00006453 while (*argv) {
6454 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00006455 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006456 /* mimic bash message */
6457 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00006458 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00006459 }
6460 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00006461 if (WIFSIGNALED(status))
6462 ret = 128 + WTERMSIG(status);
6463 else if (WIFEXITED(status))
6464 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00006465 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00006466 ret = EXIT_FAILURE;
6467 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006468 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00006469 ret = 127;
6470 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00006471 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00006472 }
6473
6474 return ret;
6475}
6476
Denis Vlasenkodadfb492008-07-29 10:16:05 +00006477#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006478static int builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006479{
Denis Vlasenko87a86552008-07-29 19:43:10 +00006480 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006481 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00006482 return EXIT_SUCCESS; /* bash compat */
6483 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006484 G.flag_break_continue++; /* BC_BREAK = 1 */
6485 G.depth_break_continue = 1;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006486 if (argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006487 G.depth_break_continue = bb_strtou(argv[1], NULL, 10);
6488 if (errno || !G.depth_break_continue || argv[2]) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006489 bb_error_msg("%s: bad arguments", argv[0]);
Denis Vlasenko87a86552008-07-29 19:43:10 +00006490 G.flag_break_continue = BC_BREAK;
6491 G.depth_break_continue = UINT_MAX;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006492 }
6493 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006494 if (G.depth_of_loop < G.depth_break_continue)
6495 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006496 return EXIT_SUCCESS;
6497}
6498
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006499static int builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006500{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006501 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
6502 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006503}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00006504#endif