blob: 2560d6e97fef9d1da9df370af1bbd2a873939073 [file] [log] [blame]
Eric Andersen25f27032001-04-26 23:22:31 +00001/* vi: set sw=4 ts=4: */
2/*
3 * sh.c -- 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.
7 *
8 * Copyright (C) 2000,2001 Larry Doolittle <larry@doolittle.boa.org>
9 *
10 * Credits:
11 * The parser routines proper are all original material, first
Eric Andersencb81e642003-07-14 21:21:08 +000012 * written Dec 2000 and Jan 2001 by Larry Doolittle. The
13 * execution engine, the builtins, and much of the underlying
14 * support has been adapted from busybox-0.49pre's lash, which is
Eric Andersenc7bda1c2004-03-15 08:29:22 +000015 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersencb81e642003-07-14 21:21:08 +000016 * written by Erik Andersen <andersen@codepoet.org>. That, in turn,
17 * is based in part on ladsh.c, by Michael K. Johnson and Erik W.
18 * Troan, which they placed in the public domain. I don't know
19 * how much of the Johnson/Troan code has survived the repeated
20 * rewrites.
21 *
Eric Andersen25f27032001-04-26 23:22:31 +000022 * Other credits:
Eric Andersen25f27032001-04-26 23:22:31 +000023 * b_addchr() derived from similar w_addchar function in glibc-2.2
24 * setup_redirect(), redirect_opt_num(), and big chunks of main()
Denis Vlasenko55b2de72007-04-18 17:21:28 +000025 * and many builtins derived from contributions by Erik Andersen
Eric Andersen25f27032001-04-26 23:22:31 +000026 * miscellaneous bugfixes from Matt Kraai
27 *
28 * There are two big (and related) architecture differences between
29 * this parser and the lash parser. One is that this version is
30 * actually designed from the ground up to understand nearly all
31 * of the Bourne grammar. The second, consequential change is that
32 * the parser and input reader have been turned inside out. Now,
33 * the parser is in control, and asks for input as needed. The old
34 * way had the input reader in control, and it asked for parsing to
35 * take place as needed. The new way makes it much easier to properly
36 * handle the recursion implicit in the various substitutions, especially
37 * across continuation lines.
38 *
39 * Bash grammar not implemented: (how many of these were in original sh?)
Eric Andersen25f27032001-04-26 23:22:31 +000040 * $_
41 * ! negation operator for pipes
42 * &> and >& redirection of stdout+stderr
43 * Brace Expansion
44 * Tilde Expansion
45 * fancy forms of Parameter Expansion
Eric Andersen78a7c992001-05-15 16:30:25 +000046 * aliases
Eric Andersen25f27032001-04-26 23:22:31 +000047 * Arithmetic Expansion
48 * <(list) and >(list) Process Substitution
Eric Andersen83a2ae22001-05-07 17:59:25 +000049 * reserved words: case, esac, select, function
Eric Andersen25f27032001-04-26 23:22:31 +000050 * Here Documents ( << word )
51 * Functions
52 * Major bugs:
Denis Vlasenkob81b3df2007-04-28 16:48:04 +000053 * job handling woefully incomplete and buggy (improved --vda)
Eric Andersen25f27032001-04-26 23:22:31 +000054 * reserved word execution woefully incomplete and buggy
Eric Andersen25f27032001-04-26 23:22:31 +000055 * to-do:
Eric Andersen83a2ae22001-05-07 17:59:25 +000056 * port selected bugfixes from post-0.49 busybox lash - done?
57 * finish implementing reserved words: for, while, until, do, done
58 * change { and } from special chars to reserved words
59 * builtins: break, continue, eval, return, set, trap, ulimit
60 * test magic exec
Eric Andersen25f27032001-04-26 23:22:31 +000061 * handle children going into background
62 * clean up recognition of null pipes
Eric Andersen25f27032001-04-26 23:22:31 +000063 * check setting of global_argc and global_argv
64 * control-C handling, probably with longjmp
Eric Andersen25f27032001-04-26 23:22:31 +000065 * follow IFS rules more precisely, including update semantics
Eric Andersen25f27032001-04-26 23:22:31 +000066 * figure out what to do with backslash-newline
67 * explain why we use signal instead of sigaction
68 * propagate syntax errors, die on resource errors?
69 * continuation lines, both explicit and implicit - done?
70 * memory leak finding and plugging - done?
71 * more testing, especially quoting rules and redirection
Eric Andersen78a7c992001-05-15 16:30:25 +000072 * document how quoting rules not precisely followed for variable assignments
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +000073 * maybe change charmap[] to use 2-bit entries
Eric Andersen25f27032001-04-26 23:22:31 +000074 * (eventually) remove all the printf's
Eric Andersen25f27032001-04-26 23:22:31 +000075 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000076 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000077 */
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000078
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000079
Eric Andersen25f27032001-04-26 23:22:31 +000080#include <glob.h> /* glob, of course */
Eric Andersen25f27032001-04-26 23:22:31 +000081#include <getopt.h> /* should be pretty obvious */
Eric Andersen25f27032001-04-26 23:22:31 +000082/* #include <dmalloc.h> */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000083
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000084#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000085
Denis Vlasenkod01ff132007-05-02 21:40:23 +000086
Denis Vlasenko05743d72008-02-10 12:10:08 +000087#if !BB_MMU && ENABLE_HUSH_TICK
88//#undef ENABLE_HUSH_TICK
89//#define ENABLE_HUSH_TICK 0
90#warning On NOMMU, hush command substitution is dangerous.
91#warning Dont use it for commands which produce lots of output.
92#warning For more info see shell/hush.c, generate_stream_from_list().
93#endif
94
95#if !BB_MMU && ENABLE_HUSH_JOB
96#undef ENABLE_HUSH_JOB
97#define ENABLE_HUSH_JOB 0
98#endif
99
100#if !ENABLE_HUSH_INTERACTIVE
101#undef ENABLE_FEATURE_EDITING
102#define ENABLE_FEATURE_EDITING 0
103#undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
104#define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000105#endif
106
107
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000108/* If you comment out one of these below, it will be #defined later
109 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000110#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000111/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000112#define debug_printf_parse(...) do {} while (0)
113#define debug_print_tree(a, b) do {} while (0)
114#define debug_printf_exec(...) do {} while (0)
115#define debug_printf_jobs(...) do {} while (0)
116#define debug_printf_expand(...) do {} while (0)
117#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000118
119#ifndef debug_printf
120#define debug_printf(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000121#endif
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000122
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000123#ifndef debug_printf_parse
124#define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000125#endif
126
127#ifndef debug_printf_exec
128#define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__)
129#endif
130
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000131#ifndef debug_printf_jobs
132#define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__)
133#define DEBUG_SHELL_JOBS 1
134#endif
135
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000136#ifndef debug_printf_expand
137#define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__)
138#define DEBUG_EXPAND 1
139#endif
140
Denis Vlasenko170435c2007-05-23 13:01:10 +0000141/* Keep unconditionally on for now */
142#define ENABLE_HUSH_DEBUG 1
143
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000144#ifndef debug_printf_clean
145/* broken, of course, but OK for testing */
146static const char *indenter(int i)
147{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000148 static const char blanks[] ALIGN1 =
149 " ";
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000150 return &blanks[sizeof(blanks) - i - 1];
151}
152#define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000153#define DEBUG_CLEAN 1
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000154#endif
155
Eric Andersen25f27032001-04-26 23:22:31 +0000156
Denis Vlasenkof962a032007-11-23 12:50:54 +0000157/*
158 * Leak hunting. Use hush_leaktool.sh for post-processing.
159 */
160#ifdef FOR_HUSH_LEAKTOOL
161void *xxmalloc(int lineno, size_t size)
162{
163 void *ptr = xmalloc((size + 0xff) & ~0xff);
164 fprintf(stderr, "line %d: malloc %p\n", lineno, ptr);
165 return ptr;
166}
167void *xxrealloc(int lineno, void *ptr, size_t size)
168{
169 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
170 fprintf(stderr, "line %d: realloc %p\n", lineno, ptr);
171 return ptr;
172}
173char *xxstrdup(int lineno, const char *str)
174{
175 char *ptr = xstrdup(str);
176 fprintf(stderr, "line %d: strdup %p\n", lineno, ptr);
177 return ptr;
178}
179void xxfree(void *ptr)
180{
181 fprintf(stderr, "free %p\n", ptr);
182 free(ptr);
183}
184#define xmalloc(s) xxmalloc(__LINE__, s)
185#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
186#define xstrdup(s) xxstrdup(__LINE__, s)
187#define free(p) xxfree(p)
188#endif
189
190
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +0000191#define SPECIAL_VAR_SYMBOL 3
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000192
193#define PARSEFLAG_EXIT_FROM_LOOP 1
194#define PARSEFLAG_SEMICOLON (1 << 1) /* symbol ';' is special for parser */
195#define PARSEFLAG_REPARSING (1 << 2) /* >= 2nd pass */
Eric Andersen25f27032001-04-26 23:22:31 +0000196
197typedef enum {
198 REDIRECT_INPUT = 1,
199 REDIRECT_OVERWRITE = 2,
200 REDIRECT_APPEND = 3,
201 REDIRECT_HEREIS = 4,
202 REDIRECT_IO = 5
203} redir_type;
204
205/* The descrip member of this structure is only used to make debugging
206 * output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000207static const struct {
208 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000209 signed char default_fd;
210 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000211} redir_table[] = {
Eric Andersen25f27032001-04-26 23:22:31 +0000212 { 0, 0, "()" },
213 { O_RDONLY, 0, "<" },
214 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
215 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
216 { O_RDONLY, -1, "<<" },
217 { O_RDWR, 1, "<>" }
218};
219
220typedef enum {
221 PIPE_SEQ = 1,
222 PIPE_AND = 2,
223 PIPE_OR = 3,
224 PIPE_BG = 4,
225} pipe_style;
226
227/* might eventually control execution */
228typedef enum {
229 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000230#if ENABLE_HUSH_IF
Eric Andersen25f27032001-04-26 23:22:31 +0000231 RES_IF = 1,
232 RES_THEN = 2,
233 RES_ELIF = 3,
234 RES_ELSE = 4,
235 RES_FI = 5,
Denis Vlasenko06810332007-05-21 23:30:54 +0000236#endif
237#if ENABLE_HUSH_LOOPS
Eric Andersen25f27032001-04-26 23:22:31 +0000238 RES_FOR = 6,
239 RES_WHILE = 7,
240 RES_UNTIL = 8,
241 RES_DO = 9,
242 RES_DONE = 10,
Denis Vlasenko06810332007-05-21 23:30:54 +0000243 RES_IN = 11,
244#endif
245 RES_XXXX = 12,
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000246 RES_SNTX = 13
Eric Andersen25f27032001-04-26 23:22:31 +0000247} reserved_style;
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000248enum {
249 FLAG_END = (1 << RES_NONE ),
Denis Vlasenko06810332007-05-21 23:30:54 +0000250#if ENABLE_HUSH_IF
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000251 FLAG_IF = (1 << RES_IF ),
252 FLAG_THEN = (1 << RES_THEN ),
253 FLAG_ELIF = (1 << RES_ELIF ),
254 FLAG_ELSE = (1 << RES_ELSE ),
255 FLAG_FI = (1 << RES_FI ),
Denis Vlasenko06810332007-05-21 23:30:54 +0000256#endif
257#if ENABLE_HUSH_LOOPS
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000258 FLAG_FOR = (1 << RES_FOR ),
259 FLAG_WHILE = (1 << RES_WHILE),
260 FLAG_UNTIL = (1 << RES_UNTIL),
261 FLAG_DO = (1 << RES_DO ),
262 FLAG_DONE = (1 << RES_DONE ),
263 FLAG_IN = (1 << RES_IN ),
Denis Vlasenko06810332007-05-21 23:30:54 +0000264#endif
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000265 FLAG_START = (1 << RES_XXXX ),
266};
Eric Andersen25f27032001-04-26 23:22:31 +0000267
268/* This holds pointers to the various results of parsing */
269struct p_context {
270 struct child_prog *child;
271 struct pipe *list_head;
272 struct pipe *pipe;
273 struct redir_struct *pending_redirect;
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000274 smallint res_w;
275 smallint parse_type; /* bitmask of PARSEFLAG_xxx, defines type of parser : ";$" common or special symbol */
276 int old_flag; /* bitmask of FLAG_xxx, for figuring out valid reserved words */
Eric Andersen25f27032001-04-26 23:22:31 +0000277 struct p_context *stack;
278 /* How about quoting status? */
279};
280
281struct redir_struct {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000282 struct redir_struct *next; /* pointer to the next redirect in the list */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000283 redir_type type; /* type of redirection */
284 int fd; /* file descriptor being redirected */
285 int dup; /* -1, or file descriptor being duplicated */
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000286 char **glob_word; /* *word.gl_pathv is the filename */
Eric Andersen25f27032001-04-26 23:22:31 +0000287};
288
289struct child_prog {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000290 pid_t pid; /* 0 if exited */
291 char **argv; /* program name and arguments */
292 struct pipe *group; /* if non-NULL, first in group or subshell */
Denis Vlasenko262d7652007-05-20 21:52:49 +0000293 smallint subshell; /* flag, non-zero if group must be forked */
294 smallint is_stopped; /* is the program currently running? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000295 struct redir_struct *redirects; /* I/O redirections */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000296 struct pipe *family; /* pointer back to the child's parent pipe */
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000297 //sp counting seems to be broken... so commented out, grep for '//sp:'
298 //sp: int sp; /* number of SPECIAL_VAR_SYMBOL */
Denis Vlasenko262d7652007-05-20 21:52:49 +0000299 //seems to be unused, grep for '//pt:'
300 //pt: int parse_type;
Eric Andersen25f27032001-04-26 23:22:31 +0000301};
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000302/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
303 * and on execution these are substituted with their values.
304 * Substitution can make _several_ words out of one argv[n]!
305 * Example: argv[0]=='.^C*^C.' here: echo .$*.
306 */
Eric Andersen25f27032001-04-26 23:22:31 +0000307
308struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000309 struct pipe *next;
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000310 int num_progs; /* total number of programs in job */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000311 int running_progs; /* number of programs running (not exited) */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000312 int stopped_progs; /* number of programs alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000313#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000314 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000315 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000316 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000317#endif
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000318 char *cmdbuf; /* buffer various argv's point into */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000319 struct child_prog *progs; /* array of commands in pipe */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000320 int job_context; /* bitmask defining current context */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000321 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
322 smallint res_word; /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000323};
324
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000325/* On program start, environ points to initial environment.
326 * putenv adds new pointers into it, unsetenv removes them.
327 * Neither of these (de)allocates the strings.
328 * setenv allocates new strings in malloc space and does putenv,
329 * and thus setenv is unusable (leaky) for shell's purposes */
330#define setenv(...) setenv_is_leaky_dont_use()
331struct variable {
332 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000333 char *varstr; /* points to "name=" portion */
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000334 int max_len; /* if > 0, name is part of initial env; else name is malloced */
335 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000336 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000337};
338
Eric Andersen25f27032001-04-26 23:22:31 +0000339typedef struct {
340 char *data;
341 int length;
342 int maxlen;
Denis Vlasenkoff097622007-10-01 10:00:45 +0000343 smallint o_quote;
344 smallint nonnull;
Eric Andersen25f27032001-04-26 23:22:31 +0000345} o_string;
346#define NULL_O_STRING {NULL,0,0,0,0}
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000347/* used for initialization: o_string foo = NULL_O_STRING; */
Eric Andersen25f27032001-04-26 23:22:31 +0000348
349/* I can almost use ordinary FILE *. Is open_memstream() universally
350 * available? Where is it documented? */
351struct in_str {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +0000352 const char *p;
353 /* eof_flag=1: last char in ->p is really an EOF */
354 char eof_flag; /* meaningless if ->p == NULL */
355 char peek_buf[2];
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000356#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000357 smallint promptme;
358 smallint promptmode; /* 0: PS1, 1: PS2 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000359#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000360 FILE *file;
361 int (*get) (struct in_str *);
362 int (*peek) (struct in_str *);
363};
364#define b_getch(input) ((input)->get(input))
365#define b_peek(input) ((input)->peek(input))
366
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000367enum {
368 CHAR_ORDINARY = 0,
369 CHAR_ORDINARY_IF_QUOTED = 1, /* example: *, # */
370 CHAR_IFS = 2, /* treated as ordinary if quoted */
371 CHAR_SPECIAL = 3, /* example: $ */
Eric Andersen25f27032001-04-26 23:22:31 +0000372};
373
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000374#define HUSH_VER_STR "0.02"
375
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000376/* "Globals" within this file */
377
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000378/* Sorted roughly by size (smaller offsets == smaller code) */
379struct globals {
380#if ENABLE_HUSH_INTERACTIVE
381 /* 'interactive_fd' is a fd# open to ctty, if we have one
382 * _AND_ if we decided to act interactively */
383 int interactive_fd;
384 const char *PS1;
385 const char *PS2;
386#endif
387#if ENABLE_FEATURE_EDITING
388 line_input_t *line_input_state;
389#endif
390#if ENABLE_HUSH_JOB
391 int run_list_level;
392 pid_t saved_task_pgrp;
393 pid_t saved_tty_pgrp;
394 int last_jobid;
395 struct pipe *job_list;
396 struct pipe *toplevel_list;
397 smallint ctrl_z_flag;
398#endif
399 smallint fake_mode;
400 /* these three support $?, $#, and $1 */
401 char **global_argv;
402 int global_argc;
403 int last_return_code;
404 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000405 const char *cwd;
406 unsigned last_bg_pid;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000407 struct variable *top_var; /* = &shell_ver (set in main()) */
408 struct variable shell_ver;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000409#if ENABLE_FEATURE_SH_STANDALONE
410 struct nofork_save_area nofork_save;
411#endif
412#if ENABLE_HUSH_JOB
413 sigjmp_buf toplevel_jb;
414#endif
415 unsigned char charmap[256];
416 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
417};
418
419#define G (*ptr_to_globals)
420
421#if !ENABLE_HUSH_INTERACTIVE
422enum { interactive_fd = 0 };
423#endif
424#if !ENABLE_HUSH_JOB
425enum { run_list_level = 0 };
426#endif
427
428#if ENABLE_HUSH_INTERACTIVE
429#define interactive_fd (G.interactive_fd )
430#define PS1 (G.PS1 )
431#define PS2 (G.PS2 )
432#endif
433#if ENABLE_FEATURE_EDITING
434#define line_input_state (G.line_input_state)
435#endif
436#if ENABLE_HUSH_JOB
437#define run_list_level (G.run_list_level )
438#define saved_task_pgrp (G.saved_task_pgrp )
439#define saved_tty_pgrp (G.saved_tty_pgrp )
440#define last_jobid (G.last_jobid )
441#define job_list (G.job_list )
442#define toplevel_list (G.toplevel_list )
443#define toplevel_jb (G.toplevel_jb )
444#define ctrl_z_flag (G.ctrl_z_flag )
445#endif /* JOB */
446#define global_argv (G.global_argv )
447#define global_argc (G.global_argc )
448#define last_return_code (G.last_return_code)
449#define ifs (G.ifs )
450#define fake_mode (G.fake_mode )
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000451#define cwd (G.cwd )
452#define last_bg_pid (G.last_bg_pid )
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000453#define top_var (G.top_var )
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000454#define shell_ver (G.shell_ver )
455#if ENABLE_FEATURE_SH_STANDALONE
456#define nofork_save (G.nofork_save )
Denis Vlasenko4b924f32007-05-30 00:29:55 +0000457#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000458#if ENABLE_HUSH_JOB
459#define toplevel_jb (G.toplevel_jb )
460#endif
461#define charmap (G.charmap )
462#define user_input_buf (G.user_input_buf )
463
464
465#define B_CHUNK 100
466#define B_NOSPAC 1
467#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
468
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000469#if 1
470/* Normal */
471static void syntax(const char *msg)
472{
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000473 /* Was using fancy stuff:
474 * (interactive_fd ? bb_error_msg : bb_error_msg_and_die)(...params...)
475 * but it SEGVs. ?! Oh well... explicit temp ptr works around that */
476 void (*fp)(const char *s, ...);
477
478 fp = (interactive_fd ? bb_error_msg : bb_error_msg_and_die);
479 fp(msg ? "%s: %s" : "syntax error", "syntax error", msg);
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000480}
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000481
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000482#else
483/* Debug */
484static void syntax_lineno(int line)
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000485{
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000486 void (*fp)(const char *s, ...);
487
488 fp = (interactive_fd ? bb_error_msg : bb_error_msg_and_die);
489 fp("syntax error hush.c:%d", line);
Eric Andersen25f27032001-04-26 23:22:31 +0000490}
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000491#define syntax(str) syntax_lineno(__LINE__)
492#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000493
494/* Index of subroutines: */
Eric Andersen25f27032001-04-26 23:22:31 +0000495/* o_string manipulation: */
496static int b_check_space(o_string *o, int len);
497static int b_addchr(o_string *o, int ch);
498static void b_reset(o_string *o);
499static int b_addqchr(o_string *o, int ch, int quote);
Eric Andersen25f27032001-04-26 23:22:31 +0000500/* in_str manipulations: */
501static int static_get(struct in_str *i);
502static int static_peek(struct in_str *i);
503static int file_get(struct in_str *i);
504static int file_peek(struct in_str *i);
505static void setup_file_in_str(struct in_str *i, FILE *f);
506static void setup_string_in_str(struct in_str *i, const char *s);
Eric Andersen25f27032001-04-26 23:22:31 +0000507/* "run" the final data structures: */
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000508#if !defined(DEBUG_CLEAN)
509#define free_pipe_list(head, indent) free_pipe_list(head)
510#define free_pipe(pi, indent) free_pipe(pi)
511#endif
Eric Andersenbf7df042001-05-23 22:18:35 +0000512static int free_pipe_list(struct pipe *head, int indent);
513static int free_pipe(struct pipe *pi, int indent);
Eric Andersen25f27032001-04-26 23:22:31 +0000514/* really run the final data structures: */
515static int setup_redirects(struct child_prog *prog, int squirrel[]);
Denis Vlasenko05743d72008-02-10 12:10:08 +0000516static int run_list(struct pipe *pi);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000517static void pseudo_exec_argv(char **argv) ATTRIBUTE_NORETURN;
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +0000518static void pseudo_exec(struct child_prog *child) ATTRIBUTE_NORETURN;
Denis Vlasenko05743d72008-02-10 12:10:08 +0000519static int run_pipe(struct pipe *pi);
Eric Andersen25f27032001-04-26 23:22:31 +0000520/* extended glob support: */
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000521static char **globhack(const char *src, char **strings);
Eric Andersen25f27032001-04-26 23:22:31 +0000522static int glob_needed(const char *s);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000523static int xglob(o_string *dest, char ***pglob);
Eric Andersen78a7c992001-05-15 16:30:25 +0000524/* variable assignment: */
Eric Andersen78a7c992001-05-15 16:30:25 +0000525static int is_assignment(const char *s);
Eric Andersen25f27032001-04-26 23:22:31 +0000526/* data structure manipulation: */
527static int setup_redirect(struct p_context *ctx, int fd, redir_type style, struct in_str *input);
528static void initialize_context(struct p_context *ctx);
529static int done_word(o_string *dest, struct p_context *ctx);
530static int done_command(struct p_context *ctx);
531static int done_pipe(struct p_context *ctx, pipe_style type);
532/* primary string parsing: */
533static int redirect_dup_num(struct in_str *input);
534static int redirect_opt_num(o_string *o);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +0000535#if ENABLE_HUSH_TICK
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000536static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, const char *subst_end);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +0000537#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000538static int parse_group(o_string *dest, struct p_context *ctx, struct in_str *input, int ch);
Denis Vlasenko15d78fb2007-01-30 22:28:21 +0000539static const char *lookup_param(const char *src);
Eric Andersen25f27032001-04-26 23:22:31 +0000540static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000541static int parse_stream(o_string *dest, struct p_context *ctx, struct in_str *input0, const char *end_trigger);
Eric Andersen25f27032001-04-26 23:22:31 +0000542/* setup: */
Denis Vlasenko170435c2007-05-23 13:01:10 +0000543static int parse_and_run_stream(struct in_str *inp, int parse_flag);
544static int parse_and_run_string(const char *s, int parse_flag);
545static int parse_and_run_file(FILE *f);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000546/* job management: */
Eric Andersenc798b072001-06-22 06:23:03 +0000547static int checkjobs(struct pipe* fg_pipe);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000548#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +0000549static int checkjobs_and_fg_shell(struct pipe* fg_pipe);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000550static void insert_bg_job(struct pipe *pi);
551static void remove_bg_job(struct pipe *pi);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000552static void delete_finished_bg_job(struct pipe *pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000553#else
554int checkjobs_and_fg_shell(struct pipe* fg_pipe); /* never called */
555#endif
Eric Andersenf72f5622001-05-15 23:21:41 +0000556/* local variable support */
Denis Vlasenko170435c2007-05-23 13:01:10 +0000557static char **expand_strvec_to_strvec(char **argv);
558/* used for eval */
559static char *expand_strvec_to_string(char **argv);
Denis Vlasenkob6a741f2007-05-17 14:38:17 +0000560/* used for expansion of right hand of assignments */
Denis Vlasenko170435c2007-05-23 13:01:10 +0000561static char *expand_string_to_string(const char *str);
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000562static struct variable *get_local_var(const char *name);
563static int set_local_var(char *str, int flg_export);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +0000564static void unset_local_var(const char *name);
Eric Andersen25f27032001-04-26 23:22:31 +0000565
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000566
567static char **add_strings_to_strings(int need_xstrdup, char **strings, char **add)
568{
569 int i;
570 unsigned count1;
571 unsigned count2;
572 char **v;
573
574 v = strings;
575 count1 = 0;
576 if (v) {
577 while (*v) {
578 count1++;
579 v++;
580 }
581 }
582 count2 = 0;
583 v = add;
584 while (*v) {
585 count2++;
586 v++;
587 }
588 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
589 v[count1 + count2] = NULL;
590 i = count2;
591 while (--i >= 0)
592 v[count1 + i] = need_xstrdup ? xstrdup(add[i]) : add[i];
593 return v;
594}
595
596/* 'add' should be a malloced pointer */
597static char **add_string_to_strings(char **strings, char *add)
598{
599 char *v[2];
600
601 v[0] = add;
602 v[1] = NULL;
603
604 return add_strings_to_strings(0, strings, v);
605}
606
607static void free_strings(char **strings)
608{
609 if (strings) {
610 char **v = strings;
611 while (*v)
612 free(*v++);
613 free(strings);
614 }
615}
616
617
Denis Vlasenko83506862007-11-23 13:11:42 +0000618/* Function prototypes for builtins */
619static int builtin_cd(char **argv);
Denis Vlasenko5bc593c2007-11-23 21:20:21 +0000620static int builtin_echo(char **argv);
Denis Vlasenko83506862007-11-23 13:11:42 +0000621static int builtin_eval(char **argv);
622static int builtin_exec(char **argv);
623static int builtin_exit(char **argv);
624static int builtin_export(char **argv);
625#if ENABLE_HUSH_JOB
626static int builtin_fg_bg(char **argv);
627static int builtin_jobs(char **argv);
628#endif
629#if ENABLE_HUSH_HELP
630static int builtin_help(char **argv);
631#endif
632static int builtin_pwd(char **argv);
633static int builtin_read(char **argv);
634static int builtin_test(char **argv);
635static int builtin_set(char **argv);
636static int builtin_shift(char **argv);
637static int builtin_source(char **argv);
638static int builtin_umask(char **argv);
639static int builtin_unset(char **argv);
640//static int builtin_not_written(char **argv);
641
Eric Andersen25f27032001-04-26 23:22:31 +0000642/* Table of built-in functions. They can be forked or not, depending on
643 * context: within pipes, they fork. As simple commands, they do not.
644 * When used in non-forking context, they can change global variables
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000645 * in the parent shell process. If forked, of course they cannot.
Eric Andersen25f27032001-04-26 23:22:31 +0000646 * For example, 'unset foo | whatever' will parse and run, but foo will
647 * still be set at the end. */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000648struct built_in_command {
649 const char *cmd; /* name */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000650 int (*function) (char **argv); /* function ptr */
Denis Vlasenko06810332007-05-21 23:30:54 +0000651#if ENABLE_HUSH_HELP
652 const char *descr; /* description */
653#define BLTIN(cmd, func, help) { cmd, func, help }
654#else
655#define BLTIN(cmd, func, help) { cmd, func }
656#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000657};
658
Denis Vlasenko5bc593c2007-11-23 21:20:21 +0000659/* For now, echo and test are unconditionally enabled.
660 * Maybe make it configurable? */
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +0000661static const struct built_in_command bltins[] = {
Denis Vlasenko83506862007-11-23 13:11:42 +0000662 BLTIN("[" , builtin_test, "Test condition"),
663 BLTIN("[[" , builtin_test, "Test condition"),
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000664#if ENABLE_HUSH_JOB
Denis Vlasenko06810332007-05-21 23:30:54 +0000665 BLTIN("bg" , builtin_fg_bg, "Resume a job in the background"),
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000666#endif
Denis Vlasenko06810332007-05-21 23:30:54 +0000667// BLTIN("break" , builtin_not_written, "Exit for, while or until loop"),
668 BLTIN("cd" , builtin_cd, "Change working directory"),
669// BLTIN("continue", builtin_not_written, "Continue for, while or until loop"),
Denis Vlasenko5bc593c2007-11-23 21:20:21 +0000670 BLTIN("echo" , builtin_echo, "Write strings to stdout"),
Denis Vlasenko06810332007-05-21 23:30:54 +0000671 BLTIN("eval" , builtin_eval, "Construct and run shell command"),
672 BLTIN("exec" , builtin_exec, "Exec command, replacing this shell with the exec'd process"),
673 BLTIN("exit" , builtin_exit, "Exit from shell"),
674 BLTIN("export", builtin_export, "Set environment variable"),
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000675#if ENABLE_HUSH_JOB
Denis Vlasenko06810332007-05-21 23:30:54 +0000676 BLTIN("fg" , builtin_fg_bg, "Bring job into the foreground"),
677 BLTIN("jobs" , builtin_jobs, "Lists the active jobs"),
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000678#endif
Denis Vlasenko06810332007-05-21 23:30:54 +0000679// TODO: remove pwd? we have it as an applet...
680 BLTIN("pwd" , builtin_pwd, "Print current directory"),
681 BLTIN("read" , builtin_read, "Input environment variable"),
682// BLTIN("return", builtin_not_written, "Return from a function"),
683 BLTIN("set" , builtin_set, "Set/unset shell local variables"),
684 BLTIN("shift" , builtin_shift, "Shift positional parameters"),
685// BLTIN("trap" , builtin_not_written, "Trap signals"),
Denis Vlasenko83506862007-11-23 13:11:42 +0000686 BLTIN("test" , builtin_test, "Test condition"),
Denis Vlasenko06810332007-05-21 23:30:54 +0000687// BLTIN("ulimit", builtin_not_written, "Controls resource limits"),
688 BLTIN("umask" , builtin_umask, "Sets file creation mask"),
689 BLTIN("unset" , builtin_unset, "Unset environment variable"),
690 BLTIN("." , builtin_source, "Source-in and run commands in a file"),
691#if ENABLE_HUSH_HELP
692 BLTIN("help" , builtin_help, "List shell built-in commands"),
693#endif
694 BLTIN(NULL, NULL, NULL)
Eric Andersen25f27032001-04-26 23:22:31 +0000695};
696
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000697#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000698
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000699/* move to libbb? */
700static void signal_SA_RESTART(int sig, void (*handler)(int))
701{
702 struct sigaction sa;
703 sa.sa_handler = handler;
704 sa.sa_flags = SA_RESTART;
705 sigemptyset(&sa.sa_mask);
706 sigaction(sig, &sa, NULL);
707}
708
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000709/* Signals are grouped, we handle them in batches */
710static void set_fatal_sighandler(void (*handler)(int))
711{
712 signal(SIGILL , handler);
713 signal(SIGTRAP, handler);
714 signal(SIGABRT, handler);
715 signal(SIGFPE , handler);
716 signal(SIGBUS , handler);
717 signal(SIGSEGV, handler);
718 /* bash 3.2 seems to handle these just like 'fatal' ones */
719 signal(SIGHUP , handler);
720 signal(SIGPIPE, handler);
721 signal(SIGALRM, handler);
722}
723static void set_jobctrl_sighandler(void (*handler)(int))
724{
725 signal(SIGTSTP, handler);
726 signal(SIGTTIN, handler);
727 signal(SIGTTOU, handler);
728}
729static void set_misc_sighandler(void (*handler)(int))
730{
731 signal(SIGINT , handler);
732 signal(SIGQUIT, handler);
733 signal(SIGTERM, handler);
734}
735/* SIGCHLD is special and handled separately */
736
737static void set_every_sighandler(void (*handler)(int))
738{
739 set_fatal_sighandler(handler);
740 set_jobctrl_sighandler(handler);
741 set_misc_sighandler(handler);
742 signal(SIGCHLD, handler);
743}
744
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +0000745static void handler_ctrl_c(int sig)
746{
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000747 debug_printf_jobs("got sig %d\n", sig);
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +0000748// as usual we can have all kinds of nasty problems with leaked malloc data here
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000749 siglongjmp(toplevel_jb, 1);
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +0000750}
751
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000752static void handler_ctrl_z(int sig)
753{
754 pid_t pid;
755
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000756 debug_printf_jobs("got tty sig %d in pid %d\n", sig, getpid());
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000757 pid = fork();
Denis Vlasenkoc2990322007-05-16 12:57:12 +0000758 if (pid < 0) /* can't fork. Pretend there was no ctrl-Z */
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000759 return;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000760 ctrl_z_flag = 1;
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000761 if (!pid) { /* child */
Denis Vlasenkoc04163a2008-02-11 08:30:53 +0000762 die_sleep = 0; /* let nofork's xfuncs die */
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000763 setpgrp();
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000764 debug_printf_jobs("set pgrp for child %d ok\n", getpid());
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000765 set_every_sighandler(SIG_DFL);
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000766 raise(SIGTSTP); /* resend TSTP so that child will be stopped */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000767 debug_printf_jobs("returning in child\n");
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000768 /* return to nofork, it will eventually exit now,
769 * not return back to shell */
770 return;
771 }
772 /* parent */
773 /* finish filling up pipe info */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000774 toplevel_list->pgrp = pid; /* child is in its own pgrp */
775 toplevel_list->progs[0].pid = pid;
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000776 /* parent needs to longjmp out of running nofork.
777 * we will "return" exitcode 0, with child put in background */
778// as usual we can have all kinds of nasty problems with leaked malloc data here
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000779 debug_printf_jobs("siglongjmp in parent\n");
780 siglongjmp(toplevel_jb, 1);
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000781}
782
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000783/* Restores tty foreground process group, and exits.
784 * May be called as signal handler for fatal signal
785 * (will faithfully resend signal to itself, producing correct exit state)
786 * or called directly with -EXITCODE.
787 * We also call it if xfunc is exiting. */
788static void sigexit(int sig) ATTRIBUTE_NORETURN;
789static void sigexit(int sig)
790{
791 sigset_t block_all;
792
793 /* Disable all signals: job control, SIGPIPE, etc. */
794 sigfillset(&block_all);
795 sigprocmask(SIG_SETMASK, &block_all, NULL);
796
Denis Vlasenko87cb2db2007-04-21 10:00:01 +0000797 if (interactive_fd)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000798 tcsetpgrp(interactive_fd, saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000799
800 /* Not a signal, just exit */
801 if (sig <= 0)
802 _exit(- sig);
803
804 /* Enable only this sig and kill ourself with it */
805 signal(sig, SIG_DFL);
806 sigdelset(&block_all, sig);
807 sigprocmask(SIG_SETMASK, &block_all, NULL);
808 raise(sig);
809 _exit(1); /* Should not reach it */
810}
811
812/* Restores tty foreground process group, and exits. */
813static void hush_exit(int exitcode) ATTRIBUTE_NORETURN;
814static void hush_exit(int exitcode)
815{
816 fflush(NULL); /* flush all streams */
817 sigexit(- (exitcode & 0xff));
818}
819
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000820#else /* !JOB */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000821
822#define set_fatal_sighandler(handler) ((void)0)
823#define set_jobctrl_sighandler(handler) ((void)0)
824#define set_misc_sighandler(handler) ((void)0)
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000825#define hush_exit(e) exit(e)
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000826
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000827#endif /* JOB */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000828
829
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000830static const char *set_cwd(void)
831{
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000832 if (cwd == bb_msg_unknown)
Denis Vlasenko7cced6e2007-04-12 17:08:53 +0000833 cwd = NULL; /* xrealloc_getcwd_or_warn(arg) calls free(arg)! */
Denis Vlasenko6ca04442007-02-11 16:19:28 +0000834 cwd = xrealloc_getcwd_or_warn((char *)cwd);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000835 if (!cwd)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000836 cwd = bb_msg_unknown;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000837 return cwd;
838}
839
Denis Vlasenko83506862007-11-23 13:11:42 +0000840
841/* built-in 'test' handler */
842static int builtin_test(char **argv)
843{
844 int argc = 0;
845 while (*argv) {
846 argc++;
847 argv++;
848 }
849 return test_main(argc, argv - argc);
850}
851
Denis Vlasenko5bc593c2007-11-23 21:20:21 +0000852/* built-in 'test' handler */
853static int builtin_echo(char **argv)
854{
855 int argc = 0;
856 while (*argv) {
857 argc++;
858 argv++;
859 }
Denis Vlasenkofe5e23b2007-11-24 02:23:51 +0000860 return echo_main(argc, argv - argc);
Denis Vlasenko5bc593c2007-11-23 21:20:21 +0000861}
862
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000863/* built-in 'eval' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000864static int builtin_eval(char **argv)
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000865{
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000866 int rcode = EXIT_SUCCESS;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000867
Denis Vlasenko1359da62007-04-21 23:27:30 +0000868 if (argv[1]) {
Denis Vlasenko170435c2007-05-23 13:01:10 +0000869 char *str = expand_strvec_to_string(argv + 1);
870 parse_and_run_string(str, PARSEFLAG_EXIT_FROM_LOOP |
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000871 PARSEFLAG_SEMICOLON);
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000872 free(str);
873 rcode = last_return_code;
874 }
875 return rcode;
876}
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000877
Eric Andersen25f27032001-04-26 23:22:31 +0000878/* built-in 'cd <path>' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000879static int builtin_cd(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000880{
Denis Vlasenko170435c2007-05-23 13:01:10 +0000881 const char *newdir;
Denis Vlasenko96e1b382007-09-30 23:50:48 +0000882 if (argv[1] == NULL) {
883 // bash does nothing (exitcode 0) if HOME is ""; if it's unset,
884 // bash says "bash: cd: HOME not set" and does nothing (exitcode 1)
Denis Vlasenko170435c2007-05-23 13:01:10 +0000885 newdir = getenv("HOME") ? : "/";
Denis Vlasenko96e1b382007-09-30 23:50:48 +0000886 } else
Denis Vlasenko1359da62007-04-21 23:27:30 +0000887 newdir = argv[1];
Eric Andersen25f27032001-04-26 23:22:31 +0000888 if (chdir(newdir)) {
889 printf("cd: %s: %s\n", newdir, strerror(errno));
890 return EXIT_FAILURE;
891 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000892 set_cwd();
Eric Andersen25f27032001-04-26 23:22:31 +0000893 return EXIT_SUCCESS;
894}
895
Eric Andersen25f27032001-04-26 23:22:31 +0000896/* built-in 'exec' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000897static int builtin_exec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000898{
Denis Vlasenko1359da62007-04-21 23:27:30 +0000899 if (argv[1] == NULL)
Eric Andersen25f27032001-04-26 23:22:31 +0000900 return EXIT_SUCCESS; /* Really? */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000901 pseudo_exec_argv(argv + 1);
Eric Andersen25f27032001-04-26 23:22:31 +0000902 /* never returns */
903}
904
905/* built-in 'exit' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000906static int builtin_exit(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000907{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000908// TODO: bash does it ONLY on top-level sh exit (+interacive only?)
909 //puts("exit"); /* bash does it */
Denis Vlasenkof2fffd02007-05-02 23:39:04 +0000910// TODO: warn if we have background jobs: "There are stopped jobs"
911// On second consecutive 'exit', exit anyway.
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000912
Denis Vlasenko1359da62007-04-21 23:27:30 +0000913 if (argv[1] == NULL)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000914 hush_exit(last_return_code);
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000915 /* mimic bash: exit 123abc == exit 255 + error msg */
916 xfunc_error_retval = 255;
917 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenkof2fffd02007-05-02 23:39:04 +0000918 hush_exit(xatoi(argv[1]) & 0xff);
Eric Andersen25f27032001-04-26 23:22:31 +0000919}
920
921/* built-in 'export VAR=value' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000922static int builtin_export(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000923{
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000924 const char *value;
Denis Vlasenko1359da62007-04-21 23:27:30 +0000925 char *name = argv[1];
Eric Andersen25f27032001-04-26 23:22:31 +0000926
Eric Andersenf72f5622001-05-15 23:21:41 +0000927 if (name == NULL) {
Denis Vlasenkof2fffd02007-05-02 23:39:04 +0000928 // TODO:
929 // ash emits: export VAR='VAL'
930 // bash: declare -x VAR="VAL"
931 // (both also escape as needed (quotes, $, etc))
932 char **e = environ;
933 if (e)
934 while (*e)
935 puts(*e++);
936 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +0000937 }
Eric Andersenf72f5622001-05-15 23:21:41 +0000938
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000939 value = strchr(name, '=');
940 if (!value) {
941 /* They are exporting something without a =VALUE */
942 struct variable *var;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000943
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000944 var = get_local_var(name);
945 if (var) {
946 var->flg_export = 1;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000947 putenv(var->varstr);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000948 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000949 /* bash does not return an error when trying to export
950 * an undefined variable. Do likewise. */
951 return EXIT_SUCCESS;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000952 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000953
954 set_local_var(xstrdup(name), 1);
955 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +0000956}
957
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000958#if ENABLE_HUSH_JOB
Eric Andersen25f27032001-04-26 23:22:31 +0000959/* built-in 'fg' and 'bg' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000960static int builtin_fg_bg(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000961{
Eric Andersen0fcd4472001-05-02 20:12:03 +0000962 int i, jobnum;
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000963 struct pipe *pi;
Eric Andersen25f27032001-04-26 23:22:31 +0000964
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000965 if (!interactive_fd)
Eric Andersenc798b072001-06-22 06:23:03 +0000966 return EXIT_FAILURE;
Eric Andersen0fcd4472001-05-02 20:12:03 +0000967 /* If they gave us no args, assume they want the last backgrounded task */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000968 if (!argv[1]) {
Eric Andersenc798b072001-06-22 06:23:03 +0000969 for (pi = job_list; pi; pi = pi->next) {
970 if (pi->jobid == last_jobid) {
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000971 goto found;
Eric Andersen0fcd4472001-05-02 20:12:03 +0000972 }
973 }
Denis Vlasenko1359da62007-04-21 23:27:30 +0000974 bb_error_msg("%s: no current job", argv[0]);
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000975 return EXIT_FAILURE;
976 }
Denis Vlasenko1359da62007-04-21 23:27:30 +0000977 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
978 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000979 return EXIT_FAILURE;
980 }
981 for (pi = job_list; pi; pi = pi->next) {
982 if (pi->jobid == jobnum) {
983 goto found;
Eric Andersen25f27032001-04-26 23:22:31 +0000984 }
985 }
Denis Vlasenko1359da62007-04-21 23:27:30 +0000986 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000987 return EXIT_FAILURE;
988 found:
Denis Vlasenko52881e92007-04-21 13:42:52 +0000989 // TODO: bash prints a string representation
990 // of job being foregrounded (like "sleep 1 | cat")
Denis Vlasenko1359da62007-04-21 23:27:30 +0000991 if (*argv[0] == 'f') {
Eric Andersen028b65b2001-06-28 01:10:11 +0000992 /* Put the job into the foreground. */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000993 tcsetpgrp(interactive_fd, pi->pgrp);
Eric Andersen25f27032001-04-26 23:22:31 +0000994 }
995
996 /* Restart the processes in the job */
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000997 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_progs, pi->pgrp);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000998 for (i = 0; i < pi->num_progs; i++) {
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000999 debug_printf_jobs("reviving pid %d\n", pi->progs[i].pid);
Eric Andersen0fcd4472001-05-02 20:12:03 +00001000 pi->progs[i].is_stopped = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001001 }
1002 pi->stopped_progs = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00001003
Denis Vlasenkobb81c582007-01-30 22:32:09 +00001004 i = kill(- pi->pgrp, SIGCONT);
1005 if (i < 0) {
Denis Vlasenko8a28e622007-04-14 11:16:29 +00001006 if (errno == ESRCH) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001007 delete_finished_bg_job(pi);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001008 return EXIT_SUCCESS;
Eric Andersen028b65b2001-06-28 01:10:11 +00001009 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001010 bb_perror_msg("kill (SIGCONT)");
Eric Andersen028b65b2001-06-28 01:10:11 +00001011 }
1012 }
Eric Andersen25f27032001-04-26 23:22:31 +00001013
Denis Vlasenko1359da62007-04-21 23:27:30 +00001014 if (*argv[0] == 'f') {
1015 remove_bg_job(pi);
Denis Vlasenko52881e92007-04-21 13:42:52 +00001016 return checkjobs_and_fg_shell(pi);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001017 }
Eric Andersen25f27032001-04-26 23:22:31 +00001018 return EXIT_SUCCESS;
1019}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001020#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001021
1022/* built-in 'help' handler */
Denis Vlasenko06810332007-05-21 23:30:54 +00001023#if ENABLE_HUSH_HELP
Denis Vlasenko1359da62007-04-21 23:27:30 +00001024static int builtin_help(char **argv ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +00001025{
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00001026 const struct built_in_command *x;
Eric Andersen25f27032001-04-26 23:22:31 +00001027
1028 printf("\nBuilt-in commands:\n");
1029 printf("-------------------\n");
1030 for (x = bltins; x->cmd; x++) {
Eric Andersen25f27032001-04-26 23:22:31 +00001031 printf("%s\t%s\n", x->cmd, x->descr);
1032 }
1033 printf("\n\n");
1034 return EXIT_SUCCESS;
1035}
Denis Vlasenko06810332007-05-21 23:30:54 +00001036#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001037
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001038#if ENABLE_HUSH_JOB
Eric Andersen25f27032001-04-26 23:22:31 +00001039/* built-in 'jobs' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001040static int builtin_jobs(char **argv ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +00001041{
1042 struct pipe *job;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001043 const char *status_string;
Eric Andersen25f27032001-04-26 23:22:31 +00001044
Eric Andersenc798b072001-06-22 06:23:03 +00001045 for (job = job_list; job; job = job->next) {
Eric Andersen25f27032001-04-26 23:22:31 +00001046 if (job->running_progs == job->stopped_progs)
1047 status_string = "Stopped";
1048 else
1049 status_string = "Running";
Eric Andersen52a97ca2001-06-22 06:49:26 +00001050
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001051 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
Eric Andersen25f27032001-04-26 23:22:31 +00001052 }
1053 return EXIT_SUCCESS;
1054}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001055#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001056
Eric Andersen25f27032001-04-26 23:22:31 +00001057/* built-in 'pwd' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001058static int builtin_pwd(char **argv ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +00001059{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001060 puts(set_cwd());
Eric Andersen25f27032001-04-26 23:22:31 +00001061 return EXIT_SUCCESS;
1062}
1063
1064/* built-in 'read VAR' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001065static int builtin_read(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001066{
Denis Vlasenkod67cef22007-06-13 06:47:47 +00001067 char *string;
Denis Vlasenko3e7b0e62007-05-16 12:52:15 +00001068 const char *name = argv[1] ? argv[1] : "REPLY";
Eric Andersen25f27032001-04-26 23:22:31 +00001069
Denis Vlasenkod67cef22007-06-13 06:47:47 +00001070 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name));
1071 return set_local_var(string, 0);
Eric Andersen25f27032001-04-26 23:22:31 +00001072}
1073
Denis Vlasenko3e7b0e62007-05-16 12:52:15 +00001074/* built-in 'set [VAR=value]' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001075static int builtin_set(char **argv)
Eric Andersenf72f5622001-05-15 23:21:41 +00001076{
Denis Vlasenko1359da62007-04-21 23:27:30 +00001077 char *temp = argv[1];
Denis Vlasenkod76c0492007-05-25 02:16:25 +00001078 struct variable *e;
Eric Andersenf72f5622001-05-15 23:21:41 +00001079
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001080 if (temp == NULL)
Denis Vlasenkod76c0492007-05-25 02:16:25 +00001081 for (e = top_var; e; e = e->next)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00001082 puts(e->varstr);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001083 else
Denis Vlasenkod76c0492007-05-25 02:16:25 +00001084 set_local_var(xstrdup(temp), 0);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001085
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001086 return EXIT_SUCCESS;
Eric Andersenf72f5622001-05-15 23:21:41 +00001087}
1088
1089
Eric Andersen25f27032001-04-26 23:22:31 +00001090/* Built-in 'shift' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001091static int builtin_shift(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001092{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001093 int n = 1;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001094 if (argv[1]) {
1095 n = atoi(argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +00001096 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001097 if (n >= 0 && n < global_argc) {
Denis Vlasenko004baba2007-05-20 22:22:18 +00001098 global_argv[n] = global_argv[0];
Eric Andersen25f27032001-04-26 23:22:31 +00001099 global_argc -= n;
1100 global_argv += n;
1101 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +00001102 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001103 return EXIT_FAILURE;
Eric Andersen25f27032001-04-26 23:22:31 +00001104}
1105
1106/* Built-in '.' handler (read-in and execute commands from file) */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001107static int builtin_source(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001108{
1109 FILE *input;
1110 int status;
1111
Denis Vlasenko1359da62007-04-21 23:27:30 +00001112 if (argv[1] == NULL)
Eric Andersen25f27032001-04-26 23:22:31 +00001113 return EXIT_FAILURE;
1114
1115 /* XXX search through $PATH is missing */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001116 input = fopen(argv[1], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00001117 if (!input) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001118 bb_error_msg("cannot open '%s'", argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +00001119 return EXIT_FAILURE;
1120 }
Denis Vlasenkoa0898172007-10-01 09:59:01 +00001121 close_on_exec_on(fileno(input));
Eric Andersen25f27032001-04-26 23:22:31 +00001122
1123 /* Now run the file */
1124 /* XXX argv and argc are broken; need to save old global_argv
1125 * (pointer only is OK!) on this stack frame,
Denis Vlasenko1359da62007-04-21 23:27:30 +00001126 * set global_argv=argv+1, recurse, and restore. */
Denis Vlasenko170435c2007-05-23 13:01:10 +00001127 status = parse_and_run_file(input);
Eric Andersen25f27032001-04-26 23:22:31 +00001128 fclose(input);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001129 return status;
Eric Andersen25f27032001-04-26 23:22:31 +00001130}
1131
Denis Vlasenko1359da62007-04-21 23:27:30 +00001132static int builtin_umask(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001133{
Eric Andersen83a2ae22001-05-07 17:59:25 +00001134 mode_t new_umask;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001135 const char *arg = argv[1];
Eric Andersen83a2ae22001-05-07 17:59:25 +00001136 char *end;
1137 if (arg) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001138 new_umask = strtoul(arg, &end, 8);
1139 if (*end != '\0' || end == arg) {
Eric Andersen83a2ae22001-05-07 17:59:25 +00001140 return EXIT_FAILURE;
1141 }
1142 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001143 new_umask = umask(0);
1144 printf("%.3o\n", (unsigned) new_umask);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001145 }
1146 umask(new_umask);
1147 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +00001148}
1149
1150/* built-in 'unset VAR' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001151static int builtin_unset(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001152{
Denis Vlasenko3e7b0e62007-05-16 12:52:15 +00001153 /* bash always returns true */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001154 unset_local_var(argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +00001155 return EXIT_SUCCESS;
1156}
1157
Denis Vlasenko06810332007-05-21 23:30:54 +00001158//static int builtin_not_written(char **argv)
1159//{
1160// printf("builtin_%s not written\n", argv[0]);
1161// return EXIT_FAILURE;
1162//}
Eric Andersen83a2ae22001-05-07 17:59:25 +00001163
Eric Andersen25f27032001-04-26 23:22:31 +00001164static int b_check_space(o_string *o, int len)
1165{
1166 /* It would be easy to drop a more restrictive policy
1167 * in here, such as setting a maximum string length */
1168 if (o->length + len > o->maxlen) {
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001169 /* assert(data == NULL || o->maxlen != 0); */
Denis Vlasenkoef36ead2007-05-02 15:34:47 +00001170 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001171 o->data = xrealloc(o->data, 1 + o->maxlen);
Eric Andersen25f27032001-04-26 23:22:31 +00001172 }
1173 return o->data == NULL;
1174}
1175
1176static int b_addchr(o_string *o, int ch)
1177{
Denis Vlasenko831dcc42007-05-16 15:05:36 +00001178 debug_printf("b_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001179 if (b_check_space(o, 1))
1180 return B_NOSPAC;
Eric Andersen25f27032001-04-26 23:22:31 +00001181 o->data[o->length] = ch;
1182 o->length++;
1183 o->data[o->length] = '\0';
1184 return 0;
1185}
1186
1187static void b_reset(o_string *o)
1188{
1189 o->length = 0;
1190 o->nonnull = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001191 if (o->data)
1192 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001193}
1194
1195static void b_free(o_string *o)
1196{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001197 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001198 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001199}
1200
1201/* My analysis of quoting semantics tells me that state information
1202 * is associated with a destination, not a source.
1203 */
1204static int b_addqchr(o_string *o, int ch, int quote)
1205{
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00001206 if (quote && strchr("*?[\\", ch)) {
Eric Andersen25f27032001-04-26 23:22:31 +00001207 int rc;
1208 rc = b_addchr(o, '\\');
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001209 if (rc)
1210 return rc;
Eric Andersen25f27032001-04-26 23:22:31 +00001211 }
1212 return b_addchr(o, ch);
1213}
1214
Eric Andersen25f27032001-04-26 23:22:31 +00001215static int static_get(struct in_str *i)
1216{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001217 int ch = *i->p++;
1218 if (ch == '\0') return EOF;
Eric Andersen25f27032001-04-26 23:22:31 +00001219 return ch;
1220}
1221
1222static int static_peek(struct in_str *i)
1223{
1224 return *i->p;
1225}
1226
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001227#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001228#if ENABLE_FEATURE_EDITING
Rob Landley88621d72006-08-29 19:41:06 +00001229static void cmdedit_set_initial_prompt(void)
Eric Andersen25f27032001-04-26 23:22:31 +00001230{
Denis Vlasenko38f63192007-01-22 09:03:07 +00001231#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +00001232 PS1 = NULL;
1233#else
1234 PS1 = getenv("PS1");
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001235 if (PS1 == NULL)
Eric Andersen25f27032001-04-26 23:22:31 +00001236 PS1 = "\\w \\$ ";
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001237#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001238}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001239#endif /* EDITING */
Eric Andersen25f27032001-04-26 23:22:31 +00001240
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001241static const char* setup_prompt_string(int promptmode)
Eric Andersen25f27032001-04-26 23:22:31 +00001242{
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001243 const char *prompt_str;
1244 debug_printf("setup_prompt_string %d ", promptmode);
Denis Vlasenko38f63192007-01-22 09:03:07 +00001245#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +00001246 /* Set up the prompt */
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001247 if (promptmode == 0) { /* PS1 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001248 free((char*)PS1);
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001249 PS1 = xasprintf("%s %c ", cwd, (geteuid() != 0) ? '$' : '#');
1250 prompt_str = PS1;
Eric Andersen25f27032001-04-26 23:22:31 +00001251 } else {
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001252 prompt_str = PS2;
Eric Andersen25f27032001-04-26 23:22:31 +00001253 }
1254#else
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001255 prompt_str = (promptmode == 0) ? PS1 : PS2;
Eric Andersenaf44a0e2001-04-27 07:26:12 +00001256#endif
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001257 debug_printf("result '%s'\n", prompt_str);
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001258 return prompt_str;
Eric Andersen25f27032001-04-26 23:22:31 +00001259}
1260
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001261static void get_user_input(struct in_str *i)
Eric Andersen25f27032001-04-26 23:22:31 +00001262{
Denis Vlasenko0937be52007-04-28 16:47:08 +00001263 int r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001264 const char *prompt_str;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001265
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001266 prompt_str = setup_prompt_string(i->promptmode);
Denis Vlasenko38f63192007-01-22 09:03:07 +00001267#if ENABLE_FEATURE_EDITING
Denis Vlasenko170435c2007-05-23 13:01:10 +00001268 /* Enable command line editing only while a command line
1269 * is actually being read; otherwise, we'll end up bequeathing
1270 * atexit() handlers and other unwanted stuff to our
1271 * child processes (rob@sysgo.de) */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001272 r = read_line_input(prompt_str, user_input_buf, BUFSIZ-1, line_input_state);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001273 i->eof_flag = (r < 0);
1274 if (i->eof_flag) { /* EOF/error detected */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001275 user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1276 user_input_buf[1] = '\0';
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001277 }
Eric Andersen25f27032001-04-26 23:22:31 +00001278#else
1279 fputs(prompt_str, stdout);
1280 fflush(stdout);
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001281 user_input_buf[0] = r = fgetc(i->file);
1282 /*user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001283 i->eof_flag = (r == EOF);
Eric Andersen25f27032001-04-26 23:22:31 +00001284#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001285 i->p = user_input_buf;
Eric Andersen25f27032001-04-26 23:22:31 +00001286}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001287#endif /* INTERACTIVE */
Eric Andersen25f27032001-04-26 23:22:31 +00001288
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001289/* This is the magic location that prints prompts
Eric Andersen25f27032001-04-26 23:22:31 +00001290 * and gets data back from the user */
1291static int file_get(struct in_str *i)
1292{
1293 int ch;
1294
Eric Andersen25f27032001-04-26 23:22:31 +00001295 /* If there is data waiting, eat it up */
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001296 if (i->p && *i->p) {
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001297#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001298 take_cached:
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001299#endif
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001300 ch = *i->p++;
1301 if (i->eof_flag && !*i->p)
1302 ch = EOF;
Eric Andersen25f27032001-04-26 23:22:31 +00001303 } else {
1304 /* need to double check i->file because we might be doing something
1305 * more complicated by now, like sourcing or substituting. */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001306#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001307 if (interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001308 do {
1309 get_user_input(i);
1310 } while (!*i->p); /* need non-empty line */
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001311 i->promptmode = 1; /* PS2 */
1312 i->promptme = 0;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001313 goto take_cached;
Eric Andersen25f27032001-04-26 23:22:31 +00001314 }
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001315#endif
1316 ch = fgetc(i->file);
Eric Andersen25f27032001-04-26 23:22:31 +00001317 }
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001318 debug_printf("file_get: got a '%c' %d\n", ch, ch);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001319#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001320 if (ch == '\n')
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001321 i->promptme = 1;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001322#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001323 return ch;
1324}
1325
1326/* All the callers guarantee this routine will never be
1327 * used right after a newline, so prompting is not needed.
1328 */
1329static int file_peek(struct in_str *i)
1330{
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00001331 int ch;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001332 if (i->p && *i->p) {
1333 if (i->eof_flag && !i->p[1])
1334 return EOF;
1335 return *i->p;
Eric Andersen25f27032001-04-26 23:22:31 +00001336 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00001337 ch = fgetc(i->file);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001338 i->eof_flag = (ch == EOF);
1339 i->peek_buf[0] = ch;
1340 i->peek_buf[1] = '\0';
1341 i->p = i->peek_buf;
1342 debug_printf("file_peek: got a '%c' %d\n", *i->p, *i->p);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00001343 return ch;
Eric Andersen25f27032001-04-26 23:22:31 +00001344}
1345
1346static void setup_file_in_str(struct in_str *i, FILE *f)
1347{
1348 i->peek = file_peek;
1349 i->get = file_get;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001350#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001351 i->promptme = 1;
1352 i->promptmode = 0; /* PS1 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001353#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001354 i->file = f;
1355 i->p = NULL;
1356}
1357
1358static void setup_string_in_str(struct in_str *i, const char *s)
1359{
1360 i->peek = static_peek;
1361 i->get = static_get;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001362#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001363 i->promptme = 1;
1364 i->promptmode = 0; /* PS1 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001365#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001366 i->p = s;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001367 i->eof_flag = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00001368}
1369
Eric Andersen25f27032001-04-26 23:22:31 +00001370/* squirrel != NULL means we squirrel away copies of stdin, stdout,
1371 * and stderr if they are redirected. */
1372static int setup_redirects(struct child_prog *prog, int squirrel[])
1373{
1374 int openfd, mode;
1375 struct redir_struct *redir;
1376
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001377 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001378 if (redir->dup == -1 && redir->glob_word == NULL) {
Eric Andersen817e73c2001-06-06 17:56:09 +00001379 /* something went wrong in the parse. Pretend it didn't happen */
1380 continue;
1381 }
Eric Andersen25f27032001-04-26 23:22:31 +00001382 if (redir->dup == -1) {
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00001383 char *p;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001384 mode = redir_table[redir->type].mode;
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00001385 p = expand_string_to_string(redir->glob_word[0]);
1386 openfd = open_or_warn(p, mode);
1387 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00001388 if (openfd < 0) {
1389 /* this could get lost if stderr has been redirected, but
1390 bash and ash both lose it as well (though zsh doesn't!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001391 return 1;
1392 }
1393 } else {
1394 openfd = redir->dup;
1395 }
1396
1397 if (openfd != redir->fd) {
1398 if (squirrel && redir->fd < 3) {
1399 squirrel[redir->fd] = dup(redir->fd);
1400 }
Eric Andersen83a2ae22001-05-07 17:59:25 +00001401 if (openfd == -3) {
Denis Vlasenko8412d792007-10-01 09:59:47 +00001402 //close(openfd); // close(-3) ??!
Eric Andersen83a2ae22001-05-07 17:59:25 +00001403 } else {
1404 dup2(openfd, redir->fd);
Matt Kraaic616e532001-06-05 16:50:08 +00001405 if (redir->dup == -1)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001406 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001407 }
Eric Andersen25f27032001-04-26 23:22:31 +00001408 }
1409 }
1410 return 0;
1411}
1412
1413static void restore_redirects(int squirrel[])
1414{
1415 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001416 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00001417 fd = squirrel[i];
1418 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00001419 /* We simply die on error */
1420 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00001421 }
1422 }
1423}
1424
Denis Vlasenko05743d72008-02-10 12:10:08 +00001425/* Called after [v]fork() in run_pipe(), or from builtin_exec().
Denis Vlasenko8412d792007-10-01 09:59:47 +00001426 * Never returns.
1427 * XXX no exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00001428 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001429 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001430static void pseudo_exec_argv(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001431{
Eric Andersen78a7c992001-05-15 16:30:25 +00001432 int i, rcode;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001433 char *p;
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00001434 const struct built_in_command *x;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001435
Denis Vlasenko1359da62007-04-21 23:27:30 +00001436 for (i = 0; is_assignment(argv[i]); i++) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001437 debug_printf_exec("pid %d environment modification: %s\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001438 getpid(), argv[i]);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001439// FIXME: vfork case??
Denis Vlasenko170435c2007-05-23 13:01:10 +00001440 p = expand_string_to_string(argv[i]);
1441 putenv(p);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001442 }
1443 argv += i;
1444 /* If a variable is assigned in a forest, and nobody listens,
1445 * was it ever really set?
1446 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00001447 if (!argv[0])
Denis Vlasenko1359da62007-04-21 23:27:30 +00001448 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001449
Denis Vlasenko170435c2007-05-23 13:01:10 +00001450 argv = expand_strvec_to_strvec(argv);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00001451
Denis Vlasenko1359da62007-04-21 23:27:30 +00001452 /*
1453 * Check if the command matches any of the builtins.
1454 * Depending on context, this might be redundant. But it's
1455 * easier to waste a few CPU cycles than it is to figure out
1456 * if this is one of those cases.
1457 */
1458 for (x = bltins; x->cmd; x++) {
1459 if (strcmp(argv[0], x->cmd) == 0) {
Denis Vlasenko764d59d2007-05-14 16:23:23 +00001460 debug_printf_exec("running builtin '%s'\n", argv[0]);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001461 rcode = x->function(argv);
1462 fflush(stdout);
1463 _exit(rcode);
Eric Andersen94ac2442001-05-22 19:05:18 +00001464 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001465 }
Eric Andersen78a7c992001-05-15 16:30:25 +00001466
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001467 /* Check if the command matches any busybox applets */
Denis Vlasenko80d14be2007-04-10 23:03:30 +00001468#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001469 if (strchr(argv[0], '/') == NULL) {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00001470 int a = find_applet_by_name(argv[0]);
1471 if (a >= 0) {
1472 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001473 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00001474// is it ok that run_applet_no_and_exit() does exit(), not _exit()?
1475 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001476 }
1477 /* re-exec ourselves with the new arguments */
1478 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenkobdbbb7e2007-06-08 15:02:55 +00001479 execvp(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001480 /* If they called chroot or otherwise made the binary no longer
1481 * executable, fall through */
1482 }
1483 }
Eric Andersenaac75e52001-04-30 18:18:45 +00001484#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001485
1486 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001487 execvp(argv[0], argv);
1488 bb_perror_msg("cannot exec '%s'", argv[0]);
1489 _exit(1);
1490}
1491
Denis Vlasenko05743d72008-02-10 12:10:08 +00001492/* Called after [v]fork() in run_pipe()
Denis Vlasenko8412d792007-10-01 09:59:47 +00001493 */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001494static void pseudo_exec(struct child_prog *child)
1495{
Denis Vlasenkof2fffd02007-05-02 23:39:04 +00001496// FIXME: buggy wrt NOMMU! Must not modify any global data
Denis Vlasenko05743d72008-02-10 12:10:08 +00001497// until it does exec/_exit, but currently it does
1498// (puts malloc'ed stuff into environment)
1499 if (child->argv)
Denis Vlasenko1359da62007-04-21 23:27:30 +00001500 pseudo_exec_argv(child->argv);
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001501
1502 if (child->group) {
Denis Vlasenko8412d792007-10-01 09:59:47 +00001503#if !BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00001504 bb_error_msg_and_die("nested lists are not supported on NOMMU");
Denis Vlasenko8412d792007-10-01 09:59:47 +00001505#else
Denis Vlasenko3b492162007-12-24 14:26:57 +00001506 int rcode;
1507
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001508#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko05743d72008-02-10 12:10:08 +00001509// run_list_level now takes care of it?
1510// debug_printf_exec("pseudo_exec: setting interactive_fd=0\n");
1511// interactive_fd = 0; /* crucial!!!! */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001512#endif
Denis Vlasenko05743d72008-02-10 12:10:08 +00001513 debug_printf_exec("pseudo_exec: run_list\n");
1514 rcode = run_list(child->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00001515 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00001516 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00001517 _exit(rcode);
Denis Vlasenko8412d792007-10-01 09:59:47 +00001518#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001519 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001520
1521 /* Can happen. See what bash does with ">foo" by itself. */
1522 debug_printf("trying to pseudo_exec null command\n");
1523 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00001524}
1525
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001526#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001527static const char *get_cmdtext(struct pipe *pi)
1528{
1529 char **argv;
1530 char *p;
1531 int len;
1532
1533 /* This is subtle. ->cmdtext is created only on first backgrounding.
1534 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001535 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001536 if (pi->cmdtext)
1537 return pi->cmdtext;
1538 argv = pi->progs[0].argv;
1539 if (!argv || !argv[0])
1540 return (pi->cmdtext = xzalloc(1));
1541
1542 len = 0;
1543 do len += strlen(*argv) + 1; while (*++argv);
1544 pi->cmdtext = p = xmalloc(len);
1545 argv = pi->progs[0].argv;
1546 do {
1547 len = strlen(*argv);
1548 memcpy(p, *argv, len);
1549 p += len;
1550 *p++ = ' ';
1551 } while (*++argv);
1552 p[-1] = '\0';
1553 return pi->cmdtext;
1554}
1555
Eric Andersenbafd94f2001-05-02 16:11:59 +00001556static void insert_bg_job(struct pipe *pi)
1557{
1558 struct pipe *thejob;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001559 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001560
1561 /* Linear search for the ID of the job to use */
1562 pi->jobid = 1;
Eric Andersenc798b072001-06-22 06:23:03 +00001563 for (thejob = job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001564 if (thejob->jobid >= pi->jobid)
1565 pi->jobid = thejob->jobid + 1;
1566
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001567 /* Add thejob to the list of running jobs */
Eric Andersenc798b072001-06-22 06:23:03 +00001568 if (!job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001569 thejob = job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001570 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001571 for (thejob = job_list; thejob->next; thejob = thejob->next)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001572 continue;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001573 thejob->next = xmalloc(sizeof(*thejob));
1574 thejob = thejob->next;
1575 }
1576
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001577 /* Physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00001578 memcpy(thejob, pi, sizeof(struct pipe));
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001579 thejob->progs = xzalloc(sizeof(pi->progs[0]) * pi->num_progs);
1580 /* We cannot copy entire pi->progs[] vector! Double free()s will happen */
1581 for (i = 0; i < pi->num_progs; i++) {
1582// TODO: do we really need to have so many fields which are just dead weight
1583// at execution stage?
1584 thejob->progs[i].pid = pi->progs[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001585 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001586 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001587 thejob->next = NULL;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001588 thejob->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001589
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001590 /* We don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00001591 to the list of backgrounded thejobs and leave it alone */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001592 printf("[%d] %d %s\n", thejob->jobid, thejob->progs[0].pid, thejob->cmdtext);
Eric Andersen1a6d39b2001-05-08 05:11:54 +00001593 last_bg_pid = thejob->progs[0].pid;
Eric Andersenc798b072001-06-22 06:23:03 +00001594 last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001595}
1596
Eric Andersenbafd94f2001-05-02 16:11:59 +00001597static void remove_bg_job(struct pipe *pi)
1598{
1599 struct pipe *prev_pipe;
1600
Eric Andersenc798b072001-06-22 06:23:03 +00001601 if (pi == job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001602 job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001603 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001604 prev_pipe = job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001605 while (prev_pipe->next != pi)
1606 prev_pipe = prev_pipe->next;
1607 prev_pipe->next = pi->next;
1608 }
Eric Andersen028b65b2001-06-28 01:10:11 +00001609 if (job_list)
1610 last_jobid = job_list->jobid;
1611 else
1612 last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001613}
Eric Andersen028b65b2001-06-28 01:10:11 +00001614
Denis Vlasenko1359da62007-04-21 23:27:30 +00001615/* remove a backgrounded job */
1616static void delete_finished_bg_job(struct pipe *pi)
1617{
1618 remove_bg_job(pi);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001619 pi->stopped_progs = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00001620 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001621 free(pi);
1622}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001623#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001624
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001625/* Checks to see if any processes have exited -- if they
Eric Andersenbafd94f2001-05-02 16:11:59 +00001626 have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00001627static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001628{
Eric Andersenc798b072001-06-22 06:23:03 +00001629 int attributes;
1630 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001631#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00001632 int prognum = 0;
1633 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001634#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001635 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001636 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001637
Eric Andersenc798b072001-06-22 06:23:03 +00001638 attributes = WUNTRACED;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001639 if (fg_pipe == NULL) {
Eric Andersenc798b072001-06-22 06:23:03 +00001640 attributes |= WNOHANG;
1641 }
1642
Denis Vlasenko1359da62007-04-21 23:27:30 +00001643/* Do we do this right?
1644 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001645 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00001646 * [3]+ Stopped sleep 20 | false
1647 * bash-3.00# echo $?
1648 * 1 <========== bg pipe is not fully done, but exitcode is already known!
1649 */
1650
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001651//FIXME: non-interactive bash does not continue even if all processes in fg pipe
1652//are stopped. Testcase: "cat | cat" in a script (not on command line)
1653// + killall -STOP cat
1654
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001655 wait_more:
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001656// TODO: safe_waitpid?
Eric Andersenc798b072001-06-22 06:23:03 +00001657 while ((childpid = waitpid(-1, &status, attributes)) > 0) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001658 const int dead = WIFEXITED(status) || WIFSIGNALED(status);
1659
1660#ifdef DEBUG_SHELL_JOBS
1661 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001662 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001663 childpid, WSTOPSIG(status), WEXITSTATUS(status));
1664 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001665 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001666 childpid, WTERMSIG(status), WEXITSTATUS(status));
1667 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001668 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001669 childpid, WEXITSTATUS(status));
1670#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001671 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00001672 if (fg_pipe) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001673 int i;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001674 for (i = 0; i < fg_pipe->num_progs; i++) {
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001675 debug_printf_jobs("check pid %d\n", fg_pipe->progs[i].pid);
Eric Andersenc798b072001-06-22 06:23:03 +00001676 if (fg_pipe->progs[i].pid == childpid) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001677 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001678 if (dead) {
1679 fg_pipe->progs[i].pid = 0;
1680 fg_pipe->running_progs--;
Denis Vlasenko05743d72008-02-10 12:10:08 +00001681 if (i == fg_pipe->num_progs - 1)
Denis Vlasenko1359da62007-04-21 23:27:30 +00001682 /* last process gives overall exitstatus */
1683 rcode = WEXITSTATUS(status);
1684 } else {
1685 fg_pipe->progs[i].is_stopped = 1;
1686 fg_pipe->stopped_progs++;
1687 }
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001688 debug_printf_jobs("fg_pipe: running_progs %d stopped_progs %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001689 fg_pipe->running_progs, fg_pipe->stopped_progs);
1690 if (fg_pipe->running_progs - fg_pipe->stopped_progs <= 0) {
1691 /* All processes in fg pipe have exited/stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001692#if ENABLE_HUSH_JOB
Denis Vlasenko1359da62007-04-21 23:27:30 +00001693 if (fg_pipe->running_progs)
1694 insert_bg_job(fg_pipe);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001695#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001696 return rcode;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001697 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001698 /* There are still running processes in the fg pipe */
1699 goto wait_more;
Eric Andersenc798b072001-06-22 06:23:03 +00001700 }
1701 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001702 /* fall through to searching process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00001703 }
1704
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001705#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001706 /* We asked to wait for bg or orphaned children */
1707 /* No need to remember exitcode in this case */
Eric Andersenc798b072001-06-22 06:23:03 +00001708 for (pi = job_list; pi; pi = pi->next) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00001709 prognum = 0;
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001710 while (prognum < pi->num_progs) {
1711 if (pi->progs[prognum].pid == childpid)
1712 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00001713 prognum++;
1714 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001715 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001716#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001717
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001718 /* Happens when shell is used as init process (init=/bin/sh) */
1719 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001720 goto wait_more;
Eric Andersenaeb44c42001-05-22 20:29:00 +00001721
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001722#if ENABLE_HUSH_JOB
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001723 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00001724 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00001725 /* child exited */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001726 pi->progs[prognum].pid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001727 pi->running_progs--;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001728 if (!pi->running_progs) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001729 printf(JOB_STATUS_FORMAT, pi->jobid,
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001730 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001731 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001732 }
1733 } else {
1734 /* child stopped */
1735 pi->stopped_progs++;
1736 pi->progs[prognum].is_stopped = 1;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001737 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001738#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001739 }
1740
Denis Vlasenko1359da62007-04-21 23:27:30 +00001741 /* wait found no children or failed */
1742
1743 if (childpid && errno != ECHILD)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001744 bb_perror_msg("waitpid");
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001745 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00001746}
1747
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001748#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00001749static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
1750{
1751 pid_t p;
1752 int rcode = checkjobs(fg_pipe);
1753 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00001754 p = getpgid(0); /* pgid of our process */
1755 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00001756 if (tcsetpgrp(interactive_fd, p) && errno != ENOTTY)
1757 bb_perror_msg("tcsetpgrp-4a");
1758 return rcode;
1759}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001760#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00001761
Denis Vlasenko05743d72008-02-10 12:10:08 +00001762/* run_pipe() starts all the jobs, but doesn't wait for anything
Eric Andersenc798b072001-06-22 06:23:03 +00001763 * to finish. See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00001764 *
1765 * return code is normally -1, when the caller has to wait for children
1766 * to finish to determine the exit status of the pipe. If the pipe
1767 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00001768 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00001769 * return value.
1770 *
1771 * The input of the pipe is always stdin, the output is always
1772 * stdout. The outpipe[] mechanism in BusyBox-0.48 lash is bogus,
1773 * because it tries to avoid running the command substitution in
1774 * subshell, when that is in fact necessary. The subshell process
1775 * now has its stdout directed to the input of the appropriate pipe,
1776 * so this routine is noticeably simpler.
Denis Vlasenko170435c2007-05-23 13:01:10 +00001777 *
1778 * Returns -1 only if started some children. IOW: we have to
1779 * mask out retvals of builtins etc with 0xff!
Eric Andersen25f27032001-04-26 23:22:31 +00001780 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00001781static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00001782{
1783 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001784 int nextin;
1785 int pipefds[2]; /* pipefds[0] is for reading */
Rob Landley53702e52006-07-19 21:43:53 +00001786 struct child_prog *child;
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00001787 const struct built_in_command *x;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001788 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001789 /* it is not always needed, but we aim to smaller code */
1790 int squirrel[] = { -1, -1, -1 };
1791 int rcode;
Denis Vlasenko52881e92007-04-21 13:42:52 +00001792 const int single_fg = (pi->num_progs == 1 && pi->followup != PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00001793
Denis Vlasenko05743d72008-02-10 12:10:08 +00001794 debug_printf_exec("run_pipe start: single_fg=%d\n", single_fg);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00001795
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001796#if ENABLE_HUSH_JOB
Eric Andersenada18ff2001-05-21 16:18:22 +00001797 pi->pgrp = -1;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001798#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001799 pi->running_progs = 1;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001800 pi->stopped_progs = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00001801
1802 /* Check if this is a simple builtin (not part of a pipe).
1803 * Builtins within pipes have to fork anyway, and are handled in
1804 * pseudo_exec. "echo foo | read bar" doesn't work on bash, either.
1805 */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001806 child = &(pi->progs[0]);
Denis Vlasenko52881e92007-04-21 13:42:52 +00001807 if (single_fg && child->group && child->subshell == 0) {
Eric Andersen04407e52001-06-07 16:42:05 +00001808 debug_printf("non-subshell grouping\n");
1809 setup_redirects(child, squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00001810 debug_printf_exec(": run_list\n");
1811 rcode = run_list(child->group) & 0xff;
Eric Andersen04407e52001-06-07 16:42:05 +00001812 restore_redirects(squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00001813 debug_printf_exec("run_pipe return %d\n", rcode);
1814 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001815 }
1816
Denis Vlasenko1359da62007-04-21 23:27:30 +00001817 if (single_fg && child->argv != NULL) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001818 char **argv_expanded;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001819 char **argv = child->argv;
1820
1821 for (i = 0; is_assignment(argv[i]); i++)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001822 continue;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001823 if (i != 0 && argv[i] == NULL) {
Eric Andersen78a7c992001-05-15 16:30:25 +00001824 /* assignments, but no command: set the local environment */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001825 for (i = 0; argv[i] != NULL; i++) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00001826 debug_printf("local environment set: %s\n", argv[i]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00001827 p = expand_string_to_string(argv[i]);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00001828 set_local_var(p, 0);
Eric Andersen78a7c992001-05-15 16:30:25 +00001829 }
1830 return EXIT_SUCCESS; /* don't worry about errors in set_local_var() yet */
1831 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001832 for (i = 0; is_assignment(argv[i]); i++) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00001833 p = expand_string_to_string(argv[i]);
1834 //sp: child->sp--;
1835 putenv(p);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001836 }
Eric Andersen25f27032001-04-26 23:22:31 +00001837 for (x = bltins; x->cmd; x++) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001838 if (strcmp(argv[i], x->cmd) == 0) {
1839 if (x->function == builtin_exec && argv[i+1] == NULL) {
Eric Andersen83a2ae22001-05-07 17:59:25 +00001840 debug_printf("magic exec\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001841 setup_redirects(child, NULL);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001842 return EXIT_SUCCESS;
1843 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001844 debug_printf("builtin inline %s\n", argv[0]);
Eric Andersen25f27032001-04-26 23:22:31 +00001845 /* XXX setup_redirects acts on file descriptors, not FILEs.
1846 * This is perfect for work that comes after exec().
1847 * Is it really safe for inline use? Experimentally,
1848 * things seem to work with glibc. */
1849 setup_redirects(child, squirrel);
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001850 debug_printf_exec(": builtin '%s' '%s'...\n", x->cmd, argv[i+1]);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001851 //sp: if (child->sp) /* btw we can do it unconditionally... */
Denis Vlasenko170435c2007-05-23 13:01:10 +00001852 argv_expanded = expand_strvec_to_strvec(argv + i);
1853 rcode = x->function(argv_expanded) & 0xff;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001854 free(argv_expanded);
Eric Andersen25f27032001-04-26 23:22:31 +00001855 restore_redirects(squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00001856 debug_printf_exec("run_pipe return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001857 return rcode;
1858 }
1859 }
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001860#if ENABLE_FEATURE_SH_STANDALONE
1861 {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00001862 int a = find_applet_by_name(argv[i]);
1863 if (a >= 0 && APPLET_IS_NOFORK(a)) {
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001864 setup_redirects(child, squirrel);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001865 save_nofork_data(&nofork_save);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00001866 argv_expanded = argv + i;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001867 //sp: if (child->sp)
Denis Vlasenko170435c2007-05-23 13:01:10 +00001868 argv_expanded = expand_strvec_to_strvec(argv + i);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00001869 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n", argv_expanded[0], argv_expanded[1]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00001870 rcode = run_nofork_applet_prime(&nofork_save, a, argv_expanded) & 0xff;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001871 free(argv_expanded);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001872 restore_redirects(squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00001873 debug_printf_exec("run_pipe return %d\n", rcode);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001874 return rcode;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001875 }
1876 }
1877#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001878 }
1879
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001880 /* Disable job control signals for shell (parent) and
1881 * for initial child code after fork */
1882 set_jobctrl_sighandler(SIG_IGN);
1883
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001884 /* Going to fork a child per each pipe member */
1885 pi->running_progs = 0;
1886 nextin = 0;
1887
Eric Andersen25f27032001-04-26 23:22:31 +00001888 for (i = 0; i < pi->num_progs; i++) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001889 child = &(pi->progs[i]);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001890 if (child->argv)
1891 debug_printf_exec(": pipe member '%s' '%s'...\n", child->argv[0], child->argv[1]);
1892 else
1893 debug_printf_exec(": pipe member with no argv\n");
Eric Andersen25f27032001-04-26 23:22:31 +00001894
1895 /* pipes are inserted between pairs of commands */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001896 pipefds[0] = 0;
1897 pipefds[1] = 1;
1898 if ((i + 1) < pi->num_progs)
1899 xpipe(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00001900
Denis Vlasenko05743d72008-02-10 12:10:08 +00001901 child->pid = BB_MMU ? fork() : vfork();
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001902 if (!child->pid) { /* child */
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00001903 die_sleep = 0; /* let nofork's xfuncs die */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001904#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001905 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00001906 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko170435c2007-05-23 13:01:10 +00001907 if (run_list_level == 1 && interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00001908 pid_t pgrp;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001909 /* Don't do pgrp restore anymore on fatal signals */
1910 set_fatal_sighandler(SIG_DFL);
Denis Vlasenko05743d72008-02-10 12:10:08 +00001911 pgrp = pi->pgrp;
1912 if (pgrp < 0) /* true for 1st process only */
1913 pgrp = getpid();
1914 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001915 /* We do it in *every* child, not just first,
1916 * to avoid races */
Denis Vlasenko05743d72008-02-10 12:10:08 +00001917 tcsetpgrp(interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001918 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001919 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001920#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +00001921 xmove_fd(nextin, 0);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001922 xmove_fd(pipefds[1], 1); /* write end */
1923 if (pipefds[0] > 1)
1924 close(pipefds[0]); /* read end */
Eric Andersen25f27032001-04-26 23:22:31 +00001925 /* Like bash, explicit redirects override pipes,
1926 * and the pipe fd is available for dup'ing. */
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001927 setup_redirects(child, NULL);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001928
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001929 /* Restore default handlers just prior to exec */
1930 set_jobctrl_sighandler(SIG_DFL);
1931 set_misc_sighandler(SIG_DFL);
1932 signal(SIGCHLD, SIG_DFL);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001933 pseudo_exec(child); /* does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00001934 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001935
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001936 if (child->pid < 0) { /* [v]fork failed */
1937 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko05743d72008-02-10 12:10:08 +00001938 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001939 } else {
1940 pi->running_progs++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001941#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001942 /* Second and next children need to know pid of first one */
1943 if (pi->pgrp < 0)
1944 pi->pgrp = child->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001945#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001946 }
Eric Andersen25f27032001-04-26 23:22:31 +00001947
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001948 if (i)
1949 close(nextin);
1950 if ((i + 1) < pi->num_progs)
1951 close(pipefds[1]); /* write end */
1952 /* Pass read (output) pipe end to next iteration */
Eric Andersen25f27032001-04-26 23:22:31 +00001953 nextin = pipefds[0];
1954 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00001955
Denis Vlasenko05743d72008-02-10 12:10:08 +00001956 if (!pi->running_progs) {
1957 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
1958 return 1;
1959 }
1960
1961 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->running_progs);
Eric Andersen25f27032001-04-26 23:22:31 +00001962 return -1;
1963}
1964
Denis Vlasenko4b924f32007-05-30 00:29:55 +00001965#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001966static void debug_print_tree(struct pipe *pi, int lvl)
1967{
1968 static const char *PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001969 [PIPE_SEQ] = "SEQ",
1970 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001971 [PIPE_OR ] = "OR" ,
1972 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001973 };
1974 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001975 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00001976#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001977 [RES_IF ] = "IF" ,
1978 [RES_THEN ] = "THEN" ,
1979 [RES_ELIF ] = "ELIF" ,
1980 [RES_ELSE ] = "ELSE" ,
1981 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00001982#endif
1983#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001984 [RES_FOR ] = "FOR" ,
1985 [RES_WHILE] = "WHILE",
1986 [RES_UNTIL] = "UNTIL",
1987 [RES_DO ] = "DO" ,
1988 [RES_DONE ] = "DONE" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001989 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00001990#endif
1991 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001992 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001993 };
1994
1995 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00001996
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001997 pin = 0;
1998 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00001999 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
2000 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002001 prn = 0;
2002 while (prn < pi->num_progs) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002003 struct child_prog *child = &pi->progs[prn];
2004 char **argv = child->argv;
2005
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002006 fprintf(stderr, "%*s prog %d", lvl*2, "", prn);
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002007 if (child->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002008 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002009 (child->subshell ? "()" : "{}"),
2010 argv);
2011 debug_print_tree(child->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002012 prn++;
2013 continue;
2014 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002015 if (argv) while (*argv) {
2016 fprintf(stderr, " '%s'", *argv);
2017 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00002018 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002019 fprintf(stderr, "\n");
2020 prn++;
2021 }
2022 pi = pi->next;
2023 pin++;
2024 }
2025}
2026#endif
2027
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002028/* NB: called by pseudo_exec, and therefore must not modify any
2029 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002030static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00002031{
Denis Vlasenko06810332007-05-21 23:30:54 +00002032 struct pipe *rpipe;
2033#if ENABLE_HUSH_LOOPS
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002034 char *for_varname = NULL;
2035 char **for_lcur = NULL;
2036 char **for_list = NULL;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002037 int flag_rep = 0;
Denis Vlasenko06810332007-05-21 23:30:54 +00002038#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002039 int flag_skip = 1;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002040 int rcode = 0; /* probably for gcc only */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002041 int flag_restore = 0;
Denis Vlasenko06810332007-05-21 23:30:54 +00002042#if ENABLE_HUSH_IF
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002043 int if_code = 0, next_if_code = 0; /* need double-buffer to handle elif */
Denis Vlasenko06810332007-05-21 23:30:54 +00002044#else
2045 enum { if_code = 0, next_if_code = 0 };
2046#endif
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002047 reserved_style rword;
2048 reserved_style skip_more_for_this_rword = RES_XXXX;
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00002049
Denis Vlasenko05743d72008-02-10 12:10:08 +00002050 debug_printf_exec("run_list start lvl %d\n", run_list_level + 1);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00002051
Denis Vlasenko06810332007-05-21 23:30:54 +00002052#if ENABLE_HUSH_LOOPS
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002053 /* check syntax for "for" */
2054 for (rpipe = pi; rpipe; rpipe = rpipe->next) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002055 if ((rpipe->res_word == RES_IN || rpipe->res_word == RES_FOR)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002056 && (rpipe->next == NULL)
2057 ) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00002058 syntax("malformed for"); /* no IN or no commands after IN */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002059 debug_printf_exec("run_list lvl %d return 1\n", run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002060 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002061 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002062 if ((rpipe->res_word == RES_IN && rpipe->next->res_word == RES_IN && rpipe->next->progs[0].argv != NULL)
2063 || (rpipe->res_word == RES_FOR && rpipe->next->res_word != RES_IN)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002064 ) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002065 /* TODO: what is tested in the first condition? */
Denis Vlasenko90e485c2007-05-23 15:22:50 +00002066 syntax("malformed for"); /* 2nd condition: not followed by IN */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002067 debug_printf_exec("run_list lvl %d return 1\n", run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002068 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002069 }
2070 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002071#else
2072 rpipe = NULL;
2073#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002074
2075#if ENABLE_HUSH_JOB
2076 /* Example of nested list: "while true; do { sleep 1 | exit 2; } done".
2077 * We are saving state before entering outermost list ("while...done")
2078 * so that ctrl-Z will correctly background _entire_ outermost list,
2079 * not just a part of it (like "sleep 1 | exit 2") */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00002080 if (++run_list_level == 1 && interactive_fd) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002081 if (sigsetjmp(toplevel_jb, 1)) {
2082 /* ctrl-Z forked and we are parent; or ctrl-C.
2083 * Sighandler has longjmped us here */
2084 signal(SIGINT, SIG_IGN);
2085 signal(SIGTSTP, SIG_IGN);
2086 /* Restore level (we can be coming from deep inside
2087 * nested levels) */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00002088 run_list_level = 1;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002089#if ENABLE_FEATURE_SH_STANDALONE
2090 if (nofork_save.saved) { /* if save area is valid */
2091 debug_printf_jobs("exiting nofork early\n");
2092 restore_nofork_data(&nofork_save);
2093 }
2094#endif
2095 if (ctrl_z_flag) {
2096 /* ctrl-Z has forked and stored pid of the child in pi->pid.
2097 * Remember this child as background job */
2098 insert_bg_job(pi);
2099 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002100 /* ctrl-C. We just stop doing whatever we were doing */
Denis Vlasenko4daad902007-09-27 10:20:47 +00002101 bb_putchar('\n');
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002102 }
2103 rcode = 0;
2104 goto ret;
2105 }
2106 /* ctrl-Z handler will store pid etc in pi */
2107 toplevel_list = pi;
2108 ctrl_z_flag = 0;
2109#if ENABLE_FEATURE_SH_STANDALONE
2110 nofork_save.saved = 0; /* in case we will run a nofork later */
2111#endif
2112 signal_SA_RESTART(SIGTSTP, handler_ctrl_z);
2113 signal(SIGINT, handler_ctrl_c);
2114 }
Denis Vlasenko05743d72008-02-10 12:10:08 +00002115#endif /* JOB */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002116
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002117 for (; pi; pi = flag_restore ? rpipe : pi->next) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00002118//why? int save_num_progs;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002119 rword = pi->res_word;
Denis Vlasenko06810332007-05-21 23:30:54 +00002120#if ENABLE_HUSH_LOOPS
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002121 if (rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002122 flag_restore = 0;
2123 if (!rpipe) {
2124 flag_rep = 0;
2125 rpipe = pi;
2126 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002127 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002128#endif
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002129 debug_printf_exec(": rword=%d if_code=%d next_if_code=%d skip_more=%d\n",
2130 rword, if_code, next_if_code, skip_more_for_this_rword);
2131 if (rword == skip_more_for_this_rword && flag_skip) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002132 if (pi->followup == PIPE_SEQ)
2133 flag_skip = 0;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002134 continue;
2135 }
2136 flag_skip = 1;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002137 skip_more_for_this_rword = RES_XXXX;
Denis Vlasenko06810332007-05-21 23:30:54 +00002138#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002139 if (rword == RES_THEN || rword == RES_ELSE)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002140 if_code = next_if_code;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002141 if (rword == RES_THEN && if_code)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002142 continue;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002143 if (rword == RES_ELSE && !if_code)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002144 continue;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002145 if (rword == RES_ELIF && !if_code)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002146 break;
Denis Vlasenko06810332007-05-21 23:30:54 +00002147#endif
2148#if ENABLE_HUSH_LOOPS
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002149 if (rword == RES_FOR && pi->num_progs) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002150 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002151 /* first loop through for */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002152 /* if no variable values after "in" we skip "for" */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002153 if (!pi->next->progs->argv)
2154 continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002155 /* create list of variable values */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002156 for_list = expand_strvec_to_strvec(pi->next->progs->argv);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002157 for_lcur = for_list;
2158 for_varname = pi->progs->argv[0];
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002159 pi->progs->argv[0] = NULL;
2160 flag_rep = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002161 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002162 free(pi->progs->argv[0]);
2163 if (!*for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002164 /* for loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002165 free(for_list);
2166 for_lcur = NULL;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002167 flag_rep = 0;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002168 pi->progs->argv[0] = for_varname;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002169 continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002170 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002171 /* insert next value from for_lcur */
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002172 /* vda: does it need escaping? */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002173 pi->progs->argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002174 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002175 if (rword == RES_IN)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002176 continue;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002177 if (rword == RES_DO) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002178 if (!flag_rep)
2179 continue;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002180 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002181 if (rword == RES_DONE) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002182 if (flag_rep) {
2183 flag_restore = 1;
2184 } else {
2185 rpipe = NULL;
2186 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002187 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002188#endif
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002189 if (pi->num_progs == 0)
2190 continue;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002191//why? save_num_progs = pi->num_progs;
2192 debug_printf_exec(": run_pipe with %d members\n", pi->num_progs);
2193 rcode = run_pipe(pi);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002194 if (rcode != -1) {
Eric Andersen25f27032001-04-26 23:22:31 +00002195 /* We only ran a builtin: rcode was set by the return value
Denis Vlasenko05743d72008-02-10 12:10:08 +00002196 * of run_pipe(), and we don't need to wait for anything. */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002197 } else if (pi->followup == PIPE_BG) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002198 /* What does bash do with attempts to background builtins? */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002199 /* Even bash 3.2 doesn't do that well with nested bg:
2200 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
Denis Vlasenko170435c2007-05-23 13:01:10 +00002201 * I'm NOT treating inner &'s as jobs */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002202#if ENABLE_HUSH_JOB
Denis Vlasenko4b924f32007-05-30 00:29:55 +00002203 if (run_list_level == 1)
Denis Vlasenko170435c2007-05-23 13:01:10 +00002204 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002205#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002206 rcode = EXIT_SUCCESS;
2207 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002208#if ENABLE_HUSH_JOB
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00002209 if (run_list_level == 1 && interactive_fd) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00002210 /* waits for completion, then fg's main shell */
Denis Vlasenko52881e92007-04-21 13:42:52 +00002211 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002212 } else
2213#endif
2214 {
Denis Vlasenko170435c2007-05-23 13:01:10 +00002215 /* this one just waits for completion */
Eric Andersenc798b072001-06-22 06:23:03 +00002216 rcode = checkjobs(pi);
Eric Andersen25f27032001-04-26 23:22:31 +00002217 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002218 debug_printf_exec(": checkjobs returned %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00002219 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002220 debug_printf_exec(": setting last_return_code=%d\n", rcode);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002221 last_return_code = rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002222//why? pi->num_progs = save_num_progs;
Denis Vlasenko06810332007-05-21 23:30:54 +00002223#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002224 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002225 next_if_code = rcode; /* can be overwritten a number of times */
Denis Vlasenko06810332007-05-21 23:30:54 +00002226#endif
2227#if ENABLE_HUSH_LOOPS
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002228 if (rword == RES_WHILE)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002229 flag_rep = !last_return_code;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002230 if (rword == RES_UNTIL)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002231 flag_rep = last_return_code;
Denis Vlasenko06810332007-05-21 23:30:54 +00002232#endif
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002233 if ((rcode == EXIT_SUCCESS && pi->followup == PIPE_OR)
2234 || (rcode != EXIT_SUCCESS && pi->followup == PIPE_AND)
2235 ) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002236 skip_more_for_this_rword = rword;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002237 }
Eric Andersen028b65b2001-06-28 01:10:11 +00002238 checkjobs(NULL);
Eric Andersen25f27032001-04-26 23:22:31 +00002239 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002240
2241#if ENABLE_HUSH_JOB
2242 if (ctrl_z_flag) {
2243 /* ctrl-Z forked somewhere in the past, we are the child,
2244 * and now we completed running the list. Exit. */
2245 exit(rcode);
2246 }
2247 ret:
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00002248 if (!--run_list_level && interactive_fd) {
2249 signal(SIGTSTP, SIG_IGN);
2250 signal(SIGINT, SIG_IGN);
2251 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002252#endif
Denis Vlasenko05743d72008-02-10 12:10:08 +00002253 debug_printf_exec("run_list lvl %d return %d\n", run_list_level + 1, rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00002254 return rcode;
2255}
2256
Eric Andersen25f27032001-04-26 23:22:31 +00002257/* return code is the exit status of the pipe */
Eric Andersenbf7df042001-05-23 22:18:35 +00002258static int free_pipe(struct pipe *pi, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00002259{
2260 char **p;
2261 struct child_prog *child;
2262 struct redir_struct *r, *rnext;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002263 int a, i, ret_code = 0;
Eric Andersen52a97ca2001-06-22 06:49:26 +00002264
2265 if (pi->stopped_progs > 0)
2266 return ret_code;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002267 debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid());
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002268 for (i = 0; i < pi->num_progs; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002269 child = &pi->progs[i];
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002270 debug_printf_clean("%s command %d:\n", indenter(indent), i);
Eric Andersen25f27032001-04-26 23:22:31 +00002271 if (child->argv) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002272 for (a = 0, p = child->argv; *p; a++, p++) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002273 debug_printf_clean("%s argv[%d] = %s\n", indenter(indent), a, *p);
Eric Andersen25f27032001-04-26 23:22:31 +00002274 }
Denis Vlasenkof962a032007-11-23 12:50:54 +00002275 free_strings(child->argv);
2276 child->argv = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002277 } else if (child->group) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002278 debug_printf_clean("%s begin group (subshell:%d)\n", indenter(indent), child->subshell);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002279 ret_code = free_pipe_list(child->group, indent+3);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002280 debug_printf_clean("%s end group\n", indenter(indent));
Eric Andersen25f27032001-04-26 23:22:31 +00002281 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002282 debug_printf_clean("%s (nil)\n", indenter(indent));
Eric Andersen25f27032001-04-26 23:22:31 +00002283 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002284 for (r = child->redirects; r; r = rnext) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002285 debug_printf_clean("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->type].descrip);
Eric Andersen25f27032001-04-26 23:22:31 +00002286 if (r->dup == -1) {
Eric Andersen817e73c2001-06-06 17:56:09 +00002287 /* guard against the case >$FOO, where foo is unset or blank */
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002288 if (r->glob_word) {
2289 debug_printf_clean(" %s\n", r->glob_word[0]);
2290 free_strings(r->glob_word);
2291 r->glob_word = NULL;
Eric Andersen817e73c2001-06-06 17:56:09 +00002292 }
Eric Andersen25f27032001-04-26 23:22:31 +00002293 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002294 debug_printf_clean("&%d\n", r->dup);
Eric Andersen25f27032001-04-26 23:22:31 +00002295 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002296 rnext = r->next;
Eric Andersen25f27032001-04-26 23:22:31 +00002297 free(r);
2298 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002299 child->redirects = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002300 }
2301 free(pi->progs); /* children are an array, they get freed all at once */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002302 pi->progs = NULL;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002303#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002304 free(pi->cmdtext);
2305 pi->cmdtext = NULL;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002306#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002307 return ret_code;
2308}
2309
Eric Andersenbf7df042001-05-23 22:18:35 +00002310static int free_pipe_list(struct pipe *head, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00002311{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002312 int rcode = 0; /* if list has no members */
Eric Andersen25f27032001-04-26 23:22:31 +00002313 struct pipe *pi, *next;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002314
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002315 for (pi = head; pi; pi = next) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002316 debug_printf_clean("%s pipe reserved mode %d\n", indenter(indent), pi->res_word);
Eric Andersenbf7df042001-05-23 22:18:35 +00002317 rcode = free_pipe(pi, indent);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002318 debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002319 next = pi->next;
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002320 /*pi->next = NULL;*/
Eric Andersen25f27032001-04-26 23:22:31 +00002321 free(pi);
2322 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002323 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00002324}
2325
2326/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002327static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00002328{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002329 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002330 debug_printf_exec("run_and_free_list entered\n");
2331 if (!fake_mode) {
2332 debug_printf_exec(": run_list with %d members\n", pi->num_progs);
2333 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002334 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002335 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00002336 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00002337 * but doing that now would hobble the debugging effort. */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002338 free_pipe_list(pi, /* indent: */ 0);
2339 debug_printf_exec("run_nad_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00002340 return rcode;
2341}
2342
Denis Vlasenkoff097622007-10-01 10:00:45 +00002343/* Whoever decided to muck with glob internal data is AN IDIOT! */
2344/* uclibc happily changed the way it works (and it has rights to do so!),
2345 all hell broke loose (SEGVs) */
2346
Eric Andersen25f27032001-04-26 23:22:31 +00002347/* The API for glob is arguably broken. This routine pushes a non-matching
2348 * string into the output structure, removing non-backslashed backslashes.
2349 * If someone can prove me wrong, by performing this function within the
2350 * original glob(3) api, feel free to rewrite this routine into oblivion.
Eric Andersen25f27032001-04-26 23:22:31 +00002351 * XXX broken if the last character is '\\', check that before calling.
2352 */
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002353static char **globhack(const char *src, char **strings)
Eric Andersen25f27032001-04-26 23:22:31 +00002354{
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002355 int cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00002356 const char *s;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002357 char *v, *dest;
2358
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002359 for (cnt = 1, s = src; s && *s; s++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002360 if (*s == '\\') s++;
2361 cnt++;
2362 }
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002363 v = dest = xmalloc(cnt);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002364 for (s = src; s && *s; s++, dest++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002365 if (*s == '\\') s++;
2366 *dest = *s;
2367 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002368 *dest = '\0';
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002369
2370 return add_string_to_strings(strings, v);
Eric Andersen25f27032001-04-26 23:22:31 +00002371}
2372
2373/* XXX broken if the last character is '\\', check that before calling */
2374static int glob_needed(const char *s)
2375{
2376 for (; *s; s++) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002377 if (*s == '\\')
2378 s++;
2379 if (strchr("*[?", *s))
2380 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002381 }
2382 return 0;
2383}
2384
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002385static int xglob(o_string *dest, char ***pglob)
Eric Andersen25f27032001-04-26 23:22:31 +00002386{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002387 /* short-circuit for null word */
Eric Andersen25f27032001-04-26 23:22:31 +00002388 /* we can code this better when the debug_printf's are gone */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002389 if (dest->length == 0) {
2390 if (dest->nonnull) {
2391 /* bash man page calls this an "explicit" null */
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002392 *pglob = globhack(dest->data, *pglob);
2393 }
2394 return 0;
2395 }
2396
2397 if (glob_needed(dest->data)) {
2398 glob_t globdata;
2399 int gr;
2400
2401 memset(&globdata, 0, sizeof(globdata));
2402 gr = glob(dest->data, 0, NULL, &globdata);
2403 debug_printf("glob returned %d\n", gr);
2404 if (gr == GLOB_NOSPACE)
2405 bb_error_msg_and_die("out of memory during glob");
2406 if (gr == GLOB_NOMATCH) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002407 debug_printf("globhack returned %d\n", gr);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002408 /* quote removal, or more accurately, backslash removal */
2409 *pglob = globhack(dest->data, *pglob);
Denis Vlasenkof962a032007-11-23 12:50:54 +00002410 globfree(&globdata);
Eric Andersen25f27032001-04-26 23:22:31 +00002411 return 0;
2412 }
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002413 if (gr != 0) { /* GLOB_ABORTED ? */
2414 bb_error_msg("glob(3) error %d", gr);
Eric Andersen25f27032001-04-26 23:22:31 +00002415 }
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002416 if (globdata.gl_pathv && globdata.gl_pathv[0])
2417 *pglob = add_strings_to_strings(1, *pglob, globdata.gl_pathv);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002418 globfree(&globdata);
2419 return gr;
Eric Andersen25f27032001-04-26 23:22:31 +00002420 }
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002421
2422 *pglob = globhack(dest->data, *pglob);
2423 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00002424}
2425
Denis Vlasenko170435c2007-05-23 13:01:10 +00002426/* expand_strvec_to_strvec() takes a list of strings, expands
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002427 * all variable references within and returns a pointer to
2428 * a list of expanded strings, possibly with larger number
2429 * of strings. (Think VAR="a b"; echo $VAR).
2430 * This new list is allocated as a single malloc block.
2431 * NULL-terminated list of char* pointers is at the beginning of it,
2432 * followed by strings themself.
2433 * Caller can deallocate entire list by single free(list). */
2434
2435/* Helpers first:
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00002436 * count_XXX estimates size of the block we need. It's okay
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002437 * to over-estimate sizes a bit, if it makes code simpler */
2438static int count_ifs(const char *str)
2439{
2440 int cnt = 0;
2441 debug_printf_expand("count_ifs('%s') ifs='%s'", str, ifs);
2442 while (1) {
2443 str += strcspn(str, ifs);
2444 if (!*str) break;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002445 str++; /* str += strspn(str, ifs); */
2446 cnt++; /* cnt += strspn(str, ifs); - but this code is larger */
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002447 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002448 debug_printf_expand(" return %d\n", cnt);
2449 return cnt;
2450}
2451
2452static void count_var_expansion_space(int *countp, int *lenp, char *arg)
2453{
2454 char first_ch;
2455 int i;
2456 int len = *lenp;
2457 int count = *countp;
2458 const char *val;
2459 char *p;
2460
2461 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL))) {
2462 len += p - arg;
2463 arg = ++p;
2464 p = strchr(p, SPECIAL_VAR_SYMBOL);
2465 first_ch = arg[0];
2466
2467 switch (first_ch & 0x7f) {
2468 /* high bit in 1st_ch indicates that var is double-quoted */
2469 case '$': /* pid */
2470 case '!': /* bg pid */
2471 case '?': /* exitcode */
2472 case '#': /* argc */
2473 len += sizeof(int)*3 + 1; /* enough for int */
2474 break;
2475 case '*':
2476 case '@':
Denis Vlasenkoc3c66592007-11-24 00:22:42 +00002477 for (i = 1; global_argv[i]; i++) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002478 len += strlen(global_argv[i]) + 1;
2479 count++;
2480 if (!(first_ch & 0x80))
2481 count += count_ifs(global_argv[i]);
2482 }
2483 break;
2484 default:
2485 *p = '\0';
2486 arg[0] = first_ch & 0x7f;
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002487 if (isdigit(arg[0])) {
2488 i = xatoi_u(arg);
2489 val = NULL;
2490 if (i < global_argc)
2491 val = global_argv[i];
2492 } else
2493 val = lookup_param(arg);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002494 arg[0] = first_ch;
2495 *p = SPECIAL_VAR_SYMBOL;
2496
2497 if (val) {
2498 len += strlen(val) + 1;
2499 if (!(first_ch & 0x80))
2500 count += count_ifs(val);
2501 }
2502 }
2503 arg = ++p;
2504 }
2505
2506 len += strlen(arg) + 1;
2507 count++;
2508 *lenp = len;
2509 *countp = count;
2510}
2511
2512/* Store given string, finalizing the word and starting new one whenever
2513 * we encounter ifs char(s). This is used for expanding variable values.
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002514 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002515static int expand_on_ifs(char **list, int n, char **posp, const char *str)
2516{
2517 char *pos = *posp;
2518 while (1) {
2519 int word_len = strcspn(str, ifs);
2520 if (word_len) {
2521 memcpy(pos, str, word_len); /* store non-ifs chars */
2522 pos += word_len;
2523 str += word_len;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002524 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002525 if (!*str) /* EOL - do not finalize word */
2526 break;
2527 *pos++ = '\0';
2528 if (n) debug_printf_expand("expand_on_ifs finalized list[%d]=%p '%s' "
2529 "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2530 strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
2531 list[n++] = pos;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002532 str += strspn(str, ifs); /* skip ifs chars */
2533 }
2534 *posp = pos;
2535 return n;
2536}
2537
2538/* Expand all variable references in given string, adding words to list[]
2539 * at n, n+1,... positions. Return updated n (so that list[n] is next one
2540 * to be filled). This routine is extremely tricky: has to deal with
2541 * variables/parameters with whitespace, $* and $@, and constructs like
2542 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002543/* NB: another bug is that we cannot detect empty strings yet:
2544 * "" or $empty"" expands to zero words, has to expand to empty word */
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002545static int expand_vars_to_list(char **list, int n, char **posp, char *arg, char or_mask)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002546{
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002547 /* or_mask is either 0 (normal case) or 0x80
2548 * (expansion of right-hand side of assignment == 1-element expand) */
2549
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002550 char first_ch, ored_ch;
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002551 int i;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002552 const char *val;
2553 char *p;
2554 char *pos = *posp;
2555
2556 ored_ch = 0;
2557
2558 if (n) debug_printf_expand("expand_vars_to_list finalized list[%d]=%p '%s' "
2559 "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2560 strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
2561 list[n++] = pos;
2562
2563 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL))) {
2564 memcpy(pos, arg, p - arg);
2565 pos += (p - arg);
2566 arg = ++p;
2567 p = strchr(p, SPECIAL_VAR_SYMBOL);
2568
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002569 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002570 ored_ch |= first_ch;
2571 val = NULL;
2572 switch (first_ch & 0x7f) {
2573 /* Highest bit in first_ch indicates that var is double-quoted */
2574 case '$': /* pid */
2575 /* FIXME: (echo $$) should still print pid of main shell */
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00002576 val = utoa(getpid()); /* rootpid? */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002577 break;
2578 case '!': /* bg pid */
2579 val = last_bg_pid ? utoa(last_bg_pid) : (char*)"";
2580 break;
2581 case '?': /* exitcode */
2582 val = utoa(last_return_code);
2583 break;
2584 case '#': /* argc */
2585 val = utoa(global_argc ? global_argc-1 : 0);
2586 break;
2587 case '*':
2588 case '@':
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002589 i = 1;
Denis Vlasenkoc3c66592007-11-24 00:22:42 +00002590 if (!global_argv[i])
2591 break;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002592 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkoc3c66592007-11-24 00:22:42 +00002593 while (global_argv[i]) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002594 n = expand_on_ifs(list, n, &pos, global_argv[i]);
2595 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, global_argc-1);
Denis Vlasenkoc3c66592007-11-24 00:22:42 +00002596 if (global_argv[i++][0] && global_argv[i]) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002597 /* this argv[] is not empty and not last:
2598 * put terminating NUL, start new word */
2599 *pos++ = '\0';
2600 if (n) debug_printf_expand("expand_vars_to_list 2 finalized list[%d]=%p '%s' "
2601 "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2602 strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
2603 list[n++] = pos;
2604 }
2605 }
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002606 } else
2607 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002608 * and in this case should treat it like '$*' - see 'else...' below */
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002609 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002610 while (1) {
2611 strcpy(pos, global_argv[i]);
2612 pos += strlen(global_argv[i]);
2613 if (++i >= global_argc)
2614 break;
2615 *pos++ = '\0';
2616 if (n) debug_printf_expand("expand_vars_to_list 3 finalized list[%d]=%p '%s' "
2617 "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2618 strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
2619 list[n++] = pos;
2620 }
2621 } else { /* quoted $*: add as one word */
Denis Vlasenkoc3c66592007-11-24 00:22:42 +00002622 while (1) {
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002623 strcpy(pos, global_argv[i]);
2624 pos += strlen(global_argv[i]);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002625 if (!global_argv[++i])
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002626 break;
2627 if (ifs[0])
2628 *pos++ = ifs[0];
2629 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002630 }
2631 break;
2632 default:
2633 *p = '\0';
2634 arg[0] = first_ch & 0x7f;
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002635 if (isdigit(arg[0])) {
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002636 i = xatoi_u(arg);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002637 val = NULL;
2638 if (i < global_argc)
2639 val = global_argv[i];
2640 } else
2641 val = lookup_param(arg);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002642 arg[0] = first_ch;
2643 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002644 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002645 if (val) {
2646 n = expand_on_ifs(list, n, &pos, val);
2647 val = NULL;
2648 }
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002649 } /* else: quoted $VAR, val will be appended at pos */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002650 }
2651 if (val) {
2652 strcpy(pos, val);
2653 pos += strlen(val);
2654 }
2655 arg = ++p;
2656 }
2657 debug_printf_expand("expand_vars_to_list adding tail '%s' at %p\n", arg, pos);
2658 strcpy(pos, arg);
2659 pos += strlen(arg) + 1;
2660 if (pos == list[n-1] + 1) { /* expansion is empty */
2661 if (!(ored_ch & 0x80)) { /* all vars were not quoted... */
2662 debug_printf_expand("expand_vars_to_list list[%d] empty, going back\n", n);
2663 pos--;
2664 n--;
2665 }
2666 }
2667
2668 *posp = pos;
2669 return n;
2670}
2671
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002672static char **expand_variables(char **argv, char or_mask)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002673{
2674 int n;
2675 int count = 1;
2676 int len = 0;
2677 char *pos, **v, **list;
2678
2679 v = argv;
2680 if (!*v) debug_printf_expand("count_var_expansion_space: "
2681 "argv[0]=NULL count=%d len=%d alloc_space=%d\n",
2682 count, len, sizeof(char*) * count + len);
2683 while (*v) {
2684 count_var_expansion_space(&count, &len, *v);
2685 debug_printf_expand("count_var_expansion_space: "
2686 "'%s' count=%d len=%d alloc_space=%d\n",
2687 *v, count, len, sizeof(char*) * count + len);
2688 v++;
2689 }
2690 len += sizeof(char*) * count; /* total to alloc */
2691 list = xmalloc(len);
2692 pos = (char*)(list + count);
2693 debug_printf_expand("list=%p, list[0] should be %p\n", list, pos);
2694 n = 0;
2695 v = argv;
2696 while (*v)
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002697 n = expand_vars_to_list(list, n, &pos, *v++, or_mask);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002698
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002699 if (n) debug_printf_expand("finalized list[%d]=%p '%s' "
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002700 "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2701 strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002702 list[n] = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002703
2704#ifdef DEBUG_EXPAND
2705 {
2706 int m = 0;
2707 while (m <= n) {
2708 debug_printf_expand("list[%d]=%p '%s'\n", m, list[m], list[m]);
2709 m++;
2710 }
2711 debug_printf_expand("used_space=%d\n", pos - (char*)list);
2712 }
2713#endif
Denis Vlasenko170435c2007-05-23 13:01:10 +00002714 if (ENABLE_HUSH_DEBUG)
2715 if (pos - (char*)list > len)
2716 bb_error_msg_and_die("BUG in varexp");
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002717 return list;
2718}
2719
Denis Vlasenko170435c2007-05-23 13:01:10 +00002720static char **expand_strvec_to_strvec(char **argv)
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002721{
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002722 return expand_variables(argv, 0);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002723}
2724
Denis Vlasenko170435c2007-05-23 13:01:10 +00002725static char *expand_string_to_string(const char *str)
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002726{
2727 char *argv[2], **list;
2728
2729 argv[0] = (char*)str;
2730 argv[1] = NULL;
2731 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002732 if (ENABLE_HUSH_DEBUG)
2733 if (!list[0] || list[1])
2734 bb_error_msg_and_die("BUG in varexp2");
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002735 /* actually, just move string 2*sizeof(char*) bytes back */
2736 strcpy((char*)list, list[0]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00002737 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2738 return (char*)list;
2739}
2740
2741static char* expand_strvec_to_string(char **argv)
2742{
2743 char **list;
2744
2745 list = expand_variables(argv, 0x80);
2746 /* Convert all NULs to spaces */
2747 if (list[0]) {
2748 int n = 1;
2749 while (list[n]) {
2750 if (ENABLE_HUSH_DEBUG)
2751 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2752 bb_error_msg_and_die("BUG in varexp3");
2753 list[n][-1] = ' '; /* TODO: or to ifs[0]? */
2754 n++;
2755 }
2756 }
2757 strcpy((char*)list, list[0]);
2758 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002759 return (char*)list;
2760}
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002761
Eric Andersenf72f5622001-05-15 23:21:41 +00002762/* This is used to get/check local shell variables */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002763static struct variable *get_local_var(const char *name)
Eric Andersenf72f5622001-05-15 23:21:41 +00002764{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002765 struct variable *cur;
2766 int len;
Eric Andersenf72f5622001-05-15 23:21:41 +00002767
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002768 if (!name)
Eric Andersenf72f5622001-05-15 23:21:41 +00002769 return NULL;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002770 len = strlen(name);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002771 for (cur = top_var; cur; cur = cur->next) {
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002772 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002773 return cur;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00002774 }
Eric Andersenf72f5622001-05-15 23:21:41 +00002775 return NULL;
2776}
2777
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002778/* str holds "NAME=VAL" and is expected to be malloced.
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002779 * We take ownership of it. */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002780static int set_local_var(char *str, int flg_export)
Eric Andersen78a7c992001-05-15 16:30:25 +00002781{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002782 struct variable *cur;
2783 char *value;
2784 int name_len;
Eric Andersen20a69a72001-05-15 17:24:44 +00002785
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002786 value = strchr(str, '=');
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002787 if (!value) { /* not expected to ever happen? */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002788 free(str);
Eric Andersen99785762001-05-22 21:37:48 +00002789 return -1;
2790 }
Eric Andersen20a69a72001-05-15 17:24:44 +00002791
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002792 name_len = value - str + 1; /* including '=' */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002793 cur = top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
2794 while (1) {
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002795 if (strncmp(cur->varstr, str, name_len) != 0) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002796 if (!cur->next) {
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002797 /* Bail out. Note that now cur points
2798 * to last var in linked list */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002799 break;
Eric Andersen20a69a72001-05-15 17:24:44 +00002800 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002801 cur = cur->next;
2802 continue;
Eric Andersen20a69a72001-05-15 17:24:44 +00002803 }
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002804 /* We found an existing var with this name */
2805 *value = '\0';
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002806 if (cur->flg_read_only) {
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002807 bb_error_msg("%s: readonly variable", str);
2808 free(str);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002809 return -1;
2810 }
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002811 unsetenv(str); /* just in case */
2812 *value = '=';
2813 if (strcmp(cur->varstr, str) == 0) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002814 free_and_exp:
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002815 free(str);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002816 goto exp;
2817 }
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002818 if (cur->max_len >= strlen(str)) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002819 /* This one is from startup env, reuse space */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002820 strcpy(cur->varstr, str);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002821 goto free_and_exp;
2822 }
2823 /* max_len == 0 signifies "malloced" var, which we can
2824 * (and has to) free */
2825 if (!cur->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002826 free(cur->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002827 cur->max_len = 0;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002828 goto set_str_and_exp;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002829 }
Eric Andersen20a69a72001-05-15 17:24:44 +00002830
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002831 /* Not found - create next variable struct */
2832 cur->next = xzalloc(sizeof(*cur));
2833 cur = cur->next;
2834
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002835 set_str_and_exp:
2836 cur->varstr = str;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002837 exp:
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002838 if (flg_export)
2839 cur->flg_export = 1;
2840 if (cur->flg_export)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002841 return putenv(cur->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002842 return 0;
Eric Andersen20a69a72001-05-15 17:24:44 +00002843}
2844
Eric Andersenf72f5622001-05-15 23:21:41 +00002845static void unset_local_var(const char *name)
Eric Andersen20a69a72001-05-15 17:24:44 +00002846{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002847 struct variable *cur;
2848 struct variable *prev = prev; /* for gcc */
2849 int name_len;
Eric Andersen20a69a72001-05-15 17:24:44 +00002850
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002851 if (!name)
2852 return;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002853 name_len = strlen(name);
2854 cur = top_var;
2855 while (cur) {
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002856 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002857 if (cur->flg_read_only) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002858 bb_error_msg("%s: readonly variable", name);
Eric Andersen94ac2442001-05-22 19:05:18 +00002859 return;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002860 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002861 /* prev is ok to use here because 1st variable, HUSH_VERSION,
2862 * is ro, and we cannot reach this code on the 1st pass */
2863 prev->next = cur->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002864 unsetenv(cur->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002865 if (!cur->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002866 free(cur->varstr);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002867 free(cur);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002868 return;
Eric Andersenf72f5622001-05-15 23:21:41 +00002869 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002870 prev = cur;
2871 cur = cur->next;
Eric Andersen20a69a72001-05-15 17:24:44 +00002872 }
Eric Andersen78a7c992001-05-15 16:30:25 +00002873}
2874
2875static int is_assignment(const char *s)
2876{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002877 if (!s || !isalpha(*s))
2878 return 0;
2879 s++;
2880 while (isalnum(*s) || *s == '_')
2881 s++;
2882 return *s == '=';
Eric Andersen78a7c992001-05-15 16:30:25 +00002883}
2884
Eric Andersen25f27032001-04-26 23:22:31 +00002885/* the src parameter allows us to peek forward to a possible &n syntax
2886 * for file descriptor duplication, e.g., "2>&1".
2887 * Return code is 0 normally, 1 if a syntax error is detected in src.
2888 * Resource errors (in xmalloc) cause the process to exit */
2889static int setup_redirect(struct p_context *ctx, int fd, redir_type style,
2890 struct in_str *input)
2891{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002892 struct child_prog *child = ctx->child;
Eric Andersen25f27032001-04-26 23:22:31 +00002893 struct redir_struct *redir = child->redirects;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002894 struct redir_struct *last_redir = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002895
2896 /* Create a new redir_struct and drop it onto the end of the linked list */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002897 while (redir) {
2898 last_redir = redir;
2899 redir = redir->next;
Eric Andersen25f27032001-04-26 23:22:31 +00002900 }
Denis Vlasenkoff097622007-10-01 10:00:45 +00002901 redir = xzalloc(sizeof(struct redir_struct));
2902 /* redir->next = NULL; */
Denis Vlasenkod65ea392007-10-01 10:02:25 +00002903 /* redir->glob_word = NULL; */
Eric Andersen25f27032001-04-26 23:22:31 +00002904 if (last_redir) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002905 last_redir->next = redir;
Eric Andersen25f27032001-04-26 23:22:31 +00002906 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002907 child->redirects = redir;
Eric Andersen25f27032001-04-26 23:22:31 +00002908 }
2909
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002910 redir->type = style;
2911 redir->fd = (fd == -1) ? redir_table[style].default_fd : fd;
Eric Andersen25f27032001-04-26 23:22:31 +00002912
2913 debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
2914
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002915 /* Check for a '2>&1' type redirect */
Eric Andersen25f27032001-04-26 23:22:31 +00002916 redir->dup = redirect_dup_num(input);
2917 if (redir->dup == -2) return 1; /* syntax error */
2918 if (redir->dup != -1) {
2919 /* Erik had a check here that the file descriptor in question
Eric Andersen83a2ae22001-05-07 17:59:25 +00002920 * is legit; I postpone that to "run time"
2921 * A "-" representation of "close me" shows up as a -3 here */
Eric Andersen25f27032001-04-26 23:22:31 +00002922 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
2923 } else {
2924 /* We do _not_ try to open the file that src points to,
2925 * since we need to return and let src be expanded first.
2926 * Set ctx->pending_redirect, so we know what to do at the
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002927 * end of the next parsed word. */
Eric Andersen25f27032001-04-26 23:22:31 +00002928 ctx->pending_redirect = redir;
2929 }
2930 return 0;
2931}
2932
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00002933static struct pipe *new_pipe(void)
2934{
Eric Andersen25f27032001-04-26 23:22:31 +00002935 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002936 pi = xzalloc(sizeof(struct pipe));
2937 /*pi->num_progs = 0;*/
2938 /*pi->progs = NULL;*/
2939 /*pi->next = NULL;*/
2940 /*pi->followup = 0; invalid */
2941 if (RES_NONE)
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002942 pi->res_word = RES_NONE;
Eric Andersen25f27032001-04-26 23:22:31 +00002943 return pi;
2944}
2945
2946static void initialize_context(struct p_context *ctx)
2947{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002948 ctx->child = NULL;
Denis Vlasenko1a735862007-05-23 00:32:25 +00002949 ctx->pipe = ctx->list_head = new_pipe();
2950 ctx->pending_redirect = NULL;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002951 ctx->res_w = RES_NONE;
Denis Vlasenko1a735862007-05-23 00:32:25 +00002952 //only ctx->parse_type is not touched... is this intentional?
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002953 ctx->old_flag = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00002954 ctx->stack = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002955 done_command(ctx); /* creates the memory for working child */
2956}
2957
2958/* normal return is 0
2959 * if a reserved word is found, and processed, return 1
2960 * should handle if, then, elif, else, fi, for, while, until, do, done.
2961 * case, function, and select are obnoxious, save those for later.
2962 */
Denis Vlasenko06810332007-05-21 23:30:54 +00002963#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +00002964static int reserved_word(o_string *dest, struct p_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00002965{
2966 struct reserved_combo {
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002967 char literal[7];
2968 unsigned char code;
2969 int flag;
Eric Andersen25f27032001-04-26 23:22:31 +00002970 };
2971 /* Mostly a list of accepted follow-up reserved words.
2972 * FLAG_END means we are done with the sequence, and are ready
2973 * to turn the compound list into a command.
2974 * FLAG_START means the word must start a new compound list.
2975 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002976 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00002977#if ENABLE_HUSH_IF
Eric Andersen25f27032001-04-26 23:22:31 +00002978 { "if", RES_IF, FLAG_THEN | FLAG_START },
2979 { "then", RES_THEN, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
2980 { "elif", RES_ELIF, FLAG_THEN },
2981 { "else", RES_ELSE, FLAG_FI },
2982 { "fi", RES_FI, FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00002983#endif
2984#if ENABLE_HUSH_LOOPS
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002985 { "for", RES_FOR, FLAG_IN | FLAG_START },
Eric Andersen25f27032001-04-26 23:22:31 +00002986 { "while", RES_WHILE, FLAG_DO | FLAG_START },
2987 { "until", RES_UNTIL, FLAG_DO | FLAG_START },
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002988 { "in", RES_IN, FLAG_DO },
Eric Andersen25f27032001-04-26 23:22:31 +00002989 { "do", RES_DO, FLAG_DONE },
2990 { "done", RES_DONE, FLAG_END }
Denis Vlasenko06810332007-05-21 23:30:54 +00002991#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002992 };
Denis Vlasenko80b8b392007-06-25 10:55:35 +00002993
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002994 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002995
Denis Vlasenko80b8b392007-06-25 10:55:35 +00002996 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
Denis Vlasenko1a735862007-05-23 00:32:25 +00002997 if (strcmp(dest->data, r->literal) != 0)
2998 continue;
2999 debug_printf("found reserved word %s, code %d\n", r->literal, r->code);
3000 if (r->flag & FLAG_START) {
3001 struct p_context *new;
3002 debug_printf("push stack\n");
Denis Vlasenko06810332007-05-21 23:30:54 +00003003#if ENABLE_HUSH_LOOPS
Denis Vlasenko1a735862007-05-23 00:32:25 +00003004 if (ctx->res_w == RES_IN || ctx->res_w == RES_FOR) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003005 syntax("malformed for"); /* example: 'for if' */
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003006 ctx->res_w = RES_SNTX;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003007 b_reset(dest);
Eric Andersenaf44a0e2001-04-27 07:26:12 +00003008 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003009 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00003010#endif
3011 new = xmalloc(sizeof(*new));
3012 *new = *ctx; /* physical copy */
3013 initialize_context(ctx);
3014 ctx->stack = new;
3015 } else if (ctx->res_w == RES_NONE || !(ctx->old_flag & (1 << r->code))) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003016 syntax(NULL);
Denis Vlasenko1a735862007-05-23 00:32:25 +00003017 ctx->res_w = RES_SNTX;
Denis Vlasenkoff131b92007-04-10 15:42:06 +00003018 b_reset(dest);
Eric Andersen25f27032001-04-26 23:22:31 +00003019 return 1;
3020 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00003021 ctx->res_w = r->code;
3022 ctx->old_flag = r->flag;
3023 if (ctx->old_flag & FLAG_END) {
3024 struct p_context *old;
3025 debug_printf("pop stack\n");
3026 done_pipe(ctx, PIPE_SEQ);
3027 old = ctx->stack;
3028 old->child->group = ctx->list_head;
3029 old->child->subshell = 0;
3030 *ctx = *old; /* physical copy */
3031 free(old);
3032 }
3033 b_reset(dest);
3034 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003035 }
3036 return 0;
3037}
Denis Vlasenko06810332007-05-21 23:30:54 +00003038#else
3039#define reserved_word(dest, ctx) ((int)0)
3040#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003041
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003042/* Normal return is 0.
Eric Andersen25f27032001-04-26 23:22:31 +00003043 * Syntax or xglob errors return 1. */
3044static int done_word(o_string *dest, struct p_context *ctx)
3045{
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003046 struct child_prog *child = ctx->child;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003047 char ***glob_target;
3048 int gr;
Eric Andersen25f27032001-04-26 23:22:31 +00003049
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003050 debug_printf_parse("done_word entered: '%s' %p\n", dest->data, child);
Eric Andersen25f27032001-04-26 23:22:31 +00003051 if (dest->length == 0 && !dest->nonnull) {
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003052 debug_printf_parse("done_word return 0: true null, ignored\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003053 return 0;
3054 }
3055 if (ctx->pending_redirect) {
Denis Vlasenkoff097622007-10-01 10:00:45 +00003056 glob_target = &ctx->pending_redirect->glob_word;
Eric Andersen25f27032001-04-26 23:22:31 +00003057 } else {
3058 if (child->group) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003059 syntax(NULL);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003060 debug_printf_parse("done_word return 1: syntax error, groups and arglists don't mix\n");
3061 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003062 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003063 if (!child->argv && (ctx->parse_type & PARSEFLAG_SEMICOLON)) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003064 debug_printf_parse(": checking '%s' for reserved-ness\n", dest->data);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003065 if (reserved_word(dest, ctx)) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003066 debug_printf_parse("done_word return %d\n", (ctx->res_w == RES_SNTX));
3067 return (ctx->res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003068 }
Eric Andersen25f27032001-04-26 23:22:31 +00003069 }
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003070 glob_target = &child->argv;
Eric Andersen25f27032001-04-26 23:22:31 +00003071 }
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003072 gr = xglob(dest, glob_target);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003073 if (gr != 0) {
3074 debug_printf_parse("done_word return 1: xglob returned %d\n", gr);
3075 return 1;
3076 }
Eric Andersen25f27032001-04-26 23:22:31 +00003077
3078 b_reset(dest);
3079 if (ctx->pending_redirect) {
Denis Vlasenkof962a032007-11-23 12:50:54 +00003080 /* NB: don't free_strings(ctx->pending_redirect->glob_word) here */
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003081 if (ctx->pending_redirect->glob_word
3082 && ctx->pending_redirect->glob_word[0]
3083 && ctx->pending_redirect->glob_word[1]
3084 ) {
3085 /* more than one word resulted from globbing redir */
3086 ctx->pending_redirect = NULL;
Manuel Novoa III cad53642003-03-19 09:13:01 +00003087 bb_error_msg("ambiguous redirect");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003088 debug_printf_parse("done_word return 1: ambiguous redirect\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003089 return 1;
3090 }
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003091 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003092 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003093#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003094 if (ctx->res_w == RES_FOR) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003095 done_word(dest, ctx);
3096 done_pipe(ctx, PIPE_SEQ);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003097 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003098#endif
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003099 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003100 return 0;
3101}
3102
3103/* The only possible error here is out of memory, in which case
3104 * xmalloc exits. */
3105static int done_command(struct p_context *ctx)
3106{
3107 /* The child is really already in the pipe structure, so
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003108 * advance the pipe counter and make a new, null child. */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003109 struct pipe *pi = ctx->pipe;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003110 struct child_prog *child = ctx->child;
Eric Andersen25f27032001-04-26 23:22:31 +00003111
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003112 if (child) {
3113 if (child->group == NULL
3114 && child->argv == NULL
3115 && child->redirects == NULL
3116 ) {
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003117 debug_printf_parse("done_command: skipping null cmd, num_progs=%d\n", pi->num_progs);
3118 return pi->num_progs;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003119 }
Eric Andersen25f27032001-04-26 23:22:31 +00003120 pi->num_progs++;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003121 debug_printf_parse("done_command: ++num_progs=%d\n", pi->num_progs);
Eric Andersen25f27032001-04-26 23:22:31 +00003122 } else {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003123 debug_printf_parse("done_command: initializing, num_progs=%d\n", pi->num_progs);
Eric Andersen25f27032001-04-26 23:22:31 +00003124 }
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003125
3126 /* Only real trickiness here is that the uncommitted
3127 * child structure is not counted in pi->num_progs. */
Eric Andersen25f27032001-04-26 23:22:31 +00003128 pi->progs = xrealloc(pi->progs, sizeof(*pi->progs) * (pi->num_progs+1));
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003129 child = &pi->progs[pi->num_progs];
Eric Andersen25f27032001-04-26 23:22:31 +00003130
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003131 memset(child, 0, sizeof(*child));
3132 /*child->redirects = NULL;*/
3133 /*child->argv = NULL;*/
3134 /*child->is_stopped = 0;*/
3135 /*child->group = NULL;*/
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003136 child->family = pi;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003137 //sp: /*child->sp = 0;*/
Denis Vlasenko262d7652007-05-20 21:52:49 +00003138 //pt: child->parse_type = ctx->parse_type;
Eric Andersen25f27032001-04-26 23:22:31 +00003139
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003140 ctx->child = child;
Eric Andersen25f27032001-04-26 23:22:31 +00003141 /* but ctx->pipe and ctx->list_head remain unchanged */
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003142
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003143 return pi->num_progs; /* used only for 0/nonzero check */
Eric Andersen25f27032001-04-26 23:22:31 +00003144}
3145
3146static int done_pipe(struct p_context *ctx, pipe_style type)
3147{
3148 struct pipe *new_p;
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003149 int not_null;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003150
3151 debug_printf_parse("done_pipe entered, followup %d\n", type);
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003152 not_null = done_command(ctx); /* implicit closure of previous command */
Eric Andersen25f27032001-04-26 23:22:31 +00003153 ctx->pipe->followup = type;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003154 ctx->pipe->res_word = ctx->res_w;
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003155 /* Without this check, even just <enter> on command line generates
3156 * tree of three NOPs (!). Which is harmless but annoying.
3157 * IOW: it is safe to do it unconditionally. */
3158 if (not_null) {
3159 new_p = new_pipe();
3160 ctx->pipe->next = new_p;
3161 ctx->pipe = new_p;
3162 ctx->child = NULL;
3163 done_command(ctx); /* set up new pipe to accept commands */
3164 }
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003165 debug_printf_parse("done_pipe return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003166 return 0;
3167}
3168
3169/* peek ahead in the in_str to find out if we have a "&n" construct,
3170 * as in "2>&1", that represents duplicating a file descriptor.
3171 * returns either -2 (syntax error), -1 (no &), or the number found.
3172 */
3173static int redirect_dup_num(struct in_str *input)
3174{
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003175 int ch, d = 0, ok = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003176 ch = b_peek(input);
3177 if (ch != '&') return -1;
3178
3179 b_getch(input); /* get the & */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003180 ch = b_peek(input);
Eric Andersen83a2ae22001-05-07 17:59:25 +00003181 if (ch == '-') {
3182 b_getch(input);
3183 return -3; /* "-" represents "close me" */
3184 }
3185 while (isdigit(ch)) {
Denis Vlasenko7d4c44e2007-04-16 22:34:39 +00003186 d = d*10 + (ch-'0');
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003187 ok = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003188 b_getch(input);
Eric Andersen83a2ae22001-05-07 17:59:25 +00003189 ch = b_peek(input);
Eric Andersen25f27032001-04-26 23:22:31 +00003190 }
3191 if (ok) return d;
3192
Manuel Novoa III cad53642003-03-19 09:13:01 +00003193 bb_error_msg("ambiguous redirect");
Eric Andersen25f27032001-04-26 23:22:31 +00003194 return -2;
3195}
3196
3197/* If a redirect is immediately preceded by a number, that number is
3198 * supposed to tell which file descriptor to redirect. This routine
3199 * looks for such preceding numbers. In an ideal world this routine
3200 * needs to handle all the following classes of redirects...
3201 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3202 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3203 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3204 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
3205 * A -1 output from this program means no valid number was found, so the
3206 * caller should use the appropriate default for this redirection.
3207 */
3208static int redirect_opt_num(o_string *o)
3209{
3210 int num;
3211
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003212 if (o->length == 0)
3213 return -1;
3214 for (num = 0; num < o->length; num++) {
3215 if (!isdigit(*(o->data + num))) {
Eric Andersen25f27032001-04-26 23:22:31 +00003216 return -1;
3217 }
3218 }
3219 /* reuse num (and save an int) */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003220 num = atoi(o->data);
Eric Andersen25f27032001-04-26 23:22:31 +00003221 b_reset(o);
3222 return num;
3223}
3224
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003225#if ENABLE_HUSH_TICK
Denis Vlasenko8412d792007-10-01 09:59:47 +00003226/* NB: currently disabled on NOMMU */
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +00003227static FILE *generate_stream_from_list(struct pipe *head)
Eric Andersen25f27032001-04-26 23:22:31 +00003228{
3229 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00003230 int pid, channel[2];
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003231
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00003232 xpipe(channel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003233/* *** NOMMU WARNING *** */
3234/* By using vfork here, we suspend parent till child exits or execs.
3235 * If child will not do it before it fills the pipe, it can block forever
3236 * in write(STDOUT_FILENO), and parent (shell) will be also stuck.
3237 */
3238 pid = BB_MMU ? fork() : vfork();
3239 if (pid < 0)
3240 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
3241 if (pid == 0) { /* child */
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00003242 die_sleep = 0; /* let nofork's xfuncs die */
Eric Andersen25f27032001-04-26 23:22:31 +00003243 close(channel[0]);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003244 xmove_fd(channel[1], 1);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003245 /* Prevent it from trying to handle ctrl-z etc */
Denis Vlasenko27f79ff2007-05-30 00:55:52 +00003246#if ENABLE_HUSH_JOB
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003247 run_list_level = 1;
Denis Vlasenko27f79ff2007-05-30 00:55:52 +00003248#endif
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003249 /* Process substitution is not considered to be usual
3250 * 'command execution'.
3251 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not. */
3252 /* Not needed, we are relying on it being disabled
3253 * everywhere outside actual command execution. */
3254 /*set_jobctrl_sighandler(SIG_IGN);*/
3255 set_misc_sighandler(SIG_DFL);
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00003256 /* Freeing 'head' here would break NOMMU. */
3257 _exit(run_list(head));
Eric Andersen25f27032001-04-26 23:22:31 +00003258 }
Eric Andersen25f27032001-04-26 23:22:31 +00003259 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003260 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00003261 return pf;
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00003262 /* 'head' is freed by the caller */
Eric Andersen25f27032001-04-26 23:22:31 +00003263}
3264
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003265/* Return code is exit status of the process that is run. */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003266static int process_command_subs(o_string *dest, struct p_context *ctx,
3267 struct in_str *input, const char *subst_end)
Eric Andersen25f27032001-04-26 23:22:31 +00003268{
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003269 int retcode, ch, eol_cnt;
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003270 o_string result = NULL_O_STRING;
Eric Andersen25f27032001-04-26 23:22:31 +00003271 struct p_context inner;
3272 FILE *p;
3273 struct in_str pipe_str;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003274
Eric Andersen25f27032001-04-26 23:22:31 +00003275 initialize_context(&inner);
3276
3277 /* recursion to generate command */
3278 retcode = parse_stream(&result, &inner, input, subst_end);
Denis Vlasenko1a735862007-05-23 00:32:25 +00003279 if (retcode != 0)
3280 return retcode; /* syntax error or EOF */
Eric Andersen25f27032001-04-26 23:22:31 +00003281 done_word(&result, &inner);
3282 done_pipe(&inner, PIPE_SEQ);
3283 b_free(&result);
3284
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003285 p = generate_stream_from_list(inner.list_head);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003286 if (p == NULL)
3287 return 1;
Denis Vlasenkoa0898172007-10-01 09:59:01 +00003288 close_on_exec_on(fileno(p));
Eric Andersen25f27032001-04-26 23:22:31 +00003289 setup_file_in_str(&pipe_str, p);
3290
3291 /* now send results of command back into original context */
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003292 eol_cnt = 0;
3293 while ((ch = b_getch(&pipe_str)) != EOF) {
3294 if (ch == '\n') {
3295 eol_cnt++;
3296 continue;
3297 }
3298 while (eol_cnt) {
Denis Vlasenkoff097622007-10-01 10:00:45 +00003299 b_addqchr(dest, '\n', dest->o_quote);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003300 eol_cnt--;
3301 }
Denis Vlasenkoff097622007-10-01 10:00:45 +00003302 b_addqchr(dest, ch, dest->o_quote);
Eric Andersen25f27032001-04-26 23:22:31 +00003303 }
3304
3305 debug_printf("done reading from pipe, pclose()ing\n");
3306 /* This is the step that wait()s for the child. Should be pretty
3307 * safe, since we just read an EOF from its stdout. We could try
Denis Vlasenko262d7652007-05-20 21:52:49 +00003308 * to do better, by using wait(), and keeping track of background jobs
Eric Andersen25f27032001-04-26 23:22:31 +00003309 * at the same time. That would be a lot of work, and contrary
3310 * to the KISS philosophy of this program. */
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003311 retcode = fclose(p);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003312 free_pipe_list(inner.list_head, /* indent: */ 0);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003313 debug_printf("closed FILE from child, retcode=%d\n", retcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003314 return retcode;
3315}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003316#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003317
3318static int parse_group(o_string *dest, struct p_context *ctx,
3319 struct in_str *input, int ch)
3320{
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003321 int rcode;
3322 const char *endch = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003323 struct p_context sub;
3324 struct child_prog *child = ctx->child;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003325
3326 debug_printf_parse("parse_group entered\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003327 if (child->argv) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003328 syntax(NULL);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003329 debug_printf_parse("parse_group return 1: syntax error, groups and arglists don't mix\n");
3330 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003331 }
3332 initialize_context(&sub);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003333 endch = "}";
3334 if (ch == '(') {
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003335 endch = ")";
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003336 child->subshell = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003337 }
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003338 rcode = parse_stream(dest, &sub, input, endch);
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00003339//vda: err chk?
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003340 done_word(dest, &sub); /* finish off the final word in the subcontext */
Eric Andersen25f27032001-04-26 23:22:31 +00003341 done_pipe(&sub, PIPE_SEQ); /* and the final command there, too */
3342 child->group = sub.list_head;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003343
3344 debug_printf_parse("parse_group return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003345 return rcode;
3346 /* child remains "open", available for possible redirects */
3347}
3348
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003349/* Basically useful version until someone wants to get fancier,
Eric Andersen25f27032001-04-26 23:22:31 +00003350 * see the bash man page under "Parameter Expansion" */
Denis Vlasenko15d78fb2007-01-30 22:28:21 +00003351static const char *lookup_param(const char *src)
Eric Andersen25f27032001-04-26 23:22:31 +00003352{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003353 struct variable *var = get_local_var(src);
3354 if (var)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00003355 return strchr(var->varstr, '=') + 1;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003356 return NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003357}
3358
3359/* return code: 0 for OK, 1 for syntax error */
3360static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input)
3361{
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003362 int ch = b_peek(input); /* first character after the $ */
Denis Vlasenkoff097622007-10-01 10:00:45 +00003363 unsigned char quote_mask = dest->o_quote ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003364
3365 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003366 if (isalpha(ch)) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003367 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003368 //sp: ctx->child->sp++;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003369 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003370 debug_printf_parse(": '%c'\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003371 b_getch(input);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003372 b_addchr(dest, ch | quote_mask);
3373 quote_mask = 0;
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003374 ch = b_peek(input);
3375 if (!isalnum(ch) && ch != '_')
3376 break;
Eric Andersen25f27032001-04-26 23:22:31 +00003377 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003378 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003379 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003380 make_one_char_var:
3381 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003382 //sp: ctx->child->sp++;
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003383 debug_printf_parse(": '%c'\n", ch);
3384 b_getch(input);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003385 b_addchr(dest, ch | quote_mask);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003386 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003387 } else switch (ch) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003388 case '$': /* pid */
3389 case '!': /* last bg pid */
3390 case '?': /* last exit code */
3391 case '#': /* number of args */
3392 case '*': /* args */
3393 case '@': /* args */
3394 goto make_one_char_var;
Eric Andersen25f27032001-04-26 23:22:31 +00003395 case '{':
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003396 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003397 //sp: ctx->child->sp++;
Eric Andersen25f27032001-04-26 23:22:31 +00003398 b_getch(input);
3399 /* XXX maybe someone will try to escape the '}' */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003400 while (1) {
3401 ch = b_getch(input);
Denis Vlasenkob0550012007-05-24 12:18:16 +00003402 if (ch == '}')
3403 break;
3404 if (!isalnum(ch) && ch != '_') {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003405 syntax("unterminated ${name}");
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003406 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
3407 return 1;
3408 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003409 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003410 b_addchr(dest, ch | quote_mask);
3411 quote_mask = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003412 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003413 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003414 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003415#if ENABLE_HUSH_TICK
Eric Andersen25f27032001-04-26 23:22:31 +00003416 case '(':
Matt Kraai9f8caf12001-05-02 16:26:12 +00003417 b_getch(input);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003418 process_command_subs(dest, ctx, input, ")");
Eric Andersen25f27032001-04-26 23:22:31 +00003419 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003420#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003421 case '-':
3422 case '_':
3423 /* still unhandled, but should be eventually */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003424 bb_error_msg("unhandled syntax: $%c", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003425 return 1;
3426 break;
3427 default:
Denis Vlasenkoff097622007-10-01 10:00:45 +00003428 b_addqchr(dest, '$', dest->o_quote);
Eric Andersen25f27032001-04-26 23:22:31 +00003429 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003430 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003431 return 0;
3432}
3433
Eric Andersen25f27032001-04-26 23:22:31 +00003434/* return code is 0 for normal exit, 1 for syntax error */
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003435static int parse_stream(o_string *dest, struct p_context *ctx,
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003436 struct in_str *input, const char *end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00003437{
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +00003438 int ch, m;
Eric Andersen25f27032001-04-26 23:22:31 +00003439 int redir_fd;
3440 redir_type redir_style;
3441 int next;
3442
Denis Vlasenkoff097622007-10-01 10:00:45 +00003443 /* Only double-quote state is handled in the state variable dest->o_quote.
Eric Andersen25f27032001-04-26 23:22:31 +00003444 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoff097622007-10-01 10:00:45 +00003445 * found. When recursing, quote state is passed in via dest->o_quote. */
Eric Andersen25f27032001-04-26 23:22:31 +00003446
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003447 debug_printf_parse("parse_stream entered, end_trigger='%s'\n", end_trigger);
3448
Denis Vlasenko1a735862007-05-23 00:32:25 +00003449 while (1) {
Denis Vlasenko1a735862007-05-23 00:32:25 +00003450 m = CHAR_IFS;
3451 next = '\0';
Denis Vlasenko170435c2007-05-23 13:01:10 +00003452 ch = b_getch(input);
Denis Vlasenko1a735862007-05-23 00:32:25 +00003453 if (ch != EOF) {
3454 m = charmap[ch];
3455 if (ch != '\n')
3456 next = b_peek(input);
3457 }
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003458 debug_printf_parse(": ch=%c (%d) m=%d quote=%d\n",
Denis Vlasenkoff097622007-10-01 10:00:45 +00003459 ch, ch, m, dest->o_quote);
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003460 if (m == CHAR_ORDINARY
Denis Vlasenkoff097622007-10-01 10:00:45 +00003461 || (m != CHAR_SPECIAL && dest->o_quote)
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003462 ) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00003463 if (ch == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003464 syntax("unterminated \"");
Denis Vlasenko170435c2007-05-23 13:01:10 +00003465 debug_printf_parse("parse_stream return 1: unterminated \"\n");
3466 return 1;
3467 }
Denis Vlasenkoff097622007-10-01 10:00:45 +00003468 b_addqchr(dest, ch, dest->o_quote);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003469 continue;
3470 }
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003471 if (m == CHAR_IFS) {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003472 if (done_word(dest, ctx)) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003473 debug_printf_parse("parse_stream return 1: done_word!=0\n");
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003474 return 1;
Eric Andersenaac75e52001-04-30 18:18:45 +00003475 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00003476 if (ch == EOF)
3477 break;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003478 /* If we aren't performing a substitution, treat
3479 * a newline as a command separator.
3480 * [why we don't handle it exactly like ';'? --vda] */
3481 if (end_trigger && ch == '\n') {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003482 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003483 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003484 }
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003485 if ((end_trigger && strchr(end_trigger, ch))
Denis Vlasenkoff097622007-10-01 10:00:45 +00003486 && !dest->o_quote && ctx->res_w == RES_NONE
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003487 ) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003488 debug_printf_parse("parse_stream return 0: end_trigger char found\n");
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003489 return 0;
3490 }
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003491 if (m == CHAR_IFS)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003492 continue;
3493 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00003494 case '#':
Denis Vlasenkoff097622007-10-01 10:00:45 +00003495 if (dest->length == 0 && !dest->o_quote) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003496 while (1) {
3497 ch = b_peek(input);
3498 if (ch == EOF || ch == '\n')
3499 break;
3500 b_getch(input);
3501 }
Eric Andersen25f27032001-04-26 23:22:31 +00003502 } else {
Denis Vlasenkoff097622007-10-01 10:00:45 +00003503 b_addqchr(dest, ch, dest->o_quote);
Eric Andersen25f27032001-04-26 23:22:31 +00003504 }
3505 break;
3506 case '\\':
3507 if (next == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003508 syntax("\\<eof>");
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003509 debug_printf_parse("parse_stream return 1: \\<eof>\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003510 return 1;
3511 }
Denis Vlasenkoff097622007-10-01 10:00:45 +00003512 b_addqchr(dest, '\\', dest->o_quote);
3513 b_addqchr(dest, b_getch(input), dest->o_quote);
Eric Andersen25f27032001-04-26 23:22:31 +00003514 break;
3515 case '$':
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003516 if (handle_dollar(dest, ctx, input) != 0) {
3517 debug_printf_parse("parse_stream return 1: handle_dollar returned non-0\n");
3518 return 1;
3519 }
Eric Andersen25f27032001-04-26 23:22:31 +00003520 break;
3521 case '\'':
3522 dest->nonnull = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003523 while (1) {
3524 ch = b_getch(input);
3525 if (ch == EOF || ch == '\'')
3526 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003527 b_addchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003528 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003529 if (ch == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003530 syntax("unterminated '");
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003531 debug_printf_parse("parse_stream return 1: unterminated '\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003532 return 1;
3533 }
3534 break;
3535 case '"':
3536 dest->nonnull = 1;
Denis Vlasenkoff097622007-10-01 10:00:45 +00003537 dest->o_quote ^= 1; /* invert */
Eric Andersen25f27032001-04-26 23:22:31 +00003538 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003539#if ENABLE_HUSH_TICK
Eric Andersen25f27032001-04-26 23:22:31 +00003540 case '`':
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003541 process_command_subs(dest, ctx, input, "`");
Eric Andersen25f27032001-04-26 23:22:31 +00003542 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003543#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003544 case '>':
3545 redir_fd = redirect_opt_num(dest);
3546 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003547 redir_style = REDIRECT_OVERWRITE;
Eric Andersen25f27032001-04-26 23:22:31 +00003548 if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003549 redir_style = REDIRECT_APPEND;
Eric Andersen25f27032001-04-26 23:22:31 +00003550 b_getch(input);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003551 }
3552#if 0
3553 else if (next == '(') {
3554 syntax(">(process) not supported");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003555 debug_printf_parse("parse_stream return 1: >(process) not supported\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003556 return 1;
3557 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003558#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003559 setup_redirect(ctx, redir_fd, redir_style, input);
3560 break;
3561 case '<':
3562 redir_fd = redirect_opt_num(dest);
3563 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003564 redir_style = REDIRECT_INPUT;
Eric Andersen25f27032001-04-26 23:22:31 +00003565 if (next == '<') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003566 redir_style = REDIRECT_HEREIS;
Eric Andersen25f27032001-04-26 23:22:31 +00003567 b_getch(input);
3568 } else if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003569 redir_style = REDIRECT_IO;
Eric Andersen25f27032001-04-26 23:22:31 +00003570 b_getch(input);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003571 }
3572#if 0
3573 else if (next == '(') {
3574 syntax("<(process) not supported");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003575 debug_printf_parse("parse_stream return 1: <(process) not supported\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003576 return 1;
3577 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003578#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003579 setup_redirect(ctx, redir_fd, redir_style, input);
3580 break;
3581 case ';':
3582 done_word(dest, ctx);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003583 done_pipe(ctx, PIPE_SEQ);
Eric Andersen25f27032001-04-26 23:22:31 +00003584 break;
3585 case '&':
3586 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003587 if (next == '&') {
Eric Andersen25f27032001-04-26 23:22:31 +00003588 b_getch(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003589 done_pipe(ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00003590 } else {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003591 done_pipe(ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00003592 }
3593 break;
3594 case '|':
3595 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003596 if (next == '|') {
Eric Andersen25f27032001-04-26 23:22:31 +00003597 b_getch(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003598 done_pipe(ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00003599 } else {
3600 /* we could pick up a file descriptor choice here
3601 * with redirect_opt_num(), but bash doesn't do it.
3602 * "echo foo 2| cat" yields "foo 2". */
3603 done_command(ctx);
3604 }
3605 break;
3606 case '(':
3607 case '{':
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003608 if (parse_group(dest, ctx, input, ch) != 0) {
3609 debug_printf_parse("parse_stream return 1: parse_group returned non-0\n");
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003610 return 1;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003611 }
Eric Andersen25f27032001-04-26 23:22:31 +00003612 break;
3613 case ')':
3614 case '}':
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003615 syntax("unexpected }"); /* Proper use of this character is caught by end_trigger */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003616 debug_printf_parse("parse_stream return 1: unexpected '}'\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003617 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003618 default:
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003619 if (ENABLE_HUSH_DEBUG)
3620 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003621 }
3622 }
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003623 /* Complain if quote? No, maybe we just finished a command substitution
Eric Andersen25f27032001-04-26 23:22:31 +00003624 * that was quoted. Example:
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003625 * $ echo "`cat foo` plus more"
Eric Andersen25f27032001-04-26 23:22:31 +00003626 * and we just got the EOF generated by the subshell that ran "cat foo"
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003627 * The only real complaint is if we got an EOF when end_trigger != NULL,
Eric Andersen25f27032001-04-26 23:22:31 +00003628 * that is, we were really supposed to get end_trigger, and never got
3629 * one before the EOF. Can't use the standard "syntax error" return code,
3630 * so that parse_stream_outer can distinguish the EOF and exit smoothly. */
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003631 debug_printf_parse("parse_stream return %d\n", -(end_trigger != NULL));
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003632 if (end_trigger)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003633 return -1;
Eric Andersen25f27032001-04-26 23:22:31 +00003634 return 0;
3635}
3636
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003637static void set_in_charmap(const char *set, int code)
Eric Andersen25f27032001-04-26 23:22:31 +00003638{
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003639 while (*set)
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003640 charmap[(unsigned char)*set++] = code;
Eric Andersen25f27032001-04-26 23:22:31 +00003641}
3642
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003643static void update_charmap(void)
Eric Andersen25f27032001-04-26 23:22:31 +00003644{
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003645 /* char *ifs and char charmap[256] are both globals. */
Eric Andersen25f27032001-04-26 23:22:31 +00003646 ifs = getenv("IFS");
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003647 if (ifs == NULL)
3648 ifs = " \t\n";
Eric Andersen25f27032001-04-26 23:22:31 +00003649 /* Precompute a list of 'flow through' behavior so it can be treated
3650 * quickly up front. Computation is necessary because of IFS.
3651 * Special case handling of IFS == " \t\n" is not implemented.
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003652 * The charmap[] array only really needs two bits each,
3653 * and on most machines that would be faster (reduced L1 cache use).
Eric Andersen25f27032001-04-26 23:22:31 +00003654 */
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003655 memset(charmap, CHAR_ORDINARY, sizeof(charmap));
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003656#if ENABLE_HUSH_TICK
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003657 set_in_charmap("\\$\"`", CHAR_SPECIAL);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003658#else
3659 set_in_charmap("\\$\"", CHAR_SPECIAL);
3660#endif
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003661 set_in_charmap("<>;&|(){}#'", CHAR_ORDINARY_IF_QUOTED);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003662 set_in_charmap(ifs, CHAR_IFS); /* are ordinary if quoted */
Eric Andersen25f27032001-04-26 23:22:31 +00003663}
3664
Eric Andersenaff114c2004-04-14 17:51:38 +00003665/* most recursion does not come through here, the exception is
Denis Vlasenko170435c2007-05-23 13:01:10 +00003666 * from builtin_source() and builtin_eval() */
3667static int parse_and_run_stream(struct in_str *inp, int parse_flag)
Eric Andersen25f27032001-04-26 23:22:31 +00003668{
Eric Andersen25f27032001-04-26 23:22:31 +00003669 struct p_context ctx;
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003670 o_string temp = NULL_O_STRING;
Eric Andersen25f27032001-04-26 23:22:31 +00003671 int rcode;
3672 do {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003673 ctx.parse_type = parse_flag;
Eric Andersen25f27032001-04-26 23:22:31 +00003674 initialize_context(&ctx);
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003675 update_charmap();
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003676 if (!(parse_flag & PARSEFLAG_SEMICOLON) || (parse_flag & PARSEFLAG_REPARSING))
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003677 set_in_charmap(";$&|", CHAR_ORDINARY);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003678#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00003679 inp->promptmode = 0; /* PS1 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003680#endif
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003681 /* We will stop & execute after each ';' or '\n'.
3682 * Example: "sleep 9999; echo TEST" + ctrl-C:
3683 * TEST should be printed */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003684 rcode = parse_stream(&temp, &ctx, inp, ";\n");
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003685 if (rcode != 1 && ctx.old_flag != 0) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003686 syntax(NULL);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003687 }
3688 if (rcode != 1 && ctx.old_flag == 0) {
3689 done_word(&temp, &ctx);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003690 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003691 debug_print_tree(ctx.list_head, 0);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003692 debug_printf_exec("parse_stream_outer: run_and_free_list\n");
3693 run_and_free_list(ctx.list_head);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003694 } else {
3695 if (ctx.old_flag != 0) {
3696 free(ctx.stack);
3697 b_reset(&temp);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003698 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003699 temp.nonnull = 0;
Denis Vlasenkoff097622007-10-01 10:00:45 +00003700 temp.o_quote = 0;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003701 inp->p = NULL;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003702 free_pipe_list(ctx.list_head, /* indent: */ 0);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003703 }
Eric Andersena813afc2001-05-24 16:19:36 +00003704 b_free(&temp);
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003705 } while (rcode != -1 && !(parse_flag & PARSEFLAG_EXIT_FROM_LOOP)); /* loop on syntax errors, return on EOF */
Eric Andersen25f27032001-04-26 23:22:31 +00003706 return 0;
3707}
3708
Denis Vlasenko170435c2007-05-23 13:01:10 +00003709static int parse_and_run_string(const char *s, int parse_flag)
Eric Andersen25f27032001-04-26 23:22:31 +00003710{
3711 struct in_str input;
3712 setup_string_in_str(&input, s);
Denis Vlasenko170435c2007-05-23 13:01:10 +00003713 return parse_and_run_stream(&input, parse_flag);
Eric Andersen25f27032001-04-26 23:22:31 +00003714}
3715
Denis Vlasenko170435c2007-05-23 13:01:10 +00003716static int parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00003717{
3718 int rcode;
3719 struct in_str input;
3720 setup_file_in_str(&input, f);
Denis Vlasenko170435c2007-05-23 13:01:10 +00003721 rcode = parse_and_run_stream(&input, PARSEFLAG_SEMICOLON);
Eric Andersen25f27032001-04-26 23:22:31 +00003722 return rcode;
3723}
3724
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003725#if ENABLE_HUSH_JOB
Eric Andersen6c947d22001-06-25 22:24:38 +00003726/* Make sure we have a controlling tty. If we get started under a job
3727 * aware app (like bash for example), make sure we are now in charge so
3728 * we don't fight over who gets the foreground */
Eric Anderseneaecbf32001-10-31 10:41:31 +00003729static void setup_job_control(void)
Eric Andersen52a97ca2001-06-22 06:49:26 +00003730{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003731 pid_t shell_pgrp;
3732
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00003733 saved_task_pgrp = shell_pgrp = getpgrp();
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003734 debug_printf_jobs("saved_task_pgrp=%d\n", saved_task_pgrp);
Denis Vlasenko96e1b382007-09-30 23:50:48 +00003735 close_on_exec_on(interactive_fd);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003736
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00003737 /* If we were ran as 'hush &',
3738 * sleep until we are in the foreground. */
3739 while (tcgetpgrp(interactive_fd) != shell_pgrp) {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003740 /* Send TTIN to ourself (should stop us) */
Denis Vlasenkoff131b92007-04-10 15:42:06 +00003741 kill(- shell_pgrp, SIGTTIN);
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00003742 shell_pgrp = getpgrp();
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003743 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00003744
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003745 /* Ignore job-control and misc signals. */
3746 set_jobctrl_sighandler(SIG_IGN);
3747 set_misc_sighandler(SIG_IGN);
3748//huh? signal(SIGCHLD, SIG_IGN);
3749
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003750 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003751 set_fatal_sighandler(sigexit);
Eric Andersen6c947d22001-06-25 22:24:38 +00003752
3753 /* Put ourselves in our own process group. */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003754 setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
Eric Andersen6c947d22001-06-25 22:24:38 +00003755 /* Grab control of the terminal. */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003756 tcsetpgrp(interactive_fd, getpid());
Eric Andersen6c947d22001-06-25 22:24:38 +00003757}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003758#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00003759
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00003760int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00003761int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00003762{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00003763 static const char version_str[] ALIGN1 = "HUSH_VERSION="HUSH_VER_STR;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00003764 static const struct variable const_shell_ver = {
3765 .next = NULL,
3766 .varstr = (char*)version_str,
3767 .max_len = 1, /* 0 can provoke free(name) */
3768 .flg_export = 1,
3769 .flg_read_only = 1,
3770 };
3771
Eric Andersen25f27032001-04-26 23:22:31 +00003772 int opt;
3773 FILE *input;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003774 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003775 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00003776
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003777 PTR_TO_GLOBALS = xzalloc(sizeof(G));
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003778
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00003779 /* Deal with HUSH_VERSION */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003780 shell_ver = const_shell_ver; /* copying struct here */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003781 top_var = &shell_ver;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00003782 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
3783 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003784 * currently living in the environment */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003785 cur_var = top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00003786 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003787 if (e) while (*e) {
3788 char *value = strchr(*e, '=');
3789 if (value) { /* paranoia */
3790 cur_var->next = xzalloc(sizeof(*cur_var));
3791 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00003792 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003793 cur_var->max_len = strlen(*e);
3794 cur_var->flg_export = 1;
3795 }
3796 e++;
3797 }
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00003798 putenv((char *)version_str); /* reinstate HUSH_VERSION */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003799
Denis Vlasenko38f63192007-01-22 09:03:07 +00003800#if ENABLE_FEATURE_EDITING
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003801 line_input_state = new_line_input_t(FOR_SHELL);
3802#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003803 /* XXX what should these be while sourcing /etc/profile? */
3804 global_argc = argc;
3805 global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00003806 /* Initialize some more globals to non-zero values */
3807 set_cwd();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003808#if ENABLE_HUSH_INTERACTIVE
3809#if ENABLE_FEATURE_EDITING
3810 cmdedit_set_initial_prompt();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003811#endif
Eric Andersen94ac2442001-05-22 19:05:18 +00003812 PS2 = "> ";
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003813#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003814
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003815 if (EXIT_SUCCESS) /* otherwise is already done */
3816 last_return_code = EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +00003817
3818 if (argv[0] && argv[0][0] == '-') {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003819 debug_printf("sourcing /etc/profile\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003820 input = fopen("/etc/profile", "r");
3821 if (input != NULL) {
Denis Vlasenkoa0898172007-10-01 09:59:01 +00003822 close_on_exec_on(fileno(input));
Denis Vlasenko170435c2007-05-23 13:01:10 +00003823 parse_and_run_file(input);
Eric Andersena90f20b2001-06-26 23:00:21 +00003824 fclose(input);
3825 }
Eric Andersen25f27032001-04-26 23:22:31 +00003826 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003827 input = stdin;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003828
Eric Andersen25f27032001-04-26 23:22:31 +00003829 while ((opt = getopt(argc, argv, "c:xif")) > 0) {
3830 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003831 case 'c':
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003832 global_argv = argv + optind;
3833 global_argc = argc - optind;
Denis Vlasenko170435c2007-05-23 13:01:10 +00003834 opt = parse_and_run_string(optarg, PARSEFLAG_SEMICOLON);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003835 goto final_return;
3836 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003837 /* Well, we cannot just declare interactiveness,
3838 * we have to have some stuff (ctty, etc) */
3839 /* interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003840 break;
3841 case 'f':
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003842 fake_mode = 1;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003843 break;
3844 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00003845#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003846 fprintf(stderr, "Usage: sh [FILE]...\n"
3847 " or: sh -c command [args]...\n\n");
3848 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00003849#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003850 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00003851#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003852 }
3853 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003854#if ENABLE_HUSH_JOB
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003855 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00003856 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00003857 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00003858 * no arguments remaining or the -s flag given
3859 * standard input is a terminal
3860 * standard output is a terminal
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003861 * Refer to Posix.2, the description of the 'sh' utility. */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003862 if (argv[optind] == NULL && input == stdin
3863 && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
3864 ) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003865 saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
3866 debug_printf("saved_tty_pgrp=%d\n", saved_tty_pgrp);
3867 if (saved_tty_pgrp >= 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003868 /* try to dup to high fd#, >= 255 */
3869 interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
3870 if (interactive_fd < 0) {
3871 /* try to dup to any fd */
3872 interactive_fd = dup(STDIN_FILENO);
3873 if (interactive_fd < 0)
3874 /* give up */
3875 interactive_fd = 0;
3876 }
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003877 // TODO: track & disallow any attempts of user
3878 // to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003879 }
Eric Andersen25f27032001-04-26 23:22:31 +00003880 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003881 debug_printf("interactive_fd=%d\n", interactive_fd);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003882 if (interactive_fd) {
Eric Andersen25f27032001-04-26 23:22:31 +00003883 /* Looks like they want an interactive shell */
Eric Andersen52a97ca2001-06-22 06:49:26 +00003884 setup_job_control();
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00003885 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00003886 * (we reset die_sleep = 0 whereever we [v]fork) */
3887 die_sleep = -1;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003888 if (setjmp(die_jmp)) {
3889 /* xfunc has failed! die die die */
3890 hush_exit(xfunc_error_retval);
3891 }
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003892#if !ENABLE_FEATURE_SH_EXTRA_QUIET
Denis Vlasenkoca525b42007-06-13 12:27:17 +00003893 printf("\n\n%s hush - the humble shell v"HUSH_VER_STR"\n", bb_banner);
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003894 printf("Enter 'help' for a list of built-in commands.\n\n");
3895#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00003896 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003897#elif ENABLE_HUSH_INTERACTIVE
3898/* no job control compiled, only prompt/line editing */
3899 if (argv[optind] == NULL && input == stdin
3900 && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
3901 ) {
3902 interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
3903 if (interactive_fd < 0) {
3904 /* try to dup to any fd */
3905 interactive_fd = dup(STDIN_FILENO);
3906 if (interactive_fd < 0)
3907 /* give up */
3908 interactive_fd = 0;
3909 }
3910 }
3911
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003912#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003913
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003914 if (argv[optind] == NULL) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00003915 opt = parse_and_run_file(stdin);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003916 } else {
3917 debug_printf("\nrunning script '%s'\n", argv[optind]);
3918 global_argv = argv + optind;
3919 global_argc = argc - optind;
3920 input = xfopen(argv[optind], "r");
Denis Vlasenko459a5ad2008-02-11 08:35:03 +00003921 fcntl(fileno(input), F_SETFD, FD_CLOEXEC);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003922 opt = parse_and_run_file(input);
Eric Andersen25f27032001-04-26 23:22:31 +00003923 }
Eric Andersen25f27032001-04-26 23:22:31 +00003924
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003925 final_return:
3926
Denis Vlasenko38f63192007-01-22 09:03:07 +00003927#if ENABLE_FEATURE_CLEAN_UP
Eric Andersenaeb44c42001-05-22 20:29:00 +00003928 fclose(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003929 if (cwd != bb_msg_unknown)
Eric Andersenaeb44c42001-05-22 20:29:00 +00003930 free((char*)cwd);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003931 cur_var = top_var->next;
3932 while (cur_var) {
3933 struct variable *tmp = cur_var;
3934 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00003935 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003936 cur_var = cur_var->next;
3937 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00003938 }
Eric Andersen25f27032001-04-26 23:22:31 +00003939#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003940 hush_exit(opt ? opt : last_return_code);
Eric Andersen25f27032001-04-26 23:22:31 +00003941}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00003942
3943
3944#if ENABLE_LASH
3945int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
3946int lash_main(int argc, char **argv)
3947{
3948 //bb_error_msg("lash is deprecated, please use hush instead");
3949 return hush_main(argc, argv);
3950}
3951#endif