blob: 19d516dffbf09c9c63bfbb9d2984516a2b2e95c0 [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 Vlasenkoc8be5ee2007-05-17 15:38:46 +000084extern char **environ; /* This is in <unistd.h>, but protected with __USE_GNU */
Denis Vlasenkod01ff132007-05-02 21:40:23 +000085
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000086#include "busybox.h" /* for struct bb_applet */
87
Denis Vlasenkod01ff132007-05-02 21:40:23 +000088
Denis Vlasenko8412d792007-10-01 09:59:47 +000089#if !BB_MMU
90/* A bit drastic. Can allow some simpler commands
91 * by analysing command in generate_stream_from_list()
92 */
93#undef ENABLE_HUSH_TICK
94#define ENABLE_HUSH_TICK 0
95#endif
96
97
Denis Vlasenkod01ff132007-05-02 21:40:23 +000098/* If you comment out one of these below, it will be #defined later
99 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000100#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000101/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000102#define debug_printf_parse(...) do {} while (0)
103#define debug_print_tree(a, b) do {} while (0)
104#define debug_printf_exec(...) do {} while (0)
105#define debug_printf_jobs(...) do {} while (0)
106#define debug_printf_expand(...) do {} while (0)
107#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000108
109#ifndef debug_printf
110#define debug_printf(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000111#endif
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000112
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000113#ifndef debug_printf_parse
114#define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000115#endif
116
117#ifndef debug_printf_exec
118#define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__)
119#endif
120
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000121#ifndef debug_printf_jobs
122#define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__)
123#define DEBUG_SHELL_JOBS 1
124#endif
125
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000126#ifndef debug_printf_expand
127#define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__)
128#define DEBUG_EXPAND 1
129#endif
130
Denis Vlasenko170435c2007-05-23 13:01:10 +0000131/* Keep unconditionally on for now */
132#define ENABLE_HUSH_DEBUG 1
133
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000134#ifndef debug_printf_clean
135/* broken, of course, but OK for testing */
136static const char *indenter(int i)
137{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000138 static const char blanks[] ALIGN1 =
139 " ";
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000140 return &blanks[sizeof(blanks) - i - 1];
141}
142#define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000143#define DEBUG_CLEAN 1
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000144#endif
145
Eric Andersen25f27032001-04-26 23:22:31 +0000146
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000147#if !ENABLE_HUSH_INTERACTIVE
148#undef ENABLE_FEATURE_EDITING
149#define ENABLE_FEATURE_EDITING 0
150#undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
151#define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
152#endif
"Robert P. J. Day"f3501602006-07-01 12:19:39 +0000153
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +0000154#define SPECIAL_VAR_SYMBOL 3
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000155
156#define PARSEFLAG_EXIT_FROM_LOOP 1
157#define PARSEFLAG_SEMICOLON (1 << 1) /* symbol ';' is special for parser */
158#define PARSEFLAG_REPARSING (1 << 2) /* >= 2nd pass */
Eric Andersen25f27032001-04-26 23:22:31 +0000159
160typedef enum {
161 REDIRECT_INPUT = 1,
162 REDIRECT_OVERWRITE = 2,
163 REDIRECT_APPEND = 3,
164 REDIRECT_HEREIS = 4,
165 REDIRECT_IO = 5
166} redir_type;
167
168/* The descrip member of this structure is only used to make debugging
169 * output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000170static const struct {
171 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000172 signed char default_fd;
173 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000174} redir_table[] = {
Eric Andersen25f27032001-04-26 23:22:31 +0000175 { 0, 0, "()" },
176 { O_RDONLY, 0, "<" },
177 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
178 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
179 { O_RDONLY, -1, "<<" },
180 { O_RDWR, 1, "<>" }
181};
182
183typedef enum {
184 PIPE_SEQ = 1,
185 PIPE_AND = 2,
186 PIPE_OR = 3,
187 PIPE_BG = 4,
188} pipe_style;
189
190/* might eventually control execution */
191typedef enum {
192 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000193#if ENABLE_HUSH_IF
Eric Andersen25f27032001-04-26 23:22:31 +0000194 RES_IF = 1,
195 RES_THEN = 2,
196 RES_ELIF = 3,
197 RES_ELSE = 4,
198 RES_FI = 5,
Denis Vlasenko06810332007-05-21 23:30:54 +0000199#endif
200#if ENABLE_HUSH_LOOPS
Eric Andersen25f27032001-04-26 23:22:31 +0000201 RES_FOR = 6,
202 RES_WHILE = 7,
203 RES_UNTIL = 8,
204 RES_DO = 9,
205 RES_DONE = 10,
Denis Vlasenko06810332007-05-21 23:30:54 +0000206 RES_IN = 11,
207#endif
208 RES_XXXX = 12,
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000209 RES_SNTX = 13
Eric Andersen25f27032001-04-26 23:22:31 +0000210} reserved_style;
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000211enum {
212 FLAG_END = (1 << RES_NONE ),
Denis Vlasenko06810332007-05-21 23:30:54 +0000213#if ENABLE_HUSH_IF
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000214 FLAG_IF = (1 << RES_IF ),
215 FLAG_THEN = (1 << RES_THEN ),
216 FLAG_ELIF = (1 << RES_ELIF ),
217 FLAG_ELSE = (1 << RES_ELSE ),
218 FLAG_FI = (1 << RES_FI ),
Denis Vlasenko06810332007-05-21 23:30:54 +0000219#endif
220#if ENABLE_HUSH_LOOPS
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000221 FLAG_FOR = (1 << RES_FOR ),
222 FLAG_WHILE = (1 << RES_WHILE),
223 FLAG_UNTIL = (1 << RES_UNTIL),
224 FLAG_DO = (1 << RES_DO ),
225 FLAG_DONE = (1 << RES_DONE ),
226 FLAG_IN = (1 << RES_IN ),
Denis Vlasenko06810332007-05-21 23:30:54 +0000227#endif
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000228 FLAG_START = (1 << RES_XXXX ),
229};
Eric Andersen25f27032001-04-26 23:22:31 +0000230
231/* This holds pointers to the various results of parsing */
232struct p_context {
233 struct child_prog *child;
234 struct pipe *list_head;
235 struct pipe *pipe;
236 struct redir_struct *pending_redirect;
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000237 smallint res_w;
238 smallint parse_type; /* bitmask of PARSEFLAG_xxx, defines type of parser : ";$" common or special symbol */
239 int old_flag; /* bitmask of FLAG_xxx, for figuring out valid reserved words */
Eric Andersen25f27032001-04-26 23:22:31 +0000240 struct p_context *stack;
241 /* How about quoting status? */
242};
243
244struct redir_struct {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000245 struct redir_struct *next; /* pointer to the next redirect in the list */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000246 redir_type type; /* type of redirection */
247 int fd; /* file descriptor being redirected */
248 int dup; /* -1, or file descriptor being duplicated */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000249 glob_t word; /* *word.gl_pathv is the filename */
Eric Andersen25f27032001-04-26 23:22:31 +0000250};
251
252struct child_prog {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000253 pid_t pid; /* 0 if exited */
254 char **argv; /* program name and arguments */
255 struct pipe *group; /* if non-NULL, first in group or subshell */
Denis Vlasenko262d7652007-05-20 21:52:49 +0000256 smallint subshell; /* flag, non-zero if group must be forked */
257 smallint is_stopped; /* is the program currently running? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000258 struct redir_struct *redirects; /* I/O redirections */
259 glob_t glob_result; /* result of parameter globbing */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000260 struct pipe *family; /* pointer back to the child's parent pipe */
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000261 //sp counting seems to be broken... so commented out, grep for '//sp:'
262 //sp: int sp; /* number of SPECIAL_VAR_SYMBOL */
Denis Vlasenko262d7652007-05-20 21:52:49 +0000263 //seems to be unused, grep for '//pt:'
264 //pt: int parse_type;
Eric Andersen25f27032001-04-26 23:22:31 +0000265};
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000266/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
267 * and on execution these are substituted with their values.
268 * Substitution can make _several_ words out of one argv[n]!
269 * Example: argv[0]=='.^C*^C.' here: echo .$*.
270 */
Eric Andersen25f27032001-04-26 23:22:31 +0000271
272struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000273 struct pipe *next;
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000274 int num_progs; /* total number of programs in job */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000275 int running_progs; /* number of programs running (not exited) */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000276 int stopped_progs; /* number of programs alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000277#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000278 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000279 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000280 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000281#endif
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000282 char *cmdbuf; /* buffer various argv's point into */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000283 struct child_prog *progs; /* array of commands in pipe */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000284 int job_context; /* bitmask defining current context */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000285 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
286 smallint res_word; /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000287};
288
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000289/* On program start, environ points to initial environment.
290 * putenv adds new pointers into it, unsetenv removes them.
291 * Neither of these (de)allocates the strings.
292 * setenv allocates new strings in malloc space and does putenv,
293 * and thus setenv is unusable (leaky) for shell's purposes */
294#define setenv(...) setenv_is_leaky_dont_use()
295struct variable {
296 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000297 char *varstr; /* points to "name=" portion */
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000298 int max_len; /* if > 0, name is part of initial env; else name is malloced */
299 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000300 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000301};
302
Eric Andersen25f27032001-04-26 23:22:31 +0000303typedef struct {
304 char *data;
305 int length;
306 int maxlen;
307 int quote;
308 int nonnull;
309} o_string;
310#define NULL_O_STRING {NULL,0,0,0,0}
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000311/* used for initialization: o_string foo = NULL_O_STRING; */
Eric Andersen25f27032001-04-26 23:22:31 +0000312
313/* I can almost use ordinary FILE *. Is open_memstream() universally
314 * available? Where is it documented? */
315struct in_str {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +0000316 const char *p;
317 /* eof_flag=1: last char in ->p is really an EOF */
318 char eof_flag; /* meaningless if ->p == NULL */
319 char peek_buf[2];
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000320#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000321 smallint promptme;
322 smallint promptmode; /* 0: PS1, 1: PS2 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000323#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000324 FILE *file;
325 int (*get) (struct in_str *);
326 int (*peek) (struct in_str *);
327};
328#define b_getch(input) ((input)->get(input))
329#define b_peek(input) ((input)->peek(input))
330
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000331enum {
332 CHAR_ORDINARY = 0,
333 CHAR_ORDINARY_IF_QUOTED = 1, /* example: *, # */
334 CHAR_IFS = 2, /* treated as ordinary if quoted */
335 CHAR_SPECIAL = 3, /* example: $ */
Eric Andersen25f27032001-04-26 23:22:31 +0000336};
337
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000338#define HUSH_VER_STR "0.02"
339
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000340/* "Globals" within this file */
341
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000342/* Sorted roughly by size (smaller offsets == smaller code) */
343struct globals {
344#if ENABLE_HUSH_INTERACTIVE
345 /* 'interactive_fd' is a fd# open to ctty, if we have one
346 * _AND_ if we decided to act interactively */
347 int interactive_fd;
348 const char *PS1;
349 const char *PS2;
350#endif
351#if ENABLE_FEATURE_EDITING
352 line_input_t *line_input_state;
353#endif
354#if ENABLE_HUSH_JOB
355 int run_list_level;
356 pid_t saved_task_pgrp;
357 pid_t saved_tty_pgrp;
358 int last_jobid;
359 struct pipe *job_list;
360 struct pipe *toplevel_list;
361 smallint ctrl_z_flag;
362#endif
363 smallint fake_mode;
364 /* these three support $?, $#, and $1 */
365 char **global_argv;
366 int global_argc;
367 int last_return_code;
368 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000369 const char *cwd;
370 unsigned last_bg_pid;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000371 struct variable *top_var; /* = &shell_ver (set in main()) */
372 struct variable shell_ver;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000373#if ENABLE_FEATURE_SH_STANDALONE
374 struct nofork_save_area nofork_save;
375#endif
376#if ENABLE_HUSH_JOB
377 sigjmp_buf toplevel_jb;
378#endif
379 unsigned char charmap[256];
380 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
381};
382
383#define G (*ptr_to_globals)
384
385#if !ENABLE_HUSH_INTERACTIVE
386enum { interactive_fd = 0 };
387#endif
388#if !ENABLE_HUSH_JOB
389enum { run_list_level = 0 };
390#endif
391
392#if ENABLE_HUSH_INTERACTIVE
393#define interactive_fd (G.interactive_fd )
394#define PS1 (G.PS1 )
395#define PS2 (G.PS2 )
396#endif
397#if ENABLE_FEATURE_EDITING
398#define line_input_state (G.line_input_state)
399#endif
400#if ENABLE_HUSH_JOB
401#define run_list_level (G.run_list_level )
402#define saved_task_pgrp (G.saved_task_pgrp )
403#define saved_tty_pgrp (G.saved_tty_pgrp )
404#define last_jobid (G.last_jobid )
405#define job_list (G.job_list )
406#define toplevel_list (G.toplevel_list )
407#define toplevel_jb (G.toplevel_jb )
408#define ctrl_z_flag (G.ctrl_z_flag )
409#endif /* JOB */
410#define global_argv (G.global_argv )
411#define global_argc (G.global_argc )
412#define last_return_code (G.last_return_code)
413#define ifs (G.ifs )
414#define fake_mode (G.fake_mode )
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000415#define cwd (G.cwd )
416#define last_bg_pid (G.last_bg_pid )
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000417#define top_var (G.top_var )
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000418#define shell_ver (G.shell_ver )
419#if ENABLE_FEATURE_SH_STANDALONE
420#define nofork_save (G.nofork_save )
Denis Vlasenko4b924f32007-05-30 00:29:55 +0000421#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000422#if ENABLE_HUSH_JOB
423#define toplevel_jb (G.toplevel_jb )
424#endif
425#define charmap (G.charmap )
426#define user_input_buf (G.user_input_buf )
427
428
429#define B_CHUNK 100
430#define B_NOSPAC 1
431#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
432
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000433#if 1
434/* Normal */
435static void syntax(const char *msg)
436{
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000437 /* Was using fancy stuff:
438 * (interactive_fd ? bb_error_msg : bb_error_msg_and_die)(...params...)
439 * but it SEGVs. ?! Oh well... explicit temp ptr works around that */
440 void (*fp)(const char *s, ...);
441
442 fp = (interactive_fd ? bb_error_msg : bb_error_msg_and_die);
443 fp(msg ? "%s: %s" : "syntax error", "syntax error", msg);
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000444}
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000445
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000446#else
447/* Debug */
448static void syntax_lineno(int line)
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000449{
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000450 void (*fp)(const char *s, ...);
451
452 fp = (interactive_fd ? bb_error_msg : bb_error_msg_and_die);
453 fp("syntax error hush.c:%d", line);
Eric Andersen25f27032001-04-26 23:22:31 +0000454}
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000455#define syntax(str) syntax_lineno(__LINE__)
456#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000457
458/* Index of subroutines: */
459/* function prototypes for builtins */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000460static int builtin_cd(char **argv);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000461static int builtin_eval(char **argv);
462static int builtin_exec(char **argv);
463static int builtin_exit(char **argv);
464static int builtin_export(char **argv);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000465#if ENABLE_HUSH_JOB
Denis Vlasenko1359da62007-04-21 23:27:30 +0000466static int builtin_fg_bg(char **argv);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000467static int builtin_jobs(char **argv);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000468#endif
Denis Vlasenko06810332007-05-21 23:30:54 +0000469#if ENABLE_HUSH_HELP
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000470static int builtin_help(char **argv);
Denis Vlasenko06810332007-05-21 23:30:54 +0000471#endif
Denis Vlasenko1359da62007-04-21 23:27:30 +0000472static int builtin_pwd(char **argv);
473static int builtin_read(char **argv);
474static int builtin_set(char **argv);
475static int builtin_shift(char **argv);
476static int builtin_source(char **argv);
477static int builtin_umask(char **argv);
478static int builtin_unset(char **argv);
Denis Vlasenko06810332007-05-21 23:30:54 +0000479//static int builtin_not_written(char **argv);
Eric Andersen25f27032001-04-26 23:22:31 +0000480/* o_string manipulation: */
481static int b_check_space(o_string *o, int len);
482static int b_addchr(o_string *o, int ch);
483static void b_reset(o_string *o);
484static int b_addqchr(o_string *o, int ch, int quote);
Eric Andersen25f27032001-04-26 23:22:31 +0000485/* in_str manipulations: */
486static int static_get(struct in_str *i);
487static int static_peek(struct in_str *i);
488static int file_get(struct in_str *i);
489static int file_peek(struct in_str *i);
490static void setup_file_in_str(struct in_str *i, FILE *f);
491static void setup_string_in_str(struct in_str *i, const char *s);
Eric Andersen25f27032001-04-26 23:22:31 +0000492/* "run" the final data structures: */
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000493#if !defined(DEBUG_CLEAN)
494#define free_pipe_list(head, indent) free_pipe_list(head)
495#define free_pipe(pi, indent) free_pipe(pi)
496#endif
Eric Andersenbf7df042001-05-23 22:18:35 +0000497static int free_pipe_list(struct pipe *head, int indent);
498static int free_pipe(struct pipe *pi, int indent);
Eric Andersen25f27032001-04-26 23:22:31 +0000499/* really run the final data structures: */
500static int setup_redirects(struct child_prog *prog, int squirrel[]);
Eric Andersen25f27032001-04-26 23:22:31 +0000501static int run_list_real(struct pipe *pi);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000502static void pseudo_exec_argv(char **argv) ATTRIBUTE_NORETURN;
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +0000503static void pseudo_exec(struct child_prog *child) ATTRIBUTE_NORETURN;
Eric Andersen25f27032001-04-26 23:22:31 +0000504static int run_pipe_real(struct pipe *pi);
505/* extended glob support: */
506static int globhack(const char *src, int flags, glob_t *pglob);
507static int glob_needed(const char *s);
508static int xglob(o_string *dest, int flags, glob_t *pglob);
Eric Andersen78a7c992001-05-15 16:30:25 +0000509/* variable assignment: */
Eric Andersen78a7c992001-05-15 16:30:25 +0000510static int is_assignment(const char *s);
Eric Andersen25f27032001-04-26 23:22:31 +0000511/* data structure manipulation: */
512static int setup_redirect(struct p_context *ctx, int fd, redir_type style, struct in_str *input);
513static void initialize_context(struct p_context *ctx);
514static int done_word(o_string *dest, struct p_context *ctx);
515static int done_command(struct p_context *ctx);
516static int done_pipe(struct p_context *ctx, pipe_style type);
517/* primary string parsing: */
518static int redirect_dup_num(struct in_str *input);
519static int redirect_opt_num(o_string *o);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +0000520#if ENABLE_HUSH_TICK
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000521static 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 +0000522#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000523static int parse_group(o_string *dest, struct p_context *ctx, struct in_str *input, int ch);
Denis Vlasenko15d78fb2007-01-30 22:28:21 +0000524static const char *lookup_param(const char *src);
Eric Andersen25f27032001-04-26 23:22:31 +0000525static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000526static 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 +0000527/* setup: */
Denis Vlasenko170435c2007-05-23 13:01:10 +0000528static int parse_and_run_stream(struct in_str *inp, int parse_flag);
529static int parse_and_run_string(const char *s, int parse_flag);
530static int parse_and_run_file(FILE *f);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000531/* job management: */
Eric Andersenc798b072001-06-22 06:23:03 +0000532static int checkjobs(struct pipe* fg_pipe);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000533#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +0000534static int checkjobs_and_fg_shell(struct pipe* fg_pipe);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000535static void insert_bg_job(struct pipe *pi);
536static void remove_bg_job(struct pipe *pi);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000537static void delete_finished_bg_job(struct pipe *pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000538#else
539int checkjobs_and_fg_shell(struct pipe* fg_pipe); /* never called */
540#endif
Eric Andersenf72f5622001-05-15 23:21:41 +0000541/* local variable support */
Denis Vlasenko170435c2007-05-23 13:01:10 +0000542static char **expand_strvec_to_strvec(char **argv);
543/* used for eval */
544static char *expand_strvec_to_string(char **argv);
Denis Vlasenkob6a741f2007-05-17 14:38:17 +0000545/* used for expansion of right hand of assignments */
Denis Vlasenko170435c2007-05-23 13:01:10 +0000546static char *expand_string_to_string(const char *str);
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000547static struct variable *get_local_var(const char *name);
548static int set_local_var(char *str, int flg_export);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +0000549static void unset_local_var(const char *name);
Eric Andersen25f27032001-04-26 23:22:31 +0000550
551/* Table of built-in functions. They can be forked or not, depending on
552 * context: within pipes, they fork. As simple commands, they do not.
553 * When used in non-forking context, they can change global variables
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000554 * in the parent shell process. If forked, of course they cannot.
Eric Andersen25f27032001-04-26 23:22:31 +0000555 * For example, 'unset foo | whatever' will parse and run, but foo will
556 * still be set at the end. */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000557struct built_in_command {
558 const char *cmd; /* name */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000559 int (*function) (char **argv); /* function ptr */
Denis Vlasenko06810332007-05-21 23:30:54 +0000560#if ENABLE_HUSH_HELP
561 const char *descr; /* description */
562#define BLTIN(cmd, func, help) { cmd, func, help }
563#else
564#define BLTIN(cmd, func, help) { cmd, func }
565#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000566};
567
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +0000568static const struct built_in_command bltins[] = {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000569#if ENABLE_HUSH_JOB
Denis Vlasenko06810332007-05-21 23:30:54 +0000570 BLTIN("bg" , builtin_fg_bg, "Resume a job in the background"),
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000571#endif
Denis Vlasenko06810332007-05-21 23:30:54 +0000572// BLTIN("break" , builtin_not_written, "Exit for, while or until loop"),
573 BLTIN("cd" , builtin_cd, "Change working directory"),
574// BLTIN("continue", builtin_not_written, "Continue for, while or until loop"),
575 BLTIN("eval" , builtin_eval, "Construct and run shell command"),
576 BLTIN("exec" , builtin_exec, "Exec command, replacing this shell with the exec'd process"),
577 BLTIN("exit" , builtin_exit, "Exit from shell"),
578 BLTIN("export", builtin_export, "Set environment variable"),
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000579#if ENABLE_HUSH_JOB
Denis Vlasenko06810332007-05-21 23:30:54 +0000580 BLTIN("fg" , builtin_fg_bg, "Bring job into the foreground"),
581 BLTIN("jobs" , builtin_jobs, "Lists the active jobs"),
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000582#endif
Denis Vlasenko06810332007-05-21 23:30:54 +0000583// TODO: remove pwd? we have it as an applet...
584 BLTIN("pwd" , builtin_pwd, "Print current directory"),
585 BLTIN("read" , builtin_read, "Input environment variable"),
586// BLTIN("return", builtin_not_written, "Return from a function"),
587 BLTIN("set" , builtin_set, "Set/unset shell local variables"),
588 BLTIN("shift" , builtin_shift, "Shift positional parameters"),
589// BLTIN("trap" , builtin_not_written, "Trap signals"),
590// BLTIN("ulimit", builtin_not_written, "Controls resource limits"),
591 BLTIN("umask" , builtin_umask, "Sets file creation mask"),
592 BLTIN("unset" , builtin_unset, "Unset environment variable"),
593 BLTIN("." , builtin_source, "Source-in and run commands in a file"),
594#if ENABLE_HUSH_HELP
595 BLTIN("help" , builtin_help, "List shell built-in commands"),
596#endif
597 BLTIN(NULL, NULL, NULL)
Eric Andersen25f27032001-04-26 23:22:31 +0000598};
599
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000600#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000601
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000602/* move to libbb? */
603static void signal_SA_RESTART(int sig, void (*handler)(int))
604{
605 struct sigaction sa;
606 sa.sa_handler = handler;
607 sa.sa_flags = SA_RESTART;
608 sigemptyset(&sa.sa_mask);
609 sigaction(sig, &sa, NULL);
610}
611
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000612/* Signals are grouped, we handle them in batches */
613static void set_fatal_sighandler(void (*handler)(int))
614{
615 signal(SIGILL , handler);
616 signal(SIGTRAP, handler);
617 signal(SIGABRT, handler);
618 signal(SIGFPE , handler);
619 signal(SIGBUS , handler);
620 signal(SIGSEGV, handler);
621 /* bash 3.2 seems to handle these just like 'fatal' ones */
622 signal(SIGHUP , handler);
623 signal(SIGPIPE, handler);
624 signal(SIGALRM, handler);
625}
626static void set_jobctrl_sighandler(void (*handler)(int))
627{
628 signal(SIGTSTP, handler);
629 signal(SIGTTIN, handler);
630 signal(SIGTTOU, handler);
631}
632static void set_misc_sighandler(void (*handler)(int))
633{
634 signal(SIGINT , handler);
635 signal(SIGQUIT, handler);
636 signal(SIGTERM, handler);
637}
638/* SIGCHLD is special and handled separately */
639
640static void set_every_sighandler(void (*handler)(int))
641{
642 set_fatal_sighandler(handler);
643 set_jobctrl_sighandler(handler);
644 set_misc_sighandler(handler);
645 signal(SIGCHLD, handler);
646}
647
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +0000648static void handler_ctrl_c(int sig)
649{
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000650 debug_printf_jobs("got sig %d\n", sig);
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +0000651// as usual we can have all kinds of nasty problems with leaked malloc data here
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000652 siglongjmp(toplevel_jb, 1);
Denis Vlasenkob5eaabb2007-04-28 16:45:59 +0000653}
654
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000655static void handler_ctrl_z(int sig)
656{
657 pid_t pid;
658
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000659 debug_printf_jobs("got tty sig %d in pid %d\n", sig, getpid());
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000660 pid = fork();
Denis Vlasenkoc2990322007-05-16 12:57:12 +0000661 if (pid < 0) /* can't fork. Pretend there was no ctrl-Z */
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000662 return;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000663 ctrl_z_flag = 1;
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000664 if (!pid) { /* child */
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000665 setpgrp();
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000666 debug_printf_jobs("set pgrp for child %d ok\n", getpid());
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000667 set_every_sighandler(SIG_DFL);
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000668 raise(SIGTSTP); /* resend TSTP so that child will be stopped */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000669 debug_printf_jobs("returning in child\n");
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000670 /* return to nofork, it will eventually exit now,
671 * not return back to shell */
672 return;
673 }
674 /* parent */
675 /* finish filling up pipe info */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000676 toplevel_list->pgrp = pid; /* child is in its own pgrp */
677 toplevel_list->progs[0].pid = pid;
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000678 /* parent needs to longjmp out of running nofork.
679 * we will "return" exitcode 0, with child put in background */
680// as usual we can have all kinds of nasty problems with leaked malloc data here
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +0000681 debug_printf_jobs("siglongjmp in parent\n");
682 siglongjmp(toplevel_jb, 1);
Denis Vlasenkoa6a17852007-04-28 16:42:11 +0000683}
684
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000685/* Restores tty foreground process group, and exits.
686 * May be called as signal handler for fatal signal
687 * (will faithfully resend signal to itself, producing correct exit state)
688 * or called directly with -EXITCODE.
689 * We also call it if xfunc is exiting. */
690static void sigexit(int sig) ATTRIBUTE_NORETURN;
691static void sigexit(int sig)
692{
693 sigset_t block_all;
694
695 /* Disable all signals: job control, SIGPIPE, etc. */
696 sigfillset(&block_all);
697 sigprocmask(SIG_SETMASK, &block_all, NULL);
698
Denis Vlasenko87cb2db2007-04-21 10:00:01 +0000699 if (interactive_fd)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000700 tcsetpgrp(interactive_fd, saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000701
702 /* Not a signal, just exit */
703 if (sig <= 0)
704 _exit(- sig);
705
706 /* Enable only this sig and kill ourself with it */
707 signal(sig, SIG_DFL);
708 sigdelset(&block_all, sig);
709 sigprocmask(SIG_SETMASK, &block_all, NULL);
710 raise(sig);
711 _exit(1); /* Should not reach it */
712}
713
714/* Restores tty foreground process group, and exits. */
715static void hush_exit(int exitcode) ATTRIBUTE_NORETURN;
716static void hush_exit(int exitcode)
717{
718 fflush(NULL); /* flush all streams */
719 sigexit(- (exitcode & 0xff));
720}
721
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000722#else /* !JOB */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000723
724#define set_fatal_sighandler(handler) ((void)0)
725#define set_jobctrl_sighandler(handler) ((void)0)
726#define set_misc_sighandler(handler) ((void)0)
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000727#define hush_exit(e) exit(e)
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000728
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000729#endif /* JOB */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000730
731
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000732static const char *set_cwd(void)
733{
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000734 if (cwd == bb_msg_unknown)
Denis Vlasenko7cced6e2007-04-12 17:08:53 +0000735 cwd = NULL; /* xrealloc_getcwd_or_warn(arg) calls free(arg)! */
Denis Vlasenko6ca04442007-02-11 16:19:28 +0000736 cwd = xrealloc_getcwd_or_warn((char *)cwd);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000737 if (!cwd)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000738 cwd = bb_msg_unknown;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000739 return cwd;
740}
741
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000742/* built-in 'eval' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000743static int builtin_eval(char **argv)
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000744{
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000745 int rcode = EXIT_SUCCESS;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000746
Denis Vlasenko1359da62007-04-21 23:27:30 +0000747 if (argv[1]) {
Denis Vlasenko170435c2007-05-23 13:01:10 +0000748 char *str = expand_strvec_to_string(argv + 1);
749 parse_and_run_string(str, PARSEFLAG_EXIT_FROM_LOOP |
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000750 PARSEFLAG_SEMICOLON);
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000751 free(str);
752 rcode = last_return_code;
753 }
754 return rcode;
755}
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000756
Eric Andersen25f27032001-04-26 23:22:31 +0000757/* built-in 'cd <path>' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000758static int builtin_cd(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000759{
Denis Vlasenko170435c2007-05-23 13:01:10 +0000760 const char *newdir;
Denis Vlasenko96e1b382007-09-30 23:50:48 +0000761 if (argv[1] == NULL) {
762 // bash does nothing (exitcode 0) if HOME is ""; if it's unset,
763 // bash says "bash: cd: HOME not set" and does nothing (exitcode 1)
Denis Vlasenko170435c2007-05-23 13:01:10 +0000764 newdir = getenv("HOME") ? : "/";
Denis Vlasenko96e1b382007-09-30 23:50:48 +0000765 } else
Denis Vlasenko1359da62007-04-21 23:27:30 +0000766 newdir = argv[1];
Eric Andersen25f27032001-04-26 23:22:31 +0000767 if (chdir(newdir)) {
768 printf("cd: %s: %s\n", newdir, strerror(errno));
769 return EXIT_FAILURE;
770 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000771 set_cwd();
Eric Andersen25f27032001-04-26 23:22:31 +0000772 return EXIT_SUCCESS;
773}
774
Eric Andersen25f27032001-04-26 23:22:31 +0000775/* built-in 'exec' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000776static int builtin_exec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000777{
Denis Vlasenko1359da62007-04-21 23:27:30 +0000778 if (argv[1] == NULL)
Eric Andersen25f27032001-04-26 23:22:31 +0000779 return EXIT_SUCCESS; /* Really? */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000780 pseudo_exec_argv(argv + 1);
Eric Andersen25f27032001-04-26 23:22:31 +0000781 /* never returns */
782}
783
784/* built-in 'exit' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000785static int builtin_exit(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000786{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000787// TODO: bash does it ONLY on top-level sh exit (+interacive only?)
788 //puts("exit"); /* bash does it */
Denis Vlasenkof2fffd02007-05-02 23:39:04 +0000789// TODO: warn if we have background jobs: "There are stopped jobs"
790// On second consecutive 'exit', exit anyway.
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000791
Denis Vlasenko1359da62007-04-21 23:27:30 +0000792 if (argv[1] == NULL)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000793 hush_exit(last_return_code);
Denis Vlasenko5f786c22007-04-20 08:35:45 +0000794 /* mimic bash: exit 123abc == exit 255 + error msg */
795 xfunc_error_retval = 255;
796 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenkof2fffd02007-05-02 23:39:04 +0000797 hush_exit(xatoi(argv[1]) & 0xff);
Eric Andersen25f27032001-04-26 23:22:31 +0000798}
799
800/* built-in 'export VAR=value' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000801static int builtin_export(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000802{
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000803 const char *value;
Denis Vlasenko1359da62007-04-21 23:27:30 +0000804 char *name = argv[1];
Eric Andersen25f27032001-04-26 23:22:31 +0000805
Eric Andersenf72f5622001-05-15 23:21:41 +0000806 if (name == NULL) {
Denis Vlasenkof2fffd02007-05-02 23:39:04 +0000807 // TODO:
808 // ash emits: export VAR='VAL'
809 // bash: declare -x VAR="VAL"
810 // (both also escape as needed (quotes, $, etc))
811 char **e = environ;
812 if (e)
813 while (*e)
814 puts(*e++);
815 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +0000816 }
Eric Andersenf72f5622001-05-15 23:21:41 +0000817
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000818 value = strchr(name, '=');
819 if (!value) {
820 /* They are exporting something without a =VALUE */
821 struct variable *var;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000822
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000823 var = get_local_var(name);
824 if (var) {
825 var->flg_export = 1;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000826 putenv(var->varstr);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000827 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000828 /* bash does not return an error when trying to export
829 * an undefined variable. Do likewise. */
830 return EXIT_SUCCESS;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000831 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000832
833 set_local_var(xstrdup(name), 1);
834 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +0000835}
836
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000837#if ENABLE_HUSH_JOB
Eric Andersen25f27032001-04-26 23:22:31 +0000838/* built-in 'fg' and 'bg' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000839static int builtin_fg_bg(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000840{
Eric Andersen0fcd4472001-05-02 20:12:03 +0000841 int i, jobnum;
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000842 struct pipe *pi;
Eric Andersen25f27032001-04-26 23:22:31 +0000843
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000844 if (!interactive_fd)
Eric Andersenc798b072001-06-22 06:23:03 +0000845 return EXIT_FAILURE;
Eric Andersen0fcd4472001-05-02 20:12:03 +0000846 /* If they gave us no args, assume they want the last backgrounded task */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000847 if (!argv[1]) {
Eric Andersenc798b072001-06-22 06:23:03 +0000848 for (pi = job_list; pi; pi = pi->next) {
849 if (pi->jobid == last_jobid) {
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000850 goto found;
Eric Andersen0fcd4472001-05-02 20:12:03 +0000851 }
852 }
Denis Vlasenko1359da62007-04-21 23:27:30 +0000853 bb_error_msg("%s: no current job", argv[0]);
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000854 return EXIT_FAILURE;
855 }
Denis Vlasenko1359da62007-04-21 23:27:30 +0000856 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
857 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000858 return EXIT_FAILURE;
859 }
860 for (pi = job_list; pi; pi = pi->next) {
861 if (pi->jobid == jobnum) {
862 goto found;
Eric Andersen25f27032001-04-26 23:22:31 +0000863 }
864 }
Denis Vlasenko1359da62007-04-21 23:27:30 +0000865 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000866 return EXIT_FAILURE;
867 found:
Denis Vlasenko52881e92007-04-21 13:42:52 +0000868 // TODO: bash prints a string representation
869 // of job being foregrounded (like "sleep 1 | cat")
Denis Vlasenko1359da62007-04-21 23:27:30 +0000870 if (*argv[0] == 'f') {
Eric Andersen028b65b2001-06-28 01:10:11 +0000871 /* Put the job into the foreground. */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000872 tcsetpgrp(interactive_fd, pi->pgrp);
Eric Andersen25f27032001-04-26 23:22:31 +0000873 }
874
875 /* Restart the processes in the job */
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000876 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_progs, pi->pgrp);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000877 for (i = 0; i < pi->num_progs; i++) {
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000878 debug_printf_jobs("reviving pid %d\n", pi->progs[i].pid);
Eric Andersen0fcd4472001-05-02 20:12:03 +0000879 pi->progs[i].is_stopped = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +0000880 }
881 pi->stopped_progs = 0;
Eric Andersen25f27032001-04-26 23:22:31 +0000882
Denis Vlasenkobb81c582007-01-30 22:32:09 +0000883 i = kill(- pi->pgrp, SIGCONT);
884 if (i < 0) {
Denis Vlasenko8a28e622007-04-14 11:16:29 +0000885 if (errno == ESRCH) {
Denis Vlasenko1359da62007-04-21 23:27:30 +0000886 delete_finished_bg_job(pi);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000887 return EXIT_SUCCESS;
Eric Andersen028b65b2001-06-28 01:10:11 +0000888 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000889 bb_perror_msg("kill (SIGCONT)");
Eric Andersen028b65b2001-06-28 01:10:11 +0000890 }
891 }
Eric Andersen25f27032001-04-26 23:22:31 +0000892
Denis Vlasenko1359da62007-04-21 23:27:30 +0000893 if (*argv[0] == 'f') {
894 remove_bg_job(pi);
Denis Vlasenko52881e92007-04-21 13:42:52 +0000895 return checkjobs_and_fg_shell(pi);
Denis Vlasenko1359da62007-04-21 23:27:30 +0000896 }
Eric Andersen25f27032001-04-26 23:22:31 +0000897 return EXIT_SUCCESS;
898}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000899#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000900
901/* built-in 'help' handler */
Denis Vlasenko06810332007-05-21 23:30:54 +0000902#if ENABLE_HUSH_HELP
Denis Vlasenko1359da62007-04-21 23:27:30 +0000903static int builtin_help(char **argv ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +0000904{
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +0000905 const struct built_in_command *x;
Eric Andersen25f27032001-04-26 23:22:31 +0000906
907 printf("\nBuilt-in commands:\n");
908 printf("-------------------\n");
909 for (x = bltins; x->cmd; x++) {
Eric Andersen25f27032001-04-26 23:22:31 +0000910 printf("%s\t%s\n", x->cmd, x->descr);
911 }
912 printf("\n\n");
913 return EXIT_SUCCESS;
914}
Denis Vlasenko06810332007-05-21 23:30:54 +0000915#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000916
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000917#if ENABLE_HUSH_JOB
Eric Andersen25f27032001-04-26 23:22:31 +0000918/* built-in 'jobs' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000919static int builtin_jobs(char **argv ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +0000920{
921 struct pipe *job;
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000922 const char *status_string;
Eric Andersen25f27032001-04-26 23:22:31 +0000923
Eric Andersenc798b072001-06-22 06:23:03 +0000924 for (job = job_list; job; job = job->next) {
Eric Andersen25f27032001-04-26 23:22:31 +0000925 if (job->running_progs == job->stopped_progs)
926 status_string = "Stopped";
927 else
928 status_string = "Running";
Eric Andersen52a97ca2001-06-22 06:49:26 +0000929
Denis Vlasenko3ac0e002007-04-28 16:45:22 +0000930 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
Eric Andersen25f27032001-04-26 23:22:31 +0000931 }
932 return EXIT_SUCCESS;
933}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000934#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000935
Eric Andersen25f27032001-04-26 23:22:31 +0000936/* built-in 'pwd' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000937static int builtin_pwd(char **argv ATTRIBUTE_UNUSED)
Eric Andersen25f27032001-04-26 23:22:31 +0000938{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000939 puts(set_cwd());
Eric Andersen25f27032001-04-26 23:22:31 +0000940 return EXIT_SUCCESS;
941}
942
943/* built-in 'read VAR' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000944static int builtin_read(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000945{
Denis Vlasenkod67cef22007-06-13 06:47:47 +0000946 char *string;
Denis Vlasenko3e7b0e62007-05-16 12:52:15 +0000947 const char *name = argv[1] ? argv[1] : "REPLY";
Eric Andersen25f27032001-04-26 23:22:31 +0000948
Denis Vlasenkod67cef22007-06-13 06:47:47 +0000949 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name));
950 return set_local_var(string, 0);
Eric Andersen25f27032001-04-26 23:22:31 +0000951}
952
Denis Vlasenko3e7b0e62007-05-16 12:52:15 +0000953/* built-in 'set [VAR=value]' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000954static int builtin_set(char **argv)
Eric Andersenf72f5622001-05-15 23:21:41 +0000955{
Denis Vlasenko1359da62007-04-21 23:27:30 +0000956 char *temp = argv[1];
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000957 struct variable *e;
Eric Andersenf72f5622001-05-15 23:21:41 +0000958
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000959 if (temp == NULL)
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000960 for (e = top_var; e; e = e->next)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000961 puts(e->varstr);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000962 else
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000963 set_local_var(xstrdup(temp), 0);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000964
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000965 return EXIT_SUCCESS;
Eric Andersenf72f5622001-05-15 23:21:41 +0000966}
967
968
Eric Andersen25f27032001-04-26 23:22:31 +0000969/* Built-in 'shift' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000970static int builtin_shift(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000971{
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000972 int n = 1;
Denis Vlasenko1359da62007-04-21 23:27:30 +0000973 if (argv[1]) {
974 n = atoi(argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +0000975 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000976 if (n >= 0 && n < global_argc) {
Denis Vlasenko004baba2007-05-20 22:22:18 +0000977 global_argv[n] = global_argv[0];
Eric Andersen25f27032001-04-26 23:22:31 +0000978 global_argc -= n;
979 global_argv += n;
980 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +0000981 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +0000982 return EXIT_FAILURE;
Eric Andersen25f27032001-04-26 23:22:31 +0000983}
984
985/* Built-in '.' handler (read-in and execute commands from file) */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000986static int builtin_source(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +0000987{
988 FILE *input;
989 int status;
990
Denis Vlasenko1359da62007-04-21 23:27:30 +0000991 if (argv[1] == NULL)
Eric Andersen25f27032001-04-26 23:22:31 +0000992 return EXIT_FAILURE;
993
994 /* XXX search through $PATH is missing */
Denis Vlasenko1359da62007-04-21 23:27:30 +0000995 input = fopen(argv[1], "r");
Eric Andersen25f27032001-04-26 23:22:31 +0000996 if (!input) {
Denis Vlasenko1359da62007-04-21 23:27:30 +0000997 bb_error_msg("cannot open '%s'", argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +0000998 return EXIT_FAILURE;
999 }
Denis Vlasenkoa0898172007-10-01 09:59:01 +00001000 close_on_exec_on(fileno(input));
Eric Andersen25f27032001-04-26 23:22:31 +00001001
1002 /* Now run the file */
1003 /* XXX argv and argc are broken; need to save old global_argv
1004 * (pointer only is OK!) on this stack frame,
Denis Vlasenko1359da62007-04-21 23:27:30 +00001005 * set global_argv=argv+1, recurse, and restore. */
Denis Vlasenko170435c2007-05-23 13:01:10 +00001006 status = parse_and_run_file(input);
Eric Andersen25f27032001-04-26 23:22:31 +00001007 fclose(input);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001008 return status;
Eric Andersen25f27032001-04-26 23:22:31 +00001009}
1010
Denis Vlasenko1359da62007-04-21 23:27:30 +00001011static int builtin_umask(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001012{
Eric Andersen83a2ae22001-05-07 17:59:25 +00001013 mode_t new_umask;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001014 const char *arg = argv[1];
Eric Andersen83a2ae22001-05-07 17:59:25 +00001015 char *end;
1016 if (arg) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001017 new_umask = strtoul(arg, &end, 8);
1018 if (*end != '\0' || end == arg) {
Eric Andersen83a2ae22001-05-07 17:59:25 +00001019 return EXIT_FAILURE;
1020 }
1021 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001022 new_umask = umask(0);
1023 printf("%.3o\n", (unsigned) new_umask);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001024 }
1025 umask(new_umask);
1026 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +00001027}
1028
1029/* built-in 'unset VAR' handler */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001030static int builtin_unset(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001031{
Denis Vlasenko3e7b0e62007-05-16 12:52:15 +00001032 /* bash always returns true */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001033 unset_local_var(argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +00001034 return EXIT_SUCCESS;
1035}
1036
Denis Vlasenko06810332007-05-21 23:30:54 +00001037//static int builtin_not_written(char **argv)
1038//{
1039// printf("builtin_%s not written\n", argv[0]);
1040// return EXIT_FAILURE;
1041//}
Eric Andersen83a2ae22001-05-07 17:59:25 +00001042
Eric Andersen25f27032001-04-26 23:22:31 +00001043static int b_check_space(o_string *o, int len)
1044{
1045 /* It would be easy to drop a more restrictive policy
1046 * in here, such as setting a maximum string length */
1047 if (o->length + len > o->maxlen) {
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001048 /* assert(data == NULL || o->maxlen != 0); */
Denis Vlasenkoef36ead2007-05-02 15:34:47 +00001049 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001050 o->data = xrealloc(o->data, 1 + o->maxlen);
Eric Andersen25f27032001-04-26 23:22:31 +00001051 }
1052 return o->data == NULL;
1053}
1054
1055static int b_addchr(o_string *o, int ch)
1056{
Denis Vlasenko831dcc42007-05-16 15:05:36 +00001057 debug_printf("b_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001058 if (b_check_space(o, 1))
1059 return B_NOSPAC;
Eric Andersen25f27032001-04-26 23:22:31 +00001060 o->data[o->length] = ch;
1061 o->length++;
1062 o->data[o->length] = '\0';
1063 return 0;
1064}
1065
1066static void b_reset(o_string *o)
1067{
1068 o->length = 0;
1069 o->nonnull = 0;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001070 if (o->data != NULL)
1071 *o->data = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001072}
1073
1074static void b_free(o_string *o)
1075{
1076 b_reset(o);
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001077 free(o->data);
Eric Andersen25f27032001-04-26 23:22:31 +00001078 o->data = NULL;
1079 o->maxlen = 0;
1080}
1081
1082/* My analysis of quoting semantics tells me that state information
1083 * is associated with a destination, not a source.
1084 */
1085static int b_addqchr(o_string *o, int ch, int quote)
1086{
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00001087 if (quote && strchr("*?[\\", ch)) {
Eric Andersen25f27032001-04-26 23:22:31 +00001088 int rc;
1089 rc = b_addchr(o, '\\');
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001090 if (rc)
1091 return rc;
Eric Andersen25f27032001-04-26 23:22:31 +00001092 }
1093 return b_addchr(o, ch);
1094}
1095
Eric Andersen25f27032001-04-26 23:22:31 +00001096static int static_get(struct in_str *i)
1097{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001098 int ch = *i->p++;
1099 if (ch == '\0') return EOF;
Eric Andersen25f27032001-04-26 23:22:31 +00001100 return ch;
1101}
1102
1103static int static_peek(struct in_str *i)
1104{
1105 return *i->p;
1106}
1107
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001108#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001109#if ENABLE_FEATURE_EDITING
Rob Landley88621d72006-08-29 19:41:06 +00001110static void cmdedit_set_initial_prompt(void)
Eric Andersen25f27032001-04-26 23:22:31 +00001111{
Denis Vlasenko38f63192007-01-22 09:03:07 +00001112#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +00001113 PS1 = NULL;
1114#else
1115 PS1 = getenv("PS1");
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001116 if (PS1 == NULL)
Eric Andersen25f27032001-04-26 23:22:31 +00001117 PS1 = "\\w \\$ ";
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001118#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001119}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001120#endif /* EDITING */
Eric Andersen25f27032001-04-26 23:22:31 +00001121
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001122static const char* setup_prompt_string(int promptmode)
Eric Andersen25f27032001-04-26 23:22:31 +00001123{
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001124 const char *prompt_str;
1125 debug_printf("setup_prompt_string %d ", promptmode);
Denis Vlasenko38f63192007-01-22 09:03:07 +00001126#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +00001127 /* Set up the prompt */
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001128 if (promptmode == 0) { /* PS1 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001129 free((char*)PS1);
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001130 PS1 = xasprintf("%s %c ", cwd, (geteuid() != 0) ? '$' : '#');
1131 prompt_str = PS1;
Eric Andersen25f27032001-04-26 23:22:31 +00001132 } else {
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001133 prompt_str = PS2;
Eric Andersen25f27032001-04-26 23:22:31 +00001134 }
1135#else
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001136 prompt_str = (promptmode == 0) ? PS1 : PS2;
Eric Andersenaf44a0e2001-04-27 07:26:12 +00001137#endif
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001138 debug_printf("result '%s'\n", prompt_str);
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001139 return prompt_str;
Eric Andersen25f27032001-04-26 23:22:31 +00001140}
1141
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001142static void get_user_input(struct in_str *i)
Eric Andersen25f27032001-04-26 23:22:31 +00001143{
Denis Vlasenko0937be52007-04-28 16:47:08 +00001144 int r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001145 const char *prompt_str;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001146
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00001147 prompt_str = setup_prompt_string(i->promptmode);
Denis Vlasenko38f63192007-01-22 09:03:07 +00001148#if ENABLE_FEATURE_EDITING
Denis Vlasenko170435c2007-05-23 13:01:10 +00001149 /* Enable command line editing only while a command line
1150 * is actually being read; otherwise, we'll end up bequeathing
1151 * atexit() handlers and other unwanted stuff to our
1152 * child processes (rob@sysgo.de) */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001153 r = read_line_input(prompt_str, user_input_buf, BUFSIZ-1, line_input_state);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001154 i->eof_flag = (r < 0);
1155 if (i->eof_flag) { /* EOF/error detected */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001156 user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1157 user_input_buf[1] = '\0';
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001158 }
Eric Andersen25f27032001-04-26 23:22:31 +00001159#else
1160 fputs(prompt_str, stdout);
1161 fflush(stdout);
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001162 user_input_buf[0] = r = fgetc(i->file);
1163 /*user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001164 i->eof_flag = (r == EOF);
Eric Andersen25f27032001-04-26 23:22:31 +00001165#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001166 i->p = user_input_buf;
Eric Andersen25f27032001-04-26 23:22:31 +00001167}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001168#endif /* INTERACTIVE */
Eric Andersen25f27032001-04-26 23:22:31 +00001169
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001170/* This is the magic location that prints prompts
Eric Andersen25f27032001-04-26 23:22:31 +00001171 * and gets data back from the user */
1172static int file_get(struct in_str *i)
1173{
1174 int ch;
1175
Eric Andersen25f27032001-04-26 23:22:31 +00001176 /* If there is data waiting, eat it up */
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001177 if (i->p && *i->p) {
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001178#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001179 take_cached:
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001180#endif
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001181 ch = *i->p++;
1182 if (i->eof_flag && !*i->p)
1183 ch = EOF;
Eric Andersen25f27032001-04-26 23:22:31 +00001184 } else {
1185 /* need to double check i->file because we might be doing something
1186 * more complicated by now, like sourcing or substituting. */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001187#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001188 if (interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001189 do {
1190 get_user_input(i);
1191 } while (!*i->p); /* need non-empty line */
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001192 i->promptmode = 1; /* PS2 */
1193 i->promptme = 0;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001194 goto take_cached;
Eric Andersen25f27032001-04-26 23:22:31 +00001195 }
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001196#endif
1197 ch = fgetc(i->file);
Eric Andersen25f27032001-04-26 23:22:31 +00001198 }
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001199 debug_printf("file_get: got a '%c' %d\n", ch, ch);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001200#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001201 if (ch == '\n')
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001202 i->promptme = 1;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001203#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001204 return ch;
1205}
1206
1207/* All the callers guarantee this routine will never be
1208 * used right after a newline, so prompting is not needed.
1209 */
1210static int file_peek(struct in_str *i)
1211{
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00001212 int ch;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001213 if (i->p && *i->p) {
1214 if (i->eof_flag && !i->p[1])
1215 return EOF;
1216 return *i->p;
Eric Andersen25f27032001-04-26 23:22:31 +00001217 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00001218 ch = fgetc(i->file);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001219 i->eof_flag = (ch == EOF);
1220 i->peek_buf[0] = ch;
1221 i->peek_buf[1] = '\0';
1222 i->p = i->peek_buf;
1223 debug_printf("file_peek: got a '%c' %d\n", *i->p, *i->p);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00001224 return ch;
Eric Andersen25f27032001-04-26 23:22:31 +00001225}
1226
1227static void setup_file_in_str(struct in_str *i, FILE *f)
1228{
1229 i->peek = file_peek;
1230 i->get = file_get;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001231#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001232 i->promptme = 1;
1233 i->promptmode = 0; /* PS1 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001234#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001235 i->file = f;
1236 i->p = NULL;
1237}
1238
1239static void setup_string_in_str(struct in_str *i, const char *s)
1240{
1241 i->peek = static_peek;
1242 i->get = static_get;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001243#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00001244 i->promptme = 1;
1245 i->promptmode = 0; /* PS1 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001246#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001247 i->p = s;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00001248 i->eof_flag = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00001249}
1250
Eric Andersen25f27032001-04-26 23:22:31 +00001251/* squirrel != NULL means we squirrel away copies of stdin, stdout,
1252 * and stderr if they are redirected. */
1253static int setup_redirects(struct child_prog *prog, int squirrel[])
1254{
1255 int openfd, mode;
1256 struct redir_struct *redir;
1257
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001258 for (redir = prog->redirects; redir; redir = redir->next) {
Eric Andersen817e73c2001-06-06 17:56:09 +00001259 if (redir->dup == -1 && redir->word.gl_pathv == NULL) {
1260 /* something went wrong in the parse. Pretend it didn't happen */
1261 continue;
1262 }
Eric Andersen25f27032001-04-26 23:22:31 +00001263 if (redir->dup == -1) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001264 mode = redir_table[redir->type].mode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001265 openfd = open_or_warn(redir->word.gl_pathv[0], mode);
Eric Andersen25f27032001-04-26 23:22:31 +00001266 if (openfd < 0) {
1267 /* this could get lost if stderr has been redirected, but
1268 bash and ash both lose it as well (though zsh doesn't!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001269 return 1;
1270 }
1271 } else {
1272 openfd = redir->dup;
1273 }
1274
1275 if (openfd != redir->fd) {
1276 if (squirrel && redir->fd < 3) {
1277 squirrel[redir->fd] = dup(redir->fd);
1278 }
Eric Andersen83a2ae22001-05-07 17:59:25 +00001279 if (openfd == -3) {
Denis Vlasenko8412d792007-10-01 09:59:47 +00001280 //close(openfd); // close(-3) ??!
Eric Andersen83a2ae22001-05-07 17:59:25 +00001281 } else {
1282 dup2(openfd, redir->fd);
Matt Kraaic616e532001-06-05 16:50:08 +00001283 if (redir->dup == -1)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001284 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001285 }
Eric Andersen25f27032001-04-26 23:22:31 +00001286 }
1287 }
1288 return 0;
1289}
1290
1291static void restore_redirects(int squirrel[])
1292{
1293 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001294 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00001295 fd = squirrel[i];
1296 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00001297 /* We simply die on error */
1298 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00001299 }
1300 }
1301}
1302
Denis Vlasenko8412d792007-10-01 09:59:47 +00001303/* Called after [v]fork() in run_pipe_real(), or from builtin_exec().
1304 * Never returns.
1305 * XXX no exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00001306 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001307 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001308static void pseudo_exec_argv(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001309{
Eric Andersen78a7c992001-05-15 16:30:25 +00001310 int i, rcode;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001311 char *p;
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00001312 const struct built_in_command *x;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001313
Denis Vlasenko1359da62007-04-21 23:27:30 +00001314 for (i = 0; is_assignment(argv[i]); i++) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001315 debug_printf_exec("pid %d environment modification: %s\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001316 getpid(), argv[i]);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001317// FIXME: vfork case??
Denis Vlasenko170435c2007-05-23 13:01:10 +00001318 p = expand_string_to_string(argv[i]);
1319 putenv(p);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001320 }
1321 argv += i;
1322 /* If a variable is assigned in a forest, and nobody listens,
1323 * was it ever really set?
1324 */
1325 if (argv[0] == NULL) {
1326 _exit(EXIT_SUCCESS);
1327 }
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00001328
Denis Vlasenko170435c2007-05-23 13:01:10 +00001329 argv = expand_strvec_to_strvec(argv);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00001330
Denis Vlasenko1359da62007-04-21 23:27:30 +00001331 /*
1332 * Check if the command matches any of the builtins.
1333 * Depending on context, this might be redundant. But it's
1334 * easier to waste a few CPU cycles than it is to figure out
1335 * if this is one of those cases.
1336 */
1337 for (x = bltins; x->cmd; x++) {
1338 if (strcmp(argv[0], x->cmd) == 0) {
Denis Vlasenko764d59d2007-05-14 16:23:23 +00001339 debug_printf_exec("running builtin '%s'\n", argv[0]);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001340 rcode = x->function(argv);
1341 fflush(stdout);
1342 _exit(rcode);
Eric Andersen94ac2442001-05-22 19:05:18 +00001343 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001344 }
Eric Andersen78a7c992001-05-15 16:30:25 +00001345
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001346 /* Check if the command matches any busybox applets */
Denis Vlasenko80d14be2007-04-10 23:03:30 +00001347#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001348 if (strchr(argv[0], '/') == NULL) {
1349 const struct bb_applet *a = find_applet_by_name(argv[0]);
1350 if (a) {
1351 if (a->noexec) {
1352 current_applet = a;
1353 debug_printf_exec("running applet '%s'\n", argv[0]);
1354// is it ok that run_current_applet_and_exit() does exit(), not _exit()?
1355 run_current_applet_and_exit(argv);
1356 }
1357 /* re-exec ourselves with the new arguments */
1358 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenkobdbbb7e2007-06-08 15:02:55 +00001359 execvp(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001360 /* If they called chroot or otherwise made the binary no longer
1361 * executable, fall through */
1362 }
1363 }
Eric Andersenaac75e52001-04-30 18:18:45 +00001364#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001365
1366 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001367 execvp(argv[0], argv);
1368 bb_perror_msg("cannot exec '%s'", argv[0]);
1369 _exit(1);
1370}
1371
Denis Vlasenko8412d792007-10-01 09:59:47 +00001372/* Called after [v]fork() in run_pipe_real()
1373 */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001374static void pseudo_exec(struct child_prog *child)
1375{
Denis Vlasenkof2fffd02007-05-02 23:39:04 +00001376// FIXME: buggy wrt NOMMU! Must not modify any global data
1377// until it does exec/_exit, but currently it does.
Denis Vlasenko1359da62007-04-21 23:27:30 +00001378 int rcode;
1379
1380 if (child->argv) {
1381 pseudo_exec_argv(child->argv);
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001382 }
1383
1384 if (child->group) {
Denis Vlasenko8412d792007-10-01 09:59:47 +00001385#if !BB_MMU
1386 bb_error_msg_and_exit("nested lists are not supported on NOMMU");
1387#else
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001388#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001389 debug_printf_exec("pseudo_exec: setting interactive_fd=0\n");
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001390 interactive_fd = 0; /* crucial!!!! */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001391#endif
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001392 debug_printf_exec("pseudo_exec: run_list_real\n");
Eric Andersen25f27032001-04-26 23:22:31 +00001393 rcode = run_list_real(child->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00001394 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00001395 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00001396 _exit(rcode);
Denis Vlasenko8412d792007-10-01 09:59:47 +00001397#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001398 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001399
1400 /* Can happen. See what bash does with ">foo" by itself. */
1401 debug_printf("trying to pseudo_exec null command\n");
1402 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00001403}
1404
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001405#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001406static const char *get_cmdtext(struct pipe *pi)
1407{
1408 char **argv;
1409 char *p;
1410 int len;
1411
1412 /* This is subtle. ->cmdtext is created only on first backgrounding.
1413 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001414 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001415 if (pi->cmdtext)
1416 return pi->cmdtext;
1417 argv = pi->progs[0].argv;
1418 if (!argv || !argv[0])
1419 return (pi->cmdtext = xzalloc(1));
1420
1421 len = 0;
1422 do len += strlen(*argv) + 1; while (*++argv);
1423 pi->cmdtext = p = xmalloc(len);
1424 argv = pi->progs[0].argv;
1425 do {
1426 len = strlen(*argv);
1427 memcpy(p, *argv, len);
1428 p += len;
1429 *p++ = ' ';
1430 } while (*++argv);
1431 p[-1] = '\0';
1432 return pi->cmdtext;
1433}
1434
Eric Andersenbafd94f2001-05-02 16:11:59 +00001435static void insert_bg_job(struct pipe *pi)
1436{
1437 struct pipe *thejob;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001438 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001439
1440 /* Linear search for the ID of the job to use */
1441 pi->jobid = 1;
Eric Andersenc798b072001-06-22 06:23:03 +00001442 for (thejob = job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001443 if (thejob->jobid >= pi->jobid)
1444 pi->jobid = thejob->jobid + 1;
1445
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001446 /* Add thejob to the list of running jobs */
Eric Andersenc798b072001-06-22 06:23:03 +00001447 if (!job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001448 thejob = job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001449 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001450 for (thejob = job_list; thejob->next; thejob = thejob->next)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001451 continue;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001452 thejob->next = xmalloc(sizeof(*thejob));
1453 thejob = thejob->next;
1454 }
1455
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001456 /* Physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00001457 memcpy(thejob, pi, sizeof(struct pipe));
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001458 thejob->progs = xzalloc(sizeof(pi->progs[0]) * pi->num_progs);
1459 /* We cannot copy entire pi->progs[] vector! Double free()s will happen */
1460 for (i = 0; i < pi->num_progs; i++) {
1461// TODO: do we really need to have so many fields which are just dead weight
1462// at execution stage?
1463 thejob->progs[i].pid = pi->progs[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001464 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001465 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001466 thejob->next = NULL;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001467 thejob->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001468
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001469 /* We don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00001470 to the list of backgrounded thejobs and leave it alone */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001471 printf("[%d] %d %s\n", thejob->jobid, thejob->progs[0].pid, thejob->cmdtext);
Eric Andersen1a6d39b2001-05-08 05:11:54 +00001472 last_bg_pid = thejob->progs[0].pid;
Eric Andersenc798b072001-06-22 06:23:03 +00001473 last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001474}
1475
Eric Andersenbafd94f2001-05-02 16:11:59 +00001476static void remove_bg_job(struct pipe *pi)
1477{
1478 struct pipe *prev_pipe;
1479
Eric Andersenc798b072001-06-22 06:23:03 +00001480 if (pi == job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001481 job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001482 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001483 prev_pipe = job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001484 while (prev_pipe->next != pi)
1485 prev_pipe = prev_pipe->next;
1486 prev_pipe->next = pi->next;
1487 }
Eric Andersen028b65b2001-06-28 01:10:11 +00001488 if (job_list)
1489 last_jobid = job_list->jobid;
1490 else
1491 last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001492}
Eric Andersen028b65b2001-06-28 01:10:11 +00001493
Denis Vlasenko1359da62007-04-21 23:27:30 +00001494/* remove a backgrounded job */
1495static void delete_finished_bg_job(struct pipe *pi)
1496{
1497 remove_bg_job(pi);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001498 pi->stopped_progs = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00001499 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001500 free(pi);
1501}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001502#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001503
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001504/* Checks to see if any processes have exited -- if they
Eric Andersenbafd94f2001-05-02 16:11:59 +00001505 have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00001506static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001507{
Eric Andersenc798b072001-06-22 06:23:03 +00001508 int attributes;
1509 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001510#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00001511 int prognum = 0;
1512 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001513#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001514 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001515 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001516
Eric Andersenc798b072001-06-22 06:23:03 +00001517 attributes = WUNTRACED;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001518 if (fg_pipe == NULL) {
Eric Andersenc798b072001-06-22 06:23:03 +00001519 attributes |= WNOHANG;
1520 }
1521
Denis Vlasenko1359da62007-04-21 23:27:30 +00001522/* Do we do this right?
1523 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001524 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00001525 * [3]+ Stopped sleep 20 | false
1526 * bash-3.00# echo $?
1527 * 1 <========== bg pipe is not fully done, but exitcode is already known!
1528 */
1529
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001530//FIXME: non-interactive bash does not continue even if all processes in fg pipe
1531//are stopped. Testcase: "cat | cat" in a script (not on command line)
1532// + killall -STOP cat
1533
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001534 wait_more:
Eric Andersenc798b072001-06-22 06:23:03 +00001535 while ((childpid = waitpid(-1, &status, attributes)) > 0) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001536 const int dead = WIFEXITED(status) || WIFSIGNALED(status);
1537
1538#ifdef DEBUG_SHELL_JOBS
1539 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001540 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001541 childpid, WSTOPSIG(status), WEXITSTATUS(status));
1542 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001543 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001544 childpid, WTERMSIG(status), WEXITSTATUS(status));
1545 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001546 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001547 childpid, WEXITSTATUS(status));
1548#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001549 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00001550 if (fg_pipe) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001551 int i;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001552 for (i = 0; i < fg_pipe->num_progs; i++) {
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001553 debug_printf_jobs("check pid %d\n", fg_pipe->progs[i].pid);
Eric Andersenc798b072001-06-22 06:23:03 +00001554 if (fg_pipe->progs[i].pid == childpid) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001555 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001556 if (dead) {
1557 fg_pipe->progs[i].pid = 0;
1558 fg_pipe->running_progs--;
1559 if (i == fg_pipe->num_progs-1)
1560 /* last process gives overall exitstatus */
1561 rcode = WEXITSTATUS(status);
1562 } else {
1563 fg_pipe->progs[i].is_stopped = 1;
1564 fg_pipe->stopped_progs++;
1565 }
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001566 debug_printf_jobs("fg_pipe: running_progs %d stopped_progs %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00001567 fg_pipe->running_progs, fg_pipe->stopped_progs);
1568 if (fg_pipe->running_progs - fg_pipe->stopped_progs <= 0) {
1569 /* All processes in fg pipe have exited/stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001570#if ENABLE_HUSH_JOB
Denis Vlasenko1359da62007-04-21 23:27:30 +00001571 if (fg_pipe->running_progs)
1572 insert_bg_job(fg_pipe);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001573#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001574 return rcode;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001575 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001576 /* There are still running processes in the fg pipe */
1577 goto wait_more;
Eric Andersenc798b072001-06-22 06:23:03 +00001578 }
1579 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001580 /* fall through to searching process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00001581 }
1582
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001583#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001584 /* We asked to wait for bg or orphaned children */
1585 /* No need to remember exitcode in this case */
Eric Andersenc798b072001-06-22 06:23:03 +00001586 for (pi = job_list; pi; pi = pi->next) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00001587 prognum = 0;
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001588 while (prognum < pi->num_progs) {
1589 if (pi->progs[prognum].pid == childpid)
1590 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00001591 prognum++;
1592 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001593 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001594#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001595
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001596 /* Happens when shell is used as init process (init=/bin/sh) */
1597 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001598 goto wait_more;
Eric Andersenaeb44c42001-05-22 20:29:00 +00001599
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001600#if ENABLE_HUSH_JOB
Denis Vlasenko5f786c22007-04-20 08:35:45 +00001601 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00001602 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00001603 /* child exited */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001604 pi->progs[prognum].pid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001605 pi->running_progs--;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001606 if (!pi->running_progs) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001607 printf(JOB_STATUS_FORMAT, pi->jobid,
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001608 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00001609 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001610 }
1611 } else {
1612 /* child stopped */
1613 pi->stopped_progs++;
1614 pi->progs[prognum].is_stopped = 1;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001615 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001616#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001617 }
1618
Denis Vlasenko1359da62007-04-21 23:27:30 +00001619 /* wait found no children or failed */
1620
1621 if (childpid && errno != ECHILD)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001622 bb_perror_msg("waitpid");
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001623 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00001624}
1625
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001626#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00001627static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
1628{
1629 pid_t p;
1630 int rcode = checkjobs(fg_pipe);
1631 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00001632 p = getpgid(0); /* pgid of our process */
1633 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00001634 if (tcsetpgrp(interactive_fd, p) && errno != ENOTTY)
1635 bb_perror_msg("tcsetpgrp-4a");
1636 return rcode;
1637}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001638#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00001639
Eric Andersen25f27032001-04-26 23:22:31 +00001640/* run_pipe_real() starts all the jobs, but doesn't wait for anything
Eric Andersenc798b072001-06-22 06:23:03 +00001641 * to finish. See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00001642 *
1643 * return code is normally -1, when the caller has to wait for children
1644 * to finish to determine the exit status of the pipe. If the pipe
1645 * is a simple builtin command, however, the action is done by the
1646 * time run_pipe_real returns, and the exit code is provided as the
1647 * return value.
1648 *
1649 * The input of the pipe is always stdin, the output is always
1650 * stdout. The outpipe[] mechanism in BusyBox-0.48 lash is bogus,
1651 * because it tries to avoid running the command substitution in
1652 * subshell, when that is in fact necessary. The subshell process
1653 * now has its stdout directed to the input of the appropriate pipe,
1654 * so this routine is noticeably simpler.
Denis Vlasenko170435c2007-05-23 13:01:10 +00001655 *
1656 * Returns -1 only if started some children. IOW: we have to
1657 * mask out retvals of builtins etc with 0xff!
Eric Andersen25f27032001-04-26 23:22:31 +00001658 */
1659static int run_pipe_real(struct pipe *pi)
1660{
1661 int i;
1662 int nextin, nextout;
1663 int pipefds[2]; /* pipefds[0] is for reading */
Rob Landley53702e52006-07-19 21:43:53 +00001664 struct child_prog *child;
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00001665 const struct built_in_command *x;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001666 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001667 /* it is not always needed, but we aim to smaller code */
1668 int squirrel[] = { -1, -1, -1 };
1669 int rcode;
Denis Vlasenko52881e92007-04-21 13:42:52 +00001670 const int single_fg = (pi->num_progs == 1 && pi->followup != PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00001671
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001672 debug_printf_exec("run_pipe_real start: single_fg=%d\n", single_fg);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00001673
Eric Andersen25f27032001-04-26 23:22:31 +00001674 nextin = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001675#if ENABLE_HUSH_JOB
Eric Andersenada18ff2001-05-21 16:18:22 +00001676 pi->pgrp = -1;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001677#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001678 pi->running_progs = 1;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001679 pi->stopped_progs = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00001680
1681 /* Check if this is a simple builtin (not part of a pipe).
1682 * Builtins within pipes have to fork anyway, and are handled in
1683 * pseudo_exec. "echo foo | read bar" doesn't work on bash, either.
1684 */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001685 child = &(pi->progs[0]);
Denis Vlasenko52881e92007-04-21 13:42:52 +00001686 if (single_fg && child->group && child->subshell == 0) {
Eric Andersen04407e52001-06-07 16:42:05 +00001687 debug_printf("non-subshell grouping\n");
1688 setup_redirects(child, squirrel);
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001689 debug_printf_exec(": run_list_real\n");
Eric Andersen04407e52001-06-07 16:42:05 +00001690 rcode = run_list_real(child->group);
1691 restore_redirects(squirrel);
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001692 debug_printf_exec("run_pipe_real return %d\n", rcode);
Denis Vlasenko170435c2007-05-23 13:01:10 +00001693 return rcode; // do we need to add '... & 0xff' ?
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001694 }
1695
Denis Vlasenko1359da62007-04-21 23:27:30 +00001696 if (single_fg && child->argv != NULL) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001697 char **argv_expanded;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001698 char **argv = child->argv;
1699
1700 for (i = 0; is_assignment(argv[i]); i++)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001701 continue;
Denis Vlasenko1359da62007-04-21 23:27:30 +00001702 if (i != 0 && argv[i] == NULL) {
Eric Andersen78a7c992001-05-15 16:30:25 +00001703 /* assignments, but no command: set the local environment */
Denis Vlasenko1359da62007-04-21 23:27:30 +00001704 for (i = 0; argv[i] != NULL; i++) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00001705 debug_printf("local environment set: %s\n", argv[i]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00001706 p = expand_string_to_string(argv[i]);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00001707 set_local_var(p, 0);
Eric Andersen78a7c992001-05-15 16:30:25 +00001708 }
1709 return EXIT_SUCCESS; /* don't worry about errors in set_local_var() yet */
1710 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001711 for (i = 0; is_assignment(argv[i]); i++) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00001712 p = expand_string_to_string(argv[i]);
1713 //sp: child->sp--;
1714 putenv(p);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001715 }
Eric Andersen25f27032001-04-26 23:22:31 +00001716 for (x = bltins; x->cmd; x++) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001717 if (strcmp(argv[i], x->cmd) == 0) {
1718 if (x->function == builtin_exec && argv[i+1] == NULL) {
Eric Andersen83a2ae22001-05-07 17:59:25 +00001719 debug_printf("magic exec\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001720 setup_redirects(child, NULL);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001721 return EXIT_SUCCESS;
1722 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00001723 debug_printf("builtin inline %s\n", argv[0]);
Eric Andersen25f27032001-04-26 23:22:31 +00001724 /* XXX setup_redirects acts on file descriptors, not FILEs.
1725 * This is perfect for work that comes after exec().
1726 * Is it really safe for inline use? Experimentally,
1727 * things seem to work with glibc. */
1728 setup_redirects(child, squirrel);
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001729 debug_printf_exec(": builtin '%s' '%s'...\n", x->cmd, argv[i+1]);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001730 //sp: if (child->sp) /* btw we can do it unconditionally... */
Denis Vlasenko170435c2007-05-23 13:01:10 +00001731 argv_expanded = expand_strvec_to_strvec(argv + i);
1732 rcode = x->function(argv_expanded) & 0xff;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001733 free(argv_expanded);
Eric Andersen25f27032001-04-26 23:22:31 +00001734 restore_redirects(squirrel);
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001735 debug_printf_exec("run_pipe_real return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001736 return rcode;
1737 }
1738 }
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001739#if ENABLE_FEATURE_SH_STANDALONE
1740 {
Denis Vlasenko1359da62007-04-21 23:27:30 +00001741 const struct bb_applet *a = find_applet_by_name(argv[i]);
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001742 if (a && a->nofork) {
1743 setup_redirects(child, squirrel);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001744 save_nofork_data(&nofork_save);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00001745 argv_expanded = argv + i;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001746 //sp: if (child->sp)
Denis Vlasenko170435c2007-05-23 13:01:10 +00001747 argv_expanded = expand_strvec_to_strvec(argv + i);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00001748 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n", argv_expanded[0], argv_expanded[1]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00001749 rcode = run_nofork_applet_prime(&nofork_save, a, argv_expanded) & 0xff;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001750 free(argv_expanded);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001751 restore_redirects(squirrel);
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001752 debug_printf_exec("run_pipe_real return %d\n", rcode);
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001753 return rcode;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00001754 }
1755 }
1756#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001757 }
1758
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001759 /* Going to fork a child per each pipe member */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001760 pi->running_progs = 0;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001761
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001762 /* Disable job control signals for shell (parent) and
1763 * for initial child code after fork */
1764 set_jobctrl_sighandler(SIG_IGN);
1765
Eric Andersen25f27032001-04-26 23:22:31 +00001766 for (i = 0; i < pi->num_progs; i++) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001767 child = &(pi->progs[i]);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001768 if (child->argv)
1769 debug_printf_exec(": pipe member '%s' '%s'...\n", child->argv[0], child->argv[1]);
1770 else
1771 debug_printf_exec(": pipe member with no argv\n");
Eric Andersen25f27032001-04-26 23:22:31 +00001772
1773 /* pipes are inserted between pairs of commands */
1774 if ((i + 1) < pi->num_progs) {
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00001775 pipe(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00001776 nextout = pipefds[1];
1777 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001778 nextout = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00001779 pipefds[0] = -1;
1780 }
1781
1782 /* XXX test for failed fork()? */
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001783#if BB_MMU
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001784 child->pid = fork();
Eric Andersen72f9a422001-10-28 05:12:20 +00001785#else
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001786 child->pid = vfork();
Eric Andersen72f9a422001-10-28 05:12:20 +00001787#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001788 if (!child->pid) { /* child */
1789 /* Every child adds itself to new process group
1790 * with pgid == pid of first child in pipe */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001791#if ENABLE_HUSH_JOB
Denis Vlasenko170435c2007-05-23 13:01:10 +00001792 if (run_list_level == 1 && interactive_fd) {
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00001793 /* Don't do pgrp restore anymore on fatal signals */
1794 set_fatal_sighandler(SIG_DFL);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001795 if (pi->pgrp < 0) /* true for 1st process only */
1796 pi->pgrp = getpid();
1797 if (setpgid(0, pi->pgrp) == 0 && pi->followup != PIPE_BG) {
1798 /* We do it in *every* child, not just first,
1799 * to avoid races */
1800 tcsetpgrp(interactive_fd, pi->pgrp);
1801 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001802 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001803#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001804 /* in non-interactive case fatal sigs are already SIG_DFL */
Denis Vlasenko8412d792007-10-01 09:59:47 +00001805 xmove_fd(nextin, 0);
1806 xmove_fd(nextout, 1);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00001807 if (pipefds[0] != -1) {
Eric Andersen25f27032001-04-26 23:22:31 +00001808 close(pipefds[0]); /* opposite end of our output pipe */
1809 }
Eric Andersen25f27032001-04-26 23:22:31 +00001810 /* Like bash, explicit redirects override pipes,
1811 * and the pipe fd is available for dup'ing. */
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00001812 setup_redirects(child, NULL);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001813
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001814 /* Restore default handlers just prior to exec */
1815 set_jobctrl_sighandler(SIG_DFL);
1816 set_misc_sighandler(SIG_DFL);
1817 signal(SIGCHLD, SIG_DFL);
Eric Andersen25f27032001-04-26 23:22:31 +00001818 pseudo_exec(child);
1819 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001820
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001821 pi->running_progs++;
1822
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001823#if ENABLE_HUSH_JOB
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00001824 /* Second and next children need to know pid of first one */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001825 if (pi->pgrp < 0)
Eric Andersen0fcd4472001-05-02 20:12:03 +00001826 pi->pgrp = child->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001827#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001828 if (nextin != 0)
1829 close(nextin);
1830 if (nextout != 1)
1831 close(nextout);
1832
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001833 /* If there isn't another process, nextin is garbage
Eric Andersen25f27032001-04-26 23:22:31 +00001834 but it doesn't matter */
1835 nextin = pipefds[0];
1836 }
Denis Vlasenkod01ff132007-05-02 21:40:23 +00001837 debug_printf_exec("run_pipe_real return -1\n");
Eric Andersen25f27032001-04-26 23:22:31 +00001838 return -1;
1839}
1840
Denis Vlasenko4b924f32007-05-30 00:29:55 +00001841#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001842static void debug_print_tree(struct pipe *pi, int lvl)
1843{
1844 static const char *PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001845 [PIPE_SEQ] = "SEQ",
1846 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001847 [PIPE_OR ] = "OR" ,
1848 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001849 };
1850 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001851 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00001852#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001853 [RES_IF ] = "IF" ,
1854 [RES_THEN ] = "THEN" ,
1855 [RES_ELIF ] = "ELIF" ,
1856 [RES_ELSE ] = "ELSE" ,
1857 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00001858#endif
1859#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001860 [RES_FOR ] = "FOR" ,
1861 [RES_WHILE] = "WHILE",
1862 [RES_UNTIL] = "UNTIL",
1863 [RES_DO ] = "DO" ,
1864 [RES_DONE ] = "DONE" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001865 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00001866#endif
1867 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001868 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001869 };
1870
1871 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00001872
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001873 pin = 0;
1874 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00001875 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
1876 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001877 prn = 0;
1878 while (prn < pi->num_progs) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00001879 struct child_prog *child = &pi->progs[prn];
1880 char **argv = child->argv;
1881
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001882 fprintf(stderr, "%*s prog %d", lvl*2, "", prn);
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00001883 if (child->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001884 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00001885 (child->subshell ? "()" : "{}"),
1886 argv);
1887 debug_print_tree(child->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001888 prn++;
1889 continue;
1890 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001891 if (argv) while (*argv) {
1892 fprintf(stderr, " '%s'", *argv);
1893 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00001894 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00001895 fprintf(stderr, "\n");
1896 prn++;
1897 }
1898 pi = pi->next;
1899 pin++;
1900 }
1901}
1902#endif
1903
Denis Vlasenkoc666f712007-05-16 22:18:54 +00001904/* NB: called by pseudo_exec, and therefore must not modify any
1905 * global data until exec/_exit (we can be a child after vfork!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001906static int run_list_real(struct pipe *pi)
1907{
Denis Vlasenko06810332007-05-21 23:30:54 +00001908 struct pipe *rpipe;
1909#if ENABLE_HUSH_LOOPS
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00001910 char *for_varname = NULL;
1911 char **for_lcur = NULL;
1912 char **for_list = NULL;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001913 int flag_rep = 0;
Denis Vlasenko06810332007-05-21 23:30:54 +00001914#endif
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001915 int save_num_progs;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001916 int flag_skip = 1;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00001917 int rcode = 0; /* probably for gcc only */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001918 int flag_restore = 0;
Denis Vlasenko06810332007-05-21 23:30:54 +00001919#if ENABLE_HUSH_IF
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001920 int if_code = 0, next_if_code = 0; /* need double-buffer to handle elif */
Denis Vlasenko06810332007-05-21 23:30:54 +00001921#else
1922 enum { if_code = 0, next_if_code = 0 };
1923#endif
Denis Vlasenko219e88d2007-05-21 10:18:23 +00001924 reserved_style rword;
1925 reserved_style skip_more_for_this_rword = RES_XXXX;
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00001926
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001927 debug_printf_exec("run_list_real start lvl %d\n", run_list_level + 1);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00001928
Denis Vlasenko06810332007-05-21 23:30:54 +00001929#if ENABLE_HUSH_LOOPS
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001930 /* check syntax for "for" */
1931 for (rpipe = pi; rpipe; rpipe = rpipe->next) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00001932 if ((rpipe->res_word == RES_IN || rpipe->res_word == RES_FOR)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001933 && (rpipe->next == NULL)
1934 ) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001935 syntax("malformed for"); /* no IN or no commands after IN */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001936 debug_printf_exec("run_list_real lvl %d return 1\n", run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001937 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001938 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00001939 if ((rpipe->res_word == RES_IN && rpipe->next->res_word == RES_IN && rpipe->next->progs[0].argv != NULL)
1940 || (rpipe->res_word == RES_FOR && rpipe->next->res_word != RES_IN)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001941 ) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001942 /* TODO: what is tested in the first condition? */
Denis Vlasenko90e485c2007-05-23 15:22:50 +00001943 syntax("malformed for"); /* 2nd condition: not followed by IN */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001944 debug_printf_exec("run_list_real lvl %d return 1\n", run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001945 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001946 }
1947 }
Denis Vlasenko06810332007-05-21 23:30:54 +00001948#else
1949 rpipe = NULL;
1950#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001951
1952#if ENABLE_HUSH_JOB
1953 /* Example of nested list: "while true; do { sleep 1 | exit 2; } done".
1954 * We are saving state before entering outermost list ("while...done")
1955 * so that ctrl-Z will correctly background _entire_ outermost list,
1956 * not just a part of it (like "sleep 1 | exit 2") */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001957 if (++run_list_level == 1 && interactive_fd) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001958 if (sigsetjmp(toplevel_jb, 1)) {
1959 /* ctrl-Z forked and we are parent; or ctrl-C.
1960 * Sighandler has longjmped us here */
1961 signal(SIGINT, SIG_IGN);
1962 signal(SIGTSTP, SIG_IGN);
1963 /* Restore level (we can be coming from deep inside
1964 * nested levels) */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00001965 run_list_level = 1;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001966#if ENABLE_FEATURE_SH_STANDALONE
1967 if (nofork_save.saved) { /* if save area is valid */
1968 debug_printf_jobs("exiting nofork early\n");
1969 restore_nofork_data(&nofork_save);
1970 }
1971#endif
1972 if (ctrl_z_flag) {
1973 /* ctrl-Z has forked and stored pid of the child in pi->pid.
1974 * Remember this child as background job */
1975 insert_bg_job(pi);
1976 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00001977 /* ctrl-C. We just stop doing whatever we were doing */
Denis Vlasenko4daad902007-09-27 10:20:47 +00001978 bb_putchar('\n');
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00001979 }
1980 rcode = 0;
1981 goto ret;
1982 }
1983 /* ctrl-Z handler will store pid etc in pi */
1984 toplevel_list = pi;
1985 ctrl_z_flag = 0;
1986#if ENABLE_FEATURE_SH_STANDALONE
1987 nofork_save.saved = 0; /* in case we will run a nofork later */
1988#endif
1989 signal_SA_RESTART(SIGTSTP, handler_ctrl_z);
1990 signal(SIGINT, handler_ctrl_c);
1991 }
1992#endif
1993
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00001994 for (; pi; pi = flag_restore ? rpipe : pi->next) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00001995 rword = pi->res_word;
Denis Vlasenko06810332007-05-21 23:30:54 +00001996#if ENABLE_HUSH_LOOPS
Denis Vlasenko219e88d2007-05-21 10:18:23 +00001997 if (rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00001998 flag_restore = 0;
1999 if (!rpipe) {
2000 flag_rep = 0;
2001 rpipe = pi;
2002 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002003 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002004#endif
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002005 debug_printf_exec(": rword=%d if_code=%d next_if_code=%d skip_more=%d\n",
2006 rword, if_code, next_if_code, skip_more_for_this_rword);
2007 if (rword == skip_more_for_this_rword && flag_skip) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002008 if (pi->followup == PIPE_SEQ)
2009 flag_skip = 0;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002010 continue;
2011 }
2012 flag_skip = 1;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002013 skip_more_for_this_rword = RES_XXXX;
Denis Vlasenko06810332007-05-21 23:30:54 +00002014#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002015 if (rword == RES_THEN || rword == RES_ELSE)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002016 if_code = next_if_code;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002017 if (rword == RES_THEN && if_code)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002018 continue;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002019 if (rword == RES_ELSE && !if_code)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002020 continue;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002021 if (rword == RES_ELIF && !if_code)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002022 break;
Denis Vlasenko06810332007-05-21 23:30:54 +00002023#endif
2024#if ENABLE_HUSH_LOOPS
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002025 if (rword == RES_FOR && pi->num_progs) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002026 if (!for_lcur) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002027 /* if no variable values after "in" we skip "for" */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002028 if (!pi->next->progs->argv)
2029 continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002030 /* create list of variable values */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002031 for_list = expand_strvec_to_strvec(pi->next->progs->argv);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002032 for_lcur = for_list;
2033 for_varname = pi->progs->argv[0];
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002034 pi->progs->argv[0] = NULL;
2035 flag_rep = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002036 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002037 free(pi->progs->argv[0]);
2038 if (!*for_lcur) {
2039 free(for_list);
2040 for_lcur = NULL;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002041 flag_rep = 0;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002042 pi->progs->argv[0] = for_varname;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002043 pi->progs->glob_result.gl_pathv[0] = pi->progs->argv[0];
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002044 continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002045 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002046 /* insert next value from for_lcur */
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002047 /* vda: does it need escaping? */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002048 pi->progs->argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002049 pi->progs->glob_result.gl_pathv[0] = pi->progs->argv[0];
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002050 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002051 if (rword == RES_IN)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002052 continue;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002053 if (rword == RES_DO) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002054 if (!flag_rep)
2055 continue;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002056 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002057 if (rword == RES_DONE) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002058 if (flag_rep) {
2059 flag_restore = 1;
2060 } else {
2061 rpipe = NULL;
2062 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002063 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002064#endif
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002065 if (pi->num_progs == 0)
2066 continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002067 save_num_progs = pi->num_progs; /* save number of programs */
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002068 debug_printf_exec(": run_pipe_real with %d members\n", pi->num_progs);
Eric Andersen25f27032001-04-26 23:22:31 +00002069 rcode = run_pipe_real(pi);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002070 if (rcode != -1) {
Eric Andersen25f27032001-04-26 23:22:31 +00002071 /* We only ran a builtin: rcode was set by the return value
2072 * of run_pipe_real(), and we don't need to wait for anything. */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002073 } else if (pi->followup == PIPE_BG) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002074 /* What does bash do with attempts to background builtins? */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002075 /* Even bash 3.2 doesn't do that well with nested bg:
2076 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
Denis Vlasenko170435c2007-05-23 13:01:10 +00002077 * I'm NOT treating inner &'s as jobs */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002078#if ENABLE_HUSH_JOB
Denis Vlasenko4b924f32007-05-30 00:29:55 +00002079 if (run_list_level == 1)
Denis Vlasenko170435c2007-05-23 13:01:10 +00002080 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002081#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002082 rcode = EXIT_SUCCESS;
2083 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002084#if ENABLE_HUSH_JOB
Denis Vlasenko170435c2007-05-23 13:01:10 +00002085 /* Paranoia, just "interactive_fd" should be enough? */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00002086 if (run_list_level == 1 && interactive_fd) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00002087 /* waits for completion, then fg's main shell */
Denis Vlasenko52881e92007-04-21 13:42:52 +00002088 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002089 } else
2090#endif
2091 {
Denis Vlasenko170435c2007-05-23 13:01:10 +00002092 /* this one just waits for completion */
Eric Andersenc798b072001-06-22 06:23:03 +00002093 rcode = checkjobs(pi);
Eric Andersen25f27032001-04-26 23:22:31 +00002094 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002095 debug_printf_exec(": checkjobs returned %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00002096 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002097 debug_printf_exec(": setting last_return_code=%d\n", rcode);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002098 last_return_code = rcode;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002099 pi->num_progs = save_num_progs; /* restore number of programs */
Denis Vlasenko06810332007-05-21 23:30:54 +00002100#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002101 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002102 next_if_code = rcode; /* can be overwritten a number of times */
Denis Vlasenko06810332007-05-21 23:30:54 +00002103#endif
2104#if ENABLE_HUSH_LOOPS
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002105 if (rword == RES_WHILE)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002106 flag_rep = !last_return_code;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002107 if (rword == RES_UNTIL)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002108 flag_rep = last_return_code;
Denis Vlasenko06810332007-05-21 23:30:54 +00002109#endif
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002110 if ((rcode == EXIT_SUCCESS && pi->followup == PIPE_OR)
2111 || (rcode != EXIT_SUCCESS && pi->followup == PIPE_AND)
2112 ) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002113 skip_more_for_this_rword = rword;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002114 }
Eric Andersen028b65b2001-06-28 01:10:11 +00002115 checkjobs(NULL);
Eric Andersen25f27032001-04-26 23:22:31 +00002116 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002117
2118#if ENABLE_HUSH_JOB
2119 if (ctrl_z_flag) {
2120 /* ctrl-Z forked somewhere in the past, we are the child,
2121 * and now we completed running the list. Exit. */
2122 exit(rcode);
2123 }
2124 ret:
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00002125 if (!--run_list_level && interactive_fd) {
2126 signal(SIGTSTP, SIG_IGN);
2127 signal(SIGINT, SIG_IGN);
2128 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002129#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00002130 debug_printf_exec("run_list_real lvl %d return %d\n", run_list_level + 1, rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00002131 return rcode;
2132}
2133
Eric Andersen25f27032001-04-26 23:22:31 +00002134/* return code is the exit status of the pipe */
Eric Andersenbf7df042001-05-23 22:18:35 +00002135static int free_pipe(struct pipe *pi, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00002136{
2137 char **p;
2138 struct child_prog *child;
2139 struct redir_struct *r, *rnext;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002140 int a, i, ret_code = 0;
Eric Andersen52a97ca2001-06-22 06:49:26 +00002141
2142 if (pi->stopped_progs > 0)
2143 return ret_code;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002144 debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid());
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002145 for (i = 0; i < pi->num_progs; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002146 child = &pi->progs[i];
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002147 debug_printf_clean("%s command %d:\n", indenter(indent), i);
Eric Andersen25f27032001-04-26 23:22:31 +00002148 if (child->argv) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002149 for (a = 0, p = child->argv; *p; a++, p++) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002150 debug_printf_clean("%s argv[%d] = %s\n", indenter(indent), a, *p);
Eric Andersen25f27032001-04-26 23:22:31 +00002151 }
2152 globfree(&child->glob_result);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002153 child->argv = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002154 } else if (child->group) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002155 debug_printf_clean("%s begin group (subshell:%d)\n", indenter(indent), child->subshell);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002156 ret_code = free_pipe_list(child->group, indent+3);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002157 debug_printf_clean("%s end group\n", indenter(indent));
Eric Andersen25f27032001-04-26 23:22:31 +00002158 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002159 debug_printf_clean("%s (nil)\n", indenter(indent));
Eric Andersen25f27032001-04-26 23:22:31 +00002160 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002161 for (r = child->redirects; r; r = rnext) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002162 debug_printf_clean("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->type].descrip);
Eric Andersen25f27032001-04-26 23:22:31 +00002163 if (r->dup == -1) {
Eric Andersen817e73c2001-06-06 17:56:09 +00002164 /* guard against the case >$FOO, where foo is unset or blank */
2165 if (r->word.gl_pathv) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002166 debug_printf_clean(" %s\n", *r->word.gl_pathv);
Eric Andersen817e73c2001-06-06 17:56:09 +00002167 globfree(&r->word);
2168 }
Eric Andersen25f27032001-04-26 23:22:31 +00002169 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002170 debug_printf_clean("&%d\n", r->dup);
Eric Andersen25f27032001-04-26 23:22:31 +00002171 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002172 rnext = r->next;
Eric Andersen25f27032001-04-26 23:22:31 +00002173 free(r);
2174 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002175 child->redirects = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002176 }
2177 free(pi->progs); /* children are an array, they get freed all at once */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002178 pi->progs = NULL;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002179#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002180 free(pi->cmdtext);
2181 pi->cmdtext = NULL;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002182#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002183 return ret_code;
2184}
2185
Eric Andersenbf7df042001-05-23 22:18:35 +00002186static int free_pipe_list(struct pipe *head, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00002187{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002188 int rcode = 0; /* if list has no members */
Eric Andersen25f27032001-04-26 23:22:31 +00002189 struct pipe *pi, *next;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002190
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002191 for (pi = head; pi; pi = next) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002192 debug_printf_clean("%s pipe reserved mode %d\n", indenter(indent), pi->res_word);
Eric Andersenbf7df042001-05-23 22:18:35 +00002193 rcode = free_pipe(pi, indent);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002194 debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002195 next = pi->next;
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002196 /*pi->next = NULL;*/
Eric Andersen25f27032001-04-26 23:22:31 +00002197 free(pi);
2198 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002199 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00002200}
2201
2202/* Select which version we will use */
2203static int run_list(struct pipe *pi)
2204{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002205 int rcode = 0;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002206 debug_printf_exec("run_list entered\n");
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002207 if (fake_mode == 0) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002208 debug_printf_exec(": run_list_real with %d members\n", pi->num_progs);
Eric Andersen25f27032001-04-26 23:22:31 +00002209 rcode = run_list_real(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002210 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002211 /* free_pipe_list has the side effect of clearing memory.
Eric Andersen25f27032001-04-26 23:22:31 +00002212 * In the long run that function can be merged with run_list_real,
2213 * but doing that now would hobble the debugging effort. */
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002214 free_pipe_list(pi, 0);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002215 debug_printf_exec("run_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00002216 return rcode;
2217}
2218
2219/* The API for glob is arguably broken. This routine pushes a non-matching
2220 * string into the output structure, removing non-backslashed backslashes.
2221 * If someone can prove me wrong, by performing this function within the
2222 * original glob(3) api, feel free to rewrite this routine into oblivion.
2223 * Return code (0 vs. GLOB_NOSPACE) matches glob(3).
2224 * XXX broken if the last character is '\\', check that before calling.
2225 */
2226static int globhack(const char *src, int flags, glob_t *pglob)
2227{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002228 int cnt = 0, pathc;
Eric Andersen25f27032001-04-26 23:22:31 +00002229 const char *s;
2230 char *dest;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002231 for (cnt = 1, s = src; s && *s; s++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002232 if (*s == '\\') s++;
2233 cnt++;
2234 }
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002235 dest = xmalloc(cnt);
Eric Andersen25f27032001-04-26 23:22:31 +00002236 if (!(flags & GLOB_APPEND)) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002237 pglob->gl_pathv = NULL;
2238 pglob->gl_pathc = 0;
2239 pglob->gl_offs = 0;
2240 pglob->gl_offs = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00002241 }
2242 pathc = ++pglob->gl_pathc;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002243 pglob->gl_pathv = xrealloc(pglob->gl_pathv, (pathc+1) * sizeof(*pglob->gl_pathv));
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002244 pglob->gl_pathv[pathc-1] = dest;
2245 pglob->gl_pathv[pathc] = NULL;
2246 for (s = src; s && *s; s++, dest++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002247 if (*s == '\\') s++;
2248 *dest = *s;
2249 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002250 *dest = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00002251 return 0;
2252}
2253
2254/* XXX broken if the last character is '\\', check that before calling */
2255static int glob_needed(const char *s)
2256{
2257 for (; *s; s++) {
2258 if (*s == '\\') s++;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002259 if (strchr("*[?", *s)) return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002260 }
2261 return 0;
2262}
2263
Eric Andersen25f27032001-04-26 23:22:31 +00002264static int xglob(o_string *dest, int flags, glob_t *pglob)
2265{
2266 int gr;
2267
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002268 /* short-circuit for null word */
Eric Andersen25f27032001-04-26 23:22:31 +00002269 /* we can code this better when the debug_printf's are gone */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002270 if (dest->length == 0) {
2271 if (dest->nonnull) {
2272 /* bash man page calls this an "explicit" null */
2273 gr = globhack(dest->data, flags, pglob);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002274 debug_printf("globhack returned %d\n", gr);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002275 } else {
Eric Andersen25f27032001-04-26 23:22:31 +00002276 return 0;
2277 }
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002278 } else if (glob_needed(dest->data)) {
Eric Andersen25f27032001-04-26 23:22:31 +00002279 gr = glob(dest->data, flags, NULL, pglob);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002280 debug_printf("glob returned %d\n", gr);
Eric Andersen25f27032001-04-26 23:22:31 +00002281 if (gr == GLOB_NOMATCH) {
2282 /* quote removal, or more accurately, backslash removal */
2283 gr = globhack(dest->data, flags, pglob);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002284 debug_printf("globhack returned %d\n", gr);
Eric Andersen25f27032001-04-26 23:22:31 +00002285 }
2286 } else {
2287 gr = globhack(dest->data, flags, pglob);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002288 debug_printf("globhack returned %d\n", gr);
Eric Andersen25f27032001-04-26 23:22:31 +00002289 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002290 if (gr == GLOB_NOSPACE)
Manuel Novoa III cad53642003-03-19 09:13:01 +00002291 bb_error_msg_and_die("out of memory during glob");
Eric Andersen25f27032001-04-26 23:22:31 +00002292 if (gr != 0) { /* GLOB_ABORTED ? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002293 bb_error_msg("glob(3) error %d", gr);
Eric Andersen25f27032001-04-26 23:22:31 +00002294 }
2295 /* globprint(glob_target); */
2296 return gr;
2297}
2298
Denis Vlasenko170435c2007-05-23 13:01:10 +00002299/* expand_strvec_to_strvec() takes a list of strings, expands
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002300 * all variable references within and returns a pointer to
2301 * a list of expanded strings, possibly with larger number
2302 * of strings. (Think VAR="a b"; echo $VAR).
2303 * This new list is allocated as a single malloc block.
2304 * NULL-terminated list of char* pointers is at the beginning of it,
2305 * followed by strings themself.
2306 * Caller can deallocate entire list by single free(list). */
2307
2308/* Helpers first:
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00002309 * count_XXX estimates size of the block we need. It's okay
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002310 * to over-estimate sizes a bit, if it makes code simpler */
2311static int count_ifs(const char *str)
2312{
2313 int cnt = 0;
2314 debug_printf_expand("count_ifs('%s') ifs='%s'", str, ifs);
2315 while (1) {
2316 str += strcspn(str, ifs);
2317 if (!*str) break;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002318 str++; /* str += strspn(str, ifs); */
2319 cnt++; /* cnt += strspn(str, ifs); - but this code is larger */
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002320 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002321 debug_printf_expand(" return %d\n", cnt);
2322 return cnt;
2323}
2324
2325static void count_var_expansion_space(int *countp, int *lenp, char *arg)
2326{
2327 char first_ch;
2328 int i;
2329 int len = *lenp;
2330 int count = *countp;
2331 const char *val;
2332 char *p;
2333
2334 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL))) {
2335 len += p - arg;
2336 arg = ++p;
2337 p = strchr(p, SPECIAL_VAR_SYMBOL);
2338 first_ch = arg[0];
2339
2340 switch (first_ch & 0x7f) {
2341 /* high bit in 1st_ch indicates that var is double-quoted */
2342 case '$': /* pid */
2343 case '!': /* bg pid */
2344 case '?': /* exitcode */
2345 case '#': /* argc */
2346 len += sizeof(int)*3 + 1; /* enough for int */
2347 break;
2348 case '*':
2349 case '@':
2350 for (i = 1; i < global_argc; i++) {
2351 len += strlen(global_argv[i]) + 1;
2352 count++;
2353 if (!(first_ch & 0x80))
2354 count += count_ifs(global_argv[i]);
2355 }
2356 break;
2357 default:
2358 *p = '\0';
2359 arg[0] = first_ch & 0x7f;
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002360 if (isdigit(arg[0])) {
2361 i = xatoi_u(arg);
2362 val = NULL;
2363 if (i < global_argc)
2364 val = global_argv[i];
2365 } else
2366 val = lookup_param(arg);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002367 arg[0] = first_ch;
2368 *p = SPECIAL_VAR_SYMBOL;
2369
2370 if (val) {
2371 len += strlen(val) + 1;
2372 if (!(first_ch & 0x80))
2373 count += count_ifs(val);
2374 }
2375 }
2376 arg = ++p;
2377 }
2378
2379 len += strlen(arg) + 1;
2380 count++;
2381 *lenp = len;
2382 *countp = count;
2383}
2384
2385/* Store given string, finalizing the word and starting new one whenever
2386 * we encounter ifs char(s). This is used for expanding variable values.
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002387 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002388static int expand_on_ifs(char **list, int n, char **posp, const char *str)
2389{
2390 char *pos = *posp;
2391 while (1) {
2392 int word_len = strcspn(str, ifs);
2393 if (word_len) {
2394 memcpy(pos, str, word_len); /* store non-ifs chars */
2395 pos += word_len;
2396 str += word_len;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002397 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002398 if (!*str) /* EOL - do not finalize word */
2399 break;
2400 *pos++ = '\0';
2401 if (n) debug_printf_expand("expand_on_ifs finalized list[%d]=%p '%s' "
2402 "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2403 strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
2404 list[n++] = pos;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002405 str += strspn(str, ifs); /* skip ifs chars */
2406 }
2407 *posp = pos;
2408 return n;
2409}
2410
2411/* Expand all variable references in given string, adding words to list[]
2412 * at n, n+1,... positions. Return updated n (so that list[n] is next one
2413 * to be filled). This routine is extremely tricky: has to deal with
2414 * variables/parameters with whitespace, $* and $@, and constructs like
2415 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002416/* NB: another bug is that we cannot detect empty strings yet:
2417 * "" or $empty"" expands to zero words, has to expand to empty word */
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002418static int expand_vars_to_list(char **list, int n, char **posp, char *arg, char or_mask)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002419{
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002420 /* or_mask is either 0 (normal case) or 0x80
2421 * (expansion of right-hand side of assignment == 1-element expand) */
2422
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002423 char first_ch, ored_ch;
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002424 int i;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002425 const char *val;
2426 char *p;
2427 char *pos = *posp;
2428
2429 ored_ch = 0;
2430
2431 if (n) debug_printf_expand("expand_vars_to_list finalized list[%d]=%p '%s' "
2432 "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2433 strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
2434 list[n++] = pos;
2435
2436 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL))) {
2437 memcpy(pos, arg, p - arg);
2438 pos += (p - arg);
2439 arg = ++p;
2440 p = strchr(p, SPECIAL_VAR_SYMBOL);
2441
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002442 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002443 ored_ch |= first_ch;
2444 val = NULL;
2445 switch (first_ch & 0x7f) {
2446 /* Highest bit in first_ch indicates that var is double-quoted */
2447 case '$': /* pid */
2448 /* FIXME: (echo $$) should still print pid of main shell */
2449 val = utoa(getpid());
2450 break;
2451 case '!': /* bg pid */
2452 val = last_bg_pid ? utoa(last_bg_pid) : (char*)"";
2453 break;
2454 case '?': /* exitcode */
2455 val = utoa(last_return_code);
2456 break;
2457 case '#': /* argc */
2458 val = utoa(global_argc ? global_argc-1 : 0);
2459 break;
2460 case '*':
2461 case '@':
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002462 i = 1;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002463 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002464 while (i < global_argc) {
2465 n = expand_on_ifs(list, n, &pos, global_argv[i]);
2466 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, global_argc-1);
2467 if (global_argv[i++][0] && i < global_argc) {
2468 /* this argv[] is not empty and not last:
2469 * put terminating NUL, start new word */
2470 *pos++ = '\0';
2471 if (n) debug_printf_expand("expand_vars_to_list 2 finalized list[%d]=%p '%s' "
2472 "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2473 strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
2474 list[n++] = pos;
2475 }
2476 }
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002477 } else
2478 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
2479 * and in this case should theat it like '$*' */
2480 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002481 while (1) {
2482 strcpy(pos, global_argv[i]);
2483 pos += strlen(global_argv[i]);
2484 if (++i >= global_argc)
2485 break;
2486 *pos++ = '\0';
2487 if (n) debug_printf_expand("expand_vars_to_list 3 finalized list[%d]=%p '%s' "
2488 "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2489 strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
2490 list[n++] = pos;
2491 }
2492 } else { /* quoted $*: add as one word */
2493 while (1) {
2494 strcpy(pos, global_argv[i]);
2495 pos += strlen(global_argv[i]);
2496 if (++i >= global_argc)
2497 break;
2498 if (ifs[0])
2499 *pos++ = ifs[0];
2500 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002501 }
2502 break;
2503 default:
2504 *p = '\0';
2505 arg[0] = first_ch & 0x7f;
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002506 if (isdigit(arg[0])) {
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002507 i = xatoi_u(arg);
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002508 val = NULL;
2509 if (i < global_argc)
2510 val = global_argv[i];
2511 } else
2512 val = lookup_param(arg);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002513 arg[0] = first_ch;
2514 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002515 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002516 if (val) {
2517 n = expand_on_ifs(list, n, &pos, val);
2518 val = NULL;
2519 }
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00002520 } /* else: quoted $VAR, val will be appended at pos */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002521 }
2522 if (val) {
2523 strcpy(pos, val);
2524 pos += strlen(val);
2525 }
2526 arg = ++p;
2527 }
2528 debug_printf_expand("expand_vars_to_list adding tail '%s' at %p\n", arg, pos);
2529 strcpy(pos, arg);
2530 pos += strlen(arg) + 1;
2531 if (pos == list[n-1] + 1) { /* expansion is empty */
2532 if (!(ored_ch & 0x80)) { /* all vars were not quoted... */
2533 debug_printf_expand("expand_vars_to_list list[%d] empty, going back\n", n);
2534 pos--;
2535 n--;
2536 }
2537 }
2538
2539 *posp = pos;
2540 return n;
2541}
2542
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002543static char **expand_variables(char **argv, char or_mask)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002544{
2545 int n;
2546 int count = 1;
2547 int len = 0;
2548 char *pos, **v, **list;
2549
2550 v = argv;
2551 if (!*v) debug_printf_expand("count_var_expansion_space: "
2552 "argv[0]=NULL count=%d len=%d alloc_space=%d\n",
2553 count, len, sizeof(char*) * count + len);
2554 while (*v) {
2555 count_var_expansion_space(&count, &len, *v);
2556 debug_printf_expand("count_var_expansion_space: "
2557 "'%s' count=%d len=%d alloc_space=%d\n",
2558 *v, count, len, sizeof(char*) * count + len);
2559 v++;
2560 }
2561 len += sizeof(char*) * count; /* total to alloc */
2562 list = xmalloc(len);
2563 pos = (char*)(list + count);
2564 debug_printf_expand("list=%p, list[0] should be %p\n", list, pos);
2565 n = 0;
2566 v = argv;
2567 while (*v)
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002568 n = expand_vars_to_list(list, n, &pos, *v++, or_mask);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002569
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002570 if (n) debug_printf_expand("finalized list[%d]=%p '%s' "
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002571 "strlen=%d next=%p pos=%p\n", n-1, list[n-1], list[n-1],
2572 strlen(list[n-1]), list[n-1] + strlen(list[n-1]) + 1, pos);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002573 list[n] = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002574
2575#ifdef DEBUG_EXPAND
2576 {
2577 int m = 0;
2578 while (m <= n) {
2579 debug_printf_expand("list[%d]=%p '%s'\n", m, list[m], list[m]);
2580 m++;
2581 }
2582 debug_printf_expand("used_space=%d\n", pos - (char*)list);
2583 }
2584#endif
Denis Vlasenko170435c2007-05-23 13:01:10 +00002585 if (ENABLE_HUSH_DEBUG)
2586 if (pos - (char*)list > len)
2587 bb_error_msg_and_die("BUG in varexp");
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002588 return list;
2589}
2590
Denis Vlasenko170435c2007-05-23 13:01:10 +00002591static char **expand_strvec_to_strvec(char **argv)
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002592{
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002593 return expand_variables(argv, 0);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002594}
2595
Denis Vlasenko170435c2007-05-23 13:01:10 +00002596static char *expand_string_to_string(const char *str)
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002597{
2598 char *argv[2], **list;
2599
2600 argv[0] = (char*)str;
2601 argv[1] = NULL;
2602 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002603 if (ENABLE_HUSH_DEBUG)
2604 if (!list[0] || list[1])
2605 bb_error_msg_and_die("BUG in varexp2");
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002606 /* actually, just move string 2*sizeof(char*) bytes back */
2607 strcpy((char*)list, list[0]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00002608 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2609 return (char*)list;
2610}
2611
2612static char* expand_strvec_to_string(char **argv)
2613{
2614 char **list;
2615
2616 list = expand_variables(argv, 0x80);
2617 /* Convert all NULs to spaces */
2618 if (list[0]) {
2619 int n = 1;
2620 while (list[n]) {
2621 if (ENABLE_HUSH_DEBUG)
2622 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2623 bb_error_msg_and_die("BUG in varexp3");
2624 list[n][-1] = ' '; /* TODO: or to ifs[0]? */
2625 n++;
2626 }
2627 }
2628 strcpy((char*)list, list[0]);
2629 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
Denis Vlasenkob6a741f2007-05-17 14:38:17 +00002630 return (char*)list;
2631}
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002632
Eric Andersenf72f5622001-05-15 23:21:41 +00002633/* This is used to get/check local shell variables */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002634static struct variable *get_local_var(const char *name)
Eric Andersenf72f5622001-05-15 23:21:41 +00002635{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002636 struct variable *cur;
2637 int len;
Eric Andersenf72f5622001-05-15 23:21:41 +00002638
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002639 if (!name)
Eric Andersenf72f5622001-05-15 23:21:41 +00002640 return NULL;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002641 len = strlen(name);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002642 for (cur = top_var; cur; cur = cur->next) {
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002643 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002644 return cur;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00002645 }
Eric Andersenf72f5622001-05-15 23:21:41 +00002646 return NULL;
2647}
2648
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002649/* str holds "NAME=VAL" and is expected to be malloced.
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002650 * We take ownership of it. */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002651static int set_local_var(char *str, int flg_export)
Eric Andersen78a7c992001-05-15 16:30:25 +00002652{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002653 struct variable *cur;
2654 char *value;
2655 int name_len;
Eric Andersen20a69a72001-05-15 17:24:44 +00002656
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002657 value = strchr(str, '=');
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002658 if (!value) { /* not expected to ever happen? */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002659 free(str);
Eric Andersen99785762001-05-22 21:37:48 +00002660 return -1;
2661 }
Eric Andersen20a69a72001-05-15 17:24:44 +00002662
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002663 name_len = value - str + 1; /* including '=' */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002664 cur = top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
2665 while (1) {
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002666 if (strncmp(cur->varstr, str, name_len) != 0) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002667 if (!cur->next) {
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002668 /* Bail out. Note that now cur points
2669 * to last var in linked list */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002670 break;
Eric Andersen20a69a72001-05-15 17:24:44 +00002671 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002672 cur = cur->next;
2673 continue;
Eric Andersen20a69a72001-05-15 17:24:44 +00002674 }
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002675 /* We found an existing var with this name */
2676 *value = '\0';
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002677 if (cur->flg_read_only) {
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002678 bb_error_msg("%s: readonly variable", str);
2679 free(str);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002680 return -1;
2681 }
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002682 unsetenv(str); /* just in case */
2683 *value = '=';
2684 if (strcmp(cur->varstr, str) == 0) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002685 free_and_exp:
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002686 free(str);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002687 goto exp;
2688 }
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002689 if (cur->max_len >= strlen(str)) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002690 /* This one is from startup env, reuse space */
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002691 strcpy(cur->varstr, str);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002692 goto free_and_exp;
2693 }
2694 /* max_len == 0 signifies "malloced" var, which we can
2695 * (and has to) free */
2696 if (!cur->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002697 free(cur->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002698 cur->max_len = 0;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002699 goto set_str_and_exp;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002700 }
Eric Andersen20a69a72001-05-15 17:24:44 +00002701
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002702 /* Not found - create next variable struct */
2703 cur->next = xzalloc(sizeof(*cur));
2704 cur = cur->next;
2705
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002706 set_str_and_exp:
2707 cur->varstr = str;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002708 exp:
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002709 if (flg_export)
2710 cur->flg_export = 1;
2711 if (cur->flg_export)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002712 return putenv(cur->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002713 return 0;
Eric Andersen20a69a72001-05-15 17:24:44 +00002714}
2715
Eric Andersenf72f5622001-05-15 23:21:41 +00002716static void unset_local_var(const char *name)
Eric Andersen20a69a72001-05-15 17:24:44 +00002717{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002718 struct variable *cur;
2719 struct variable *prev = prev; /* for gcc */
2720 int name_len;
Eric Andersen20a69a72001-05-15 17:24:44 +00002721
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002722 if (!name)
2723 return;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002724 name_len = strlen(name);
2725 cur = top_var;
2726 while (cur) {
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002727 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002728 if (cur->flg_read_only) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002729 bb_error_msg("%s: readonly variable", name);
Eric Andersen94ac2442001-05-22 19:05:18 +00002730 return;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002731 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002732 /* prev is ok to use here because 1st variable, HUSH_VERSION,
2733 * is ro, and we cannot reach this code on the 1st pass */
2734 prev->next = cur->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002735 unsetenv(cur->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002736 if (!cur->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00002737 free(cur->varstr);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002738 free(cur);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002739 return;
Eric Andersenf72f5622001-05-15 23:21:41 +00002740 }
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002741 prev = cur;
2742 cur = cur->next;
Eric Andersen20a69a72001-05-15 17:24:44 +00002743 }
Eric Andersen78a7c992001-05-15 16:30:25 +00002744}
2745
2746static int is_assignment(const char *s)
2747{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002748 if (!s || !isalpha(*s))
2749 return 0;
2750 s++;
2751 while (isalnum(*s) || *s == '_')
2752 s++;
2753 return *s == '=';
Eric Andersen78a7c992001-05-15 16:30:25 +00002754}
2755
Eric Andersen25f27032001-04-26 23:22:31 +00002756/* the src parameter allows us to peek forward to a possible &n syntax
2757 * for file descriptor duplication, e.g., "2>&1".
2758 * Return code is 0 normally, 1 if a syntax error is detected in src.
2759 * Resource errors (in xmalloc) cause the process to exit */
2760static int setup_redirect(struct p_context *ctx, int fd, redir_type style,
2761 struct in_str *input)
2762{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002763 struct child_prog *child = ctx->child;
Eric Andersen25f27032001-04-26 23:22:31 +00002764 struct redir_struct *redir = child->redirects;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002765 struct redir_struct *last_redir = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002766
2767 /* Create a new redir_struct and drop it onto the end of the linked list */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002768 while (redir) {
2769 last_redir = redir;
2770 redir = redir->next;
Eric Andersen25f27032001-04-26 23:22:31 +00002771 }
2772 redir = xmalloc(sizeof(struct redir_struct));
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002773 redir->next = NULL;
2774 redir->word.gl_pathv = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002775 if (last_redir) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002776 last_redir->next = redir;
Eric Andersen25f27032001-04-26 23:22:31 +00002777 } else {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002778 child->redirects = redir;
Eric Andersen25f27032001-04-26 23:22:31 +00002779 }
2780
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002781 redir->type = style;
2782 redir->fd = (fd == -1) ? redir_table[style].default_fd : fd;
Eric Andersen25f27032001-04-26 23:22:31 +00002783
2784 debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
2785
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002786 /* Check for a '2>&1' type redirect */
Eric Andersen25f27032001-04-26 23:22:31 +00002787 redir->dup = redirect_dup_num(input);
2788 if (redir->dup == -2) return 1; /* syntax error */
2789 if (redir->dup != -1) {
2790 /* Erik had a check here that the file descriptor in question
Eric Andersen83a2ae22001-05-07 17:59:25 +00002791 * is legit; I postpone that to "run time"
2792 * A "-" representation of "close me" shows up as a -3 here */
Eric Andersen25f27032001-04-26 23:22:31 +00002793 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
2794 } else {
2795 /* We do _not_ try to open the file that src points to,
2796 * since we need to return and let src be expanded first.
2797 * Set ctx->pending_redirect, so we know what to do at the
Denis Vlasenko201c72a2007-05-25 10:00:36 +00002798 * end of the next parsed word. */
Eric Andersen25f27032001-04-26 23:22:31 +00002799 ctx->pending_redirect = redir;
2800 }
2801 return 0;
2802}
2803
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00002804static struct pipe *new_pipe(void)
2805{
Eric Andersen25f27032001-04-26 23:22:31 +00002806 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002807 pi = xzalloc(sizeof(struct pipe));
2808 /*pi->num_progs = 0;*/
2809 /*pi->progs = NULL;*/
2810 /*pi->next = NULL;*/
2811 /*pi->followup = 0; invalid */
2812 if (RES_NONE)
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002813 pi->res_word = RES_NONE;
Eric Andersen25f27032001-04-26 23:22:31 +00002814 return pi;
2815}
2816
2817static void initialize_context(struct p_context *ctx)
2818{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002819 ctx->child = NULL;
Denis Vlasenko1a735862007-05-23 00:32:25 +00002820 ctx->pipe = ctx->list_head = new_pipe();
2821 ctx->pending_redirect = NULL;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002822 ctx->res_w = RES_NONE;
Denis Vlasenko1a735862007-05-23 00:32:25 +00002823 //only ctx->parse_type is not touched... is this intentional?
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002824 ctx->old_flag = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00002825 ctx->stack = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002826 done_command(ctx); /* creates the memory for working child */
2827}
2828
2829/* normal return is 0
2830 * if a reserved word is found, and processed, return 1
2831 * should handle if, then, elif, else, fi, for, while, until, do, done.
2832 * case, function, and select are obnoxious, save those for later.
2833 */
Denis Vlasenko06810332007-05-21 23:30:54 +00002834#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +00002835static int reserved_word(o_string *dest, struct p_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00002836{
2837 struct reserved_combo {
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002838 char literal[7];
2839 unsigned char code;
2840 int flag;
Eric Andersen25f27032001-04-26 23:22:31 +00002841 };
2842 /* Mostly a list of accepted follow-up reserved words.
2843 * FLAG_END means we are done with the sequence, and are ready
2844 * to turn the compound list into a command.
2845 * FLAG_START means the word must start a new compound list.
2846 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002847 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00002848#if ENABLE_HUSH_IF
Eric Andersen25f27032001-04-26 23:22:31 +00002849 { "if", RES_IF, FLAG_THEN | FLAG_START },
2850 { "then", RES_THEN, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
2851 { "elif", RES_ELIF, FLAG_THEN },
2852 { "else", RES_ELSE, FLAG_FI },
2853 { "fi", RES_FI, FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00002854#endif
2855#if ENABLE_HUSH_LOOPS
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002856 { "for", RES_FOR, FLAG_IN | FLAG_START },
Eric Andersen25f27032001-04-26 23:22:31 +00002857 { "while", RES_WHILE, FLAG_DO | FLAG_START },
2858 { "until", RES_UNTIL, FLAG_DO | FLAG_START },
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002859 { "in", RES_IN, FLAG_DO },
Eric Andersen25f27032001-04-26 23:22:31 +00002860 { "do", RES_DO, FLAG_DONE },
2861 { "done", RES_DONE, FLAG_END }
Denis Vlasenko06810332007-05-21 23:30:54 +00002862#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002863 };
Denis Vlasenko80b8b392007-06-25 10:55:35 +00002864
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002865 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00002866
Denis Vlasenko80b8b392007-06-25 10:55:35 +00002867 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
Denis Vlasenko1a735862007-05-23 00:32:25 +00002868 if (strcmp(dest->data, r->literal) != 0)
2869 continue;
2870 debug_printf("found reserved word %s, code %d\n", r->literal, r->code);
2871 if (r->flag & FLAG_START) {
2872 struct p_context *new;
2873 debug_printf("push stack\n");
Denis Vlasenko06810332007-05-21 23:30:54 +00002874#if ENABLE_HUSH_LOOPS
Denis Vlasenko1a735862007-05-23 00:32:25 +00002875 if (ctx->res_w == RES_IN || ctx->res_w == RES_FOR) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00002876 syntax("malformed for"); /* example: 'for if' */
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002877 ctx->res_w = RES_SNTX;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002878 b_reset(dest);
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002879 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002880 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00002881#endif
2882 new = xmalloc(sizeof(*new));
2883 *new = *ctx; /* physical copy */
2884 initialize_context(ctx);
2885 ctx->stack = new;
2886 } else if (ctx->res_w == RES_NONE || !(ctx->old_flag & (1 << r->code))) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00002887 syntax(NULL);
Denis Vlasenko1a735862007-05-23 00:32:25 +00002888 ctx->res_w = RES_SNTX;
Denis Vlasenkoff131b92007-04-10 15:42:06 +00002889 b_reset(dest);
Eric Andersen25f27032001-04-26 23:22:31 +00002890 return 1;
2891 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00002892 ctx->res_w = r->code;
2893 ctx->old_flag = r->flag;
2894 if (ctx->old_flag & FLAG_END) {
2895 struct p_context *old;
2896 debug_printf("pop stack\n");
2897 done_pipe(ctx, PIPE_SEQ);
2898 old = ctx->stack;
2899 old->child->group = ctx->list_head;
2900 old->child->subshell = 0;
2901 *ctx = *old; /* physical copy */
2902 free(old);
2903 }
2904 b_reset(dest);
2905 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002906 }
2907 return 0;
2908}
Denis Vlasenko06810332007-05-21 23:30:54 +00002909#else
2910#define reserved_word(dest, ctx) ((int)0)
2911#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002912
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002913/* Normal return is 0.
Eric Andersen25f27032001-04-26 23:22:31 +00002914 * Syntax or xglob errors return 1. */
2915static int done_word(o_string *dest, struct p_context *ctx)
2916{
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002917 struct child_prog *child = ctx->child;
Eric Andersen25f27032001-04-26 23:22:31 +00002918 glob_t *glob_target;
2919 int gr, flags = 0;
2920
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002921 debug_printf_parse("done_word entered: '%s' %p\n", dest->data, child);
Eric Andersen25f27032001-04-26 23:22:31 +00002922 if (dest->length == 0 && !dest->nonnull) {
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002923 debug_printf_parse("done_word return 0: true null, ignored\n");
Eric Andersen25f27032001-04-26 23:22:31 +00002924 return 0;
2925 }
2926 if (ctx->pending_redirect) {
2927 glob_target = &ctx->pending_redirect->word;
2928 } else {
2929 if (child->group) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00002930 syntax(NULL);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002931 debug_printf_parse("done_word return 1: syntax error, groups and arglists don't mix\n");
2932 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002933 }
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002934 if (!child->argv && (ctx->parse_type & PARSEFLAG_SEMICOLON)) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002935 debug_printf_parse(": checking '%s' for reserved-ness\n", dest->data);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002936 if (reserved_word(dest, ctx)) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002937 debug_printf_parse("done_word return %d\n", (ctx->res_w == RES_SNTX));
2938 return (ctx->res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002939 }
Eric Andersen25f27032001-04-26 23:22:31 +00002940 }
2941 glob_target = &child->glob_result;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002942 if (child->argv)
2943 flags |= GLOB_APPEND;
Eric Andersen25f27032001-04-26 23:22:31 +00002944 }
2945 gr = xglob(dest, flags, glob_target);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002946 if (gr != 0) {
2947 debug_printf_parse("done_word return 1: xglob returned %d\n", gr);
2948 return 1;
2949 }
Eric Andersen25f27032001-04-26 23:22:31 +00002950
2951 b_reset(dest);
2952 if (ctx->pending_redirect) {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002953 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002954 if (glob_target->gl_pathc != 1) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002955 bb_error_msg("ambiguous redirect");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002956 debug_printf_parse("done_word return 1: ambiguous redirect\n");
Eric Andersen25f27032001-04-26 23:22:31 +00002957 return 1;
2958 }
2959 } else {
2960 child->argv = glob_target->gl_pathv;
2961 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002962#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002963 if (ctx->res_w == RES_FOR) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00002964 done_word(dest, ctx);
2965 done_pipe(ctx, PIPE_SEQ);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002966 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002967#endif
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00002968 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00002969 return 0;
2970}
2971
2972/* The only possible error here is out of memory, in which case
2973 * xmalloc exits. */
2974static int done_command(struct p_context *ctx)
2975{
2976 /* The child is really already in the pipe structure, so
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002977 * advance the pipe counter and make a new, null child. */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00002978 struct pipe *pi = ctx->pipe;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002979 struct child_prog *child = ctx->child;
Eric Andersen25f27032001-04-26 23:22:31 +00002980
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002981 if (child) {
2982 if (child->group == NULL
2983 && child->argv == NULL
2984 && child->redirects == NULL
2985 ) {
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00002986 debug_printf_parse("done_command: skipping null cmd, num_progs=%d\n", pi->num_progs);
2987 return pi->num_progs;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002988 }
Eric Andersen25f27032001-04-26 23:22:31 +00002989 pi->num_progs++;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002990 debug_printf_parse("done_command: ++num_progs=%d\n", pi->num_progs);
Eric Andersen25f27032001-04-26 23:22:31 +00002991 } else {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002992 debug_printf_parse("done_command: initializing, num_progs=%d\n", pi->num_progs);
Eric Andersen25f27032001-04-26 23:22:31 +00002993 }
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002994
2995 /* Only real trickiness here is that the uncommitted
2996 * child structure is not counted in pi->num_progs. */
Eric Andersen25f27032001-04-26 23:22:31 +00002997 pi->progs = xrealloc(pi->progs, sizeof(*pi->progs) * (pi->num_progs+1));
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002998 child = &pi->progs[pi->num_progs];
Eric Andersen25f27032001-04-26 23:22:31 +00002999
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003000 memset(child, 0, sizeof(*child));
3001 /*child->redirects = NULL;*/
3002 /*child->argv = NULL;*/
3003 /*child->is_stopped = 0;*/
3004 /*child->group = NULL;*/
3005 /*child->glob_result.gl_pathv = NULL;*/
3006 child->family = pi;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003007 //sp: /*child->sp = 0;*/
Denis Vlasenko262d7652007-05-20 21:52:49 +00003008 //pt: child->parse_type = ctx->parse_type;
Eric Andersen25f27032001-04-26 23:22:31 +00003009
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003010 ctx->child = child;
Eric Andersen25f27032001-04-26 23:22:31 +00003011 /* but ctx->pipe and ctx->list_head remain unchanged */
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003012
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003013 return pi->num_progs; /* used only for 0/nonzero check */
Eric Andersen25f27032001-04-26 23:22:31 +00003014}
3015
3016static int done_pipe(struct p_context *ctx, pipe_style type)
3017{
3018 struct pipe *new_p;
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003019 int not_null;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003020
3021 debug_printf_parse("done_pipe entered, followup %d\n", type);
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003022 not_null = done_command(ctx); /* implicit closure of previous command */
Eric Andersen25f27032001-04-26 23:22:31 +00003023 ctx->pipe->followup = type;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003024 ctx->pipe->res_word = ctx->res_w;
Denis Vlasenkodd4cb2b2007-05-05 15:11:40 +00003025 /* Without this check, even just <enter> on command line generates
3026 * tree of three NOPs (!). Which is harmless but annoying.
3027 * IOW: it is safe to do it unconditionally. */
3028 if (not_null) {
3029 new_p = new_pipe();
3030 ctx->pipe->next = new_p;
3031 ctx->pipe = new_p;
3032 ctx->child = NULL;
3033 done_command(ctx); /* set up new pipe to accept commands */
3034 }
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003035 debug_printf_parse("done_pipe return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003036 return 0;
3037}
3038
3039/* peek ahead in the in_str to find out if we have a "&n" construct,
3040 * as in "2>&1", that represents duplicating a file descriptor.
3041 * returns either -2 (syntax error), -1 (no &), or the number found.
3042 */
3043static int redirect_dup_num(struct in_str *input)
3044{
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003045 int ch, d = 0, ok = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003046 ch = b_peek(input);
3047 if (ch != '&') return -1;
3048
3049 b_getch(input); /* get the & */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003050 ch = b_peek(input);
Eric Andersen83a2ae22001-05-07 17:59:25 +00003051 if (ch == '-') {
3052 b_getch(input);
3053 return -3; /* "-" represents "close me" */
3054 }
3055 while (isdigit(ch)) {
Denis Vlasenko7d4c44e2007-04-16 22:34:39 +00003056 d = d*10 + (ch-'0');
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003057 ok = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003058 b_getch(input);
Eric Andersen83a2ae22001-05-07 17:59:25 +00003059 ch = b_peek(input);
Eric Andersen25f27032001-04-26 23:22:31 +00003060 }
3061 if (ok) return d;
3062
Manuel Novoa III cad53642003-03-19 09:13:01 +00003063 bb_error_msg("ambiguous redirect");
Eric Andersen25f27032001-04-26 23:22:31 +00003064 return -2;
3065}
3066
3067/* If a redirect is immediately preceded by a number, that number is
3068 * supposed to tell which file descriptor to redirect. This routine
3069 * looks for such preceding numbers. In an ideal world this routine
3070 * needs to handle all the following classes of redirects...
3071 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3072 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3073 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3074 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
3075 * A -1 output from this program means no valid number was found, so the
3076 * caller should use the appropriate default for this redirection.
3077 */
3078static int redirect_opt_num(o_string *o)
3079{
3080 int num;
3081
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003082 if (o->length == 0)
3083 return -1;
3084 for (num = 0; num < o->length; num++) {
3085 if (!isdigit(*(o->data + num))) {
Eric Andersen25f27032001-04-26 23:22:31 +00003086 return -1;
3087 }
3088 }
3089 /* reuse num (and save an int) */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003090 num = atoi(o->data);
Eric Andersen25f27032001-04-26 23:22:31 +00003091 b_reset(o);
3092 return num;
3093}
3094
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003095#if ENABLE_HUSH_TICK
Denis Vlasenko8412d792007-10-01 09:59:47 +00003096/* NB: currently disabled on NOMMU */
"Vladimir N. Oleynik"19c37012005-09-22 14:33:15 +00003097static FILE *generate_stream_from_list(struct pipe *head)
Eric Andersen25f27032001-04-26 23:22:31 +00003098{
3099 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00003100 int pid, channel[2];
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003101
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00003102 xpipe(channel);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003103 pid = fork();
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003104 if (pid < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00003105 bb_perror_msg_and_die("fork");
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003106 } else if (pid == 0) {
Eric Andersen25f27032001-04-26 23:22:31 +00003107 close(channel[0]);
3108 if (channel[1] != 1) {
Denis Vlasenko7d4c44e2007-04-16 22:34:39 +00003109 dup2(channel[1], 1);
Eric Andersen25f27032001-04-26 23:22:31 +00003110 close(channel[1]);
3111 }
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003112 /* Prevent it from trying to handle ctrl-z etc */
Denis Vlasenko27f79ff2007-05-30 00:55:52 +00003113#if ENABLE_HUSH_JOB
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003114 run_list_level = 1;
Denis Vlasenko27f79ff2007-05-30 00:55:52 +00003115#endif
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003116 /* Process substitution is not considered to be usual
3117 * 'command execution'.
3118 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not. */
3119 /* Not needed, we are relying on it being disabled
3120 * everywhere outside actual command execution. */
3121 /*set_jobctrl_sighandler(SIG_IGN);*/
3122 set_misc_sighandler(SIG_DFL);
Eric Andersen94ac2442001-05-22 19:05:18 +00003123 _exit(run_list_real(head)); /* leaks memory */
Eric Andersen25f27032001-04-26 23:22:31 +00003124 }
Eric Andersen25f27032001-04-26 23:22:31 +00003125 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003126 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00003127 return pf;
3128}
3129
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003130/* Return code is exit status of the process that is run. */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003131static int process_command_subs(o_string *dest, struct p_context *ctx,
3132 struct in_str *input, const char *subst_end)
Eric Andersen25f27032001-04-26 23:22:31 +00003133{
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003134 int retcode, ch, eol_cnt;
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003135 o_string result = NULL_O_STRING;
Eric Andersen25f27032001-04-26 23:22:31 +00003136 struct p_context inner;
3137 FILE *p;
3138 struct in_str pipe_str;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003139
Eric Andersen25f27032001-04-26 23:22:31 +00003140 initialize_context(&inner);
3141
3142 /* recursion to generate command */
3143 retcode = parse_stream(&result, &inner, input, subst_end);
Denis Vlasenko1a735862007-05-23 00:32:25 +00003144 if (retcode != 0)
3145 return retcode; /* syntax error or EOF */
Eric Andersen25f27032001-04-26 23:22:31 +00003146 done_word(&result, &inner);
3147 done_pipe(&inner, PIPE_SEQ);
3148 b_free(&result);
3149
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003150 p = generate_stream_from_list(inner.list_head);
3151 if (p == NULL) return 1;
Denis Vlasenkoa0898172007-10-01 09:59:01 +00003152 close_on_exec_on(fileno(p));
Eric Andersen25f27032001-04-26 23:22:31 +00003153 setup_file_in_str(&pipe_str, p);
3154
3155 /* now send results of command back into original context */
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003156 eol_cnt = 0;
3157 while ((ch = b_getch(&pipe_str)) != EOF) {
3158 if (ch == '\n') {
3159 eol_cnt++;
3160 continue;
3161 }
3162 while (eol_cnt) {
3163 b_addqchr(dest, '\n', dest->quote);
3164 eol_cnt--;
3165 }
3166 b_addqchr(dest, ch, dest->quote);
Eric Andersen25f27032001-04-26 23:22:31 +00003167 }
3168
3169 debug_printf("done reading from pipe, pclose()ing\n");
3170 /* This is the step that wait()s for the child. Should be pretty
3171 * safe, since we just read an EOF from its stdout. We could try
Denis Vlasenko262d7652007-05-20 21:52:49 +00003172 * to do better, by using wait(), and keeping track of background jobs
Eric Andersen25f27032001-04-26 23:22:31 +00003173 * at the same time. That would be a lot of work, and contrary
3174 * to the KISS philosophy of this program. */
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003175 retcode = fclose(p);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003176 free_pipe_list(inner.list_head, 0);
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003177 debug_printf("closed FILE from child, retcode=%d\n", retcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003178 return retcode;
3179}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003180#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003181
3182static int parse_group(o_string *dest, struct p_context *ctx,
3183 struct in_str *input, int ch)
3184{
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003185 int rcode;
3186 const char *endch = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003187 struct p_context sub;
3188 struct child_prog *child = ctx->child;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003189
3190 debug_printf_parse("parse_group entered\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003191 if (child->argv) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003192 syntax(NULL);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003193 debug_printf_parse("parse_group return 1: syntax error, groups and arglists don't mix\n");
3194 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003195 }
3196 initialize_context(&sub);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003197 endch = "}";
3198 if (ch == '(') {
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003199 endch = ")";
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003200 child->subshell = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003201 }
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003202 rcode = parse_stream(dest, &sub, input, endch);
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00003203//vda: err chk?
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003204 done_word(dest, &sub); /* finish off the final word in the subcontext */
Eric Andersen25f27032001-04-26 23:22:31 +00003205 done_pipe(&sub, PIPE_SEQ); /* and the final command there, too */
3206 child->group = sub.list_head;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003207
3208 debug_printf_parse("parse_group return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003209 return rcode;
3210 /* child remains "open", available for possible redirects */
3211}
3212
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003213/* Basically useful version until someone wants to get fancier,
Eric Andersen25f27032001-04-26 23:22:31 +00003214 * see the bash man page under "Parameter Expansion" */
Denis Vlasenko15d78fb2007-01-30 22:28:21 +00003215static const char *lookup_param(const char *src)
Eric Andersen25f27032001-04-26 23:22:31 +00003216{
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003217 struct variable *var = get_local_var(src);
3218 if (var)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00003219 return strchr(var->varstr, '=') + 1;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003220 return NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003221}
3222
3223/* return code: 0 for OK, 1 for syntax error */
3224static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input)
3225{
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003226 int ch = b_peek(input); /* first character after the $ */
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003227 unsigned char quote_mask = dest->quote ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003228
3229 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003230 if (isalpha(ch)) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003231 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003232 //sp: ctx->child->sp++;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003233 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003234 debug_printf_parse(": '%c'\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003235 b_getch(input);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003236 b_addchr(dest, ch | quote_mask);
3237 quote_mask = 0;
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003238 ch = b_peek(input);
3239 if (!isalnum(ch) && ch != '_')
3240 break;
Eric Andersen25f27032001-04-26 23:22:31 +00003241 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003242 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003243 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003244 make_one_char_var:
3245 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003246 //sp: ctx->child->sp++;
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003247 debug_printf_parse(": '%c'\n", ch);
3248 b_getch(input);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003249 b_addchr(dest, ch | quote_mask);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003250 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003251 } else switch (ch) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003252 case '$': /* pid */
3253 case '!': /* last bg pid */
3254 case '?': /* last exit code */
3255 case '#': /* number of args */
3256 case '*': /* args */
3257 case '@': /* args */
3258 goto make_one_char_var;
Eric Andersen25f27032001-04-26 23:22:31 +00003259 case '{':
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003260 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003261 //sp: ctx->child->sp++;
Eric Andersen25f27032001-04-26 23:22:31 +00003262 b_getch(input);
3263 /* XXX maybe someone will try to escape the '}' */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003264 while (1) {
3265 ch = b_getch(input);
Denis Vlasenkob0550012007-05-24 12:18:16 +00003266 if (ch == '}')
3267 break;
3268 if (!isalnum(ch) && ch != '_') {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003269 syntax("unterminated ${name}");
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003270 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
3271 return 1;
3272 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003273 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003274 b_addchr(dest, ch | quote_mask);
3275 quote_mask = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003276 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003277 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003278 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003279#if ENABLE_HUSH_TICK
Eric Andersen25f27032001-04-26 23:22:31 +00003280 case '(':
Matt Kraai9f8caf12001-05-02 16:26:12 +00003281 b_getch(input);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003282 process_command_subs(dest, ctx, input, ")");
Eric Andersen25f27032001-04-26 23:22:31 +00003283 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003284#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003285 case '-':
3286 case '_':
3287 /* still unhandled, but should be eventually */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003288 bb_error_msg("unhandled syntax: $%c", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003289 return 1;
3290 break;
3291 default:
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003292 b_addqchr(dest, '$', dest->quote);
Eric Andersen25f27032001-04-26 23:22:31 +00003293 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003294 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003295 return 0;
3296}
3297
Eric Andersen25f27032001-04-26 23:22:31 +00003298/* return code is 0 for normal exit, 1 for syntax error */
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003299static int parse_stream(o_string *dest, struct p_context *ctx,
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003300 struct in_str *input, const char *end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00003301{
"Vladimir N. Oleynik"4ccd2b42006-01-31 09:27:48 +00003302 int ch, m;
Eric Andersen25f27032001-04-26 23:22:31 +00003303 int redir_fd;
3304 redir_type redir_style;
3305 int next;
3306
3307 /* Only double-quote state is handled in the state variable dest->quote.
3308 * A single-quote triggers a bypass of the main loop until its mate is
3309 * found. When recursing, quote state is passed in via dest->quote. */
3310
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003311 debug_printf_parse("parse_stream entered, end_trigger='%s'\n", end_trigger);
3312
Denis Vlasenko1a735862007-05-23 00:32:25 +00003313 while (1) {
Denis Vlasenko1a735862007-05-23 00:32:25 +00003314 m = CHAR_IFS;
3315 next = '\0';
Denis Vlasenko170435c2007-05-23 13:01:10 +00003316 ch = b_getch(input);
Denis Vlasenko1a735862007-05-23 00:32:25 +00003317 if (ch != EOF) {
3318 m = charmap[ch];
3319 if (ch != '\n')
3320 next = b_peek(input);
3321 }
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003322 debug_printf_parse(": ch=%c (%d) m=%d quote=%d\n",
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003323 ch, ch, m, dest->quote);
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003324 if (m == CHAR_ORDINARY
3325 || (m != CHAR_SPECIAL && dest->quote)
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003326 ) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00003327 if (ch == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003328 syntax("unterminated \"");
Denis Vlasenko170435c2007-05-23 13:01:10 +00003329 debug_printf_parse("parse_stream return 1: unterminated \"\n");
3330 return 1;
3331 }
Eric Andersen25f27032001-04-26 23:22:31 +00003332 b_addqchr(dest, ch, dest->quote);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003333 continue;
3334 }
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003335 if (m == CHAR_IFS) {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003336 if (done_word(dest, ctx)) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003337 debug_printf_parse("parse_stream return 1: done_word!=0\n");
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003338 return 1;
Eric Andersenaac75e52001-04-30 18:18:45 +00003339 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00003340 if (ch == EOF)
3341 break;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003342 /* If we aren't performing a substitution, treat
3343 * a newline as a command separator.
3344 * [why we don't handle it exactly like ';'? --vda] */
3345 if (end_trigger && ch == '\n') {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003346 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003347 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003348 }
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003349 if ((end_trigger && strchr(end_trigger, ch))
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003350 && !dest->quote && ctx->res_w == RES_NONE
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003351 ) {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003352 debug_printf_parse("parse_stream return 0: end_trigger char found\n");
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003353 return 0;
3354 }
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003355 if (m == CHAR_IFS)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003356 continue;
3357 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00003358 case '#':
3359 if (dest->length == 0 && !dest->quote) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003360 while (1) {
3361 ch = b_peek(input);
3362 if (ch == EOF || ch == '\n')
3363 break;
3364 b_getch(input);
3365 }
Eric Andersen25f27032001-04-26 23:22:31 +00003366 } else {
3367 b_addqchr(dest, ch, dest->quote);
3368 }
3369 break;
3370 case '\\':
3371 if (next == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003372 syntax("\\<eof>");
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003373 debug_printf_parse("parse_stream return 1: \\<eof>\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003374 return 1;
3375 }
3376 b_addqchr(dest, '\\', dest->quote);
3377 b_addqchr(dest, b_getch(input), dest->quote);
3378 break;
3379 case '$':
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003380 if (handle_dollar(dest, ctx, input) != 0) {
3381 debug_printf_parse("parse_stream return 1: handle_dollar returned non-0\n");
3382 return 1;
3383 }
Eric Andersen25f27032001-04-26 23:22:31 +00003384 break;
3385 case '\'':
3386 dest->nonnull = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003387 while (1) {
3388 ch = b_getch(input);
3389 if (ch == EOF || ch == '\'')
3390 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003391 b_addchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003392 }
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003393 if (ch == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003394 syntax("unterminated '");
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003395 debug_printf_parse("parse_stream return 1: unterminated '\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003396 return 1;
3397 }
3398 break;
3399 case '"':
3400 dest->nonnull = 1;
3401 dest->quote = !dest->quote;
3402 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003403#if ENABLE_HUSH_TICK
Eric Andersen25f27032001-04-26 23:22:31 +00003404 case '`':
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003405 process_command_subs(dest, ctx, input, "`");
Eric Andersen25f27032001-04-26 23:22:31 +00003406 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003407#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003408 case '>':
3409 redir_fd = redirect_opt_num(dest);
3410 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003411 redir_style = REDIRECT_OVERWRITE;
Eric Andersen25f27032001-04-26 23:22:31 +00003412 if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003413 redir_style = REDIRECT_APPEND;
Eric Andersen25f27032001-04-26 23:22:31 +00003414 b_getch(input);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003415 }
3416#if 0
3417 else if (next == '(') {
3418 syntax(">(process) not supported");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003419 debug_printf_parse("parse_stream return 1: >(process) not supported\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003420 return 1;
3421 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003422#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003423 setup_redirect(ctx, redir_fd, redir_style, input);
3424 break;
3425 case '<':
3426 redir_fd = redirect_opt_num(dest);
3427 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003428 redir_style = REDIRECT_INPUT;
Eric Andersen25f27032001-04-26 23:22:31 +00003429 if (next == '<') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003430 redir_style = REDIRECT_HEREIS;
Eric Andersen25f27032001-04-26 23:22:31 +00003431 b_getch(input);
3432 } else if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003433 redir_style = REDIRECT_IO;
Eric Andersen25f27032001-04-26 23:22:31 +00003434 b_getch(input);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003435 }
3436#if 0
3437 else if (next == '(') {
3438 syntax("<(process) not supported");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003439 debug_printf_parse("parse_stream return 1: <(process) not supported\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003440 return 1;
3441 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003442#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003443 setup_redirect(ctx, redir_fd, redir_style, input);
3444 break;
3445 case ';':
3446 done_word(dest, ctx);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003447 done_pipe(ctx, PIPE_SEQ);
Eric Andersen25f27032001-04-26 23:22:31 +00003448 break;
3449 case '&':
3450 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003451 if (next == '&') {
Eric Andersen25f27032001-04-26 23:22:31 +00003452 b_getch(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003453 done_pipe(ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00003454 } else {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003455 done_pipe(ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00003456 }
3457 break;
3458 case '|':
3459 done_word(dest, ctx);
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003460 if (next == '|') {
Eric Andersen25f27032001-04-26 23:22:31 +00003461 b_getch(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003462 done_pipe(ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00003463 } else {
3464 /* we could pick up a file descriptor choice here
3465 * with redirect_opt_num(), but bash doesn't do it.
3466 * "echo foo 2| cat" yields "foo 2". */
3467 done_command(ctx);
3468 }
3469 break;
3470 case '(':
3471 case '{':
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003472 if (parse_group(dest, ctx, input, ch) != 0) {
3473 debug_printf_parse("parse_stream return 1: parse_group returned non-0\n");
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003474 return 1;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003475 }
Eric Andersen25f27032001-04-26 23:22:31 +00003476 break;
3477 case ')':
3478 case '}':
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003479 syntax("unexpected }"); /* Proper use of this character is caught by end_trigger */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003480 debug_printf_parse("parse_stream return 1: unexpected '}'\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003481 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003482 default:
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003483 if (ENABLE_HUSH_DEBUG)
3484 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003485 }
3486 }
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003487 /* Complain if quote? No, maybe we just finished a command substitution
Eric Andersen25f27032001-04-26 23:22:31 +00003488 * that was quoted. Example:
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003489 * $ echo "`cat foo` plus more"
Eric Andersen25f27032001-04-26 23:22:31 +00003490 * and we just got the EOF generated by the subshell that ran "cat foo"
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003491 * The only real complaint is if we got an EOF when end_trigger != NULL,
Eric Andersen25f27032001-04-26 23:22:31 +00003492 * that is, we were really supposed to get end_trigger, and never got
3493 * one before the EOF. Can't use the standard "syntax error" return code,
3494 * so that parse_stream_outer can distinguish the EOF and exit smoothly. */
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003495 debug_printf_parse("parse_stream return %d\n", -(end_trigger != NULL));
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003496 if (end_trigger)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003497 return -1;
Eric Andersen25f27032001-04-26 23:22:31 +00003498 return 0;
3499}
3500
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003501static void set_in_charmap(const char *set, int code)
Eric Andersen25f27032001-04-26 23:22:31 +00003502{
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003503 while (*set)
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003504 charmap[(unsigned char)*set++] = code;
Eric Andersen25f27032001-04-26 23:22:31 +00003505}
3506
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003507static void update_charmap(void)
Eric Andersen25f27032001-04-26 23:22:31 +00003508{
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003509 /* char *ifs and char charmap[256] are both globals. */
Eric Andersen25f27032001-04-26 23:22:31 +00003510 ifs = getenv("IFS");
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003511 if (ifs == NULL)
3512 ifs = " \t\n";
Eric Andersen25f27032001-04-26 23:22:31 +00003513 /* Precompute a list of 'flow through' behavior so it can be treated
3514 * quickly up front. Computation is necessary because of IFS.
3515 * Special case handling of IFS == " \t\n" is not implemented.
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003516 * The charmap[] array only really needs two bits each,
3517 * and on most machines that would be faster (reduced L1 cache use).
Eric Andersen25f27032001-04-26 23:22:31 +00003518 */
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003519 memset(charmap, CHAR_ORDINARY, sizeof(charmap));
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003520#if ENABLE_HUSH_TICK
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003521 set_in_charmap("\\$\"`", CHAR_SPECIAL);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003522#else
3523 set_in_charmap("\\$\"", CHAR_SPECIAL);
3524#endif
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003525 set_in_charmap("<>;&|(){}#'", CHAR_ORDINARY_IF_QUOTED);
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003526 set_in_charmap(ifs, CHAR_IFS); /* are ordinary if quoted */
Eric Andersen25f27032001-04-26 23:22:31 +00003527}
3528
Eric Andersenaff114c2004-04-14 17:51:38 +00003529/* most recursion does not come through here, the exception is
Denis Vlasenko170435c2007-05-23 13:01:10 +00003530 * from builtin_source() and builtin_eval() */
3531static int parse_and_run_stream(struct in_str *inp, int parse_flag)
Eric Andersen25f27032001-04-26 23:22:31 +00003532{
Eric Andersen25f27032001-04-26 23:22:31 +00003533 struct p_context ctx;
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003534 o_string temp = NULL_O_STRING;
Eric Andersen25f27032001-04-26 23:22:31 +00003535 int rcode;
3536 do {
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003537 ctx.parse_type = parse_flag;
Eric Andersen25f27032001-04-26 23:22:31 +00003538 initialize_context(&ctx);
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003539 update_charmap();
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003540 if (!(parse_flag & PARSEFLAG_SEMICOLON) || (parse_flag & PARSEFLAG_REPARSING))
Denis Vlasenko8f6bdb42007-05-16 09:36:55 +00003541 set_in_charmap(";$&|", CHAR_ORDINARY);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003542#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +00003543 inp->promptmode = 0; /* PS1 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003544#endif
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003545 /* We will stop & execute after each ';' or '\n'.
3546 * Example: "sleep 9999; echo TEST" + ctrl-C:
3547 * TEST should be printed */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003548 rcode = parse_stream(&temp, &ctx, inp, ";\n");
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003549 if (rcode != 1 && ctx.old_flag != 0) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003550 syntax(NULL);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003551 }
3552 if (rcode != 1 && ctx.old_flag == 0) {
3553 done_word(&temp, &ctx);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003554 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003555 debug_print_tree(ctx.list_head, 0);
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003556 debug_printf_exec("parse_stream_outer: run_list\n");
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003557 run_list(ctx.list_head);
3558 } else {
3559 if (ctx.old_flag != 0) {
3560 free(ctx.stack);
3561 b_reset(&temp);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003562 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003563 temp.nonnull = 0;
3564 temp.quote = 0;
3565 inp->p = NULL;
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003566 free_pipe_list(ctx.list_head, 0);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003567 }
Eric Andersena813afc2001-05-24 16:19:36 +00003568 b_free(&temp);
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003569 } while (rcode != -1 && !(parse_flag & PARSEFLAG_EXIT_FROM_LOOP)); /* loop on syntax errors, return on EOF */
Eric Andersen25f27032001-04-26 23:22:31 +00003570 return 0;
3571}
3572
Denis Vlasenko170435c2007-05-23 13:01:10 +00003573static int parse_and_run_string(const char *s, int parse_flag)
Eric Andersen25f27032001-04-26 23:22:31 +00003574{
3575 struct in_str input;
3576 setup_string_in_str(&input, s);
Denis Vlasenko170435c2007-05-23 13:01:10 +00003577 return parse_and_run_stream(&input, parse_flag);
Eric Andersen25f27032001-04-26 23:22:31 +00003578}
3579
Denis Vlasenko170435c2007-05-23 13:01:10 +00003580static int parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00003581{
3582 int rcode;
3583 struct in_str input;
3584 setup_file_in_str(&input, f);
Denis Vlasenko170435c2007-05-23 13:01:10 +00003585 rcode = parse_and_run_stream(&input, PARSEFLAG_SEMICOLON);
Eric Andersen25f27032001-04-26 23:22:31 +00003586 return rcode;
3587}
3588
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003589#if ENABLE_HUSH_JOB
Eric Andersen6c947d22001-06-25 22:24:38 +00003590/* Make sure we have a controlling tty. If we get started under a job
3591 * aware app (like bash for example), make sure we are now in charge so
3592 * we don't fight over who gets the foreground */
Eric Anderseneaecbf32001-10-31 10:41:31 +00003593static void setup_job_control(void)
Eric Andersen52a97ca2001-06-22 06:49:26 +00003594{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003595 pid_t shell_pgrp;
3596
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00003597 saved_task_pgrp = shell_pgrp = getpgrp();
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003598 debug_printf_jobs("saved_task_pgrp=%d\n", saved_task_pgrp);
Denis Vlasenko96e1b382007-09-30 23:50:48 +00003599 close_on_exec_on(interactive_fd);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003600
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00003601 /* If we were ran as 'hush &',
3602 * sleep until we are in the foreground. */
3603 while (tcgetpgrp(interactive_fd) != shell_pgrp) {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003604 /* Send TTIN to ourself (should stop us) */
Denis Vlasenkoff131b92007-04-10 15:42:06 +00003605 kill(- shell_pgrp, SIGTTIN);
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00003606 shell_pgrp = getpgrp();
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003607 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00003608
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003609 /* Ignore job-control and misc signals. */
3610 set_jobctrl_sighandler(SIG_IGN);
3611 set_misc_sighandler(SIG_IGN);
3612//huh? signal(SIGCHLD, SIG_IGN);
3613
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003614 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003615 set_fatal_sighandler(sigexit);
Eric Andersen6c947d22001-06-25 22:24:38 +00003616
3617 /* Put ourselves in our own process group. */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003618 setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
Eric Andersen6c947d22001-06-25 22:24:38 +00003619 /* Grab control of the terminal. */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003620 tcsetpgrp(interactive_fd, getpid());
Eric Andersen6c947d22001-06-25 22:24:38 +00003621}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003622#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00003623
Denis Vlasenko06af2162007-02-03 17:28:39 +00003624int hush_main(int argc, char **argv);
Matt Kraai2d91deb2001-08-01 17:21:35 +00003625int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00003626{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00003627 static const char version_str[] ALIGN1 = "HUSH_VERSION="HUSH_VER_STR;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00003628 static const struct variable const_shell_ver = {
3629 .next = NULL,
3630 .varstr = (char*)version_str,
3631 .max_len = 1, /* 0 can provoke free(name) */
3632 .flg_export = 1,
3633 .flg_read_only = 1,
3634 };
3635
Eric Andersen25f27032001-04-26 23:22:31 +00003636 int opt;
3637 FILE *input;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003638 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003639 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00003640
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003641 PTR_TO_GLOBALS = xzalloc(sizeof(G));
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003642
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00003643 /* Deal with HUSH_VERSION */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003644 shell_ver = const_shell_ver; /* copying struct here */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003645 top_var = &shell_ver;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00003646 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
3647 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003648 * currently living in the environment */
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003649 cur_var = top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00003650 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003651 if (e) while (*e) {
3652 char *value = strchr(*e, '=');
3653 if (value) { /* paranoia */
3654 cur_var->next = xzalloc(sizeof(*cur_var));
3655 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00003656 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003657 cur_var->max_len = strlen(*e);
3658 cur_var->flg_export = 1;
3659 }
3660 e++;
3661 }
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00003662 putenv((char *)version_str); /* reinstate HUSH_VERSION */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003663
Denis Vlasenko38f63192007-01-22 09:03:07 +00003664#if ENABLE_FEATURE_EDITING
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00003665 line_input_state = new_line_input_t(FOR_SHELL);
3666#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003667 /* XXX what should these be while sourcing /etc/profile? */
3668 global_argc = argc;
3669 global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00003670 /* Initialize some more globals to non-zero values */
3671 set_cwd();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003672#if ENABLE_HUSH_INTERACTIVE
3673#if ENABLE_FEATURE_EDITING
3674 cmdedit_set_initial_prompt();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003675#endif
Eric Andersen94ac2442001-05-22 19:05:18 +00003676 PS2 = "> ";
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003677#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003678
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003679 if (EXIT_SUCCESS) /* otherwise is already done */
3680 last_return_code = EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +00003681
3682 if (argv[0] && argv[0][0] == '-') {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003683 debug_printf("sourcing /etc/profile\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003684 input = fopen("/etc/profile", "r");
3685 if (input != NULL) {
Denis Vlasenkoa0898172007-10-01 09:59:01 +00003686 close_on_exec_on(fileno(input));
Denis Vlasenko170435c2007-05-23 13:01:10 +00003687 parse_and_run_file(input);
Eric Andersena90f20b2001-06-26 23:00:21 +00003688 fclose(input);
3689 }
Eric Andersen25f27032001-04-26 23:22:31 +00003690 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003691 input = stdin;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003692
Eric Andersen25f27032001-04-26 23:22:31 +00003693 while ((opt = getopt(argc, argv, "c:xif")) > 0) {
3694 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003695 case 'c':
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003696 global_argv = argv + optind;
3697 global_argc = argc - optind;
Denis Vlasenko170435c2007-05-23 13:01:10 +00003698 opt = parse_and_run_string(optarg, PARSEFLAG_SEMICOLON);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003699 goto final_return;
3700 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003701 /* Well, we cannot just declare interactiveness,
3702 * we have to have some stuff (ctty, etc) */
3703 /* interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003704 break;
3705 case 'f':
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00003706 fake_mode = 1;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003707 break;
3708 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00003709#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003710 fprintf(stderr, "Usage: sh [FILE]...\n"
3711 " or: sh -c command [args]...\n\n");
3712 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00003713#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003714 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00003715#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003716 }
3717 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003718#if ENABLE_HUSH_JOB
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003719 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00003720 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00003721 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00003722 * no arguments remaining or the -s flag given
3723 * standard input is a terminal
3724 * standard output is a terminal
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003725 * Refer to Posix.2, the description of the 'sh' utility. */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003726 if (argv[optind] == NULL && input == stdin
3727 && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
3728 ) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003729 saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
3730 debug_printf("saved_tty_pgrp=%d\n", saved_tty_pgrp);
3731 if (saved_tty_pgrp >= 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003732 /* try to dup to high fd#, >= 255 */
3733 interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
3734 if (interactive_fd < 0) {
3735 /* try to dup to any fd */
3736 interactive_fd = dup(STDIN_FILENO);
3737 if (interactive_fd < 0)
3738 /* give up */
3739 interactive_fd = 0;
3740 }
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003741 // TODO: track & disallow any attempts of user
3742 // to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003743 }
Eric Andersen25f27032001-04-26 23:22:31 +00003744 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003745 debug_printf("interactive_fd=%d\n", interactive_fd);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003746 if (interactive_fd) {
Eric Andersen25f27032001-04-26 23:22:31 +00003747 /* Looks like they want an interactive shell */
Eric Andersen52a97ca2001-06-22 06:49:26 +00003748 setup_job_control();
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003749 /* Make xfuncs do cleanup on exit */
3750 die_sleep = -1; /* flag */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003751// FIXME: should we reset die_sleep = 0 whereever we fork?
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003752 if (setjmp(die_jmp)) {
3753 /* xfunc has failed! die die die */
3754 hush_exit(xfunc_error_retval);
3755 }
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003756#if !ENABLE_FEATURE_SH_EXTRA_QUIET
Denis Vlasenkoca525b42007-06-13 12:27:17 +00003757 printf("\n\n%s hush - the humble shell v"HUSH_VER_STR"\n", bb_banner);
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00003758 printf("Enter 'help' for a list of built-in commands.\n\n");
3759#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00003760 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003761#elif ENABLE_HUSH_INTERACTIVE
3762/* no job control compiled, only prompt/line editing */
3763 if (argv[optind] == NULL && input == stdin
3764 && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
3765 ) {
3766 interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
3767 if (interactive_fd < 0) {
3768 /* try to dup to any fd */
3769 interactive_fd = dup(STDIN_FILENO);
3770 if (interactive_fd < 0)
3771 /* give up */
3772 interactive_fd = 0;
3773 }
3774 }
3775
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003776#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003777
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003778 if (argv[optind] == NULL) {
Denis Vlasenko170435c2007-05-23 13:01:10 +00003779 opt = parse_and_run_file(stdin);
Eric Andersene67c3ce2001-05-02 02:09:36 +00003780 goto final_return;
Eric Andersen25f27032001-04-26 23:22:31 +00003781 }
Eric Andersen25f27032001-04-26 23:22:31 +00003782
3783 debug_printf("\nrunning script '%s'\n", argv[optind]);
Denis Vlasenko4c978632007-02-03 03:31:13 +00003784 global_argv = argv + optind;
3785 global_argc = argc - optind;
Rob Landleyd921b2e2006-08-03 15:41:12 +00003786 input = xfopen(argv[optind], "r");
Denis Vlasenko170435c2007-05-23 13:01:10 +00003787 opt = parse_and_run_file(input);
Eric Andersen25f27032001-04-26 23:22:31 +00003788
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003789 final_return:
3790
Denis Vlasenko38f63192007-01-22 09:03:07 +00003791#if ENABLE_FEATURE_CLEAN_UP
Eric Andersenaeb44c42001-05-22 20:29:00 +00003792 fclose(input);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003793 if (cwd != bb_msg_unknown)
Eric Andersenaeb44c42001-05-22 20:29:00 +00003794 free((char*)cwd);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003795 cur_var = top_var->next;
3796 while (cur_var) {
3797 struct variable *tmp = cur_var;
3798 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00003799 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00003800 cur_var = cur_var->next;
3801 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00003802 }
Eric Andersen25f27032001-04-26 23:22:31 +00003803#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003804 hush_exit(opt ? opt : last_return_code);
Eric Andersen25f27032001-04-26 23:22:31 +00003805}