blob: 94b29c03df1026d483a3c45a333c5ed230b76f51 [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
12 * written Dec 2000 and Jan 2001 by Larry Doolittle.
13 * The execution engine, the builtins, and much of the underlying
14 * support has been adapted from busybox-0.49pre's lash,
15 * which is Copyright (C) 2000 by Lineo, Inc., and
16 * written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>.
17 * That, in turn, is based in part on ladsh.c, by Michael K. Johnson and
18 * Erik W. Troan, which they placed in the public domain. I don't know
19 * how much of the Johnson/Troan code has survived the repeated rewrites.
20 * Other credits:
21 * simple_itoa() was lifted from boa-0.93.15
22 * b_addchr() derived from similar w_addchar function in glibc-2.2
23 * setup_redirect(), redirect_opt_num(), and big chunks of main()
24 * and many builtins derived from contributions by Erik Andersen
25 * miscellaneous bugfixes from Matt Kraai
26 *
27 * There are two big (and related) architecture differences between
28 * this parser and the lash parser. One is that this version is
29 * actually designed from the ground up to understand nearly all
30 * of the Bourne grammar. The second, consequential change is that
31 * the parser and input reader have been turned inside out. Now,
32 * the parser is in control, and asks for input as needed. The old
33 * way had the input reader in control, and it asked for parsing to
34 * take place as needed. The new way makes it much easier to properly
35 * handle the recursion implicit in the various substitutions, especially
36 * across continuation lines.
37 *
38 * Bash grammar not implemented: (how many of these were in original sh?)
39 * $@ (those sure look like weird quoting rules)
40 * $_
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:
53 * job handling woefully incomplete and buggy
54 * 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
Eric Andersen25f27032001-04-26 23:22:31 +000073 * maybe change map[] to use 2-bit entries
74 * (eventually) remove all the printf's
Eric Andersen25f27032001-04-26 23:22:31 +000075 *
76 * This program is free software; you can redistribute it and/or modify
77 * it under the terms of the GNU General Public License as published by
78 * the Free Software Foundation; either version 2 of the License, or
79 * (at your option) any later version.
80 *
81 * This program is distributed in the hope that it will be useful,
82 * but WITHOUT ANY WARRANTY; without even the implied warranty of
83 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
84 * General Public License for more details.
85 *
86 * You should have received a copy of the GNU General Public License
87 * along with this program; if not, write to the Free Software
88 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
89 */
90#include <ctype.h> /* isalpha, isdigit */
91#include <unistd.h> /* getpid */
92#include <stdlib.h> /* getenv, atoi */
93#include <string.h> /* strchr */
94#include <stdio.h> /* popen etc. */
95#include <glob.h> /* glob, of course */
96#include <stdarg.h> /* va_list */
97#include <errno.h>
98#include <fcntl.h>
99#include <getopt.h> /* should be pretty obvious */
100
Eric Andersen83a2ae22001-05-07 17:59:25 +0000101#include <sys/stat.h> /* ulimit */
Eric Andersen25f27032001-04-26 23:22:31 +0000102#include <sys/types.h>
103#include <sys/wait.h>
104#include <signal.h>
105
106/* #include <dmalloc.h> */
Eric Andersen4ed5e372001-05-01 01:49:50 +0000107/* #define DEBUG_SHELL */
Eric Andersen25f27032001-04-26 23:22:31 +0000108
Eric Andersenda15a492002-12-06 21:37:08 +0000109#if 1
Eric Andersen25f27032001-04-26 23:22:31 +0000110#include "busybox.h"
111#include "cmdedit.h"
112#else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000113#define bb_applet_name "hush"
Eric Andersenaf44a0e2001-04-27 07:26:12 +0000114#include "standalone.h"
Matt Kraai2d91deb2001-08-01 17:21:35 +0000115#define hush_main main
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000116#undef CONFIG_FEATURE_SH_FANCY_PROMPT
117#define BB_BANNER
Eric Andersenaf44a0e2001-04-27 07:26:12 +0000118#endif
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000119#define SPECIAL_VAR_SYMBOL 03
120#define FLAG_EXIT_FROM_LOOP 1
121#define FLAG_PARSE_SEMICOLON (1 << 1) /* symbol ';' is special for parser */
122#define FLAG_REPARSING (1 << 2) /* >=2nd pass */
Eric Andersen25f27032001-04-26 23:22:31 +0000123
124typedef enum {
125 REDIRECT_INPUT = 1,
126 REDIRECT_OVERWRITE = 2,
127 REDIRECT_APPEND = 3,
128 REDIRECT_HEREIS = 4,
129 REDIRECT_IO = 5
130} redir_type;
131
132/* The descrip member of this structure is only used to make debugging
133 * output pretty */
134struct {int mode; int default_fd; char *descrip;} redir_table[] = {
135 { 0, 0, "()" },
136 { O_RDONLY, 0, "<" },
137 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
138 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
139 { O_RDONLY, -1, "<<" },
140 { O_RDWR, 1, "<>" }
141};
142
143typedef enum {
144 PIPE_SEQ = 1,
145 PIPE_AND = 2,
146 PIPE_OR = 3,
147 PIPE_BG = 4,
148} pipe_style;
149
150/* might eventually control execution */
151typedef enum {
152 RES_NONE = 0,
153 RES_IF = 1,
154 RES_THEN = 2,
155 RES_ELIF = 3,
156 RES_ELSE = 4,
157 RES_FI = 5,
158 RES_FOR = 6,
159 RES_WHILE = 7,
160 RES_UNTIL = 8,
161 RES_DO = 9,
162 RES_DONE = 10,
Eric Andersenaf44a0e2001-04-27 07:26:12 +0000163 RES_XXXX = 11,
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000164 RES_IN = 12,
165 RES_SNTX = 13
Eric Andersen25f27032001-04-26 23:22:31 +0000166} reserved_style;
167#define FLAG_END (1<<RES_NONE)
168#define FLAG_IF (1<<RES_IF)
169#define FLAG_THEN (1<<RES_THEN)
170#define FLAG_ELIF (1<<RES_ELIF)
171#define FLAG_ELSE (1<<RES_ELSE)
172#define FLAG_FI (1<<RES_FI)
173#define FLAG_FOR (1<<RES_FOR)
174#define FLAG_WHILE (1<<RES_WHILE)
175#define FLAG_UNTIL (1<<RES_UNTIL)
176#define FLAG_DO (1<<RES_DO)
177#define FLAG_DONE (1<<RES_DONE)
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000178#define FLAG_IN (1<<RES_IN)
Eric Andersen25f27032001-04-26 23:22:31 +0000179#define FLAG_START (1<<RES_XXXX)
180
181/* This holds pointers to the various results of parsing */
182struct p_context {
183 struct child_prog *child;
184 struct pipe *list_head;
185 struct pipe *pipe;
186 struct redir_struct *pending_redirect;
187 reserved_style w;
188 int old_flag; /* for figuring out valid reserved words */
189 struct p_context *stack;
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000190 int type; /* define type of parser : ";$" common or special symbol */
Eric Andersen25f27032001-04-26 23:22:31 +0000191 /* How about quoting status? */
192};
193
194struct redir_struct {
195 redir_type type; /* type of redirection */
196 int fd; /* file descriptor being redirected */
197 int dup; /* -1, or file descriptor being duplicated */
198 struct redir_struct *next; /* pointer to the next redirect in the list */
199 glob_t word; /* *word.gl_pathv is the filename */
200};
201
202struct child_prog {
203 pid_t pid; /* 0 if exited */
204 char **argv; /* program name and arguments */
205 struct pipe *group; /* if non-NULL, first in group or subshell */
206 int subshell; /* flag, non-zero if group must be forked */
207 struct redir_struct *redirects; /* I/O redirections */
208 glob_t glob_result; /* result of parameter globbing */
209 int is_stopped; /* is the program currently running? */
210 struct pipe *family; /* pointer back to the child's parent pipe */
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000211 int sp; /* number of SPECIAL_VAR_SYMBOL */
212 int type;
Eric Andersen25f27032001-04-26 23:22:31 +0000213};
214
215struct pipe {
216 int jobid; /* job number */
217 int num_progs; /* total number of programs in job */
218 int running_progs; /* number of programs running */
219 char *text; /* name of job */
220 char *cmdbuf; /* buffer various argv's point into */
221 pid_t pgrp; /* process group ID for the job */
222 struct child_prog *progs; /* array of commands in pipe */
223 struct pipe *next; /* to track background commands */
224 int stopped_progs; /* number of programs alive, but stopped */
225 int job_context; /* bitmask defining current context */
226 pipe_style followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
227 reserved_style r_mode; /* supports if, for, while, until */
Eric Andersen25f27032001-04-26 23:22:31 +0000228};
229
Eric Andersen25f27032001-04-26 23:22:31 +0000230struct close_me {
231 int fd;
232 struct close_me *next;
233};
234
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000235struct variables {
236 char *name;
237 char *value;
238 int flg_export;
239 int flg_read_only;
240 struct variables *next;
241};
242
Eric Andersen25f27032001-04-26 23:22:31 +0000243/* globals, connect us to the outside world
244 * the first three support $?, $#, and $1 */
245char **global_argv;
246unsigned int global_argc;
247unsigned int last_return_code;
248extern char **environ; /* This is in <unistd.h>, but protected with __USE_GNU */
249
Eric Andersen25f27032001-04-26 23:22:31 +0000250/* "globals" within this file */
Eric Andersenbc604a22001-05-16 05:24:03 +0000251static char *ifs;
Eric Andersen25f27032001-04-26 23:22:31 +0000252static char map[256];
Eric Andersenbc604a22001-05-16 05:24:03 +0000253static int fake_mode;
254static int interactive;
255static struct close_me *close_me_head;
Eric Andersencfa88ec2001-05-11 18:08:16 +0000256static const char *cwd;
Eric Andersenc798b072001-06-22 06:23:03 +0000257static struct pipe *job_list;
Eric Andersenbc604a22001-05-16 05:24:03 +0000258static unsigned int last_bg_pid;
Eric Andersenc798b072001-06-22 06:23:03 +0000259static unsigned int last_jobid;
Eric Andersen6c947d22001-06-25 22:24:38 +0000260static unsigned int shell_terminal;
Eric Andersen25f27032001-04-26 23:22:31 +0000261static char *PS1;
Eric Andersen94ac2442001-05-22 19:05:18 +0000262static char *PS2;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000263struct variables shell_ver = { "HUSH_VERSION", "0.01", 1, 1, 0 };
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000264struct variables *top_vars = &shell_ver;
Eric Andersen25f27032001-04-26 23:22:31 +0000265
Eric Andersen52a97ca2001-06-22 06:49:26 +0000266
Eric Andersen25f27032001-04-26 23:22:31 +0000267#define B_CHUNK (100)
268#define B_NOSPAC 1
Eric Andersen25f27032001-04-26 23:22:31 +0000269
270typedef struct {
271 char *data;
272 int length;
273 int maxlen;
274 int quote;
275 int nonnull;
276} o_string;
277#define NULL_O_STRING {NULL,0,0,0,0}
278/* used for initialization:
279 o_string foo = NULL_O_STRING; */
280
281/* I can almost use ordinary FILE *. Is open_memstream() universally
282 * available? Where is it documented? */
283struct in_str {
284 const char *p;
Matt Kraaibdd4ece2001-05-23 17:43:00 +0000285 char peek_buf[2];
Eric Andersen25f27032001-04-26 23:22:31 +0000286 int __promptme;
287 int promptmode;
288 FILE *file;
289 int (*get) (struct in_str *);
290 int (*peek) (struct in_str *);
291};
292#define b_getch(input) ((input)->get(input))
293#define b_peek(input) ((input)->peek(input))
294
295#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
296
297struct built_in_command {
298 char *cmd; /* name */
299 char *descr; /* description */
300 int (*function) (struct child_prog *); /* function ptr */
301};
302
303/* belongs in busybox.h */
304static inline int max(int a, int b) {
305 return (a>b)?a:b;
306}
307
308/* This should be in utility.c */
309#ifdef DEBUG_SHELL
310static void debug_printf(const char *format, ...)
311{
312 va_list args;
313 va_start(args, format);
314 vfprintf(stderr, format, args);
315 va_end(args);
316}
317#else
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000318static inline void debug_printf(const char *format, ...) { }
Eric Andersen25f27032001-04-26 23:22:31 +0000319#endif
320#define final_printf debug_printf
321
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000322static void __syntax(char *file, int line) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000323 bb_error_msg("syntax error %s:%d", file, line);
Eric Andersen25f27032001-04-26 23:22:31 +0000324}
325#define syntax() __syntax(__FILE__, __LINE__)
326
327/* Index of subroutines: */
328/* function prototypes for builtins */
329static int builtin_cd(struct child_prog *child);
330static int builtin_env(struct child_prog *child);
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000331static int builtin_eval(struct child_prog *child);
Eric Andersen25f27032001-04-26 23:22:31 +0000332static int builtin_exec(struct child_prog *child);
333static int builtin_exit(struct child_prog *child);
334static int builtin_export(struct child_prog *child);
335static int builtin_fg_bg(struct child_prog *child);
336static int builtin_help(struct child_prog *child);
337static int builtin_jobs(struct child_prog *child);
338static int builtin_pwd(struct child_prog *child);
339static int builtin_read(struct child_prog *child);
Eric Andersenf72f5622001-05-15 23:21:41 +0000340static int builtin_set(struct child_prog *child);
Eric Andersen25f27032001-04-26 23:22:31 +0000341static int builtin_shift(struct child_prog *child);
342static int builtin_source(struct child_prog *child);
Eric Andersen25f27032001-04-26 23:22:31 +0000343static int builtin_umask(struct child_prog *child);
344static int builtin_unset(struct child_prog *child);
Eric Andersen83a2ae22001-05-07 17:59:25 +0000345static int builtin_not_written(struct child_prog *child);
Eric Andersen25f27032001-04-26 23:22:31 +0000346/* o_string manipulation: */
347static int b_check_space(o_string *o, int len);
348static int b_addchr(o_string *o, int ch);
349static void b_reset(o_string *o);
350static int b_addqchr(o_string *o, int ch, int quote);
351static int b_adduint(o_string *o, unsigned int i);
352/* in_str manipulations: */
353static int static_get(struct in_str *i);
354static int static_peek(struct in_str *i);
355static int file_get(struct in_str *i);
356static int file_peek(struct in_str *i);
357static void setup_file_in_str(struct in_str *i, FILE *f);
358static void setup_string_in_str(struct in_str *i, const char *s);
359/* close_me manipulations: */
360static void mark_open(int fd);
361static void mark_closed(int fd);
Eric Anderseneaecbf32001-10-31 10:41:31 +0000362static void close_all(void);
Eric Andersen25f27032001-04-26 23:22:31 +0000363/* "run" the final data structures: */
364static char *indenter(int i);
Eric Andersenbf7df042001-05-23 22:18:35 +0000365static int free_pipe_list(struct pipe *head, int indent);
366static int free_pipe(struct pipe *pi, int indent);
Eric Andersen25f27032001-04-26 23:22:31 +0000367/* really run the final data structures: */
368static int setup_redirects(struct child_prog *prog, int squirrel[]);
Eric Andersen25f27032001-04-26 23:22:31 +0000369static int run_list_real(struct pipe *pi);
370static void pseudo_exec(struct child_prog *child) __attribute__ ((noreturn));
371static int run_pipe_real(struct pipe *pi);
372/* extended glob support: */
373static int globhack(const char *src, int flags, glob_t *pglob);
374static int glob_needed(const char *s);
375static int xglob(o_string *dest, int flags, glob_t *pglob);
Eric Andersen78a7c992001-05-15 16:30:25 +0000376/* variable assignment: */
Eric Andersen78a7c992001-05-15 16:30:25 +0000377static int is_assignment(const char *s);
Eric Andersen25f27032001-04-26 23:22:31 +0000378/* data structure manipulation: */
379static int setup_redirect(struct p_context *ctx, int fd, redir_type style, struct in_str *input);
380static void initialize_context(struct p_context *ctx);
381static int done_word(o_string *dest, struct p_context *ctx);
382static int done_command(struct p_context *ctx);
383static int done_pipe(struct p_context *ctx, pipe_style type);
384/* primary string parsing: */
385static int redirect_dup_num(struct in_str *input);
386static int redirect_opt_num(o_string *o);
387static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end);
388static int parse_group(o_string *dest, struct p_context *ctx, struct in_str *input, int ch);
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000389static char *lookup_param(char *src);
390static char *make_string(char **inp);
Eric Andersen25f27032001-04-26 23:22:31 +0000391static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input);
392static int parse_string(o_string *dest, struct p_context *ctx, const char *src);
393static int parse_stream(o_string *dest, struct p_context *ctx, struct in_str *input0, int end_trigger);
394/* setup: */
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000395static int parse_stream_outer(struct in_str *inp, int flag);
396static int parse_string_outer(const char *s, int flag);
Eric Andersen25f27032001-04-26 23:22:31 +0000397static int parse_file_outer(FILE *f);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000398/* job management: */
Eric Andersenc798b072001-06-22 06:23:03 +0000399static int checkjobs(struct pipe* fg_pipe);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000400static void insert_bg_job(struct pipe *pi);
401static void remove_bg_job(struct pipe *pi);
Eric Andersenf72f5622001-05-15 23:21:41 +0000402/* local variable support */
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000403static char **make_list_in(char **inp, char *name);
404static char *insert_var_value(char *inp);
Eric Andersenf72f5622001-05-15 23:21:41 +0000405static char *get_local_var(const char *var);
Eric Andersenf72f5622001-05-15 23:21:41 +0000406static void unset_local_var(const char *name);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000407static int set_local_var(const char *s, int flg_export);
Eric Andersen25f27032001-04-26 23:22:31 +0000408
409/* Table of built-in functions. They can be forked or not, depending on
410 * context: within pipes, they fork. As simple commands, they do not.
411 * When used in non-forking context, they can change global variables
412 * in the parent shell process. If forked, of course they can not.
413 * For example, 'unset foo | whatever' will parse and run, but foo will
414 * still be set at the end. */
415static struct built_in_command bltins[] = {
416 {"bg", "Resume a job in the background", builtin_fg_bg},
Eric Andersen83a2ae22001-05-07 17:59:25 +0000417 {"break", "Exit for, while or until loop", builtin_not_written},
Eric Andersen25f27032001-04-26 23:22:31 +0000418 {"cd", "Change working directory", builtin_cd},
Eric Andersen83a2ae22001-05-07 17:59:25 +0000419 {"continue", "Continue for, while or until loop", builtin_not_written},
Eric Andersen25f27032001-04-26 23:22:31 +0000420 {"env", "Print all environment variables", builtin_env},
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000421 {"eval", "Construct and run shell command", builtin_eval},
Eric Andersenf72f5622001-05-15 23:21:41 +0000422 {"exec", "Exec command, replacing this shell with the exec'd process",
423 builtin_exec},
Eric Andersen25f27032001-04-26 23:22:31 +0000424 {"exit", "Exit from shell()", builtin_exit},
425 {"export", "Set environment variable", builtin_export},
426 {"fg", "Bring job into the foreground", builtin_fg_bg},
427 {"jobs", "Lists the active jobs", builtin_jobs},
428 {"pwd", "Print current directory", builtin_pwd},
429 {"read", "Input environment variable", builtin_read},
Eric Andersen83a2ae22001-05-07 17:59:25 +0000430 {"return", "Return from a function", builtin_not_written},
Eric Andersenf72f5622001-05-15 23:21:41 +0000431 {"set", "Set/unset shell local variables", builtin_set},
Eric Andersen25f27032001-04-26 23:22:31 +0000432 {"shift", "Shift positional parameters", builtin_shift},
Eric Andersen83a2ae22001-05-07 17:59:25 +0000433 {"trap", "Trap signals", builtin_not_written},
434 {"ulimit","Controls resource limits", builtin_not_written},
Eric Andersen25f27032001-04-26 23:22:31 +0000435 {"umask","Sets file creation mask", builtin_umask},
436 {"unset", "Unset environment variable", builtin_unset},
437 {".", "Source-in and run commands in a file", builtin_source},
438 {"help", "List shell built-in commands", builtin_help},
439 {NULL, NULL, NULL}
440};
441
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000442static const char *set_cwd(void)
443{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000444 if(cwd==bb_msg_unknown)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000445 cwd = NULL; /* xgetcwd(arg) called free(arg) */
446 cwd = xgetcwd((char *)cwd);
447 if (!cwd)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000448 cwd = bb_msg_unknown;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000449 return cwd;
450}
451
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000452/* built-in 'eval' handler */
453static int builtin_eval(struct child_prog *child)
454{
455 char *str = NULL;
456 int rcode = EXIT_SUCCESS;
457
458 if (child->argv[1]) {
459 str = make_string(child->argv + 1);
460 parse_string_outer(str, FLAG_EXIT_FROM_LOOP |
461 FLAG_PARSE_SEMICOLON);
462 free(str);
463 rcode = last_return_code;
464 }
465 return rcode;
466}
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000467
Eric Andersen25f27032001-04-26 23:22:31 +0000468/* built-in 'cd <path>' handler */
469static int builtin_cd(struct child_prog *child)
470{
471 char *newdir;
472 if (child->argv[1] == NULL)
473 newdir = getenv("HOME");
474 else
475 newdir = child->argv[1];
476 if (chdir(newdir)) {
477 printf("cd: %s: %s\n", newdir, strerror(errno));
478 return EXIT_FAILURE;
479 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000480 set_cwd();
Eric Andersen25f27032001-04-26 23:22:31 +0000481 return EXIT_SUCCESS;
482}
483
484/* built-in 'env' handler */
485static int builtin_env(struct child_prog *dummy)
486{
487 char **e = environ;
488 if (e == NULL) return EXIT_FAILURE;
489 for (; *e; e++) {
490 puts(*e);
491 }
492 return EXIT_SUCCESS;
493}
494
495/* built-in 'exec' handler */
496static int builtin_exec(struct child_prog *child)
497{
498 if (child->argv[1] == NULL)
499 return EXIT_SUCCESS; /* Really? */
500 child->argv++;
501 pseudo_exec(child);
502 /* never returns */
503}
504
505/* built-in 'exit' handler */
506static int builtin_exit(struct child_prog *child)
507{
508 if (child->argv[1] == NULL)
Eric Andersene67c3ce2001-05-02 02:09:36 +0000509 exit(last_return_code);
Eric Andersen25f27032001-04-26 23:22:31 +0000510 exit (atoi(child->argv[1]));
511}
512
513/* built-in 'export VAR=value' handler */
514static int builtin_export(struct child_prog *child)
515{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000516 int res = 0;
517 char *name = child->argv[1];
Eric Andersen25f27032001-04-26 23:22:31 +0000518
Eric Andersenf72f5622001-05-15 23:21:41 +0000519 if (name == NULL) {
Eric Andersen25f27032001-04-26 23:22:31 +0000520 return (builtin_env(child));
521 }
Eric Andersenf72f5622001-05-15 23:21:41 +0000522
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000523 name = strdup(name);
Eric Andersenf72f5622001-05-15 23:21:41 +0000524
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000525 if(name) {
Eric Andersen94ac2442001-05-22 19:05:18 +0000526 char *value = strchr(name, '=');
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000527
Eric Andersen94ac2442001-05-22 19:05:18 +0000528 if (!value) {
529 char *tmp;
530 /* They are exporting something without an =VALUE */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000531
Eric Andersen94ac2442001-05-22 19:05:18 +0000532 value = get_local_var(name);
533 if (value) {
534 size_t ln = strlen(name);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000535
Eric Andersen94ac2442001-05-22 19:05:18 +0000536 tmp = realloc(name, ln+strlen(value)+2);
537 if(tmp==NULL)
538 res = -1;
539 else {
540 sprintf(tmp+ln, "=%s", value);
541 name = tmp;
542 }
543 } else {
544 /* bash does not return an error when trying to export
545 * an undefined variable. Do likewise. */
546 res = 1;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000547 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000548 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000549 }
550 if (res<0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000551 bb_perror_msg("export");
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000552 else if(res==0)
553 res = set_local_var(name, 1);
554 else
555 res = 0;
556 free(name);
557 return res;
Eric Andersen25f27032001-04-26 23:22:31 +0000558}
559
560/* built-in 'fg' and 'bg' handler */
561static int builtin_fg_bg(struct child_prog *child)
562{
Eric Andersen0fcd4472001-05-02 20:12:03 +0000563 int i, jobnum;
564 struct pipe *pi=NULL;
Eric Andersen25f27032001-04-26 23:22:31 +0000565
Eric Andersenc798b072001-06-22 06:23:03 +0000566 if (!interactive)
567 return EXIT_FAILURE;
Eric Andersen0fcd4472001-05-02 20:12:03 +0000568 /* If they gave us no args, assume they want the last backgrounded task */
569 if (!child->argv[1]) {
Eric Andersenc798b072001-06-22 06:23:03 +0000570 for (pi = job_list; pi; pi = pi->next) {
571 if (pi->jobid == last_jobid) {
Eric Andersen0fcd4472001-05-02 20:12:03 +0000572 break;
573 }
574 }
575 if (!pi) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000576 bb_error_msg("%s: no current job", child->argv[0]);
Eric Andersen0fcd4472001-05-02 20:12:03 +0000577 return EXIT_FAILURE;
578 }
579 } else {
580 if (sscanf(child->argv[1], "%%%d", &jobnum) != 1) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000581 bb_error_msg("%s: bad argument '%s'", child->argv[0], child->argv[1]);
Eric Andersen0fcd4472001-05-02 20:12:03 +0000582 return EXIT_FAILURE;
583 }
Eric Andersenc798b072001-06-22 06:23:03 +0000584 for (pi = job_list; pi; pi = pi->next) {
Eric Andersen0fcd4472001-05-02 20:12:03 +0000585 if (pi->jobid == jobnum) {
586 break;
587 }
588 }
589 if (!pi) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000590 bb_error_msg("%s: %d: no such job", child->argv[0], jobnum);
Eric Andersen0fcd4472001-05-02 20:12:03 +0000591 return EXIT_FAILURE;
Eric Andersen25f27032001-04-26 23:22:31 +0000592 }
593 }
Eric Andersen52a97ca2001-06-22 06:49:26 +0000594
Eric Andersen25f27032001-04-26 23:22:31 +0000595 if (*child->argv[0] == 'f') {
Eric Andersen028b65b2001-06-28 01:10:11 +0000596 /* Put the job into the foreground. */
597 tcsetpgrp(shell_terminal, pi->pgrp);
Eric Andersen25f27032001-04-26 23:22:31 +0000598 }
599
600 /* Restart the processes in the job */
Eric Andersen0fcd4472001-05-02 20:12:03 +0000601 for (i = 0; i < pi->num_progs; i++)
602 pi->progs[i].is_stopped = 0;
Eric Andersen25f27032001-04-26 23:22:31 +0000603
Eric Andersen028b65b2001-06-28 01:10:11 +0000604 if ( (i=kill(- pi->pgrp, SIGCONT)) < 0) {
605 if (i == ESRCH) {
606 remove_bg_job(pi);
607 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000608 bb_perror_msg("kill (SIGCONT)");
Eric Andersen028b65b2001-06-28 01:10:11 +0000609 }
610 }
Eric Andersen25f27032001-04-26 23:22:31 +0000611
Eric Andersen0fcd4472001-05-02 20:12:03 +0000612 pi->stopped_progs = 0;
Eric Andersen25f27032001-04-26 23:22:31 +0000613 return EXIT_SUCCESS;
614}
615
616/* built-in 'help' handler */
617static int builtin_help(struct child_prog *dummy)
618{
619 struct built_in_command *x;
620
621 printf("\nBuilt-in commands:\n");
622 printf("-------------------\n");
623 for (x = bltins; x->cmd; x++) {
624 if (x->descr==NULL)
625 continue;
626 printf("%s\t%s\n", x->cmd, x->descr);
627 }
628 printf("\n\n");
629 return EXIT_SUCCESS;
630}
631
632/* built-in 'jobs' handler */
633static int builtin_jobs(struct child_prog *child)
634{
635 struct pipe *job;
636 char *status_string;
637
Eric Andersenc798b072001-06-22 06:23:03 +0000638 for (job = job_list; job; job = job->next) {
Eric Andersen25f27032001-04-26 23:22:31 +0000639 if (job->running_progs == job->stopped_progs)
640 status_string = "Stopped";
641 else
642 status_string = "Running";
Eric Andersen52a97ca2001-06-22 06:49:26 +0000643
Eric Andersen25f27032001-04-26 23:22:31 +0000644 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->text);
645 }
646 return EXIT_SUCCESS;
647}
648
649
650/* built-in 'pwd' handler */
651static int builtin_pwd(struct child_prog *dummy)
652{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000653 puts(set_cwd());
Eric Andersen25f27032001-04-26 23:22:31 +0000654 return EXIT_SUCCESS;
655}
656
657/* built-in 'read VAR' handler */
658static int builtin_read(struct child_prog *child)
659{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000660 int res;
Eric Andersen25f27032001-04-26 23:22:31 +0000661
662 if (child->argv[1]) {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000663 char string[BUFSIZ];
664 char *var = 0;
Eric Andersen25f27032001-04-26 23:22:31 +0000665
Eric Andersen94ac2442001-05-22 19:05:18 +0000666 string[0] = 0; /* In case stdin has only EOF */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000667 /* read string */
668 fgets(string, sizeof(string), stdin);
669 chomp(string);
670 var = malloc(strlen(child->argv[1])+strlen(string)+2);
671 if(var) {
672 sprintf(var, "%s=%s", child->argv[1], string);
673 res = set_local_var(var, 0);
674 } else
Eric Andersen94ac2442001-05-22 19:05:18 +0000675 res = -1;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000676 if (res)
677 fprintf(stderr, "read: %m\n");
Eric Andersen94ac2442001-05-22 19:05:18 +0000678 free(var); /* So not move up to avoid breaking errno */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000679 return res;
680 } else {
681 do res=getchar(); while(res!='\n' && res!=EOF);
682 return 0;
683 }
Eric Andersen25f27032001-04-26 23:22:31 +0000684}
685
Eric Andersenf72f5622001-05-15 23:21:41 +0000686/* built-in 'set VAR=value' handler */
687static int builtin_set(struct child_prog *child)
688{
Eric Andersenf72f5622001-05-15 23:21:41 +0000689 char *temp = child->argv[1];
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000690 struct variables *e;
Eric Andersenf72f5622001-05-15 23:21:41 +0000691
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000692 if (temp == NULL)
693 for(e = top_vars; e; e=e->next)
694 printf("%s=%s\n", e->name, e->value);
695 else
696 set_local_var(temp, 0);
697
Eric Andersenf72f5622001-05-15 23:21:41 +0000698 return EXIT_SUCCESS;
Eric Andersenf72f5622001-05-15 23:21:41 +0000699}
700
701
Eric Andersen25f27032001-04-26 23:22:31 +0000702/* Built-in 'shift' handler */
703static int builtin_shift(struct child_prog *child)
704{
705 int n=1;
706 if (child->argv[1]) {
707 n=atoi(child->argv[1]);
708 }
709 if (n>=0 && n<global_argc) {
710 /* XXX This probably breaks $0 */
711 global_argc -= n;
712 global_argv += n;
713 return EXIT_SUCCESS;
714 } else {
715 return EXIT_FAILURE;
716 }
717}
718
719/* Built-in '.' handler (read-in and execute commands from file) */
720static int builtin_source(struct child_prog *child)
721{
722 FILE *input;
723 int status;
724
725 if (child->argv[1] == NULL)
726 return EXIT_FAILURE;
727
728 /* XXX search through $PATH is missing */
729 input = fopen(child->argv[1], "r");
730 if (!input) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000731 bb_error_msg("Couldn't open file '%s'", child->argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +0000732 return EXIT_FAILURE;
733 }
734
735 /* Now run the file */
736 /* XXX argv and argc are broken; need to save old global_argv
737 * (pointer only is OK!) on this stack frame,
738 * set global_argv=child->argv+1, recurse, and restore. */
739 mark_open(fileno(input));
740 status = parse_file_outer(input);
741 mark_closed(fileno(input));
742 fclose(input);
743 return (status);
744}
745
Eric Andersen25f27032001-04-26 23:22:31 +0000746static int builtin_umask(struct child_prog *child)
747{
Eric Andersen83a2ae22001-05-07 17:59:25 +0000748 mode_t new_umask;
749 const char *arg = child->argv[1];
750 char *end;
751 if (arg) {
752 new_umask=strtoul(arg, &end, 8);
753 if (*end!='\0' || end == arg) {
754 return EXIT_FAILURE;
755 }
756 } else {
757 printf("%.3o\n", (unsigned int) (new_umask=umask(0)));
758 }
759 umask(new_umask);
760 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +0000761}
762
763/* built-in 'unset VAR' handler */
764static int builtin_unset(struct child_prog *child)
765{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000766 /* bash returned already true */
Eric Andersenf72f5622001-05-15 23:21:41 +0000767 unset_local_var(child->argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +0000768 return EXIT_SUCCESS;
769}
770
Eric Andersen83a2ae22001-05-07 17:59:25 +0000771static int builtin_not_written(struct child_prog *child)
772{
773 printf("builtin_%s not written\n",child->argv[0]);
774 return EXIT_FAILURE;
775}
776
Eric Andersen25f27032001-04-26 23:22:31 +0000777static int b_check_space(o_string *o, int len)
778{
779 /* It would be easy to drop a more restrictive policy
780 * in here, such as setting a maximum string length */
781 if (o->length + len > o->maxlen) {
782 char *old_data = o->data;
783 /* assert (data == NULL || o->maxlen != 0); */
784 o->maxlen += max(2*len, B_CHUNK);
785 o->data = realloc(o->data, 1 + o->maxlen);
786 if (o->data == NULL) {
787 free(old_data);
788 }
789 }
790 return o->data == NULL;
791}
792
793static int b_addchr(o_string *o, int ch)
794{
795 debug_printf("b_addchr: %c %d %p\n", ch, o->length, o);
796 if (b_check_space(o, 1)) return B_NOSPAC;
797 o->data[o->length] = ch;
798 o->length++;
799 o->data[o->length] = '\0';
800 return 0;
801}
802
803static void b_reset(o_string *o)
804{
805 o->length = 0;
806 o->nonnull = 0;
807 if (o->data != NULL) *o->data = '\0';
808}
809
810static void b_free(o_string *o)
811{
812 b_reset(o);
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000813 free(o->data);
Eric Andersen25f27032001-04-26 23:22:31 +0000814 o->data = NULL;
815 o->maxlen = 0;
816}
817
818/* My analysis of quoting semantics tells me that state information
819 * is associated with a destination, not a source.
820 */
821static int b_addqchr(o_string *o, int ch, int quote)
822{
823 if (quote && strchr("*?[\\",ch)) {
824 int rc;
825 rc = b_addchr(o, '\\');
826 if (rc) return rc;
827 }
828 return b_addchr(o, ch);
829}
830
831/* belongs in utility.c */
832char *simple_itoa(unsigned int i)
833{
834 /* 21 digits plus null terminator, good for 64-bit or smaller ints */
835 static char local[22];
836 char *p = &local[21];
837 *p-- = '\0';
838 do {
839 *p-- = '0' + i % 10;
840 i /= 10;
841 } while (i > 0);
842 return p + 1;
843}
844
845static int b_adduint(o_string *o, unsigned int i)
846{
847 int r;
848 char *p = simple_itoa(i);
849 /* no escape checking necessary */
850 do r=b_addchr(o, *p++); while (r==0 && *p);
851 return r;
852}
853
854static int static_get(struct in_str *i)
855{
856 int ch=*i->p++;
857 if (ch=='\0') return EOF;
858 return ch;
859}
860
861static int static_peek(struct in_str *i)
862{
863 return *i->p;
864}
865
866static inline void cmdedit_set_initial_prompt(void)
867{
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000868#ifndef CONFIG_FEATURE_SH_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +0000869 PS1 = NULL;
870#else
871 PS1 = getenv("PS1");
872 if(PS1==0)
873 PS1 = "\\w \\$ ";
874#endif
875}
876
877static inline void setup_prompt_string(int promptmode, char **prompt_str)
878{
Eric Andersenaf44a0e2001-04-27 07:26:12 +0000879 debug_printf("setup_prompt_string %d ",promptmode);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000880#ifndef CONFIG_FEATURE_SH_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +0000881 /* Set up the prompt */
882 if (promptmode == 1) {
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000883 free(PS1);
Eric Andersen25f27032001-04-26 23:22:31 +0000884 PS1=xmalloc(strlen(cwd)+4);
885 sprintf(PS1, "%s %s", cwd, ( geteuid() != 0 ) ? "$ ":"# ");
886 *prompt_str = PS1;
887 } else {
888 *prompt_str = PS2;
889 }
890#else
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000891 *prompt_str = (promptmode==1)? PS1 : PS2;
Eric Andersenaf44a0e2001-04-27 07:26:12 +0000892#endif
893 debug_printf("result %s\n",*prompt_str);
Eric Andersen25f27032001-04-26 23:22:31 +0000894}
895
896static void get_user_input(struct in_str *i)
897{
898 char *prompt_str;
Eric Andersen088875f2001-04-27 07:49:41 +0000899 static char the_command[BUFSIZ];
Eric Andersen25f27032001-04-26 23:22:31 +0000900
901 setup_prompt_string(i->promptmode, &prompt_str);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000902#ifdef CONFIG_FEATURE_COMMAND_EDITING
Eric Andersen25f27032001-04-26 23:22:31 +0000903 /*
904 ** enable command line editing only while a command line
905 ** is actually being read; otherwise, we'll end up bequeathing
906 ** atexit() handlers and other unwanted stuff to our
907 ** child processes (rob@sysgo.de)
908 */
909 cmdedit_read_input(prompt_str, the_command);
Eric Andersen25f27032001-04-26 23:22:31 +0000910#else
911 fputs(prompt_str, stdout);
912 fflush(stdout);
913 the_command[0]=fgetc(i->file);
914 the_command[1]='\0';
915#endif
Eric Andersen4f6753e2001-05-31 17:17:12 +0000916 fflush(stdout);
Eric Andersen25f27032001-04-26 23:22:31 +0000917 i->p = the_command;
918}
919
920/* This is the magic location that prints prompts
921 * and gets data back from the user */
922static int file_get(struct in_str *i)
923{
924 int ch;
925
926 ch = 0;
927 /* If there is data waiting, eat it up */
928 if (i->p && *i->p) {
929 ch=*i->p++;
930 } else {
931 /* need to double check i->file because we might be doing something
932 * more complicated by now, like sourcing or substituting. */
933 if (i->__promptme && interactive && i->file == stdin) {
Eric Andersen4f6753e2001-05-31 17:17:12 +0000934 while(! i->p || (interactive && strlen(i->p)==0) ) {
935 get_user_input(i);
936 }
Eric Andersen25f27032001-04-26 23:22:31 +0000937 i->promptmode=2;
Eric Andersene67c3ce2001-05-02 02:09:36 +0000938 i->__promptme = 0;
939 if (i->p && *i->p) {
940 ch=*i->p++;
941 }
Eric Andersen4ed5e372001-05-01 01:49:50 +0000942 } else {
Eric Andersene67c3ce2001-05-02 02:09:36 +0000943 ch = fgetc(i->file);
Eric Andersen25f27032001-04-26 23:22:31 +0000944 }
Eric Andersen4ed5e372001-05-01 01:49:50 +0000945
Eric Andersen25f27032001-04-26 23:22:31 +0000946 debug_printf("b_getch: got a %d\n", ch);
947 }
948 if (ch == '\n') i->__promptme=1;
949 return ch;
950}
951
952/* All the callers guarantee this routine will never be
953 * used right after a newline, so prompting is not needed.
954 */
955static int file_peek(struct in_str *i)
956{
957 if (i->p && *i->p) {
958 return *i->p;
959 } else {
Matt Kraaibdd4ece2001-05-23 17:43:00 +0000960 i->peek_buf[0] = fgetc(i->file);
961 i->peek_buf[1] = '\0';
962 i->p = i->peek_buf;
Eric Andersen25f27032001-04-26 23:22:31 +0000963 debug_printf("b_peek: got a %d\n", *i->p);
Matt Kraaibdd4ece2001-05-23 17:43:00 +0000964 return *i->p;
Eric Andersen25f27032001-04-26 23:22:31 +0000965 }
966}
967
968static void setup_file_in_str(struct in_str *i, FILE *f)
969{
970 i->peek = file_peek;
971 i->get = file_get;
972 i->__promptme=1;
973 i->promptmode=1;
974 i->file = f;
975 i->p = NULL;
976}
977
978static void setup_string_in_str(struct in_str *i, const char *s)
979{
980 i->peek = static_peek;
981 i->get = static_get;
982 i->__promptme=1;
983 i->promptmode=1;
984 i->p = s;
985}
986
987static void mark_open(int fd)
988{
989 struct close_me *new = xmalloc(sizeof(struct close_me));
990 new->fd = fd;
991 new->next = close_me_head;
992 close_me_head = new;
993}
994
995static void mark_closed(int fd)
996{
997 struct close_me *tmp;
998 if (close_me_head == NULL || close_me_head->fd != fd)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000999 bb_error_msg_and_die("corrupt close_me");
Eric Andersen25f27032001-04-26 23:22:31 +00001000 tmp = close_me_head;
1001 close_me_head = close_me_head->next;
1002 free(tmp);
1003}
1004
Eric Anderseneaecbf32001-10-31 10:41:31 +00001005static void close_all(void)
Eric Andersen25f27032001-04-26 23:22:31 +00001006{
1007 struct close_me *c;
1008 for (c=close_me_head; c; c=c->next) {
1009 close(c->fd);
1010 }
1011 close_me_head = NULL;
1012}
1013
1014/* squirrel != NULL means we squirrel away copies of stdin, stdout,
1015 * and stderr if they are redirected. */
1016static int setup_redirects(struct child_prog *prog, int squirrel[])
1017{
1018 int openfd, mode;
1019 struct redir_struct *redir;
1020
1021 for (redir=prog->redirects; redir; redir=redir->next) {
Eric Andersen817e73c2001-06-06 17:56:09 +00001022 if (redir->dup == -1 && redir->word.gl_pathv == NULL) {
1023 /* something went wrong in the parse. Pretend it didn't happen */
1024 continue;
1025 }
Eric Andersen25f27032001-04-26 23:22:31 +00001026 if (redir->dup == -1) {
1027 mode=redir_table[redir->type].mode;
1028 openfd = open(redir->word.gl_pathv[0], mode, 0666);
1029 if (openfd < 0) {
1030 /* this could get lost if stderr has been redirected, but
1031 bash and ash both lose it as well (though zsh doesn't!) */
Manuel Novoa III cad53642003-03-19 09:13:01 +00001032 bb_perror_msg("error opening %s", redir->word.gl_pathv[0]);
Eric Andersen25f27032001-04-26 23:22:31 +00001033 return 1;
1034 }
1035 } else {
1036 openfd = redir->dup;
1037 }
1038
1039 if (openfd != redir->fd) {
1040 if (squirrel && redir->fd < 3) {
1041 squirrel[redir->fd] = dup(redir->fd);
1042 }
Eric Andersen83a2ae22001-05-07 17:59:25 +00001043 if (openfd == -3) {
1044 close(openfd);
1045 } else {
1046 dup2(openfd, redir->fd);
Matt Kraaic616e532001-06-05 16:50:08 +00001047 if (redir->dup == -1)
1048 close (openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001049 }
Eric Andersen25f27032001-04-26 23:22:31 +00001050 }
1051 }
1052 return 0;
1053}
1054
1055static void restore_redirects(int squirrel[])
1056{
1057 int i, fd;
1058 for (i=0; i<3; i++) {
1059 fd = squirrel[i];
1060 if (fd != -1) {
1061 /* No error checking. I sure wouldn't know what
1062 * to do with an error if I found one! */
1063 dup2(fd, i);
1064 close(fd);
1065 }
1066 }
1067}
1068
Eric Andersenada18ff2001-05-21 16:18:22 +00001069/* never returns */
Eric Andersen94ac2442001-05-22 19:05:18 +00001070/* XXX no exit() here. If you don't exec, use _exit instead.
1071 * The at_exit handlers apparently confuse the calling process,
1072 * in particular stdin handling. Not sure why? */
Eric Andersen25f27032001-04-26 23:22:31 +00001073static void pseudo_exec(struct child_prog *child)
1074{
Eric Andersen78a7c992001-05-15 16:30:25 +00001075 int i, rcode;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001076 char *p;
Eric Andersen25f27032001-04-26 23:22:31 +00001077 struct built_in_command *x;
1078 if (child->argv) {
Eric Andersen78a7c992001-05-15 16:30:25 +00001079 for (i=0; is_assignment(child->argv[i]); i++) {
Eric Andersenada18ff2001-05-21 16:18:22 +00001080 debug_printf("pid %d environment modification: %s\n",getpid(),child->argv[i]);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001081 p = insert_var_value(child->argv[i]);
1082 putenv(strdup(p));
1083 if (p != child->argv[i]) free(p);
Eric Andersen78a7c992001-05-15 16:30:25 +00001084 }
1085 child->argv+=i; /* XXX this hack isn't so horrible, since we are about
1086 to exit, and therefore don't need to keep data
1087 structures consistent for free() use. */
1088 /* If a variable is assigned in a forest, and nobody listens,
1089 * was it ever really set?
1090 */
Eric Andersen94ac2442001-05-22 19:05:18 +00001091 if (child->argv[0] == NULL) {
1092 _exit(EXIT_SUCCESS);
1093 }
Eric Andersen78a7c992001-05-15 16:30:25 +00001094
Eric Andersen25f27032001-04-26 23:22:31 +00001095 /*
1096 * Check if the command matches any of the builtins.
1097 * Depending on context, this might be redundant. But it's
1098 * easier to waste a few CPU cycles than it is to figure out
1099 * if this is one of those cases.
1100 */
1101 for (x = bltins; x->cmd; x++) {
1102 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1103 debug_printf("builtin exec %s\n", child->argv[0]);
Eric Andersen57e6a492001-05-22 22:34:51 +00001104 rcode = x->function(child);
1105 fflush(stdout);
1106 _exit(rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001107 }
1108 }
Eric Andersenaac75e52001-04-30 18:18:45 +00001109
1110 /* Check if the command matches any busybox internal commands
1111 * ("applets") here.
1112 * FIXME: This feature is not 100% safe, since
1113 * BusyBox is not fully reentrant, so we have no guarantee the things
1114 * from the .bss are still zeroed, or that things from .data are still
1115 * at their defaults. We could exec ourself from /proc/self/exe, but I
1116 * really dislike relying on /proc for things. We could exec ourself
1117 * from global_argv[0], but if we are in a chroot, we may not be able
1118 * to find ourself... */
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001119#ifdef CONFIG_FEATURE_SH_STANDALONE_SHELL
Eric Andersenaac75e52001-04-30 18:18:45 +00001120 {
1121 int argc_l;
1122 char** argv_l=child->argv;
1123 char *name = child->argv[0];
1124
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001125#ifdef CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN
Eric Andersenaac75e52001-04-30 18:18:45 +00001126 /* Following discussions from November 2000 on the busybox mailing
1127 * list, the default configuration, (without
Manuel Novoa III cad53642003-03-19 09:13:01 +00001128 * bb_get_last_path_component()) lets the user force use of an
Eric Andersenaac75e52001-04-30 18:18:45 +00001129 * external command by specifying the full (with slashes) filename.
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001130 * If you enable CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN, then applets
Eric Andersenaac75e52001-04-30 18:18:45 +00001131 * _aways_ override external commands, so if you want to run
1132 * /bin/cat, it will use BusyBox cat even if /bin/cat exists on the
1133 * filesystem and is _not_ busybox. Some systems may want this,
1134 * most do not. */
Manuel Novoa III cad53642003-03-19 09:13:01 +00001135 name = bb_get_last_path_component(name);
Eric Andersenaac75e52001-04-30 18:18:45 +00001136#endif
1137 /* Count argc for use in a second... */
1138 for(argc_l=0;*argv_l!=NULL; argv_l++, argc_l++);
1139 optind = 1;
1140 debug_printf("running applet %s\n", name);
1141 run_applet_by_name(name, argc_l, child->argv);
Eric Andersenaac75e52001-04-30 18:18:45 +00001142 }
1143#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001144 debug_printf("exec of %s\n",child->argv[0]);
1145 execvp(child->argv[0],child->argv);
Manuel Novoa III cad53642003-03-19 09:13:01 +00001146 bb_perror_msg("couldn't exec: %s",child->argv[0]);
Eric Andersen94ac2442001-05-22 19:05:18 +00001147 _exit(1);
Eric Andersen25f27032001-04-26 23:22:31 +00001148 } else if (child->group) {
1149 debug_printf("runtime nesting to group\n");
1150 interactive=0; /* crucial!!!! */
1151 rcode = run_list_real(child->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00001152 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00001153 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00001154 _exit(rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001155 } else {
1156 /* Can happen. See what bash does with ">foo" by itself. */
1157 debug_printf("trying to pseudo_exec null command\n");
Eric Andersen94ac2442001-05-22 19:05:18 +00001158 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00001159 }
1160}
1161
Eric Andersenbafd94f2001-05-02 16:11:59 +00001162static void insert_bg_job(struct pipe *pi)
1163{
1164 struct pipe *thejob;
1165
1166 /* Linear search for the ID of the job to use */
1167 pi->jobid = 1;
Eric Andersenc798b072001-06-22 06:23:03 +00001168 for (thejob = job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001169 if (thejob->jobid >= pi->jobid)
1170 pi->jobid = thejob->jobid + 1;
1171
1172 /* add thejob to the list of running jobs */
Eric Andersenc798b072001-06-22 06:23:03 +00001173 if (!job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001174 thejob = job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001175 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001176 for (thejob = job_list; thejob->next; thejob = thejob->next) /* nothing */;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001177 thejob->next = xmalloc(sizeof(*thejob));
1178 thejob = thejob->next;
1179 }
1180
1181 /* physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00001182 memcpy(thejob, pi, sizeof(struct pipe));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001183 thejob->next = NULL;
1184 thejob->running_progs = thejob->num_progs;
1185 thejob->stopped_progs = 0;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001186 thejob->text = xmalloc(BUFSIZ); /* cmdedit buffer size */
Eric Andersen1a6d39b2001-05-08 05:11:54 +00001187
1188 //if (pi->progs[0] && pi->progs[0].argv && pi->progs[0].argv[0])
1189 {
1190 char *bar=thejob->text;
1191 char **foo=pi->progs[0].argv;
1192 while(foo && *foo) {
1193 bar += sprintf(bar, "%s ", *foo++);
1194 }
1195 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001196
1197 /* we don't wait for background thejobs to return -- append it
1198 to the list of backgrounded thejobs and leave it alone */
Eric Andersen1a6d39b2001-05-08 05:11:54 +00001199 printf("[%d] %d\n", thejob->jobid, thejob->progs[0].pid);
1200 last_bg_pid = thejob->progs[0].pid;
Eric Andersenc798b072001-06-22 06:23:03 +00001201 last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001202}
1203
Eric Andersenc798b072001-06-22 06:23:03 +00001204/* remove a backgrounded job */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001205static void remove_bg_job(struct pipe *pi)
1206{
1207 struct pipe *prev_pipe;
1208
Eric Andersenc798b072001-06-22 06:23:03 +00001209 if (pi == job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001210 job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001211 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001212 prev_pipe = job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001213 while (prev_pipe->next != pi)
1214 prev_pipe = prev_pipe->next;
1215 prev_pipe->next = pi->next;
1216 }
Eric Andersen028b65b2001-06-28 01:10:11 +00001217 if (job_list)
1218 last_jobid = job_list->jobid;
1219 else
1220 last_jobid = 0;
1221
Eric Andersen52a97ca2001-06-22 06:49:26 +00001222 pi->stopped_progs = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00001223 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001224 free(pi);
1225}
1226
Eric Andersenc798b072001-06-22 06:23:03 +00001227/* Checks to see if any processes have exited -- if they
Eric Andersenbafd94f2001-05-02 16:11:59 +00001228 have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00001229static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001230{
Eric Andersenc798b072001-06-22 06:23:03 +00001231 int attributes;
1232 int status;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001233 int prognum = 0;
1234 struct pipe *pi;
1235 pid_t childpid;
1236
Eric Andersenc798b072001-06-22 06:23:03 +00001237 attributes = WUNTRACED;
1238 if (fg_pipe==NULL) {
1239 attributes |= WNOHANG;
1240 }
1241
1242 while ((childpid = waitpid(-1, &status, attributes)) > 0) {
1243 if (fg_pipe) {
1244 int i, rcode = 0;
1245 for (i=0; i < fg_pipe->num_progs; i++) {
1246 if (fg_pipe->progs[i].pid == childpid) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001247 if (i==fg_pipe->num_progs-1)
Eric Andersenc798b072001-06-22 06:23:03 +00001248 rcode=WEXITSTATUS(status);
1249 (fg_pipe->num_progs)--;
1250 return(rcode);
1251 }
1252 }
1253 }
1254
1255 for (pi = job_list; pi; pi = pi->next) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00001256 prognum = 0;
Eric Andersen52a97ca2001-06-22 06:49:26 +00001257 while (prognum < pi->num_progs && pi->progs[prognum].pid != childpid) {
1258 prognum++;
1259 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001260 if (prognum < pi->num_progs)
1261 break;
1262 }
1263
Eric Andersen99785762001-05-22 21:37:48 +00001264 if(pi==NULL) {
1265 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
1266 continue;
1267 }
Eric Andersenaeb44c42001-05-22 20:29:00 +00001268
Eric Andersenbafd94f2001-05-02 16:11:59 +00001269 if (WIFEXITED(status) || WIFSIGNALED(status)) {
1270 /* child exited */
1271 pi->running_progs--;
1272 pi->progs[prognum].pid = 0;
1273
1274 if (!pi->running_progs) {
1275 printf(JOB_STATUS_FORMAT, pi->jobid, "Done", pi->text);
1276 remove_bg_job(pi);
1277 }
1278 } else {
1279 /* child stopped */
1280 pi->stopped_progs++;
1281 pi->progs[prognum].is_stopped = 1;
1282
Eric Andersen52a97ca2001-06-22 06:49:26 +00001283#if 0
1284 /* Printing this stuff is a pain, since it tends to
1285 * overwrite the prompt an inconveinient moments. So
1286 * don't do that. */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001287 if (pi->stopped_progs == pi->num_progs) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001288 printf("\n"JOB_STATUS_FORMAT, pi->jobid, "Stopped", pi->text);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001289 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00001290#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001291 }
1292 }
1293
Matt Kraai80abc452001-05-02 21:48:17 +00001294 if (childpid == -1 && errno != ECHILD)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001295 bb_perror_msg("waitpid");
Matt Kraai80abc452001-05-02 21:48:17 +00001296
Eric Andersenbafd94f2001-05-02 16:11:59 +00001297 /* move the shell to the foreground */
Eric Andersen028b65b2001-06-28 01:10:11 +00001298 //if (interactive && tcsetpgrp(shell_terminal, getpgid(0)))
Manuel Novoa III cad53642003-03-19 09:13:01 +00001299 // bb_perror_msg("tcsetpgrp-2");
Eric Andersenc798b072001-06-22 06:23:03 +00001300 return -1;
Eric Andersenada18ff2001-05-21 16:18:22 +00001301}
1302
1303/* Figure out our controlling tty, checking in order stderr,
1304 * stdin, and stdout. If check_pgrp is set, also check that
1305 * we belong to the foreground process group associated with
Eric Andersen6c947d22001-06-25 22:24:38 +00001306 * that tty. The value of shell_terminal is needed in order to call
1307 * tcsetpgrp(shell_terminal, ...); */
Eric Andersenc798b072001-06-22 06:23:03 +00001308void controlling_tty(int check_pgrp)
Eric Andersenada18ff2001-05-21 16:18:22 +00001309{
1310 pid_t curpgrp;
Eric Andersenada18ff2001-05-21 16:18:22 +00001311
Eric Andersen6c947d22001-06-25 22:24:38 +00001312 if ((curpgrp = tcgetpgrp(shell_terminal = 2)) < 0
1313 && (curpgrp = tcgetpgrp(shell_terminal = 0)) < 0
1314 && (curpgrp = tcgetpgrp(shell_terminal = 1)) < 0)
1315 goto shell_terminal_error;
Eric Andersenada18ff2001-05-21 16:18:22 +00001316
Eric Andersenc798b072001-06-22 06:23:03 +00001317 if (check_pgrp && curpgrp != getpgid(0))
Eric Andersen6c947d22001-06-25 22:24:38 +00001318 goto shell_terminal_error;
Eric Andersenada18ff2001-05-21 16:18:22 +00001319
Eric Andersenc798b072001-06-22 06:23:03 +00001320 return;
1321
Eric Andersen6c947d22001-06-25 22:24:38 +00001322shell_terminal_error:
1323 shell_terminal = -1;
Eric Andersenc798b072001-06-22 06:23:03 +00001324 return;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001325}
1326
Eric Andersen25f27032001-04-26 23:22:31 +00001327/* run_pipe_real() starts all the jobs, but doesn't wait for anything
Eric Andersenc798b072001-06-22 06:23:03 +00001328 * to finish. See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00001329 *
1330 * return code is normally -1, when the caller has to wait for children
1331 * to finish to determine the exit status of the pipe. If the pipe
1332 * is a simple builtin command, however, the action is done by the
1333 * time run_pipe_real returns, and the exit code is provided as the
1334 * return value.
1335 *
1336 * The input of the pipe is always stdin, the output is always
1337 * stdout. The outpipe[] mechanism in BusyBox-0.48 lash is bogus,
1338 * because it tries to avoid running the command substitution in
1339 * subshell, when that is in fact necessary. The subshell process
1340 * now has its stdout directed to the input of the appropriate pipe,
1341 * so this routine is noticeably simpler.
1342 */
1343static int run_pipe_real(struct pipe *pi)
1344{
1345 int i;
1346 int nextin, nextout;
1347 int pipefds[2]; /* pipefds[0] is for reading */
1348 struct child_prog *child;
1349 struct built_in_command *x;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001350 char *p;
Eric Andersen25f27032001-04-26 23:22:31 +00001351
1352 nextin = 0;
Eric Andersenada18ff2001-05-21 16:18:22 +00001353 pi->pgrp = -1;
Eric Andersen25f27032001-04-26 23:22:31 +00001354
1355 /* Check if this is a simple builtin (not part of a pipe).
1356 * Builtins within pipes have to fork anyway, and are handled in
1357 * pseudo_exec. "echo foo | read bar" doesn't work on bash, either.
1358 */
Eric Andersen04407e52001-06-07 16:42:05 +00001359 if (pi->num_progs == 1) child = & (pi->progs[0]);
1360 if (pi->num_progs == 1 && child->group && child->subshell == 0) {
1361 int squirrel[] = {-1, -1, -1};
1362 int rcode;
1363 debug_printf("non-subshell grouping\n");
1364 setup_redirects(child, squirrel);
1365 /* XXX could we merge code with following builtin case,
1366 * by creating a pseudo builtin that calls run_list_real? */
1367 rcode = run_list_real(child->group);
1368 restore_redirects(squirrel);
1369 return rcode;
1370 } else if (pi->num_progs == 1 && pi->progs[0].argv != NULL) {
Eric Andersen78a7c992001-05-15 16:30:25 +00001371 for (i=0; is_assignment(child->argv[i]); i++) { /* nothing */ }
1372 if (i!=0 && child->argv[i]==NULL) {
1373 /* assignments, but no command: set the local environment */
1374 for (i=0; child->argv[i]!=NULL; i++) {
Eric Andersen99785762001-05-22 21:37:48 +00001375
1376 /* Ok, this case is tricky. We have to decide if this is a
1377 * local variable, or an already exported variable. If it is
1378 * already exported, we have to export the new value. If it is
1379 * not exported, we need only set this as a local variable.
1380 * This junk is all to decide whether or not to export this
1381 * variable. */
1382 int export_me=0;
1383 char *name, *value;
Manuel Novoa III cad53642003-03-19 09:13:01 +00001384 name = bb_xstrdup(child->argv[i]);
Eric Andersen04407e52001-06-07 16:42:05 +00001385 debug_printf("Local environment set: %s\n", name);
Eric Andersen99785762001-05-22 21:37:48 +00001386 value = strchr(name, '=');
1387 if (value)
1388 *value=0;
1389 if ( get_local_var(name)) {
1390 export_me=1;
1391 }
1392 free(name);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001393 p = insert_var_value(child->argv[i]);
1394 set_local_var(p, export_me);
1395 if (p != child->argv[i]) free(p);
Eric Andersen78a7c992001-05-15 16:30:25 +00001396 }
1397 return EXIT_SUCCESS; /* don't worry about errors in set_local_var() yet */
1398 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001399 for (i = 0; is_assignment(child->argv[i]); i++) {
1400 p = insert_var_value(child->argv[i]);
1401 putenv(strdup(p));
1402 if (p != child->argv[i]) {
1403 child->sp--;
1404 free(p);
1405 }
1406 }
1407 if (child->sp) {
1408 char * str = NULL;
1409
1410 str = make_string((child->argv + i));
1411 parse_string_outer(str, FLAG_EXIT_FROM_LOOP | FLAG_REPARSING);
1412 free(str);
1413 return last_return_code;
1414 }
Eric Andersen25f27032001-04-26 23:22:31 +00001415 for (x = bltins; x->cmd; x++) {
Eric Andersen78a7c992001-05-15 16:30:25 +00001416 if (strcmp(child->argv[i], x->cmd) == 0 ) {
Eric Andersen25f27032001-04-26 23:22:31 +00001417 int squirrel[] = {-1, -1, -1};
1418 int rcode;
Eric Andersen78a7c992001-05-15 16:30:25 +00001419 if (x->function == builtin_exec && child->argv[i+1]==NULL) {
Eric Andersen83a2ae22001-05-07 17:59:25 +00001420 debug_printf("magic exec\n");
1421 setup_redirects(child,NULL);
1422 return EXIT_SUCCESS;
1423 }
Eric Andersen25f27032001-04-26 23:22:31 +00001424 debug_printf("builtin inline %s\n", child->argv[0]);
1425 /* XXX setup_redirects acts on file descriptors, not FILEs.
1426 * This is perfect for work that comes after exec().
1427 * Is it really safe for inline use? Experimentally,
1428 * things seem to work with glibc. */
1429 setup_redirects(child, squirrel);
Eric Andersen78a7c992001-05-15 16:30:25 +00001430 child->argv+=i; /* XXX horrible hack */
Eric Andersen25f27032001-04-26 23:22:31 +00001431 rcode = x->function(child);
Eric Andersen78a7c992001-05-15 16:30:25 +00001432 child->argv-=i; /* XXX restore hack so free() can work right */
Eric Andersen25f27032001-04-26 23:22:31 +00001433 restore_redirects(squirrel);
1434 return rcode;
1435 }
1436 }
1437 }
1438
1439 for (i = 0; i < pi->num_progs; i++) {
1440 child = & (pi->progs[i]);
1441
1442 /* pipes are inserted between pairs of commands */
1443 if ((i + 1) < pi->num_progs) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001444 if (pipe(pipefds)<0) bb_perror_msg_and_die("pipe");
Eric Andersen25f27032001-04-26 23:22:31 +00001445 nextout = pipefds[1];
1446 } else {
1447 nextout=1;
1448 pipefds[0] = -1;
1449 }
1450
1451 /* XXX test for failed fork()? */
Eric Andersen72f9a422001-10-28 05:12:20 +00001452#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
1453 if (!(child->pid = fork()))
1454#else
1455 if (!(child->pid = vfork()))
1456#endif
1457 {
Eric Andersen6c947d22001-06-25 22:24:38 +00001458 /* Set the handling for job control signals back to the default. */
1459 signal(SIGINT, SIG_DFL);
1460 signal(SIGQUIT, SIG_DFL);
Eric Andersen7467c8d2001-07-12 20:26:32 +00001461 signal(SIGTERM, SIG_DFL);
Eric Andersen6c947d22001-06-25 22:24:38 +00001462 signal(SIGTSTP, SIG_DFL);
1463 signal(SIGTTIN, SIG_DFL);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001464 signal(SIGTTOU, SIG_DFL);
Eric Andersen6c947d22001-06-25 22:24:38 +00001465 signal(SIGCHLD, SIG_DFL);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001466
Eric Andersen25f27032001-04-26 23:22:31 +00001467 close_all();
1468
1469 if (nextin != 0) {
1470 dup2(nextin, 0);
1471 close(nextin);
1472 }
1473 if (nextout != 1) {
1474 dup2(nextout, 1);
1475 close(nextout);
1476 }
1477 if (pipefds[0]!=-1) {
1478 close(pipefds[0]); /* opposite end of our output pipe */
1479 }
1480
1481 /* Like bash, explicit redirects override pipes,
1482 * and the pipe fd is available for dup'ing. */
1483 setup_redirects(child,NULL);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001484
Eric Andersenada18ff2001-05-21 16:18:22 +00001485 if (interactive && pi->followup!=PIPE_BG) {
Eric Andersenbfae2522001-05-17 00:14:27 +00001486 /* If we (the child) win the race, put ourselves in the process
1487 * group whose leader is the first process in this pipe. */
Eric Andersen0fcd4472001-05-02 20:12:03 +00001488 if (pi->pgrp < 0) {
Eric Andersenada18ff2001-05-21 16:18:22 +00001489 pi->pgrp = getpid();
Eric Andersen0fcd4472001-05-02 20:12:03 +00001490 }
Eric Andersen0fcd4472001-05-02 20:12:03 +00001491 if (setpgid(0, pi->pgrp) == 0) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001492 tcsetpgrp(2, pi->pgrp);
Eric Andersen0fcd4472001-05-02 20:12:03 +00001493 }
1494 }
Eric Andersen25f27032001-04-26 23:22:31 +00001495
1496 pseudo_exec(child);
1497 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00001498
1499
1500 /* put our child in the process group whose leader is the
1501 first process in this pipe */
Eric Andersen0fcd4472001-05-02 20:12:03 +00001502 if (pi->pgrp < 0) {
1503 pi->pgrp = child->pid;
Eric Andersen25f27032001-04-26 23:22:31 +00001504 }
Eric Andersen0fcd4472001-05-02 20:12:03 +00001505 /* Don't check for errors. The child may be dead already,
1506 * in which case setpgid returns error code EACCES. */
1507 setpgid(child->pid, pi->pgrp);
1508
Eric Andersen25f27032001-04-26 23:22:31 +00001509 if (nextin != 0)
1510 close(nextin);
1511 if (nextout != 1)
1512 close(nextout);
1513
1514 /* If there isn't another process, nextin is garbage
1515 but it doesn't matter */
1516 nextin = pipefds[0];
1517 }
1518 return -1;
1519}
1520
1521static int run_list_real(struct pipe *pi)
1522{
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001523 char *save_name = NULL;
1524 char **list = NULL;
1525 char **save_list = NULL;
1526 struct pipe *rpipe;
1527 int flag_rep = 0;
1528 int save_num_progs;
1529 int rcode=0, flag_skip=1;
1530 int flag_restore = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00001531 int if_code=0, next_if_code=0; /* need double-buffer to handle elif */
Eric Andersen4ed5e372001-05-01 01:49:50 +00001532 reserved_style rmode, skip_more_in_this_rmode=RES_XXXX;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001533 /* check syntax for "for" */
1534 for (rpipe = pi; rpipe; rpipe = rpipe->next) {
1535 if ((rpipe->r_mode == RES_IN ||
1536 rpipe->r_mode == RES_FOR) &&
1537 (rpipe->next == NULL)) {
1538 syntax();
1539 return 1;
1540 }
1541 if ((rpipe->r_mode == RES_IN &&
1542 (rpipe->next->r_mode == RES_IN &&
1543 rpipe->next->progs->argv != NULL))||
1544 (rpipe->r_mode == RES_FOR &&
1545 rpipe->next->r_mode != RES_IN)) {
1546 syntax();
1547 return 1;
1548 }
1549 }
1550 for (; pi; pi = (flag_restore != 0) ? rpipe : pi->next) {
1551 if (pi->r_mode == RES_WHILE || pi->r_mode == RES_UNTIL ||
1552 pi->r_mode == RES_FOR) {
1553 flag_restore = 0;
1554 if (!rpipe) {
1555 flag_rep = 0;
1556 rpipe = pi;
1557 }
1558 }
Eric Andersen25f27032001-04-26 23:22:31 +00001559 rmode = pi->r_mode;
Eric Andersen4ed5e372001-05-01 01:49:50 +00001560 debug_printf("rmode=%d if_code=%d next_if_code=%d skip_more=%d\n", rmode, if_code, next_if_code, skip_more_in_this_rmode);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001561 if (rmode == skip_more_in_this_rmode && flag_skip) {
1562 if (pi->followup == PIPE_SEQ) flag_skip=0;
1563 continue;
1564 }
1565 flag_skip = 1;
Eric Andersen4ed5e372001-05-01 01:49:50 +00001566 skip_more_in_this_rmode = RES_XXXX;
Eric Andersen25f27032001-04-26 23:22:31 +00001567 if (rmode == RES_THEN || rmode == RES_ELSE) if_code = next_if_code;
1568 if (rmode == RES_THEN && if_code) continue;
1569 if (rmode == RES_ELSE && !if_code) continue;
1570 if (rmode == RES_ELIF && !if_code) continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001571 if (rmode == RES_FOR && pi->num_progs) {
1572 if (!list) {
1573 /* if no variable values after "in" we skip "for" */
1574 if (!pi->next->progs->argv) continue;
1575 /* create list of variable values */
1576 list = make_list_in(pi->next->progs->argv,
1577 pi->progs->argv[0]);
1578 save_list = list;
1579 save_name = pi->progs->argv[0];
1580 pi->progs->argv[0] = NULL;
1581 flag_rep = 1;
1582 }
1583 if (!(*list)) {
1584 free(pi->progs->argv[0]);
1585 free(save_list);
1586 list = NULL;
1587 flag_rep = 0;
1588 pi->progs->argv[0] = save_name;
1589 pi->progs->glob_result.gl_pathv[0] =
1590 pi->progs->argv[0];
1591 continue;
1592 } else {
1593 /* insert new value from list for variable */
1594 if (pi->progs->argv[0])
1595 free(pi->progs->argv[0]);
1596 pi->progs->argv[0] = *list++;
1597 pi->progs->glob_result.gl_pathv[0] =
1598 pi->progs->argv[0];
1599 }
1600 }
1601 if (rmode == RES_IN) continue;
1602 if (rmode == RES_DO) {
1603 if (!flag_rep) continue;
1604 }
1605 if ((rmode == RES_DONE)) {
1606 if (flag_rep) {
1607 flag_restore = 1;
1608 } else {
1609 rpipe = NULL;
1610 }
1611 }
Eric Andersen4ed5e372001-05-01 01:49:50 +00001612 if (pi->num_progs == 0) continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001613 save_num_progs = pi->num_progs; /* save number of programs */
Eric Andersen25f27032001-04-26 23:22:31 +00001614 rcode = run_pipe_real(pi);
Eric Andersen04407e52001-06-07 16:42:05 +00001615 debug_printf("run_pipe_real returned %d\n",rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001616 if (rcode!=-1) {
1617 /* We only ran a builtin: rcode was set by the return value
1618 * of run_pipe_real(), and we don't need to wait for anything. */
1619 } else if (pi->followup==PIPE_BG) {
1620 /* XXX check bash's behavior with nontrivial pipes */
1621 /* XXX compute jobid */
1622 /* XXX what does bash do with attempts to background builtins? */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001623 insert_bg_job(pi);
Eric Andersen25f27032001-04-26 23:22:31 +00001624 rcode = EXIT_SUCCESS;
1625 } else {
1626 if (interactive) {
1627 /* move the new process group into the foreground */
Eric Andersen6c947d22001-06-25 22:24:38 +00001628 if (tcsetpgrp(shell_terminal, pi->pgrp) && errno != ENOTTY)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001629 bb_perror_msg("tcsetpgrp-3");
Eric Andersenc798b072001-06-22 06:23:03 +00001630 rcode = checkjobs(pi);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001631 /* move the shell to the foreground */
Eric Andersen6c947d22001-06-25 22:24:38 +00001632 if (tcsetpgrp(shell_terminal, getpgid(0)) && errno != ENOTTY)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001633 bb_perror_msg("tcsetpgrp-4");
Eric Andersen25f27032001-04-26 23:22:31 +00001634 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001635 rcode = checkjobs(pi);
Eric Andersen25f27032001-04-26 23:22:31 +00001636 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00001637 debug_printf("checkjobs returned %d\n",rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001638 }
1639 last_return_code=rcode;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001640 pi->num_progs = save_num_progs; /* restore number of programs */
Eric Andersen25f27032001-04-26 23:22:31 +00001641 if ( rmode == RES_IF || rmode == RES_ELIF )
1642 next_if_code=rcode; /* can be overwritten a number of times */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001643 if (rmode == RES_WHILE)
1644 flag_rep = !last_return_code;
1645 if (rmode == RES_UNTIL)
1646 flag_rep = last_return_code;
Eric Andersen25f27032001-04-26 23:22:31 +00001647 if ( (rcode==EXIT_SUCCESS && pi->followup==PIPE_OR) ||
1648 (rcode!=EXIT_SUCCESS && pi->followup==PIPE_AND) )
Eric Andersen4ed5e372001-05-01 01:49:50 +00001649 skip_more_in_this_rmode=rmode;
Eric Andersen028b65b2001-06-28 01:10:11 +00001650 checkjobs(NULL);
Eric Andersen25f27032001-04-26 23:22:31 +00001651 }
1652 return rcode;
1653}
1654
1655/* broken, of course, but OK for testing */
1656static char *indenter(int i)
1657{
1658 static char blanks[]=" ";
1659 return &blanks[sizeof(blanks)-i-1];
1660}
1661
1662/* return code is the exit status of the pipe */
Eric Andersenbf7df042001-05-23 22:18:35 +00001663static int free_pipe(struct pipe *pi, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00001664{
1665 char **p;
1666 struct child_prog *child;
1667 struct redir_struct *r, *rnext;
1668 int a, i, ret_code=0;
1669 char *ind = indenter(indent);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001670
1671 if (pi->stopped_progs > 0)
1672 return ret_code;
Eric Andersen25f27032001-04-26 23:22:31 +00001673 final_printf("%s run pipe: (pid %d)\n",ind,getpid());
1674 for (i=0; i<pi->num_progs; i++) {
1675 child = &pi->progs[i];
1676 final_printf("%s command %d:\n",ind,i);
1677 if (child->argv) {
1678 for (a=0,p=child->argv; *p; a++,p++) {
1679 final_printf("%s argv[%d] = %s\n",ind,a,*p);
1680 }
1681 globfree(&child->glob_result);
1682 child->argv=NULL;
1683 } else if (child->group) {
1684 final_printf("%s begin group (subshell:%d)\n",ind, child->subshell);
Eric Andersenbf7df042001-05-23 22:18:35 +00001685 ret_code = free_pipe_list(child->group,indent+3);
Eric Andersen25f27032001-04-26 23:22:31 +00001686 final_printf("%s end group\n",ind);
1687 } else {
1688 final_printf("%s (nil)\n",ind);
1689 }
1690 for (r=child->redirects; r; r=rnext) {
1691 final_printf("%s redirect %d%s", ind, r->fd, redir_table[r->type].descrip);
1692 if (r->dup == -1) {
Eric Andersen817e73c2001-06-06 17:56:09 +00001693 /* guard against the case >$FOO, where foo is unset or blank */
1694 if (r->word.gl_pathv) {
1695 final_printf(" %s\n", *r->word.gl_pathv);
1696 globfree(&r->word);
1697 }
Eric Andersen25f27032001-04-26 23:22:31 +00001698 } else {
1699 final_printf("&%d\n", r->dup);
1700 }
1701 rnext=r->next;
1702 free(r);
1703 }
1704 child->redirects=NULL;
1705 }
1706 free(pi->progs); /* children are an array, they get freed all at once */
1707 pi->progs=NULL;
1708 return ret_code;
1709}
1710
Eric Andersenbf7df042001-05-23 22:18:35 +00001711static int free_pipe_list(struct pipe *head, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00001712{
1713 int rcode=0; /* if list has no members */
1714 struct pipe *pi, *next;
1715 char *ind = indenter(indent);
1716 for (pi=head; pi; pi=next) {
Eric Andersen25f27032001-04-26 23:22:31 +00001717 final_printf("%s pipe reserved mode %d\n", ind, pi->r_mode);
Eric Andersenbf7df042001-05-23 22:18:35 +00001718 rcode = free_pipe(pi, indent);
Eric Andersen25f27032001-04-26 23:22:31 +00001719 final_printf("%s pipe followup code %d\n", ind, pi->followup);
1720 next=pi->next;
1721 pi->next=NULL;
1722 free(pi);
1723 }
1724 return rcode;
1725}
1726
1727/* Select which version we will use */
1728static int run_list(struct pipe *pi)
1729{
1730 int rcode=0;
1731 if (fake_mode==0) {
1732 rcode = run_list_real(pi);
1733 }
Eric Andersenbf7df042001-05-23 22:18:35 +00001734 /* free_pipe_list has the side effect of clearing memory
Eric Andersen25f27032001-04-26 23:22:31 +00001735 * In the long run that function can be merged with run_list_real,
1736 * but doing that now would hobble the debugging effort. */
Eric Andersenbf7df042001-05-23 22:18:35 +00001737 free_pipe_list(pi,0);
Eric Andersen25f27032001-04-26 23:22:31 +00001738 return rcode;
1739}
1740
1741/* The API for glob is arguably broken. This routine pushes a non-matching
1742 * string into the output structure, removing non-backslashed backslashes.
1743 * If someone can prove me wrong, by performing this function within the
1744 * original glob(3) api, feel free to rewrite this routine into oblivion.
1745 * Return code (0 vs. GLOB_NOSPACE) matches glob(3).
1746 * XXX broken if the last character is '\\', check that before calling.
1747 */
1748static int globhack(const char *src, int flags, glob_t *pglob)
1749{
Eric Andersen817e73c2001-06-06 17:56:09 +00001750 int cnt=0, pathc;
Eric Andersen25f27032001-04-26 23:22:31 +00001751 const char *s;
1752 char *dest;
Eric Andersen817e73c2001-06-06 17:56:09 +00001753 for (cnt=1, s=src; s && *s; s++) {
Eric Andersen25f27032001-04-26 23:22:31 +00001754 if (*s == '\\') s++;
1755 cnt++;
1756 }
1757 dest = malloc(cnt);
1758 if (!dest) return GLOB_NOSPACE;
1759 if (!(flags & GLOB_APPEND)) {
1760 pglob->gl_pathv=NULL;
1761 pglob->gl_pathc=0;
1762 pglob->gl_offs=0;
1763 pglob->gl_offs=0;
1764 }
1765 pathc = ++pglob->gl_pathc;
1766 pglob->gl_pathv = realloc(pglob->gl_pathv, (pathc+1)*sizeof(*pglob->gl_pathv));
1767 if (pglob->gl_pathv == NULL) return GLOB_NOSPACE;
1768 pglob->gl_pathv[pathc-1]=dest;
1769 pglob->gl_pathv[pathc]=NULL;
Eric Andersen817e73c2001-06-06 17:56:09 +00001770 for (s=src; s && *s; s++, dest++) {
Eric Andersen25f27032001-04-26 23:22:31 +00001771 if (*s == '\\') s++;
1772 *dest = *s;
1773 }
1774 *dest='\0';
1775 return 0;
1776}
1777
1778/* XXX broken if the last character is '\\', check that before calling */
1779static int glob_needed(const char *s)
1780{
1781 for (; *s; s++) {
1782 if (*s == '\\') s++;
1783 if (strchr("*[?",*s)) return 1;
1784 }
1785 return 0;
1786}
1787
1788#if 0
1789static void globprint(glob_t *pglob)
1790{
1791 int i;
1792 debug_printf("glob_t at %p:\n", pglob);
1793 debug_printf(" gl_pathc=%d gl_pathv=%p gl_offs=%d gl_flags=%d\n",
1794 pglob->gl_pathc, pglob->gl_pathv, pglob->gl_offs, pglob->gl_flags);
1795 for (i=0; i<pglob->gl_pathc; i++)
1796 debug_printf("pglob->gl_pathv[%d] = %p = %s\n", i,
1797 pglob->gl_pathv[i], pglob->gl_pathv[i]);
1798}
1799#endif
1800
1801static int xglob(o_string *dest, int flags, glob_t *pglob)
1802{
1803 int gr;
1804
1805 /* short-circuit for null word */
1806 /* we can code this better when the debug_printf's are gone */
1807 if (dest->length == 0) {
1808 if (dest->nonnull) {
1809 /* bash man page calls this an "explicit" null */
1810 gr = globhack(dest->data, flags, pglob);
1811 debug_printf("globhack returned %d\n",gr);
1812 } else {
1813 return 0;
1814 }
1815 } else if (glob_needed(dest->data)) {
1816 gr = glob(dest->data, flags, NULL, pglob);
1817 debug_printf("glob returned %d\n",gr);
1818 if (gr == GLOB_NOMATCH) {
1819 /* quote removal, or more accurately, backslash removal */
1820 gr = globhack(dest->data, flags, pglob);
1821 debug_printf("globhack returned %d\n",gr);
1822 }
1823 } else {
1824 gr = globhack(dest->data, flags, pglob);
1825 debug_printf("globhack returned %d\n",gr);
1826 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001827 if (gr == GLOB_NOSPACE)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001828 bb_error_msg_and_die("out of memory during glob");
Eric Andersen25f27032001-04-26 23:22:31 +00001829 if (gr != 0) { /* GLOB_ABORTED ? */
Manuel Novoa III cad53642003-03-19 09:13:01 +00001830 bb_error_msg("glob(3) error %d",gr);
Eric Andersen25f27032001-04-26 23:22:31 +00001831 }
1832 /* globprint(glob_target); */
1833 return gr;
1834}
1835
Eric Andersenf72f5622001-05-15 23:21:41 +00001836/* This is used to get/check local shell variables */
1837static char *get_local_var(const char *s)
1838{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001839 struct variables *cur;
Eric Andersenf72f5622001-05-15 23:21:41 +00001840
1841 if (!s)
1842 return NULL;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001843 for (cur = top_vars; cur; cur=cur->next)
1844 if(strcmp(cur->name, s)==0)
1845 return cur->value;
Eric Andersenf72f5622001-05-15 23:21:41 +00001846 return NULL;
1847}
1848
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001849/* This is used to set local shell variables
1850 flg_export==0 if only local (not exporting) variable
1851 flg_export==1 if "new" exporting environ
1852 flg_export>1 if current startup environ (not call putenv()) */
1853static int set_local_var(const char *s, int flg_export)
Eric Andersen78a7c992001-05-15 16:30:25 +00001854{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001855 char *name, *value;
Eric Andersen20a69a72001-05-15 17:24:44 +00001856 int result=0;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001857 struct variables *cur;
Eric Andersen20a69a72001-05-15 17:24:44 +00001858
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001859 name=strdup(s);
Eric Andersen20a69a72001-05-15 17:24:44 +00001860
1861 /* Assume when we enter this function that we are already in
1862 * NAME=VALUE format. So the first order of business is to
1863 * split 's' on the '=' into 'name' and 'value' */
1864 value = strchr(name, '=');
Eric Andersen99785762001-05-22 21:37:48 +00001865 if (value==0 && ++value==0) {
1866 free(name);
1867 return -1;
1868 }
1869 *value++ = 0;
Eric Andersen20a69a72001-05-15 17:24:44 +00001870
Eric Andersen99785762001-05-22 21:37:48 +00001871 for(cur = top_vars; cur; cur = cur->next) {
1872 if(strcmp(cur->name, name)==0)
1873 break;
1874 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001875
Eric Andersen99785762001-05-22 21:37:48 +00001876 if(cur) {
1877 if(strcmp(cur->value, value)==0) {
1878 if(flg_export>0 && cur->flg_export==0)
1879 cur->flg_export=flg_export;
1880 else
1881 result++;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001882 } else {
Eric Andersen99785762001-05-22 21:37:48 +00001883 if(cur->flg_read_only) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001884 bb_error_msg("%s: readonly variable", name);
Eric Andersen20a69a72001-05-15 17:24:44 +00001885 result = -1;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001886 } else {
Eric Andersen99785762001-05-22 21:37:48 +00001887 if(flg_export>0 || cur->flg_export>1)
1888 cur->flg_export=1;
1889 free(cur->value);
1890
1891 cur->value = strdup(value);
1892 }
1893 }
1894 } else {
1895 cur = malloc(sizeof(struct variables));
1896 if(!cur) {
1897 result = -1;
1898 } else {
1899 cur->name = strdup(name);
1900 if(cur->name == 0) {
1901 free(cur);
1902 result = -1;
1903 } else {
1904 struct variables *bottom = top_vars;
1905 cur->value = strdup(value);
1906 cur->next = 0;
1907 cur->flg_export = flg_export;
1908 cur->flg_read_only = 0;
1909 while(bottom->next) bottom=bottom->next;
1910 bottom->next = cur;
Eric Andersen20a69a72001-05-15 17:24:44 +00001911 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001912 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001913 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001914
Eric Andersen94ac2442001-05-22 19:05:18 +00001915 if(result==0 && cur->flg_export==1) {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001916 *(value-1) = '=';
1917 result = putenv(name);
1918 } else {
Eric Andersen94ac2442001-05-22 19:05:18 +00001919 free(name);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001920 if(result>0) /* equivalent to previous set */
1921 result = 0;
1922 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001923 return result;
1924}
1925
Eric Andersenf72f5622001-05-15 23:21:41 +00001926static void unset_local_var(const char *name)
Eric Andersen20a69a72001-05-15 17:24:44 +00001927{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001928 struct variables *cur;
Eric Andersen20a69a72001-05-15 17:24:44 +00001929
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001930 if (name) {
Eric Andersen94ac2442001-05-22 19:05:18 +00001931 for (cur = top_vars; cur; cur=cur->next) {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001932 if(strcmp(cur->name, name)==0)
1933 break;
Eric Andersen94ac2442001-05-22 19:05:18 +00001934 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001935 if(cur!=0) {
1936 struct variables *next = top_vars;
Eric Andersen94ac2442001-05-22 19:05:18 +00001937 if(cur->flg_read_only) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001938 bb_error_msg("%s: readonly variable", name);
Eric Andersen94ac2442001-05-22 19:05:18 +00001939 return;
1940 } else {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001941 if(cur->flg_export)
1942 unsetenv(cur->name);
1943 free(cur->name);
1944 free(cur->value);
1945 while (next->next != cur)
1946 next = next->next;
1947 next->next = cur->next;
1948 }
1949 free(cur);
Eric Andersenf72f5622001-05-15 23:21:41 +00001950 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001951 }
Eric Andersen78a7c992001-05-15 16:30:25 +00001952}
1953
1954static int is_assignment(const char *s)
1955{
1956 if (s==NULL || !isalpha(*s)) return 0;
1957 ++s;
1958 while(isalnum(*s) || *s=='_') ++s;
1959 return *s=='=';
1960}
1961
Eric Andersen25f27032001-04-26 23:22:31 +00001962/* the src parameter allows us to peek forward to a possible &n syntax
1963 * for file descriptor duplication, e.g., "2>&1".
1964 * Return code is 0 normally, 1 if a syntax error is detected in src.
1965 * Resource errors (in xmalloc) cause the process to exit */
1966static int setup_redirect(struct p_context *ctx, int fd, redir_type style,
1967 struct in_str *input)
1968{
1969 struct child_prog *child=ctx->child;
1970 struct redir_struct *redir = child->redirects;
1971 struct redir_struct *last_redir=NULL;
1972
1973 /* Create a new redir_struct and drop it onto the end of the linked list */
1974 while(redir) {
1975 last_redir=redir;
1976 redir=redir->next;
1977 }
1978 redir = xmalloc(sizeof(struct redir_struct));
1979 redir->next=NULL;
Eric Andersen817e73c2001-06-06 17:56:09 +00001980 redir->word.gl_pathv=NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00001981 if (last_redir) {
1982 last_redir->next=redir;
1983 } else {
1984 child->redirects=redir;
1985 }
1986
1987 redir->type=style;
1988 redir->fd= (fd==-1) ? redir_table[style].default_fd : fd ;
1989
1990 debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
1991
1992 /* Check for a '2>&1' type redirect */
1993 redir->dup = redirect_dup_num(input);
1994 if (redir->dup == -2) return 1; /* syntax error */
1995 if (redir->dup != -1) {
1996 /* Erik had a check here that the file descriptor in question
Eric Andersen83a2ae22001-05-07 17:59:25 +00001997 * is legit; I postpone that to "run time"
1998 * A "-" representation of "close me" shows up as a -3 here */
Eric Andersen25f27032001-04-26 23:22:31 +00001999 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
2000 } else {
2001 /* We do _not_ try to open the file that src points to,
2002 * since we need to return and let src be expanded first.
2003 * Set ctx->pending_redirect, so we know what to do at the
2004 * end of the next parsed word.
2005 */
2006 ctx->pending_redirect = redir;
2007 }
2008 return 0;
2009}
2010
2011struct pipe *new_pipe(void) {
2012 struct pipe *pi;
2013 pi = xmalloc(sizeof(struct pipe));
2014 pi->num_progs = 0;
2015 pi->progs = NULL;
2016 pi->next = NULL;
2017 pi->followup = 0; /* invalid */
2018 return pi;
2019}
2020
2021static void initialize_context(struct p_context *ctx)
2022{
2023 ctx->pipe=NULL;
2024 ctx->pending_redirect=NULL;
2025 ctx->child=NULL;
2026 ctx->list_head=new_pipe();
2027 ctx->pipe=ctx->list_head;
2028 ctx->w=RES_NONE;
2029 ctx->stack=NULL;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002030 ctx->old_flag=0;
Eric Andersen25f27032001-04-26 23:22:31 +00002031 done_command(ctx); /* creates the memory for working child */
2032}
2033
2034/* normal return is 0
2035 * if a reserved word is found, and processed, return 1
2036 * should handle if, then, elif, else, fi, for, while, until, do, done.
2037 * case, function, and select are obnoxious, save those for later.
2038 */
2039int reserved_word(o_string *dest, struct p_context *ctx)
2040{
2041 struct reserved_combo {
2042 char *literal;
2043 int code;
2044 long flag;
2045 };
2046 /* Mostly a list of accepted follow-up reserved words.
2047 * FLAG_END means we are done with the sequence, and are ready
2048 * to turn the compound list into a command.
2049 * FLAG_START means the word must start a new compound list.
2050 */
2051 static struct reserved_combo reserved_list[] = {
2052 { "if", RES_IF, FLAG_THEN | FLAG_START },
2053 { "then", RES_THEN, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
2054 { "elif", RES_ELIF, FLAG_THEN },
2055 { "else", RES_ELSE, FLAG_FI },
2056 { "fi", RES_FI, FLAG_END },
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002057 { "for", RES_FOR, FLAG_IN | FLAG_START },
Eric Andersen25f27032001-04-26 23:22:31 +00002058 { "while", RES_WHILE, FLAG_DO | FLAG_START },
2059 { "until", RES_UNTIL, FLAG_DO | FLAG_START },
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002060 { "in", RES_IN, FLAG_DO },
Eric Andersen25f27032001-04-26 23:22:31 +00002061 { "do", RES_DO, FLAG_DONE },
2062 { "done", RES_DONE, FLAG_END }
2063 };
2064 struct reserved_combo *r;
2065 for (r=reserved_list;
2066#define NRES sizeof(reserved_list)/sizeof(struct reserved_combo)
2067 r<reserved_list+NRES; r++) {
2068 if (strcmp(dest->data, r->literal) == 0) {
2069 debug_printf("found reserved word %s, code %d\n",r->literal,r->code);
2070 if (r->flag & FLAG_START) {
2071 struct p_context *new = xmalloc(sizeof(struct p_context));
2072 debug_printf("push stack\n");
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002073 if (ctx->w == RES_IN || ctx->w == RES_FOR) {
2074 syntax();
2075 free(new);
2076 ctx->w = RES_SNTX;
2077 b_reset(dest);
2078 return 1;
2079 }
Eric Andersen25f27032001-04-26 23:22:31 +00002080 *new = *ctx; /* physical copy */
2081 initialize_context(ctx);
2082 ctx->stack=new;
2083 } else if ( ctx->w == RES_NONE || ! (ctx->old_flag & (1<<r->code))) {
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002084 syntax();
2085 ctx->w = RES_SNTX;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002086 b_reset(dest);
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002087 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002088 }
2089 ctx->w=r->code;
2090 ctx->old_flag = r->flag;
2091 if (ctx->old_flag & FLAG_END) {
2092 struct p_context *old;
2093 debug_printf("pop stack\n");
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002094 done_pipe(ctx,PIPE_SEQ);
Eric Andersen25f27032001-04-26 23:22:31 +00002095 old = ctx->stack;
2096 old->child->group = ctx->list_head;
Eric Andersen04407e52001-06-07 16:42:05 +00002097 old->child->subshell = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00002098 *ctx = *old; /* physical copy */
2099 free(old);
Eric Andersen25f27032001-04-26 23:22:31 +00002100 }
2101 b_reset (dest);
2102 return 1;
2103 }
2104 }
2105 return 0;
2106}
2107
2108/* normal return is 0.
2109 * Syntax or xglob errors return 1. */
2110static int done_word(o_string *dest, struct p_context *ctx)
2111{
2112 struct child_prog *child=ctx->child;
2113 glob_t *glob_target;
2114 int gr, flags = 0;
2115
2116 debug_printf("done_word: %s %p\n", dest->data, child);
2117 if (dest->length == 0 && !dest->nonnull) {
2118 debug_printf(" true null, ignored\n");
2119 return 0;
2120 }
2121 if (ctx->pending_redirect) {
2122 glob_target = &ctx->pending_redirect->word;
2123 } else {
2124 if (child->group) {
2125 syntax();
2126 return 1; /* syntax error, groups and arglists don't mix */
2127 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002128 if (!child->argv && (ctx->type & FLAG_PARSE_SEMICOLON)) {
Eric Andersen25f27032001-04-26 23:22:31 +00002129 debug_printf("checking %s for reserved-ness\n",dest->data);
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002130 if (reserved_word(dest,ctx)) return ctx->w==RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00002131 }
2132 glob_target = &child->glob_result;
2133 if (child->argv) flags |= GLOB_APPEND;
2134 }
2135 gr = xglob(dest, flags, glob_target);
2136 if (gr != 0) return 1;
2137
2138 b_reset(dest);
2139 if (ctx->pending_redirect) {
2140 ctx->pending_redirect=NULL;
2141 if (glob_target->gl_pathc != 1) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002142 bb_error_msg("ambiguous redirect");
Eric Andersen25f27032001-04-26 23:22:31 +00002143 return 1;
2144 }
2145 } else {
2146 child->argv = glob_target->gl_pathv;
2147 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002148 if (ctx->w == RES_FOR) {
2149 done_word(dest,ctx);
2150 done_pipe(ctx,PIPE_SEQ);
2151 }
Eric Andersen25f27032001-04-26 23:22:31 +00002152 return 0;
2153}
2154
2155/* The only possible error here is out of memory, in which case
2156 * xmalloc exits. */
2157static int done_command(struct p_context *ctx)
2158{
2159 /* The child is really already in the pipe structure, so
2160 * advance the pipe counter and make a new, null child.
2161 * Only real trickiness here is that the uncommitted
2162 * child structure, to which ctx->child points, is not
2163 * counted in pi->num_progs. */
2164 struct pipe *pi=ctx->pipe;
2165 struct child_prog *prog=ctx->child;
2166
2167 if (prog && prog->group == NULL
2168 && prog->argv == NULL
2169 && prog->redirects == NULL) {
2170 debug_printf("done_command: skipping null command\n");
2171 return 0;
2172 } else if (prog) {
2173 pi->num_progs++;
2174 debug_printf("done_command: num_progs incremented to %d\n",pi->num_progs);
2175 } else {
2176 debug_printf("done_command: initializing\n");
2177 }
2178 pi->progs = xrealloc(pi->progs, sizeof(*pi->progs) * (pi->num_progs+1));
2179
2180 prog = pi->progs + pi->num_progs;
2181 prog->redirects = NULL;
2182 prog->argv = NULL;
2183 prog->is_stopped = 0;
2184 prog->group = NULL;
2185 prog->glob_result.gl_pathv = NULL;
2186 prog->family = pi;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002187 prog->sp = 0;
2188 ctx->child = prog;
2189 prog->type = ctx->type;
Eric Andersen25f27032001-04-26 23:22:31 +00002190
Eric Andersen25f27032001-04-26 23:22:31 +00002191 /* but ctx->pipe and ctx->list_head remain unchanged */
2192 return 0;
2193}
2194
2195static int done_pipe(struct p_context *ctx, pipe_style type)
2196{
2197 struct pipe *new_p;
2198 done_command(ctx); /* implicit closure of previous command */
2199 debug_printf("done_pipe, type %d\n", type);
2200 ctx->pipe->followup = type;
2201 ctx->pipe->r_mode = ctx->w;
2202 new_p=new_pipe();
2203 ctx->pipe->next = new_p;
2204 ctx->pipe = new_p;
2205 ctx->child = NULL;
2206 done_command(ctx); /* set up new pipe to accept commands */
2207 return 0;
2208}
2209
2210/* peek ahead in the in_str to find out if we have a "&n" construct,
2211 * as in "2>&1", that represents duplicating a file descriptor.
2212 * returns either -2 (syntax error), -1 (no &), or the number found.
2213 */
2214static int redirect_dup_num(struct in_str *input)
2215{
2216 int ch, d=0, ok=0;
2217 ch = b_peek(input);
2218 if (ch != '&') return -1;
2219
2220 b_getch(input); /* get the & */
Eric Andersen83a2ae22001-05-07 17:59:25 +00002221 ch=b_peek(input);
2222 if (ch == '-') {
2223 b_getch(input);
2224 return -3; /* "-" represents "close me" */
2225 }
2226 while (isdigit(ch)) {
Eric Andersen25f27032001-04-26 23:22:31 +00002227 d = d*10+(ch-'0');
2228 ok=1;
2229 b_getch(input);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002230 ch = b_peek(input);
Eric Andersen25f27032001-04-26 23:22:31 +00002231 }
2232 if (ok) return d;
2233
Manuel Novoa III cad53642003-03-19 09:13:01 +00002234 bb_error_msg("ambiguous redirect");
Eric Andersen25f27032001-04-26 23:22:31 +00002235 return -2;
2236}
2237
2238/* If a redirect is immediately preceded by a number, that number is
2239 * supposed to tell which file descriptor to redirect. This routine
2240 * looks for such preceding numbers. In an ideal world this routine
2241 * needs to handle all the following classes of redirects...
2242 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
2243 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
2244 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
2245 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
2246 * A -1 output from this program means no valid number was found, so the
2247 * caller should use the appropriate default for this redirection.
2248 */
2249static int redirect_opt_num(o_string *o)
2250{
2251 int num;
2252
2253 if (o->length==0) return -1;
2254 for(num=0; num<o->length; num++) {
2255 if (!isdigit(*(o->data+num))) {
2256 return -1;
2257 }
2258 }
2259 /* reuse num (and save an int) */
2260 num=atoi(o->data);
2261 b_reset(o);
2262 return num;
2263}
2264
2265FILE *generate_stream_from_list(struct pipe *head)
2266{
2267 FILE *pf;
2268#if 1
2269 int pid, channel[2];
Manuel Novoa III cad53642003-03-19 09:13:01 +00002270 if (pipe(channel)<0) bb_perror_msg_and_die("pipe");
Eric Andersen72f9a422001-10-28 05:12:20 +00002271#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
Eric Andersen25f27032001-04-26 23:22:31 +00002272 pid=fork();
Eric Andersen72f9a422001-10-28 05:12:20 +00002273#else
2274 pid=vfork();
2275#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002276 if (pid<0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002277 bb_perror_msg_and_die("fork");
Eric Andersen25f27032001-04-26 23:22:31 +00002278 } else if (pid==0) {
2279 close(channel[0]);
2280 if (channel[1] != 1) {
2281 dup2(channel[1],1);
2282 close(channel[1]);
2283 }
2284#if 0
2285#define SURROGATE "surrogate response"
2286 write(1,SURROGATE,sizeof(SURROGATE));
Eric Andersen94ac2442001-05-22 19:05:18 +00002287 _exit(run_list(head));
Eric Andersen25f27032001-04-26 23:22:31 +00002288#else
Eric Andersen94ac2442001-05-22 19:05:18 +00002289 _exit(run_list_real(head)); /* leaks memory */
Eric Andersen25f27032001-04-26 23:22:31 +00002290#endif
2291 }
2292 debug_printf("forked child %d\n",pid);
2293 close(channel[1]);
2294 pf = fdopen(channel[0],"r");
2295 debug_printf("pipe on FILE *%p\n",pf);
2296#else
Eric Andersenbf7df042001-05-23 22:18:35 +00002297 free_pipe_list(head,0);
Eric Andersen25f27032001-04-26 23:22:31 +00002298 pf=popen("echo surrogate response","r");
2299 debug_printf("started fake pipe on FILE *%p\n",pf);
2300#endif
2301 return pf;
2302}
2303
2304/* this version hacked for testing purposes */
2305/* return code is exit status of the process that is run. */
2306static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end)
2307{
2308 int retcode;
2309 o_string result=NULL_O_STRING;
2310 struct p_context inner;
2311 FILE *p;
2312 struct in_str pipe_str;
2313 initialize_context(&inner);
2314
2315 /* recursion to generate command */
2316 retcode = parse_stream(&result, &inner, input, subst_end);
2317 if (retcode != 0) return retcode; /* syntax error or EOF */
2318 done_word(&result, &inner);
2319 done_pipe(&inner, PIPE_SEQ);
2320 b_free(&result);
2321
2322 p=generate_stream_from_list(inner.list_head);
2323 if (p==NULL) return 1;
2324 mark_open(fileno(p));
2325 setup_file_in_str(&pipe_str, p);
2326
2327 /* now send results of command back into original context */
2328 retcode = parse_stream(dest, ctx, &pipe_str, '\0');
2329 /* XXX In case of a syntax error, should we try to kill the child?
2330 * That would be tough to do right, so just read until EOF. */
2331 if (retcode == 1) {
2332 while (b_getch(&pipe_str)!=EOF) { /* discard */ };
2333 }
2334
2335 debug_printf("done reading from pipe, pclose()ing\n");
2336 /* This is the step that wait()s for the child. Should be pretty
2337 * safe, since we just read an EOF from its stdout. We could try
2338 * to better, by using wait(), and keeping track of background jobs
2339 * at the same time. That would be a lot of work, and contrary
2340 * to the KISS philosophy of this program. */
2341 mark_closed(fileno(p));
2342 retcode=pclose(p);
Eric Andersena15dc152001-05-23 23:46:09 +00002343 free_pipe_list(inner.list_head,0);
Eric Andersen25f27032001-04-26 23:22:31 +00002344 debug_printf("pclosed, retcode=%d\n",retcode);
2345 /* XXX this process fails to trim a single trailing newline */
2346 return retcode;
2347}
2348
2349static int parse_group(o_string *dest, struct p_context *ctx,
2350 struct in_str *input, int ch)
2351{
2352 int rcode, endch=0;
2353 struct p_context sub;
2354 struct child_prog *child = ctx->child;
2355 if (child->argv) {
2356 syntax();
2357 return 1; /* syntax error, groups and arglists don't mix */
2358 }
2359 initialize_context(&sub);
2360 switch(ch) {
2361 case '(': endch=')'; child->subshell=1; break;
2362 case '{': endch='}'; break;
2363 default: syntax(); /* really logic error */
2364 }
2365 rcode=parse_stream(dest,&sub,input,endch);
2366 done_word(dest,&sub); /* finish off the final word in the subcontext */
2367 done_pipe(&sub, PIPE_SEQ); /* and the final command there, too */
2368 child->group = sub.list_head;
2369 return rcode;
2370 /* child remains "open", available for possible redirects */
2371}
2372
2373/* basically useful version until someone wants to get fancier,
2374 * see the bash man page under "Parameter Expansion" */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002375static char *lookup_param(char *src)
Eric Andersen25f27032001-04-26 23:22:31 +00002376{
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002377 char *p=NULL;
2378 if (src) {
2379 p = getenv(src);
Eric Andersenf72f5622001-05-15 23:21:41 +00002380 if (!p)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002381 p = get_local_var(src);
Eric Andersen20a69a72001-05-15 17:24:44 +00002382 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002383 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002384}
2385
2386/* return code: 0 for OK, 1 for syntax error */
2387static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input)
2388{
2389 int i, advance=0;
Eric Andersen25f27032001-04-26 23:22:31 +00002390 char sep[]=" ";
2391 int ch = input->peek(input); /* first character after the $ */
2392 debug_printf("handle_dollar: ch=%c\n",ch);
2393 if (isalpha(ch)) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002394 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2395 ctx->child->sp++;
Eric Andersen25f27032001-04-26 23:22:31 +00002396 while(ch=b_peek(input),isalnum(ch) || ch=='_') {
2397 b_getch(input);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002398 b_addchr(dest,ch);
Eric Andersen25f27032001-04-26 23:22:31 +00002399 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002400 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00002401 } else if (isdigit(ch)) {
2402 i = ch-'0'; /* XXX is $0 special? */
2403 if (i<global_argc) {
2404 parse_string(dest, ctx, global_argv[i]); /* recursion */
2405 }
2406 advance = 1;
2407 } else switch (ch) {
2408 case '$':
2409 b_adduint(dest,getpid());
2410 advance = 1;
2411 break;
2412 case '!':
2413 if (last_bg_pid > 0) b_adduint(dest, last_bg_pid);
2414 advance = 1;
2415 break;
2416 case '?':
2417 b_adduint(dest,last_return_code);
2418 advance = 1;
2419 break;
2420 case '#':
2421 b_adduint(dest,global_argc ? global_argc-1 : 0);
2422 advance = 1;
2423 break;
2424 case '{':
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002425 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2426 ctx->child->sp++;
Eric Andersen25f27032001-04-26 23:22:31 +00002427 b_getch(input);
2428 /* XXX maybe someone will try to escape the '}' */
2429 while(ch=b_getch(input),ch!=EOF && ch!='}') {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002430 b_addchr(dest,ch);
Eric Andersen25f27032001-04-26 23:22:31 +00002431 }
2432 if (ch != '}') {
2433 syntax();
2434 return 1;
2435 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002436 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00002437 break;
2438 case '(':
Matt Kraai9f8caf12001-05-02 16:26:12 +00002439 b_getch(input);
Eric Andersen25f27032001-04-26 23:22:31 +00002440 process_command_subs(dest, ctx, input, ')');
2441 break;
2442 case '*':
2443 sep[0]=ifs[0];
2444 for (i=1; i<global_argc; i++) {
2445 parse_string(dest, ctx, global_argv[i]);
2446 if (i+1 < global_argc) parse_string(dest, ctx, sep);
2447 }
2448 break;
2449 case '@':
2450 case '-':
2451 case '_':
2452 /* still unhandled, but should be eventually */
Manuel Novoa III cad53642003-03-19 09:13:01 +00002453 bb_error_msg("unhandled syntax: $%c",ch);
Eric Andersen25f27032001-04-26 23:22:31 +00002454 return 1;
2455 break;
2456 default:
2457 b_addqchr(dest,'$',dest->quote);
2458 }
2459 /* Eat the character if the flag was set. If the compiler
2460 * is smart enough, we could substitute "b_getch(input);"
2461 * for all the "advance = 1;" above, and also end up with
2462 * a nice size-optimized program. Hah! That'll be the day.
2463 */
2464 if (advance) b_getch(input);
2465 return 0;
2466}
2467
2468int parse_string(o_string *dest, struct p_context *ctx, const char *src)
2469{
2470 struct in_str foo;
2471 setup_string_in_str(&foo, src);
2472 return parse_stream(dest, ctx, &foo, '\0');
2473}
2474
2475/* return code is 0 for normal exit, 1 for syntax error */
2476int parse_stream(o_string *dest, struct p_context *ctx,
2477 struct in_str *input, int end_trigger)
2478{
2479 unsigned int ch, m;
2480 int redir_fd;
2481 redir_type redir_style;
2482 int next;
2483
2484 /* Only double-quote state is handled in the state variable dest->quote.
2485 * A single-quote triggers a bypass of the main loop until its mate is
2486 * found. When recursing, quote state is passed in via dest->quote. */
2487
2488 debug_printf("parse_stream, end_trigger=%d\n",end_trigger);
2489 while ((ch=b_getch(input))!=EOF) {
2490 m = map[ch];
2491 next = (ch == '\n') ? 0 : b_peek(input);
2492 debug_printf("parse_stream: ch=%c (%d) m=%d quote=%d\n",
2493 ch,ch,m,dest->quote);
2494 if (m==0 || ((m==1 || m==2) && dest->quote)) {
2495 b_addqchr(dest, ch, dest->quote);
Eric Andersenaac75e52001-04-30 18:18:45 +00002496 } else {
2497 if (m==2) { /* unquoted IFS */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002498 if (done_word(dest, ctx)) {
2499 return 1;
2500 }
Matt Kraai20a30692001-05-02 17:52:49 +00002501 /* If we aren't performing a substitution, treat a newline as a
2502 * command separator. */
2503 if (end_trigger != '\0' && ch=='\n')
2504 done_pipe(ctx,PIPE_SEQ);
Eric Andersenaac75e52001-04-30 18:18:45 +00002505 }
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002506 if (ch == end_trigger && !dest->quote && ctx->w==RES_NONE) {
Matt Kraaibdd4ece2001-05-23 17:43:00 +00002507 debug_printf("leaving parse_stream (triggered)\n");
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002508 return 0;
2509 }
Eric Andersen25f27032001-04-26 23:22:31 +00002510#if 0
2511 if (ch=='\n') {
2512 /* Yahoo! Time to run with it! */
2513 done_pipe(ctx,PIPE_SEQ);
2514 run_list(ctx->list_head);
2515 initialize_context(ctx);
2516 }
2517#endif
Eric Andersenaac75e52001-04-30 18:18:45 +00002518 if (m!=2) switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00002519 case '#':
2520 if (dest->length == 0 && !dest->quote) {
2521 while(ch=b_peek(input),ch!=EOF && ch!='\n') { b_getch(input); }
2522 } else {
2523 b_addqchr(dest, ch, dest->quote);
2524 }
2525 break;
2526 case '\\':
2527 if (next == EOF) {
2528 syntax();
2529 return 1;
2530 }
2531 b_addqchr(dest, '\\', dest->quote);
2532 b_addqchr(dest, b_getch(input), dest->quote);
2533 break;
2534 case '$':
2535 if (handle_dollar(dest, ctx, input)!=0) return 1;
2536 break;
2537 case '\'':
2538 dest->nonnull = 1;
2539 while(ch=b_getch(input),ch!=EOF && ch!='\'') {
2540 b_addchr(dest,ch);
2541 }
2542 if (ch==EOF) {
2543 syntax();
2544 return 1;
2545 }
2546 break;
2547 case '"':
2548 dest->nonnull = 1;
2549 dest->quote = !dest->quote;
2550 break;
2551 case '`':
2552 process_command_subs(dest, ctx, input, '`');
2553 break;
2554 case '>':
2555 redir_fd = redirect_opt_num(dest);
2556 done_word(dest, ctx);
2557 redir_style=REDIRECT_OVERWRITE;
2558 if (next == '>') {
2559 redir_style=REDIRECT_APPEND;
2560 b_getch(input);
2561 } else if (next == '(') {
2562 syntax(); /* until we support >(list) Process Substitution */
2563 return 1;
2564 }
2565 setup_redirect(ctx, redir_fd, redir_style, input);
2566 break;
2567 case '<':
2568 redir_fd = redirect_opt_num(dest);
2569 done_word(dest, ctx);
2570 redir_style=REDIRECT_INPUT;
2571 if (next == '<') {
2572 redir_style=REDIRECT_HEREIS;
2573 b_getch(input);
2574 } else if (next == '>') {
2575 redir_style=REDIRECT_IO;
2576 b_getch(input);
2577 } else if (next == '(') {
2578 syntax(); /* until we support <(list) Process Substitution */
2579 return 1;
2580 }
2581 setup_redirect(ctx, redir_fd, redir_style, input);
2582 break;
2583 case ';':
2584 done_word(dest, ctx);
2585 done_pipe(ctx,PIPE_SEQ);
2586 break;
2587 case '&':
2588 done_word(dest, ctx);
2589 if (next=='&') {
2590 b_getch(input);
2591 done_pipe(ctx,PIPE_AND);
2592 } else {
2593 done_pipe(ctx,PIPE_BG);
2594 }
2595 break;
2596 case '|':
2597 done_word(dest, ctx);
2598 if (next=='|') {
2599 b_getch(input);
2600 done_pipe(ctx,PIPE_OR);
2601 } else {
2602 /* we could pick up a file descriptor choice here
2603 * with redirect_opt_num(), but bash doesn't do it.
2604 * "echo foo 2| cat" yields "foo 2". */
2605 done_command(ctx);
2606 }
2607 break;
2608 case '(':
2609 case '{':
2610 if (parse_group(dest, ctx, input, ch)!=0) return 1;
2611 break;
2612 case ')':
2613 case '}':
2614 syntax(); /* Proper use of this character caught by end_trigger */
2615 return 1;
2616 break;
2617 default:
2618 syntax(); /* this is really an internal logic error */
2619 return 1;
Eric Andersenaac75e52001-04-30 18:18:45 +00002620 }
Eric Andersen25f27032001-04-26 23:22:31 +00002621 }
2622 }
2623 /* complain if quote? No, maybe we just finished a command substitution
2624 * that was quoted. Example:
2625 * $ echo "`cat foo` plus more"
2626 * and we just got the EOF generated by the subshell that ran "cat foo"
2627 * The only real complaint is if we got an EOF when end_trigger != '\0',
2628 * that is, we were really supposed to get end_trigger, and never got
2629 * one before the EOF. Can't use the standard "syntax error" return code,
2630 * so that parse_stream_outer can distinguish the EOF and exit smoothly. */
Matt Kraaibdd4ece2001-05-23 17:43:00 +00002631 debug_printf("leaving parse_stream (EOF)\n");
Eric Andersen25f27032001-04-26 23:22:31 +00002632 if (end_trigger != '\0') return -1;
2633 return 0;
2634}
2635
2636void mapset(const unsigned char *set, int code)
2637{
2638 const unsigned char *s;
2639 for (s=set; *s; s++) map[*s] = code;
2640}
2641
2642void update_ifs_map(void)
2643{
2644 /* char *ifs and char map[256] are both globals. */
2645 ifs = getenv("IFS");
2646 if (ifs == NULL) ifs=" \t\n";
2647 /* Precompute a list of 'flow through' behavior so it can be treated
2648 * quickly up front. Computation is necessary because of IFS.
2649 * Special case handling of IFS == " \t\n" is not implemented.
2650 * The map[] array only really needs two bits each, and on most machines
2651 * that would be faster because of the reduced L1 cache footprint.
2652 */
Eric Andersenaeb44c42001-05-22 20:29:00 +00002653 memset(map,0,sizeof(map)); /* most characters flow through always */
2654 mapset("\\$'\"`", 3); /* never flow through */
2655 mapset("<>;&|(){}#", 1); /* flow through if quoted */
2656 mapset(ifs, 2); /* also flow through if quoted */
Eric Andersen25f27032001-04-26 23:22:31 +00002657}
2658
2659/* most recursion does not come through here, the exeception is
2660 * from builtin_source() */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002661int parse_stream_outer(struct in_str *inp, int flag)
Eric Andersen25f27032001-04-26 23:22:31 +00002662{
2663
2664 struct p_context ctx;
2665 o_string temp=NULL_O_STRING;
2666 int rcode;
2667 do {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002668 ctx.type = flag;
Eric Andersen25f27032001-04-26 23:22:31 +00002669 initialize_context(&ctx);
2670 update_ifs_map();
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002671 if (!(flag & FLAG_PARSE_SEMICOLON) || (flag & FLAG_REPARSING)) mapset(";$&|", 0);
Eric Andersen25f27032001-04-26 23:22:31 +00002672 inp->promptmode=1;
2673 rcode = parse_stream(&temp, &ctx, inp, '\n');
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002674 if (rcode != 1 && ctx.old_flag != 0) {
2675 syntax();
2676 }
2677 if (rcode != 1 && ctx.old_flag == 0) {
2678 done_word(&temp, &ctx);
2679 done_pipe(&ctx,PIPE_SEQ);
2680 run_list(ctx.list_head);
2681 } else {
2682 if (ctx.old_flag != 0) {
2683 free(ctx.stack);
2684 b_reset(&temp);
2685 }
2686 temp.nonnull = 0;
2687 temp.quote = 0;
2688 inp->p = NULL;
2689 free_pipe_list(ctx.list_head,0);
2690 }
Eric Andersena813afc2001-05-24 16:19:36 +00002691 b_free(&temp);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002692 } while (rcode != -1 && !(flag & FLAG_EXIT_FROM_LOOP)); /* loop on syntax errors, return on EOF */
Eric Andersen25f27032001-04-26 23:22:31 +00002693 return 0;
2694}
2695
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002696static int parse_string_outer(const char *s, int flag)
Eric Andersen25f27032001-04-26 23:22:31 +00002697{
2698 struct in_str input;
2699 setup_string_in_str(&input, s);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002700 return parse_stream_outer(&input, flag);
Eric Andersen25f27032001-04-26 23:22:31 +00002701}
2702
2703static int parse_file_outer(FILE *f)
2704{
2705 int rcode;
2706 struct in_str input;
2707 setup_file_in_str(&input, f);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002708 rcode = parse_stream_outer(&input, FLAG_PARSE_SEMICOLON);
Eric Andersen25f27032001-04-26 23:22:31 +00002709 return rcode;
2710}
2711
Eric Andersen6c947d22001-06-25 22:24:38 +00002712/* Make sure we have a controlling tty. If we get started under a job
2713 * aware app (like bash for example), make sure we are now in charge so
2714 * we don't fight over who gets the foreground */
Eric Anderseneaecbf32001-10-31 10:41:31 +00002715static void setup_job_control(void)
Eric Andersen52a97ca2001-06-22 06:49:26 +00002716{
Eric Andersen6c947d22001-06-25 22:24:38 +00002717 static pid_t shell_pgrp;
2718 /* Loop until we are in the foreground. */
2719 while (tcgetpgrp (shell_terminal) != (shell_pgrp = getpgrp ()))
2720 kill (- shell_pgrp, SIGTTIN);
Eric Andersen52a97ca2001-06-22 06:49:26 +00002721
Eric Andersen6c947d22001-06-25 22:24:38 +00002722 /* Ignore interactive and job-control signals. */
2723 signal(SIGINT, SIG_IGN);
2724 signal(SIGQUIT, SIG_IGN);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002725 signal(SIGTERM, SIG_IGN);
Eric Andersen6c947d22001-06-25 22:24:38 +00002726 signal(SIGTSTP, SIG_IGN);
2727 signal(SIGTTIN, SIG_IGN);
2728 signal(SIGTTOU, SIG_IGN);
Eric Andersen028b65b2001-06-28 01:10:11 +00002729 signal(SIGCHLD, SIG_IGN);
Eric Andersen6c947d22001-06-25 22:24:38 +00002730
2731 /* Put ourselves in our own process group. */
Eric Andersen5c66d062001-06-26 23:16:31 +00002732 setsid();
Eric Andersen6c947d22001-06-25 22:24:38 +00002733 shell_pgrp = getpid ();
Eric Andersena90f20b2001-06-26 23:00:21 +00002734 setpgid (shell_pgrp, shell_pgrp);
Eric Andersen6c947d22001-06-25 22:24:38 +00002735
2736 /* Grab control of the terminal. */
2737 tcsetpgrp(shell_terminal, shell_pgrp);
2738}
Eric Andersenada18ff2001-05-21 16:18:22 +00002739
Matt Kraai2d91deb2001-08-01 17:21:35 +00002740int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002741{
2742 int opt;
2743 FILE *input;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002744 char **e = environ;
Eric Andersenbc604a22001-05-16 05:24:03 +00002745
Eric Andersen25f27032001-04-26 23:22:31 +00002746 /* XXX what should these be while sourcing /etc/profile? */
2747 global_argc = argc;
2748 global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00002749
Matt Kraai2d91deb2001-08-01 17:21:35 +00002750 /* (re?) initialize globals. Sometimes hush_main() ends up calling
2751 * hush_main(), therefore we cannot rely on the BSS to zero out this
Eric Andersen94ac2442001-05-22 19:05:18 +00002752 * stuff. Reset these to 0 every time. */
2753 ifs = NULL;
Eric Andersenaeb44c42001-05-22 20:29:00 +00002754 /* map[] is taken care of with call to update_ifs_map() */
Eric Andersen94ac2442001-05-22 19:05:18 +00002755 fake_mode = 0;
2756 interactive = 0;
2757 close_me_head = NULL;
2758 last_bg_pid = 0;
Eric Andersen52a97ca2001-06-22 06:49:26 +00002759 job_list = NULL;
Eric Andersenc798b072001-06-22 06:23:03 +00002760 last_jobid = 0;
Eric Andersen94ac2442001-05-22 19:05:18 +00002761
2762 /* Initialize some more globals to non-zero values */
2763 set_cwd();
Eric Andersenbdfd0d72001-10-24 05:00:29 +00002764#ifdef CONFIG_FEATURE_COMMAND_EDITING
Eric Andersen94ac2442001-05-22 19:05:18 +00002765 cmdedit_set_initial_prompt();
2766#else
2767 PS1 = NULL;
2768#endif
2769 PS2 = "> ";
2770
2771 /* initialize our shell local variables with the values
2772 * currently living in the environment */
2773 if (e) {
2774 for (; *e; e++)
2775 set_local_var(*e, 2); /* without call putenv() */
2776 }
2777
2778 last_return_code=EXIT_SUCCESS;
2779
Eric Andersen25f27032001-04-26 23:22:31 +00002780
2781 if (argv[0] && argv[0][0] == '-') {
2782 debug_printf("\nsourcing /etc/profile\n");
Eric Andersena90f20b2001-06-26 23:00:21 +00002783 if ((input = fopen("/etc/profile", "r")) != NULL) {
2784 mark_open(fileno(input));
2785 parse_file_outer(input);
2786 mark_closed(fileno(input));
2787 fclose(input);
2788 }
Eric Andersen25f27032001-04-26 23:22:31 +00002789 }
2790 input=stdin;
2791
Eric Andersen25f27032001-04-26 23:22:31 +00002792 while ((opt = getopt(argc, argv, "c:xif")) > 0) {
2793 switch (opt) {
2794 case 'c':
2795 {
2796 global_argv = argv+optind;
2797 global_argc = argc-optind;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002798 opt = parse_string_outer(optarg, FLAG_PARSE_SEMICOLON);
Eric Andersene67c3ce2001-05-02 02:09:36 +00002799 goto final_return;
Eric Andersen25f27032001-04-26 23:22:31 +00002800 }
2801 break;
2802 case 'i':
2803 interactive++;
2804 break;
2805 case 'f':
2806 fake_mode++;
2807 break;
2808 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002809#ifndef BB_VER
Eric Andersen25f27032001-04-26 23:22:31 +00002810 fprintf(stderr, "Usage: sh [FILE]...\n"
2811 " or: sh -c command [args]...\n\n");
2812 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002813#else
Manuel Novoa III cad53642003-03-19 09:13:01 +00002814 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002815#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002816 }
2817 }
2818 /* A shell is interactive if the `-i' flag was given, or if all of
2819 * the following conditions are met:
2820 * no -c command
2821 * no arguments remaining or the -s flag given
2822 * standard input is a terminal
2823 * standard output is a terminal
2824 * Refer to Posix.2, the description of the `sh' utility. */
2825 if (argv[optind]==NULL && input==stdin &&
2826 isatty(fileno(stdin)) && isatty(fileno(stdout))) {
2827 interactive++;
2828 }
Eric Andersene67c3ce2001-05-02 02:09:36 +00002829
2830 debug_printf("\ninteractive=%d\n", interactive);
Eric Andersen25f27032001-04-26 23:22:31 +00002831 if (interactive) {
2832 /* Looks like they want an interactive shell */
Eric Andersenbdfd0d72001-10-24 05:00:29 +00002833#ifndef CONFIG_FEATURE_SH_EXTRA_QUIET
Eric Andersend63dee42001-10-19 00:22:23 +00002834 printf( "\n\n" BB_BANNER " hush - the humble shell v0.01 (testing)\n");
2835 printf( "Enter 'help' for a list of built-in commands.\n\n");
2836#endif
Eric Andersen52a97ca2001-06-22 06:49:26 +00002837 setup_job_control();
Eric Andersenada18ff2001-05-21 16:18:22 +00002838 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00002839
Eric Andersenada18ff2001-05-21 16:18:22 +00002840 if (argv[optind]==NULL) {
Eric Andersene67c3ce2001-05-02 02:09:36 +00002841 opt=parse_file_outer(stdin);
2842 goto final_return;
Eric Andersen25f27032001-04-26 23:22:31 +00002843 }
Eric Andersen25f27032001-04-26 23:22:31 +00002844
2845 debug_printf("\nrunning script '%s'\n", argv[optind]);
2846 global_argv = argv+optind;
2847 global_argc = argc-optind;
Manuel Novoa III cad53642003-03-19 09:13:01 +00002848 input = bb_xfopen(argv[optind], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00002849 opt = parse_file_outer(input);
2850
Eric Andersenbdfd0d72001-10-24 05:00:29 +00002851#ifdef CONFIG_FEATURE_CLEAN_UP
Eric Andersenaeb44c42001-05-22 20:29:00 +00002852 fclose(input);
Manuel Novoa III cad53642003-03-19 09:13:01 +00002853 if (cwd && cwd != bb_msg_unknown)
Eric Andersenaeb44c42001-05-22 20:29:00 +00002854 free((char*)cwd);
2855 {
2856 struct variables *cur, *tmp;
2857 for(cur = top_vars; cur; cur = tmp) {
2858 tmp = cur->next;
2859 if (!cur->flg_read_only) {
2860 free(cur->name);
2861 free(cur->value);
2862 free(cur);
2863 }
2864 }
2865 }
Eric Andersen25f27032001-04-26 23:22:31 +00002866#endif
2867
Eric Andersene67c3ce2001-05-02 02:09:36 +00002868final_return:
2869 return(opt?opt:last_return_code);
Eric Andersen25f27032001-04-26 23:22:31 +00002870}
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002871
2872static char *insert_var_value(char *inp)
2873{
2874 int res_str_len = 0;
2875 int len;
2876 int done = 0;
2877 char *p, *p1, *res_str = NULL;
2878
2879 while ((p = strchr(inp, SPECIAL_VAR_SYMBOL))) {
2880 if (p != inp) {
2881 len = p - inp;
2882 res_str = xrealloc(res_str, (res_str_len + len));
2883 strncpy((res_str + res_str_len), inp, len);
2884 res_str_len += len;
2885 }
2886 inp = ++p;
2887 p = strchr(inp, SPECIAL_VAR_SYMBOL);
2888 *p = '\0';
2889 if ((p1 = lookup_param(inp))) {
2890 len = res_str_len + strlen(p1);
2891 res_str = xrealloc(res_str, (1 + len));
2892 strcpy((res_str + res_str_len), p1);
2893 res_str_len = len;
2894 }
2895 *p = SPECIAL_VAR_SYMBOL;
2896 inp = ++p;
2897 done = 1;
2898 }
2899 if (done) {
2900 res_str = xrealloc(res_str, (1 + res_str_len + strlen(inp)));
2901 strcpy((res_str + res_str_len), inp);
2902 while ((p = strchr(res_str, '\n'))) {
2903 *p = ' ';
2904 }
2905 }
2906 return (res_str == NULL) ? inp : res_str;
2907}
2908
2909static char **make_list_in(char **inp, char *name)
2910{
2911 int len, i;
2912 int name_len = strlen(name);
2913 int n = 0;
2914 char **list;
2915 char *p1, *p2, *p3;
2916
2917 /* create list of variable values */
2918 list = xmalloc(sizeof(*list));
2919 for (i = 0; inp[i]; i++) {
2920 p3 = insert_var_value(inp[i]);
2921 p1 = p3;
2922 while (*p1) {
2923 if ((*p1 == ' ')) {
2924 p1++;
2925 continue;
2926 }
2927 if ((p2 = strchr(p1, ' '))) {
2928 len = p2 - p1;
2929 } else {
2930 len = strlen(p1);
2931 p2 = p1 + len;
2932 }
2933 /* we use n + 2 in realloc for list,because we add
2934 * new element and then we will add NULL element */
2935 list = xrealloc(list, sizeof(*list) * (n + 2));
2936 list[n] = xmalloc(2 + name_len + len);
2937 strcpy(list[n], name);
2938 strcat(list[n], "=");
2939 strncat(list[n], p1, len);
2940 list[n++][name_len + len + 1] = '\0';
2941 p1 = p2;
2942 }
2943 if (p3 != inp[i]) free(p3);
2944 }
2945 list[n] = NULL;
2946 return list;
2947}
2948
2949/* Make new string for parser */
2950static char * make_string(char ** inp)
2951{
2952 char *p;
2953 char *str = NULL;
2954 int n;
2955 int len = 2;
2956
2957 for (n = 0; inp[n]; n++) {
2958 p = insert_var_value(inp[n]);
2959 str = xrealloc(str, (len + strlen(p)));
2960 if (n) {
2961 strcat(str, " ");
2962 } else {
2963 *str = '\0';
2964 }
2965 strcat(str, p);
2966 len = strlen(str) + 3;
2967 if (p != inp[n]) free(p);
2968 }
2969 len = strlen(str);
2970 *(str + len) = '\n';
2971 *(str + len + 1) = '\0';
2972 return str;
2973}