blob: 84818ffa312f973fd6a52ac65af9e1d77937b7aa [file] [log] [blame]
Eric Andersen25f27032001-04-26 23:22:31 +00001/* vi: set sw=4 ts=4: */
2/*
3 * sh.c -- a prototype Bourne shell grammar parser
4 * Intended to follow the original Thompson and Ritchie
5 * "small and simple is beautiful" philosophy, which
6 * incidentally is a good match to today's BusyBox.
7 *
8 * Copyright (C) 2000,2001 Larry Doolittle <larry@doolittle.boa.org>
9 *
10 * Credits:
11 * The parser routines proper are all original material, first
Eric Andersencb81e642003-07-14 21:21:08 +000012 * written Dec 2000 and Jan 2001 by Larry Doolittle. The
13 * execution engine, the builtins, and much of the underlying
14 * support has been adapted from busybox-0.49pre's lash, which is
15 * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
16 * written by Erik Andersen <andersen@codepoet.org>. That, in turn,
17 * is based in part on ladsh.c, by Michael K. Johnson and Erik W.
18 * Troan, which they placed in the public domain. I don't know
19 * how much of the Johnson/Troan code has survived the repeated
20 * rewrites.
21 *
Eric Andersen25f27032001-04-26 23:22:31 +000022 * Other credits:
23 * simple_itoa() was lifted from boa-0.93.15
24 * b_addchr() derived from similar w_addchar function in glibc-2.2
25 * setup_redirect(), redirect_opt_num(), and big chunks of main()
26 * and many builtins derived from contributions by Erik Andersen
27 * miscellaneous bugfixes from Matt Kraai
28 *
29 * There are two big (and related) architecture differences between
30 * this parser and the lash parser. One is that this version is
31 * actually designed from the ground up to understand nearly all
32 * of the Bourne grammar. The second, consequential change is that
33 * the parser and input reader have been turned inside out. Now,
34 * the parser is in control, and asks for input as needed. The old
35 * way had the input reader in control, and it asked for parsing to
36 * take place as needed. The new way makes it much easier to properly
37 * handle the recursion implicit in the various substitutions, especially
38 * across continuation lines.
39 *
40 * Bash grammar not implemented: (how many of these were in original sh?)
41 * $@ (those sure look like weird quoting rules)
42 * $_
43 * ! negation operator for pipes
44 * &> and >& redirection of stdout+stderr
45 * Brace Expansion
46 * Tilde Expansion
47 * fancy forms of Parameter Expansion
Eric Andersen78a7c992001-05-15 16:30:25 +000048 * aliases
Eric Andersen25f27032001-04-26 23:22:31 +000049 * Arithmetic Expansion
50 * <(list) and >(list) Process Substitution
Eric Andersen83a2ae22001-05-07 17:59:25 +000051 * reserved words: case, esac, select, function
Eric Andersen25f27032001-04-26 23:22:31 +000052 * Here Documents ( << word )
53 * Functions
54 * Major bugs:
55 * job handling woefully incomplete and buggy
56 * reserved word execution woefully incomplete and buggy
Eric Andersen25f27032001-04-26 23:22:31 +000057 * to-do:
Eric Andersen83a2ae22001-05-07 17:59:25 +000058 * port selected bugfixes from post-0.49 busybox lash - done?
59 * finish implementing reserved words: for, while, until, do, done
60 * change { and } from special chars to reserved words
61 * builtins: break, continue, eval, return, set, trap, ulimit
62 * test magic exec
Eric Andersen25f27032001-04-26 23:22:31 +000063 * handle children going into background
64 * clean up recognition of null pipes
Eric Andersen25f27032001-04-26 23:22:31 +000065 * check setting of global_argc and global_argv
66 * control-C handling, probably with longjmp
Eric Andersen25f27032001-04-26 23:22:31 +000067 * follow IFS rules more precisely, including update semantics
Eric Andersen25f27032001-04-26 23:22:31 +000068 * figure out what to do with backslash-newline
69 * explain why we use signal instead of sigaction
70 * propagate syntax errors, die on resource errors?
71 * continuation lines, both explicit and implicit - done?
72 * memory leak finding and plugging - done?
73 * more testing, especially quoting rules and redirection
Eric Andersen78a7c992001-05-15 16:30:25 +000074 * document how quoting rules not precisely followed for variable assignments
Eric Andersen25f27032001-04-26 23:22:31 +000075 * maybe change map[] to use 2-bit entries
76 * (eventually) remove all the printf's
Eric Andersen25f27032001-04-26 23:22:31 +000077 *
78 * This program is free software; you can redistribute it and/or modify
79 * it under the terms of the GNU General Public License as published by
80 * the Free Software Foundation; either version 2 of the License, or
81 * (at your option) any later version.
82 *
83 * This program is distributed in the hope that it will be useful,
84 * but WITHOUT ANY WARRANTY; without even the implied warranty of
85 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
86 * General Public License for more details.
87 *
88 * You should have received a copy of the GNU General Public License
89 * along with this program; if not, write to the Free Software
90 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
91 */
92#include <ctype.h> /* isalpha, isdigit */
93#include <unistd.h> /* getpid */
94#include <stdlib.h> /* getenv, atoi */
95#include <string.h> /* strchr */
96#include <stdio.h> /* popen etc. */
97#include <glob.h> /* glob, of course */
98#include <stdarg.h> /* va_list */
99#include <errno.h>
100#include <fcntl.h>
101#include <getopt.h> /* should be pretty obvious */
102
Eric Andersen83a2ae22001-05-07 17:59:25 +0000103#include <sys/stat.h> /* ulimit */
Eric Andersen25f27032001-04-26 23:22:31 +0000104#include <sys/types.h>
105#include <sys/wait.h>
106#include <signal.h>
107
108/* #include <dmalloc.h> */
Eric Andersen4ed5e372001-05-01 01:49:50 +0000109/* #define DEBUG_SHELL */
Eric Andersen25f27032001-04-26 23:22:31 +0000110
Eric Andersenda15a492002-12-06 21:37:08 +0000111#if 1
Eric Andersen25f27032001-04-26 23:22:31 +0000112#include "busybox.h"
113#include "cmdedit.h"
114#else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000115#define bb_applet_name "hush"
Eric Andersenaf44a0e2001-04-27 07:26:12 +0000116#include "standalone.h"
Matt Kraai2d91deb2001-08-01 17:21:35 +0000117#define hush_main main
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000118#undef CONFIG_FEATURE_SH_FANCY_PROMPT
119#define BB_BANNER
Eric Andersenaf44a0e2001-04-27 07:26:12 +0000120#endif
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000121#define SPECIAL_VAR_SYMBOL 03
122#define FLAG_EXIT_FROM_LOOP 1
123#define FLAG_PARSE_SEMICOLON (1 << 1) /* symbol ';' is special for parser */
124#define FLAG_REPARSING (1 << 2) /* >=2nd pass */
Eric Andersen25f27032001-04-26 23:22:31 +0000125
126typedef enum {
127 REDIRECT_INPUT = 1,
128 REDIRECT_OVERWRITE = 2,
129 REDIRECT_APPEND = 3,
130 REDIRECT_HEREIS = 4,
131 REDIRECT_IO = 5
132} redir_type;
133
134/* The descrip member of this structure is only used to make debugging
135 * output pretty */
136struct {int mode; int default_fd; char *descrip;} redir_table[] = {
137 { 0, 0, "()" },
138 { O_RDONLY, 0, "<" },
139 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
140 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
141 { O_RDONLY, -1, "<<" },
142 { O_RDWR, 1, "<>" }
143};
144
145typedef enum {
146 PIPE_SEQ = 1,
147 PIPE_AND = 2,
148 PIPE_OR = 3,
149 PIPE_BG = 4,
150} pipe_style;
151
152/* might eventually control execution */
153typedef enum {
154 RES_NONE = 0,
155 RES_IF = 1,
156 RES_THEN = 2,
157 RES_ELIF = 3,
158 RES_ELSE = 4,
159 RES_FI = 5,
160 RES_FOR = 6,
161 RES_WHILE = 7,
162 RES_UNTIL = 8,
163 RES_DO = 9,
164 RES_DONE = 10,
Eric Andersenaf44a0e2001-04-27 07:26:12 +0000165 RES_XXXX = 11,
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000166 RES_IN = 12,
167 RES_SNTX = 13
Eric Andersen25f27032001-04-26 23:22:31 +0000168} reserved_style;
169#define FLAG_END (1<<RES_NONE)
170#define FLAG_IF (1<<RES_IF)
171#define FLAG_THEN (1<<RES_THEN)
172#define FLAG_ELIF (1<<RES_ELIF)
173#define FLAG_ELSE (1<<RES_ELSE)
174#define FLAG_FI (1<<RES_FI)
175#define FLAG_FOR (1<<RES_FOR)
176#define FLAG_WHILE (1<<RES_WHILE)
177#define FLAG_UNTIL (1<<RES_UNTIL)
178#define FLAG_DO (1<<RES_DO)
179#define FLAG_DONE (1<<RES_DONE)
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000180#define FLAG_IN (1<<RES_IN)
Eric Andersen25f27032001-04-26 23:22:31 +0000181#define FLAG_START (1<<RES_XXXX)
182
183/* This holds pointers to the various results of parsing */
184struct p_context {
185 struct child_prog *child;
186 struct pipe *list_head;
187 struct pipe *pipe;
188 struct redir_struct *pending_redirect;
189 reserved_style w;
190 int old_flag; /* for figuring out valid reserved words */
191 struct p_context *stack;
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000192 int type; /* define type of parser : ";$" common or special symbol */
Eric Andersen25f27032001-04-26 23:22:31 +0000193 /* How about quoting status? */
194};
195
196struct redir_struct {
197 redir_type type; /* type of redirection */
198 int fd; /* file descriptor being redirected */
199 int dup; /* -1, or file descriptor being duplicated */
200 struct redir_struct *next; /* pointer to the next redirect in the list */
201 glob_t word; /* *word.gl_pathv is the filename */
202};
203
204struct child_prog {
205 pid_t pid; /* 0 if exited */
206 char **argv; /* program name and arguments */
207 struct pipe *group; /* if non-NULL, first in group or subshell */
208 int subshell; /* flag, non-zero if group must be forked */
209 struct redir_struct *redirects; /* I/O redirections */
210 glob_t glob_result; /* result of parameter globbing */
211 int is_stopped; /* is the program currently running? */
212 struct pipe *family; /* pointer back to the child's parent pipe */
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000213 int sp; /* number of SPECIAL_VAR_SYMBOL */
214 int type;
Eric Andersen25f27032001-04-26 23:22:31 +0000215};
216
217struct pipe {
218 int jobid; /* job number */
219 int num_progs; /* total number of programs in job */
220 int running_progs; /* number of programs running */
221 char *text; /* name of job */
222 char *cmdbuf; /* buffer various argv's point into */
223 pid_t pgrp; /* process group ID for the job */
224 struct child_prog *progs; /* array of commands in pipe */
225 struct pipe *next; /* to track background commands */
226 int stopped_progs; /* number of programs alive, but stopped */
227 int job_context; /* bitmask defining current context */
228 pipe_style followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
229 reserved_style r_mode; /* supports if, for, while, until */
Eric Andersen25f27032001-04-26 23:22:31 +0000230};
231
Eric Andersen25f27032001-04-26 23:22:31 +0000232struct close_me {
233 int fd;
234 struct close_me *next;
235};
236
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000237struct variables {
238 char *name;
239 char *value;
240 int flg_export;
241 int flg_read_only;
242 struct variables *next;
243};
244
Eric Andersen25f27032001-04-26 23:22:31 +0000245/* globals, connect us to the outside world
246 * the first three support $?, $#, and $1 */
247char **global_argv;
248unsigned int global_argc;
249unsigned int last_return_code;
250extern char **environ; /* This is in <unistd.h>, but protected with __USE_GNU */
251
Eric Andersen25f27032001-04-26 23:22:31 +0000252/* "globals" within this file */
Eric Andersenbc604a22001-05-16 05:24:03 +0000253static char *ifs;
Eric Andersen25f27032001-04-26 23:22:31 +0000254static char map[256];
Eric Andersenbc604a22001-05-16 05:24:03 +0000255static int fake_mode;
256static int interactive;
257static struct close_me *close_me_head;
Eric Andersencfa88ec2001-05-11 18:08:16 +0000258static const char *cwd;
Eric Andersenc798b072001-06-22 06:23:03 +0000259static struct pipe *job_list;
Eric Andersenbc604a22001-05-16 05:24:03 +0000260static unsigned int last_bg_pid;
Eric Andersenc798b072001-06-22 06:23:03 +0000261static unsigned int last_jobid;
Eric Andersen6c947d22001-06-25 22:24:38 +0000262static unsigned int shell_terminal;
Eric Andersen25f27032001-04-26 23:22:31 +0000263static char *PS1;
Eric Andersen94ac2442001-05-22 19:05:18 +0000264static char *PS2;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000265struct variables shell_ver = { "HUSH_VERSION", "0.01", 1, 1, 0 };
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000266struct variables *top_vars = &shell_ver;
Eric Andersen25f27032001-04-26 23:22:31 +0000267
Eric Andersen52a97ca2001-06-22 06:49:26 +0000268
Eric Andersen25f27032001-04-26 23:22:31 +0000269#define B_CHUNK (100)
270#define B_NOSPAC 1
Eric Andersen25f27032001-04-26 23:22:31 +0000271
272typedef struct {
273 char *data;
274 int length;
275 int maxlen;
276 int quote;
277 int nonnull;
278} o_string;
279#define NULL_O_STRING {NULL,0,0,0,0}
280/* used for initialization:
281 o_string foo = NULL_O_STRING; */
282
283/* I can almost use ordinary FILE *. Is open_memstream() universally
284 * available? Where is it documented? */
285struct in_str {
286 const char *p;
Matt Kraaibdd4ece2001-05-23 17:43:00 +0000287 char peek_buf[2];
Eric Andersen25f27032001-04-26 23:22:31 +0000288 int __promptme;
289 int promptmode;
290 FILE *file;
291 int (*get) (struct in_str *);
292 int (*peek) (struct in_str *);
293};
294#define b_getch(input) ((input)->get(input))
295#define b_peek(input) ((input)->peek(input))
296
297#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
298
299struct built_in_command {
300 char *cmd; /* name */
301 char *descr; /* description */
302 int (*function) (struct child_prog *); /* function ptr */
303};
304
305/* belongs in busybox.h */
306static inline int max(int a, int b) {
307 return (a>b)?a:b;
308}
309
310/* This should be in utility.c */
311#ifdef DEBUG_SHELL
312static void debug_printf(const char *format, ...)
313{
314 va_list args;
315 va_start(args, format);
316 vfprintf(stderr, format, args);
317 va_end(args);
318}
319#else
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000320static inline void debug_printf(const char *format, ...) { }
Eric Andersen25f27032001-04-26 23:22:31 +0000321#endif
322#define final_printf debug_printf
323
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000324static void __syntax(char *file, int line) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000325 bb_error_msg("syntax error %s:%d", file, line);
Eric Andersen25f27032001-04-26 23:22:31 +0000326}
327#define syntax() __syntax(__FILE__, __LINE__)
328
329/* Index of subroutines: */
330/* function prototypes for builtins */
331static int builtin_cd(struct child_prog *child);
332static int builtin_env(struct child_prog *child);
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000333static int builtin_eval(struct child_prog *child);
Eric Andersen25f27032001-04-26 23:22:31 +0000334static int builtin_exec(struct child_prog *child);
335static int builtin_exit(struct child_prog *child);
336static int builtin_export(struct child_prog *child);
337static int builtin_fg_bg(struct child_prog *child);
338static int builtin_help(struct child_prog *child);
339static int builtin_jobs(struct child_prog *child);
340static int builtin_pwd(struct child_prog *child);
341static int builtin_read(struct child_prog *child);
Eric Andersenf72f5622001-05-15 23:21:41 +0000342static int builtin_set(struct child_prog *child);
Eric Andersen25f27032001-04-26 23:22:31 +0000343static int builtin_shift(struct child_prog *child);
344static int builtin_source(struct child_prog *child);
Eric Andersen25f27032001-04-26 23:22:31 +0000345static int builtin_umask(struct child_prog *child);
346static int builtin_unset(struct child_prog *child);
Eric Andersen83a2ae22001-05-07 17:59:25 +0000347static int builtin_not_written(struct child_prog *child);
Eric Andersen25f27032001-04-26 23:22:31 +0000348/* o_string manipulation: */
349static int b_check_space(o_string *o, int len);
350static int b_addchr(o_string *o, int ch);
351static void b_reset(o_string *o);
352static int b_addqchr(o_string *o, int ch, int quote);
353static int b_adduint(o_string *o, unsigned int i);
354/* in_str manipulations: */
355static int static_get(struct in_str *i);
356static int static_peek(struct in_str *i);
357static int file_get(struct in_str *i);
358static int file_peek(struct in_str *i);
359static void setup_file_in_str(struct in_str *i, FILE *f);
360static void setup_string_in_str(struct in_str *i, const char *s);
361/* close_me manipulations: */
362static void mark_open(int fd);
363static void mark_closed(int fd);
Eric Anderseneaecbf32001-10-31 10:41:31 +0000364static void close_all(void);
Eric Andersen25f27032001-04-26 23:22:31 +0000365/* "run" the final data structures: */
366static char *indenter(int i);
Eric Andersenbf7df042001-05-23 22:18:35 +0000367static int free_pipe_list(struct pipe *head, int indent);
368static int free_pipe(struct pipe *pi, int indent);
Eric Andersen25f27032001-04-26 23:22:31 +0000369/* really run the final data structures: */
370static int setup_redirects(struct child_prog *prog, int squirrel[]);
Eric Andersen25f27032001-04-26 23:22:31 +0000371static int run_list_real(struct pipe *pi);
372static void pseudo_exec(struct child_prog *child) __attribute__ ((noreturn));
373static int run_pipe_real(struct pipe *pi);
374/* extended glob support: */
375static int globhack(const char *src, int flags, glob_t *pglob);
376static int glob_needed(const char *s);
377static int xglob(o_string *dest, int flags, glob_t *pglob);
Eric Andersen78a7c992001-05-15 16:30:25 +0000378/* variable assignment: */
Eric Andersen78a7c992001-05-15 16:30:25 +0000379static int is_assignment(const char *s);
Eric Andersen25f27032001-04-26 23:22:31 +0000380/* data structure manipulation: */
381static int setup_redirect(struct p_context *ctx, int fd, redir_type style, struct in_str *input);
382static void initialize_context(struct p_context *ctx);
383static int done_word(o_string *dest, struct p_context *ctx);
384static int done_command(struct p_context *ctx);
385static int done_pipe(struct p_context *ctx, pipe_style type);
386/* primary string parsing: */
387static int redirect_dup_num(struct in_str *input);
388static int redirect_opt_num(o_string *o);
389static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end);
390static int parse_group(o_string *dest, struct p_context *ctx, struct in_str *input, int ch);
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000391static char *lookup_param(char *src);
392static char *make_string(char **inp);
Eric Andersen25f27032001-04-26 23:22:31 +0000393static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input);
394static int parse_string(o_string *dest, struct p_context *ctx, const char *src);
395static int parse_stream(o_string *dest, struct p_context *ctx, struct in_str *input0, int end_trigger);
396/* setup: */
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000397static int parse_stream_outer(struct in_str *inp, int flag);
398static int parse_string_outer(const char *s, int flag);
Eric Andersen25f27032001-04-26 23:22:31 +0000399static int parse_file_outer(FILE *f);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000400/* job management: */
Eric Andersenc798b072001-06-22 06:23:03 +0000401static int checkjobs(struct pipe* fg_pipe);
Eric Andersenbafd94f2001-05-02 16:11:59 +0000402static void insert_bg_job(struct pipe *pi);
403static void remove_bg_job(struct pipe *pi);
Eric Andersenf72f5622001-05-15 23:21:41 +0000404/* local variable support */
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000405static char **make_list_in(char **inp, char *name);
406static char *insert_var_value(char *inp);
Eric Andersenf72f5622001-05-15 23:21:41 +0000407static char *get_local_var(const char *var);
Eric Andersenf72f5622001-05-15 23:21:41 +0000408static void unset_local_var(const char *name);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000409static int set_local_var(const char *s, int flg_export);
Eric Andersen25f27032001-04-26 23:22:31 +0000410
411/* Table of built-in functions. They can be forked or not, depending on
412 * context: within pipes, they fork. As simple commands, they do not.
413 * When used in non-forking context, they can change global variables
414 * in the parent shell process. If forked, of course they can not.
415 * For example, 'unset foo | whatever' will parse and run, but foo will
416 * still be set at the end. */
417static struct built_in_command bltins[] = {
418 {"bg", "Resume a job in the background", builtin_fg_bg},
Eric Andersen83a2ae22001-05-07 17:59:25 +0000419 {"break", "Exit for, while or until loop", builtin_not_written},
Eric Andersen25f27032001-04-26 23:22:31 +0000420 {"cd", "Change working directory", builtin_cd},
Eric Andersen83a2ae22001-05-07 17:59:25 +0000421 {"continue", "Continue for, while or until loop", builtin_not_written},
Eric Andersen25f27032001-04-26 23:22:31 +0000422 {"env", "Print all environment variables", builtin_env},
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000423 {"eval", "Construct and run shell command", builtin_eval},
Eric Andersenf72f5622001-05-15 23:21:41 +0000424 {"exec", "Exec command, replacing this shell with the exec'd process",
425 builtin_exec},
Eric Andersen25f27032001-04-26 23:22:31 +0000426 {"exit", "Exit from shell()", builtin_exit},
427 {"export", "Set environment variable", builtin_export},
428 {"fg", "Bring job into the foreground", builtin_fg_bg},
429 {"jobs", "Lists the active jobs", builtin_jobs},
430 {"pwd", "Print current directory", builtin_pwd},
431 {"read", "Input environment variable", builtin_read},
Eric Andersen83a2ae22001-05-07 17:59:25 +0000432 {"return", "Return from a function", builtin_not_written},
Eric Andersenf72f5622001-05-15 23:21:41 +0000433 {"set", "Set/unset shell local variables", builtin_set},
Eric Andersen25f27032001-04-26 23:22:31 +0000434 {"shift", "Shift positional parameters", builtin_shift},
Eric Andersen83a2ae22001-05-07 17:59:25 +0000435 {"trap", "Trap signals", builtin_not_written},
436 {"ulimit","Controls resource limits", builtin_not_written},
Eric Andersen25f27032001-04-26 23:22:31 +0000437 {"umask","Sets file creation mask", builtin_umask},
438 {"unset", "Unset environment variable", builtin_unset},
439 {".", "Source-in and run commands in a file", builtin_source},
440 {"help", "List shell built-in commands", builtin_help},
441 {NULL, NULL, NULL}
442};
443
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000444static const char *set_cwd(void)
445{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000446 if(cwd==bb_msg_unknown)
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000447 cwd = NULL; /* xgetcwd(arg) called free(arg) */
448 cwd = xgetcwd((char *)cwd);
449 if (!cwd)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000450 cwd = bb_msg_unknown;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000451 return cwd;
452}
453
Eric Andersen4c9b68f2002-04-13 12:33:41 +0000454/* built-in 'eval' handler */
455static int builtin_eval(struct child_prog *child)
456{
457 char *str = NULL;
458 int rcode = EXIT_SUCCESS;
459
460 if (child->argv[1]) {
461 str = make_string(child->argv + 1);
462 parse_string_outer(str, FLAG_EXIT_FROM_LOOP |
463 FLAG_PARSE_SEMICOLON);
464 free(str);
465 rcode = last_return_code;
466 }
467 return rcode;
468}
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000469
Eric Andersen25f27032001-04-26 23:22:31 +0000470/* built-in 'cd <path>' handler */
471static int builtin_cd(struct child_prog *child)
472{
473 char *newdir;
474 if (child->argv[1] == NULL)
475 newdir = getenv("HOME");
476 else
477 newdir = child->argv[1];
478 if (chdir(newdir)) {
479 printf("cd: %s: %s\n", newdir, strerror(errno));
480 return EXIT_FAILURE;
481 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000482 set_cwd();
Eric Andersen25f27032001-04-26 23:22:31 +0000483 return EXIT_SUCCESS;
484}
485
486/* built-in 'env' handler */
487static int builtin_env(struct child_prog *dummy)
488{
489 char **e = environ;
490 if (e == NULL) return EXIT_FAILURE;
491 for (; *e; e++) {
492 puts(*e);
493 }
494 return EXIT_SUCCESS;
495}
496
497/* built-in 'exec' handler */
498static int builtin_exec(struct child_prog *child)
499{
500 if (child->argv[1] == NULL)
501 return EXIT_SUCCESS; /* Really? */
502 child->argv++;
503 pseudo_exec(child);
504 /* never returns */
505}
506
507/* built-in 'exit' handler */
508static int builtin_exit(struct child_prog *child)
509{
510 if (child->argv[1] == NULL)
Eric Andersene67c3ce2001-05-02 02:09:36 +0000511 exit(last_return_code);
Eric Andersen25f27032001-04-26 23:22:31 +0000512 exit (atoi(child->argv[1]));
513}
514
515/* built-in 'export VAR=value' handler */
516static int builtin_export(struct child_prog *child)
517{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000518 int res = 0;
519 char *name = child->argv[1];
Eric Andersen25f27032001-04-26 23:22:31 +0000520
Eric Andersenf72f5622001-05-15 23:21:41 +0000521 if (name == NULL) {
Eric Andersen25f27032001-04-26 23:22:31 +0000522 return (builtin_env(child));
523 }
Eric Andersenf72f5622001-05-15 23:21:41 +0000524
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000525 name = strdup(name);
Eric Andersenf72f5622001-05-15 23:21:41 +0000526
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000527 if(name) {
Eric Andersen94ac2442001-05-22 19:05:18 +0000528 char *value = strchr(name, '=');
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000529
Eric Andersen94ac2442001-05-22 19:05:18 +0000530 if (!value) {
531 char *tmp;
532 /* They are exporting something without an =VALUE */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000533
Eric Andersen94ac2442001-05-22 19:05:18 +0000534 value = get_local_var(name);
535 if (value) {
536 size_t ln = strlen(name);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000537
Eric Andersen94ac2442001-05-22 19:05:18 +0000538 tmp = realloc(name, ln+strlen(value)+2);
539 if(tmp==NULL)
540 res = -1;
541 else {
542 sprintf(tmp+ln, "=%s", value);
543 name = tmp;
544 }
545 } else {
546 /* bash does not return an error when trying to export
547 * an undefined variable. Do likewise. */
548 res = 1;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000549 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000550 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000551 }
552 if (res<0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000553 bb_perror_msg("export");
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000554 else if(res==0)
555 res = set_local_var(name, 1);
556 else
557 res = 0;
558 free(name);
559 return res;
Eric Andersen25f27032001-04-26 23:22:31 +0000560}
561
562/* built-in 'fg' and 'bg' handler */
563static int builtin_fg_bg(struct child_prog *child)
564{
Eric Andersen0fcd4472001-05-02 20:12:03 +0000565 int i, jobnum;
566 struct pipe *pi=NULL;
Eric Andersen25f27032001-04-26 23:22:31 +0000567
Eric Andersenc798b072001-06-22 06:23:03 +0000568 if (!interactive)
569 return EXIT_FAILURE;
Eric Andersen0fcd4472001-05-02 20:12:03 +0000570 /* If they gave us no args, assume they want the last backgrounded task */
571 if (!child->argv[1]) {
Eric Andersenc798b072001-06-22 06:23:03 +0000572 for (pi = job_list; pi; pi = pi->next) {
573 if (pi->jobid == last_jobid) {
Eric Andersen0fcd4472001-05-02 20:12:03 +0000574 break;
575 }
576 }
577 if (!pi) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000578 bb_error_msg("%s: no current job", child->argv[0]);
Eric Andersen0fcd4472001-05-02 20:12:03 +0000579 return EXIT_FAILURE;
580 }
581 } else {
582 if (sscanf(child->argv[1], "%%%d", &jobnum) != 1) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000583 bb_error_msg("%s: bad argument '%s'", child->argv[0], child->argv[1]);
Eric Andersen0fcd4472001-05-02 20:12:03 +0000584 return EXIT_FAILURE;
585 }
Eric Andersenc798b072001-06-22 06:23:03 +0000586 for (pi = job_list; pi; pi = pi->next) {
Eric Andersen0fcd4472001-05-02 20:12:03 +0000587 if (pi->jobid == jobnum) {
588 break;
589 }
590 }
591 if (!pi) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000592 bb_error_msg("%s: %d: no such job", child->argv[0], jobnum);
Eric Andersen0fcd4472001-05-02 20:12:03 +0000593 return EXIT_FAILURE;
Eric Andersen25f27032001-04-26 23:22:31 +0000594 }
595 }
Eric Andersen52a97ca2001-06-22 06:49:26 +0000596
Eric Andersen25f27032001-04-26 23:22:31 +0000597 if (*child->argv[0] == 'f') {
Eric Andersen028b65b2001-06-28 01:10:11 +0000598 /* Put the job into the foreground. */
599 tcsetpgrp(shell_terminal, pi->pgrp);
Eric Andersen25f27032001-04-26 23:22:31 +0000600 }
601
602 /* Restart the processes in the job */
Eric Andersen0fcd4472001-05-02 20:12:03 +0000603 for (i = 0; i < pi->num_progs; i++)
604 pi->progs[i].is_stopped = 0;
Eric Andersen25f27032001-04-26 23:22:31 +0000605
Eric Andersen028b65b2001-06-28 01:10:11 +0000606 if ( (i=kill(- pi->pgrp, SIGCONT)) < 0) {
607 if (i == ESRCH) {
608 remove_bg_job(pi);
609 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000610 bb_perror_msg("kill (SIGCONT)");
Eric Andersen028b65b2001-06-28 01:10:11 +0000611 }
612 }
Eric Andersen25f27032001-04-26 23:22:31 +0000613
Eric Andersen0fcd4472001-05-02 20:12:03 +0000614 pi->stopped_progs = 0;
Eric Andersen25f27032001-04-26 23:22:31 +0000615 return EXIT_SUCCESS;
616}
617
618/* built-in 'help' handler */
619static int builtin_help(struct child_prog *dummy)
620{
621 struct built_in_command *x;
622
623 printf("\nBuilt-in commands:\n");
624 printf("-------------------\n");
625 for (x = bltins; x->cmd; x++) {
626 if (x->descr==NULL)
627 continue;
628 printf("%s\t%s\n", x->cmd, x->descr);
629 }
630 printf("\n\n");
631 return EXIT_SUCCESS;
632}
633
634/* built-in 'jobs' handler */
635static int builtin_jobs(struct child_prog *child)
636{
637 struct pipe *job;
638 char *status_string;
639
Eric Andersenc798b072001-06-22 06:23:03 +0000640 for (job = job_list; job; job = job->next) {
Eric Andersen25f27032001-04-26 23:22:31 +0000641 if (job->running_progs == job->stopped_progs)
642 status_string = "Stopped";
643 else
644 status_string = "Running";
Eric Andersen52a97ca2001-06-22 06:49:26 +0000645
Eric Andersen25f27032001-04-26 23:22:31 +0000646 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->text);
647 }
648 return EXIT_SUCCESS;
649}
650
651
652/* built-in 'pwd' handler */
653static int builtin_pwd(struct child_prog *dummy)
654{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000655 puts(set_cwd());
Eric Andersen25f27032001-04-26 23:22:31 +0000656 return EXIT_SUCCESS;
657}
658
659/* built-in 'read VAR' handler */
660static int builtin_read(struct child_prog *child)
661{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000662 int res;
Eric Andersen25f27032001-04-26 23:22:31 +0000663
664 if (child->argv[1]) {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000665 char string[BUFSIZ];
666 char *var = 0;
Eric Andersen25f27032001-04-26 23:22:31 +0000667
Eric Andersen94ac2442001-05-22 19:05:18 +0000668 string[0] = 0; /* In case stdin has only EOF */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000669 /* read string */
670 fgets(string, sizeof(string), stdin);
671 chomp(string);
672 var = malloc(strlen(child->argv[1])+strlen(string)+2);
673 if(var) {
674 sprintf(var, "%s=%s", child->argv[1], string);
675 res = set_local_var(var, 0);
676 } else
Eric Andersen94ac2442001-05-22 19:05:18 +0000677 res = -1;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000678 if (res)
679 fprintf(stderr, "read: %m\n");
Eric Andersen94ac2442001-05-22 19:05:18 +0000680 free(var); /* So not move up to avoid breaking errno */
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000681 return res;
682 } else {
683 do res=getchar(); while(res!='\n' && res!=EOF);
684 return 0;
685 }
Eric Andersen25f27032001-04-26 23:22:31 +0000686}
687
Eric Andersenf72f5622001-05-15 23:21:41 +0000688/* built-in 'set VAR=value' handler */
689static int builtin_set(struct child_prog *child)
690{
Eric Andersenf72f5622001-05-15 23:21:41 +0000691 char *temp = child->argv[1];
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000692 struct variables *e;
Eric Andersenf72f5622001-05-15 23:21:41 +0000693
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000694 if (temp == NULL)
695 for(e = top_vars; e; e=e->next)
696 printf("%s=%s\n", e->name, e->value);
697 else
698 set_local_var(temp, 0);
699
Eric Andersenf72f5622001-05-15 23:21:41 +0000700 return EXIT_SUCCESS;
Eric Andersenf72f5622001-05-15 23:21:41 +0000701}
702
703
Eric Andersen25f27032001-04-26 23:22:31 +0000704/* Built-in 'shift' handler */
705static int builtin_shift(struct child_prog *child)
706{
707 int n=1;
708 if (child->argv[1]) {
709 n=atoi(child->argv[1]);
710 }
711 if (n>=0 && n<global_argc) {
712 /* XXX This probably breaks $0 */
713 global_argc -= n;
714 global_argv += n;
715 return EXIT_SUCCESS;
716 } else {
717 return EXIT_FAILURE;
718 }
719}
720
721/* Built-in '.' handler (read-in and execute commands from file) */
722static int builtin_source(struct child_prog *child)
723{
724 FILE *input;
725 int status;
726
727 if (child->argv[1] == NULL)
728 return EXIT_FAILURE;
729
730 /* XXX search through $PATH is missing */
731 input = fopen(child->argv[1], "r");
732 if (!input) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000733 bb_error_msg("Couldn't open file '%s'", child->argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +0000734 return EXIT_FAILURE;
735 }
736
737 /* Now run the file */
738 /* XXX argv and argc are broken; need to save old global_argv
739 * (pointer only is OK!) on this stack frame,
740 * set global_argv=child->argv+1, recurse, and restore. */
741 mark_open(fileno(input));
742 status = parse_file_outer(input);
743 mark_closed(fileno(input));
744 fclose(input);
745 return (status);
746}
747
Eric Andersen25f27032001-04-26 23:22:31 +0000748static int builtin_umask(struct child_prog *child)
749{
Eric Andersen83a2ae22001-05-07 17:59:25 +0000750 mode_t new_umask;
751 const char *arg = child->argv[1];
752 char *end;
753 if (arg) {
754 new_umask=strtoul(arg, &end, 8);
755 if (*end!='\0' || end == arg) {
756 return EXIT_FAILURE;
757 }
758 } else {
759 printf("%.3o\n", (unsigned int) (new_umask=umask(0)));
760 }
761 umask(new_umask);
762 return EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +0000763}
764
765/* built-in 'unset VAR' handler */
766static int builtin_unset(struct child_prog *child)
767{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000768 /* bash returned already true */
Eric Andersenf72f5622001-05-15 23:21:41 +0000769 unset_local_var(child->argv[1]);
Eric Andersen25f27032001-04-26 23:22:31 +0000770 return EXIT_SUCCESS;
771}
772
Eric Andersen83a2ae22001-05-07 17:59:25 +0000773static int builtin_not_written(struct child_prog *child)
774{
775 printf("builtin_%s not written\n",child->argv[0]);
776 return EXIT_FAILURE;
777}
778
Eric Andersen25f27032001-04-26 23:22:31 +0000779static int b_check_space(o_string *o, int len)
780{
781 /* It would be easy to drop a more restrictive policy
782 * in here, such as setting a maximum string length */
783 if (o->length + len > o->maxlen) {
784 char *old_data = o->data;
785 /* assert (data == NULL || o->maxlen != 0); */
786 o->maxlen += max(2*len, B_CHUNK);
787 o->data = realloc(o->data, 1 + o->maxlen);
788 if (o->data == NULL) {
789 free(old_data);
790 }
791 }
792 return o->data == NULL;
793}
794
795static int b_addchr(o_string *o, int ch)
796{
797 debug_printf("b_addchr: %c %d %p\n", ch, o->length, o);
798 if (b_check_space(o, 1)) return B_NOSPAC;
799 o->data[o->length] = ch;
800 o->length++;
801 o->data[o->length] = '\0';
802 return 0;
803}
804
805static void b_reset(o_string *o)
806{
807 o->length = 0;
808 o->nonnull = 0;
809 if (o->data != NULL) *o->data = '\0';
810}
811
812static void b_free(o_string *o)
813{
814 b_reset(o);
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000815 free(o->data);
Eric Andersen25f27032001-04-26 23:22:31 +0000816 o->data = NULL;
817 o->maxlen = 0;
818}
819
820/* My analysis of quoting semantics tells me that state information
821 * is associated with a destination, not a source.
822 */
823static int b_addqchr(o_string *o, int ch, int quote)
824{
825 if (quote && strchr("*?[\\",ch)) {
826 int rc;
827 rc = b_addchr(o, '\\');
828 if (rc) return rc;
829 }
830 return b_addchr(o, ch);
831}
832
833/* belongs in utility.c */
834char *simple_itoa(unsigned int i)
835{
836 /* 21 digits plus null terminator, good for 64-bit or smaller ints */
837 static char local[22];
838 char *p = &local[21];
839 *p-- = '\0';
840 do {
841 *p-- = '0' + i % 10;
842 i /= 10;
843 } while (i > 0);
844 return p + 1;
845}
846
847static int b_adduint(o_string *o, unsigned int i)
848{
849 int r;
850 char *p = simple_itoa(i);
851 /* no escape checking necessary */
852 do r=b_addchr(o, *p++); while (r==0 && *p);
853 return r;
854}
855
856static int static_get(struct in_str *i)
857{
858 int ch=*i->p++;
859 if (ch=='\0') return EOF;
860 return ch;
861}
862
863static int static_peek(struct in_str *i)
864{
865 return *i->p;
866}
867
868static inline void cmdedit_set_initial_prompt(void)
869{
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000870#ifndef CONFIG_FEATURE_SH_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +0000871 PS1 = NULL;
872#else
873 PS1 = getenv("PS1");
874 if(PS1==0)
875 PS1 = "\\w \\$ ";
876#endif
877}
878
879static inline void setup_prompt_string(int promptmode, char **prompt_str)
880{
Eric Andersenaf44a0e2001-04-27 07:26:12 +0000881 debug_printf("setup_prompt_string %d ",promptmode);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000882#ifndef CONFIG_FEATURE_SH_FANCY_PROMPT
Eric Andersen25f27032001-04-26 23:22:31 +0000883 /* Set up the prompt */
884 if (promptmode == 1) {
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000885 free(PS1);
Eric Andersen25f27032001-04-26 23:22:31 +0000886 PS1=xmalloc(strlen(cwd)+4);
887 sprintf(PS1, "%s %s", cwd, ( geteuid() != 0 ) ? "$ ":"# ");
888 *prompt_str = PS1;
889 } else {
890 *prompt_str = PS2;
891 }
892#else
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000893 *prompt_str = (promptmode==1)? PS1 : PS2;
Eric Andersenaf44a0e2001-04-27 07:26:12 +0000894#endif
895 debug_printf("result %s\n",*prompt_str);
Eric Andersen25f27032001-04-26 23:22:31 +0000896}
897
898static void get_user_input(struct in_str *i)
899{
900 char *prompt_str;
Eric Andersen088875f2001-04-27 07:49:41 +0000901 static char the_command[BUFSIZ];
Eric Andersen25f27032001-04-26 23:22:31 +0000902
903 setup_prompt_string(i->promptmode, &prompt_str);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000904#ifdef CONFIG_FEATURE_COMMAND_EDITING
Eric Andersen25f27032001-04-26 23:22:31 +0000905 /*
906 ** enable command line editing only while a command line
907 ** is actually being read; otherwise, we'll end up bequeathing
908 ** atexit() handlers and other unwanted stuff to our
909 ** child processes (rob@sysgo.de)
910 */
911 cmdedit_read_input(prompt_str, the_command);
Eric Andersen25f27032001-04-26 23:22:31 +0000912#else
913 fputs(prompt_str, stdout);
914 fflush(stdout);
915 the_command[0]=fgetc(i->file);
916 the_command[1]='\0';
917#endif
Eric Andersen4f6753e2001-05-31 17:17:12 +0000918 fflush(stdout);
Eric Andersen25f27032001-04-26 23:22:31 +0000919 i->p = the_command;
920}
921
922/* This is the magic location that prints prompts
923 * and gets data back from the user */
924static int file_get(struct in_str *i)
925{
926 int ch;
927
928 ch = 0;
929 /* If there is data waiting, eat it up */
930 if (i->p && *i->p) {
931 ch=*i->p++;
932 } else {
933 /* need to double check i->file because we might be doing something
934 * more complicated by now, like sourcing or substituting. */
935 if (i->__promptme && interactive && i->file == stdin) {
Eric Andersen4f6753e2001-05-31 17:17:12 +0000936 while(! i->p || (interactive && strlen(i->p)==0) ) {
937 get_user_input(i);
938 }
Eric Andersen25f27032001-04-26 23:22:31 +0000939 i->promptmode=2;
Eric Andersene67c3ce2001-05-02 02:09:36 +0000940 i->__promptme = 0;
941 if (i->p && *i->p) {
942 ch=*i->p++;
943 }
Eric Andersen4ed5e372001-05-01 01:49:50 +0000944 } else {
Eric Andersene67c3ce2001-05-02 02:09:36 +0000945 ch = fgetc(i->file);
Eric Andersen25f27032001-04-26 23:22:31 +0000946 }
Eric Andersen4ed5e372001-05-01 01:49:50 +0000947
Eric Andersen25f27032001-04-26 23:22:31 +0000948 debug_printf("b_getch: got a %d\n", ch);
949 }
950 if (ch == '\n') i->__promptme=1;
951 return ch;
952}
953
954/* All the callers guarantee this routine will never be
955 * used right after a newline, so prompting is not needed.
956 */
957static int file_peek(struct in_str *i)
958{
959 if (i->p && *i->p) {
960 return *i->p;
961 } else {
Matt Kraaibdd4ece2001-05-23 17:43:00 +0000962 i->peek_buf[0] = fgetc(i->file);
963 i->peek_buf[1] = '\0';
964 i->p = i->peek_buf;
Eric Andersen25f27032001-04-26 23:22:31 +0000965 debug_printf("b_peek: got a %d\n", *i->p);
Matt Kraaibdd4ece2001-05-23 17:43:00 +0000966 return *i->p;
Eric Andersen25f27032001-04-26 23:22:31 +0000967 }
968}
969
970static void setup_file_in_str(struct in_str *i, FILE *f)
971{
972 i->peek = file_peek;
973 i->get = file_get;
974 i->__promptme=1;
975 i->promptmode=1;
976 i->file = f;
977 i->p = NULL;
978}
979
980static void setup_string_in_str(struct in_str *i, const char *s)
981{
982 i->peek = static_peek;
983 i->get = static_get;
984 i->__promptme=1;
985 i->promptmode=1;
986 i->p = s;
987}
988
989static void mark_open(int fd)
990{
991 struct close_me *new = xmalloc(sizeof(struct close_me));
992 new->fd = fd;
993 new->next = close_me_head;
994 close_me_head = new;
995}
996
997static void mark_closed(int fd)
998{
999 struct close_me *tmp;
1000 if (close_me_head == NULL || close_me_head->fd != fd)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001001 bb_error_msg_and_die("corrupt close_me");
Eric Andersen25f27032001-04-26 23:22:31 +00001002 tmp = close_me_head;
1003 close_me_head = close_me_head->next;
1004 free(tmp);
1005}
1006
Eric Anderseneaecbf32001-10-31 10:41:31 +00001007static void close_all(void)
Eric Andersen25f27032001-04-26 23:22:31 +00001008{
1009 struct close_me *c;
1010 for (c=close_me_head; c; c=c->next) {
1011 close(c->fd);
1012 }
1013 close_me_head = NULL;
1014}
1015
1016/* squirrel != NULL means we squirrel away copies of stdin, stdout,
1017 * and stderr if they are redirected. */
1018static int setup_redirects(struct child_prog *prog, int squirrel[])
1019{
1020 int openfd, mode;
1021 struct redir_struct *redir;
1022
1023 for (redir=prog->redirects; redir; redir=redir->next) {
Eric Andersen817e73c2001-06-06 17:56:09 +00001024 if (redir->dup == -1 && redir->word.gl_pathv == NULL) {
1025 /* something went wrong in the parse. Pretend it didn't happen */
1026 continue;
1027 }
Eric Andersen25f27032001-04-26 23:22:31 +00001028 if (redir->dup == -1) {
1029 mode=redir_table[redir->type].mode;
1030 openfd = open(redir->word.gl_pathv[0], mode, 0666);
1031 if (openfd < 0) {
1032 /* this could get lost if stderr has been redirected, but
1033 bash and ash both lose it as well (though zsh doesn't!) */
Manuel Novoa III cad53642003-03-19 09:13:01 +00001034 bb_perror_msg("error opening %s", redir->word.gl_pathv[0]);
Eric Andersen25f27032001-04-26 23:22:31 +00001035 return 1;
1036 }
1037 } else {
1038 openfd = redir->dup;
1039 }
1040
1041 if (openfd != redir->fd) {
1042 if (squirrel && redir->fd < 3) {
1043 squirrel[redir->fd] = dup(redir->fd);
1044 }
Eric Andersen83a2ae22001-05-07 17:59:25 +00001045 if (openfd == -3) {
1046 close(openfd);
1047 } else {
1048 dup2(openfd, redir->fd);
Matt Kraaic616e532001-06-05 16:50:08 +00001049 if (redir->dup == -1)
1050 close (openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00001051 }
Eric Andersen25f27032001-04-26 23:22:31 +00001052 }
1053 }
1054 return 0;
1055}
1056
1057static void restore_redirects(int squirrel[])
1058{
1059 int i, fd;
1060 for (i=0; i<3; i++) {
1061 fd = squirrel[i];
1062 if (fd != -1) {
1063 /* No error checking. I sure wouldn't know what
1064 * to do with an error if I found one! */
1065 dup2(fd, i);
1066 close(fd);
1067 }
1068 }
1069}
1070
Eric Andersenada18ff2001-05-21 16:18:22 +00001071/* never returns */
Eric Andersen94ac2442001-05-22 19:05:18 +00001072/* XXX no exit() here. If you don't exec, use _exit instead.
1073 * The at_exit handlers apparently confuse the calling process,
1074 * in particular stdin handling. Not sure why? */
Eric Andersen25f27032001-04-26 23:22:31 +00001075static void pseudo_exec(struct child_prog *child)
1076{
Eric Andersen78a7c992001-05-15 16:30:25 +00001077 int i, rcode;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001078 char *p;
Eric Andersen25f27032001-04-26 23:22:31 +00001079 struct built_in_command *x;
1080 if (child->argv) {
Eric Andersen78a7c992001-05-15 16:30:25 +00001081 for (i=0; is_assignment(child->argv[i]); i++) {
Eric Andersenada18ff2001-05-21 16:18:22 +00001082 debug_printf("pid %d environment modification: %s\n",getpid(),child->argv[i]);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001083 p = insert_var_value(child->argv[i]);
1084 putenv(strdup(p));
1085 if (p != child->argv[i]) free(p);
Eric Andersen78a7c992001-05-15 16:30:25 +00001086 }
1087 child->argv+=i; /* XXX this hack isn't so horrible, since we are about
1088 to exit, and therefore don't need to keep data
1089 structures consistent for free() use. */
1090 /* If a variable is assigned in a forest, and nobody listens,
1091 * was it ever really set?
1092 */
Eric Andersen94ac2442001-05-22 19:05:18 +00001093 if (child->argv[0] == NULL) {
1094 _exit(EXIT_SUCCESS);
1095 }
Eric Andersen78a7c992001-05-15 16:30:25 +00001096
Eric Andersen25f27032001-04-26 23:22:31 +00001097 /*
1098 * Check if the command matches any of the builtins.
1099 * Depending on context, this might be redundant. But it's
1100 * easier to waste a few CPU cycles than it is to figure out
1101 * if this is one of those cases.
1102 */
1103 for (x = bltins; x->cmd; x++) {
1104 if (strcmp(child->argv[0], x->cmd) == 0 ) {
1105 debug_printf("builtin exec %s\n", child->argv[0]);
Eric Andersen57e6a492001-05-22 22:34:51 +00001106 rcode = x->function(child);
1107 fflush(stdout);
1108 _exit(rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001109 }
1110 }
Eric Andersenaac75e52001-04-30 18:18:45 +00001111
1112 /* Check if the command matches any busybox internal commands
1113 * ("applets") here.
1114 * FIXME: This feature is not 100% safe, since
1115 * BusyBox is not fully reentrant, so we have no guarantee the things
1116 * from the .bss are still zeroed, or that things from .data are still
1117 * at their defaults. We could exec ourself from /proc/self/exe, but I
1118 * really dislike relying on /proc for things. We could exec ourself
1119 * from global_argv[0], but if we are in a chroot, we may not be able
1120 * to find ourself... */
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001121#ifdef CONFIG_FEATURE_SH_STANDALONE_SHELL
Eric Andersenaac75e52001-04-30 18:18:45 +00001122 {
1123 int argc_l;
1124 char** argv_l=child->argv;
1125 char *name = child->argv[0];
1126
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001127#ifdef CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN
Eric Andersenaac75e52001-04-30 18:18:45 +00001128 /* Following discussions from November 2000 on the busybox mailing
1129 * list, the default configuration, (without
Manuel Novoa III cad53642003-03-19 09:13:01 +00001130 * bb_get_last_path_component()) lets the user force use of an
Eric Andersenaac75e52001-04-30 18:18:45 +00001131 * external command by specifying the full (with slashes) filename.
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001132 * If you enable CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN, then applets
Eric Andersenaac75e52001-04-30 18:18:45 +00001133 * _aways_ override external commands, so if you want to run
1134 * /bin/cat, it will use BusyBox cat even if /bin/cat exists on the
1135 * filesystem and is _not_ busybox. Some systems may want this,
1136 * most do not. */
Manuel Novoa III cad53642003-03-19 09:13:01 +00001137 name = bb_get_last_path_component(name);
Eric Andersenaac75e52001-04-30 18:18:45 +00001138#endif
1139 /* Count argc for use in a second... */
1140 for(argc_l=0;*argv_l!=NULL; argv_l++, argc_l++);
1141 optind = 1;
1142 debug_printf("running applet %s\n", name);
1143 run_applet_by_name(name, argc_l, child->argv);
Eric Andersenaac75e52001-04-30 18:18:45 +00001144 }
1145#endif
Eric Andersen25f27032001-04-26 23:22:31 +00001146 debug_printf("exec of %s\n",child->argv[0]);
1147 execvp(child->argv[0],child->argv);
Manuel Novoa III cad53642003-03-19 09:13:01 +00001148 bb_perror_msg("couldn't exec: %s",child->argv[0]);
Eric Andersen94ac2442001-05-22 19:05:18 +00001149 _exit(1);
Eric Andersen25f27032001-04-26 23:22:31 +00001150 } else if (child->group) {
1151 debug_printf("runtime nesting to group\n");
1152 interactive=0; /* crucial!!!! */
1153 rcode = run_list_real(child->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00001154 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00001155 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00001156 _exit(rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001157 } else {
1158 /* Can happen. See what bash does with ">foo" by itself. */
1159 debug_printf("trying to pseudo_exec null command\n");
Eric Andersen94ac2442001-05-22 19:05:18 +00001160 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00001161 }
1162}
1163
Eric Andersenbafd94f2001-05-02 16:11:59 +00001164static void insert_bg_job(struct pipe *pi)
1165{
1166 struct pipe *thejob;
1167
1168 /* Linear search for the ID of the job to use */
1169 pi->jobid = 1;
Eric Andersenc798b072001-06-22 06:23:03 +00001170 for (thejob = job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001171 if (thejob->jobid >= pi->jobid)
1172 pi->jobid = thejob->jobid + 1;
1173
1174 /* add thejob to the list of running jobs */
Eric Andersenc798b072001-06-22 06:23:03 +00001175 if (!job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001176 thejob = job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001177 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001178 for (thejob = job_list; thejob->next; thejob = thejob->next) /* nothing */;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001179 thejob->next = xmalloc(sizeof(*thejob));
1180 thejob = thejob->next;
1181 }
1182
1183 /* physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00001184 memcpy(thejob, pi, sizeof(struct pipe));
Eric Andersenbafd94f2001-05-02 16:11:59 +00001185 thejob->next = NULL;
1186 thejob->running_progs = thejob->num_progs;
1187 thejob->stopped_progs = 0;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001188 thejob->text = xmalloc(BUFSIZ); /* cmdedit buffer size */
Eric Andersen1a6d39b2001-05-08 05:11:54 +00001189
1190 //if (pi->progs[0] && pi->progs[0].argv && pi->progs[0].argv[0])
1191 {
1192 char *bar=thejob->text;
1193 char **foo=pi->progs[0].argv;
1194 while(foo && *foo) {
1195 bar += sprintf(bar, "%s ", *foo++);
1196 }
1197 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001198
1199 /* we don't wait for background thejobs to return -- append it
1200 to the list of backgrounded thejobs and leave it alone */
Eric Andersen1a6d39b2001-05-08 05:11:54 +00001201 printf("[%d] %d\n", thejob->jobid, thejob->progs[0].pid);
1202 last_bg_pid = thejob->progs[0].pid;
Eric Andersenc798b072001-06-22 06:23:03 +00001203 last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001204}
1205
Eric Andersenc798b072001-06-22 06:23:03 +00001206/* remove a backgrounded job */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001207static void remove_bg_job(struct pipe *pi)
1208{
1209 struct pipe *prev_pipe;
1210
Eric Andersenc798b072001-06-22 06:23:03 +00001211 if (pi == job_list) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001212 job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001213 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001214 prev_pipe = job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001215 while (prev_pipe->next != pi)
1216 prev_pipe = prev_pipe->next;
1217 prev_pipe->next = pi->next;
1218 }
Eric Andersen028b65b2001-06-28 01:10:11 +00001219 if (job_list)
1220 last_jobid = job_list->jobid;
1221 else
1222 last_jobid = 0;
1223
Eric Andersen52a97ca2001-06-22 06:49:26 +00001224 pi->stopped_progs = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00001225 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001226 free(pi);
1227}
1228
Eric Andersenc798b072001-06-22 06:23:03 +00001229/* Checks to see if any processes have exited -- if they
Eric Andersenbafd94f2001-05-02 16:11:59 +00001230 have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00001231static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00001232{
Eric Andersenc798b072001-06-22 06:23:03 +00001233 int attributes;
1234 int status;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001235 int prognum = 0;
1236 struct pipe *pi;
1237 pid_t childpid;
1238
Eric Andersenc798b072001-06-22 06:23:03 +00001239 attributes = WUNTRACED;
1240 if (fg_pipe==NULL) {
1241 attributes |= WNOHANG;
1242 }
1243
1244 while ((childpid = waitpid(-1, &status, attributes)) > 0) {
1245 if (fg_pipe) {
1246 int i, rcode = 0;
1247 for (i=0; i < fg_pipe->num_progs; i++) {
1248 if (fg_pipe->progs[i].pid == childpid) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001249 if (i==fg_pipe->num_progs-1)
Eric Andersenc798b072001-06-22 06:23:03 +00001250 rcode=WEXITSTATUS(status);
1251 (fg_pipe->num_progs)--;
1252 return(rcode);
1253 }
1254 }
1255 }
1256
1257 for (pi = job_list; pi; pi = pi->next) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00001258 prognum = 0;
Eric Andersen52a97ca2001-06-22 06:49:26 +00001259 while (prognum < pi->num_progs && pi->progs[prognum].pid != childpid) {
1260 prognum++;
1261 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00001262 if (prognum < pi->num_progs)
1263 break;
1264 }
1265
Eric Andersen99785762001-05-22 21:37:48 +00001266 if(pi==NULL) {
1267 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
1268 continue;
1269 }
Eric Andersenaeb44c42001-05-22 20:29:00 +00001270
Eric Andersenbafd94f2001-05-02 16:11:59 +00001271 if (WIFEXITED(status) || WIFSIGNALED(status)) {
1272 /* child exited */
1273 pi->running_progs--;
1274 pi->progs[prognum].pid = 0;
1275
1276 if (!pi->running_progs) {
1277 printf(JOB_STATUS_FORMAT, pi->jobid, "Done", pi->text);
1278 remove_bg_job(pi);
1279 }
1280 } else {
1281 /* child stopped */
1282 pi->stopped_progs++;
1283 pi->progs[prognum].is_stopped = 1;
1284
Eric Andersen52a97ca2001-06-22 06:49:26 +00001285#if 0
1286 /* Printing this stuff is a pain, since it tends to
1287 * overwrite the prompt an inconveinient moments. So
1288 * don't do that. */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001289 if (pi->stopped_progs == pi->num_progs) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001290 printf("\n"JOB_STATUS_FORMAT, pi->jobid, "Stopped", pi->text);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001291 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00001292#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00001293 }
1294 }
1295
Matt Kraai80abc452001-05-02 21:48:17 +00001296 if (childpid == -1 && errno != ECHILD)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001297 bb_perror_msg("waitpid");
Matt Kraai80abc452001-05-02 21:48:17 +00001298
Eric Andersenbafd94f2001-05-02 16:11:59 +00001299 /* move the shell to the foreground */
Eric Andersen028b65b2001-06-28 01:10:11 +00001300 //if (interactive && tcsetpgrp(shell_terminal, getpgid(0)))
Manuel Novoa III cad53642003-03-19 09:13:01 +00001301 // bb_perror_msg("tcsetpgrp-2");
Eric Andersenc798b072001-06-22 06:23:03 +00001302 return -1;
Eric Andersenada18ff2001-05-21 16:18:22 +00001303}
1304
1305/* Figure out our controlling tty, checking in order stderr,
1306 * stdin, and stdout. If check_pgrp is set, also check that
1307 * we belong to the foreground process group associated with
Eric Andersen6c947d22001-06-25 22:24:38 +00001308 * that tty. The value of shell_terminal is needed in order to call
1309 * tcsetpgrp(shell_terminal, ...); */
Eric Andersenc798b072001-06-22 06:23:03 +00001310void controlling_tty(int check_pgrp)
Eric Andersenada18ff2001-05-21 16:18:22 +00001311{
1312 pid_t curpgrp;
Eric Andersenada18ff2001-05-21 16:18:22 +00001313
Eric Andersen6c947d22001-06-25 22:24:38 +00001314 if ((curpgrp = tcgetpgrp(shell_terminal = 2)) < 0
1315 && (curpgrp = tcgetpgrp(shell_terminal = 0)) < 0
1316 && (curpgrp = tcgetpgrp(shell_terminal = 1)) < 0)
1317 goto shell_terminal_error;
Eric Andersenada18ff2001-05-21 16:18:22 +00001318
Eric Andersenc798b072001-06-22 06:23:03 +00001319 if (check_pgrp && curpgrp != getpgid(0))
Eric Andersen6c947d22001-06-25 22:24:38 +00001320 goto shell_terminal_error;
Eric Andersenada18ff2001-05-21 16:18:22 +00001321
Eric Andersenc798b072001-06-22 06:23:03 +00001322 return;
1323
Eric Andersen6c947d22001-06-25 22:24:38 +00001324shell_terminal_error:
1325 shell_terminal = -1;
Eric Andersenc798b072001-06-22 06:23:03 +00001326 return;
Eric Andersenbafd94f2001-05-02 16:11:59 +00001327}
1328
Eric Andersen25f27032001-04-26 23:22:31 +00001329/* run_pipe_real() starts all the jobs, but doesn't wait for anything
Eric Andersenc798b072001-06-22 06:23:03 +00001330 * to finish. See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00001331 *
1332 * return code is normally -1, when the caller has to wait for children
1333 * to finish to determine the exit status of the pipe. If the pipe
1334 * is a simple builtin command, however, the action is done by the
1335 * time run_pipe_real returns, and the exit code is provided as the
1336 * return value.
1337 *
1338 * The input of the pipe is always stdin, the output is always
1339 * stdout. The outpipe[] mechanism in BusyBox-0.48 lash is bogus,
1340 * because it tries to avoid running the command substitution in
1341 * subshell, when that is in fact necessary. The subshell process
1342 * now has its stdout directed to the input of the appropriate pipe,
1343 * so this routine is noticeably simpler.
1344 */
1345static int run_pipe_real(struct pipe *pi)
1346{
1347 int i;
1348 int nextin, nextout;
1349 int pipefds[2]; /* pipefds[0] is for reading */
1350 struct child_prog *child;
1351 struct built_in_command *x;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001352 char *p;
Eric Andersen25f27032001-04-26 23:22:31 +00001353
1354 nextin = 0;
Eric Andersenada18ff2001-05-21 16:18:22 +00001355 pi->pgrp = -1;
Eric Andersen25f27032001-04-26 23:22:31 +00001356
1357 /* Check if this is a simple builtin (not part of a pipe).
1358 * Builtins within pipes have to fork anyway, and are handled in
1359 * pseudo_exec. "echo foo | read bar" doesn't work on bash, either.
1360 */
Eric Andersen04407e52001-06-07 16:42:05 +00001361 if (pi->num_progs == 1) child = & (pi->progs[0]);
1362 if (pi->num_progs == 1 && child->group && child->subshell == 0) {
1363 int squirrel[] = {-1, -1, -1};
1364 int rcode;
1365 debug_printf("non-subshell grouping\n");
1366 setup_redirects(child, squirrel);
1367 /* XXX could we merge code with following builtin case,
1368 * by creating a pseudo builtin that calls run_list_real? */
1369 rcode = run_list_real(child->group);
1370 restore_redirects(squirrel);
1371 return rcode;
1372 } else if (pi->num_progs == 1 && pi->progs[0].argv != NULL) {
Eric Andersen78a7c992001-05-15 16:30:25 +00001373 for (i=0; is_assignment(child->argv[i]); i++) { /* nothing */ }
1374 if (i!=0 && child->argv[i]==NULL) {
1375 /* assignments, but no command: set the local environment */
1376 for (i=0; child->argv[i]!=NULL; i++) {
Eric Andersen99785762001-05-22 21:37:48 +00001377
1378 /* Ok, this case is tricky. We have to decide if this is a
1379 * local variable, or an already exported variable. If it is
1380 * already exported, we have to export the new value. If it is
1381 * not exported, we need only set this as a local variable.
1382 * This junk is all to decide whether or not to export this
1383 * variable. */
1384 int export_me=0;
1385 char *name, *value;
Manuel Novoa III cad53642003-03-19 09:13:01 +00001386 name = bb_xstrdup(child->argv[i]);
Eric Andersen04407e52001-06-07 16:42:05 +00001387 debug_printf("Local environment set: %s\n", name);
Eric Andersen99785762001-05-22 21:37:48 +00001388 value = strchr(name, '=');
1389 if (value)
1390 *value=0;
1391 if ( get_local_var(name)) {
1392 export_me=1;
1393 }
1394 free(name);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001395 p = insert_var_value(child->argv[i]);
1396 set_local_var(p, export_me);
1397 if (p != child->argv[i]) free(p);
Eric Andersen78a7c992001-05-15 16:30:25 +00001398 }
1399 return EXIT_SUCCESS; /* don't worry about errors in set_local_var() yet */
1400 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001401 for (i = 0; is_assignment(child->argv[i]); i++) {
1402 p = insert_var_value(child->argv[i]);
1403 putenv(strdup(p));
1404 if (p != child->argv[i]) {
1405 child->sp--;
1406 free(p);
1407 }
1408 }
1409 if (child->sp) {
1410 char * str = NULL;
1411
1412 str = make_string((child->argv + i));
1413 parse_string_outer(str, FLAG_EXIT_FROM_LOOP | FLAG_REPARSING);
1414 free(str);
1415 return last_return_code;
1416 }
Eric Andersen25f27032001-04-26 23:22:31 +00001417 for (x = bltins; x->cmd; x++) {
Eric Andersen78a7c992001-05-15 16:30:25 +00001418 if (strcmp(child->argv[i], x->cmd) == 0 ) {
Eric Andersen25f27032001-04-26 23:22:31 +00001419 int squirrel[] = {-1, -1, -1};
1420 int rcode;
Eric Andersen78a7c992001-05-15 16:30:25 +00001421 if (x->function == builtin_exec && child->argv[i+1]==NULL) {
Eric Andersen83a2ae22001-05-07 17:59:25 +00001422 debug_printf("magic exec\n");
1423 setup_redirects(child,NULL);
1424 return EXIT_SUCCESS;
1425 }
Eric Andersen25f27032001-04-26 23:22:31 +00001426 debug_printf("builtin inline %s\n", child->argv[0]);
1427 /* XXX setup_redirects acts on file descriptors, not FILEs.
1428 * This is perfect for work that comes after exec().
1429 * Is it really safe for inline use? Experimentally,
1430 * things seem to work with glibc. */
1431 setup_redirects(child, squirrel);
Eric Andersen78a7c992001-05-15 16:30:25 +00001432 child->argv+=i; /* XXX horrible hack */
Eric Andersen25f27032001-04-26 23:22:31 +00001433 rcode = x->function(child);
Eric Andersen78a7c992001-05-15 16:30:25 +00001434 child->argv-=i; /* XXX restore hack so free() can work right */
Eric Andersen25f27032001-04-26 23:22:31 +00001435 restore_redirects(squirrel);
1436 return rcode;
1437 }
1438 }
1439 }
1440
1441 for (i = 0; i < pi->num_progs; i++) {
1442 child = & (pi->progs[i]);
1443
1444 /* pipes are inserted between pairs of commands */
1445 if ((i + 1) < pi->num_progs) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001446 if (pipe(pipefds)<0) bb_perror_msg_and_die("pipe");
Eric Andersen25f27032001-04-26 23:22:31 +00001447 nextout = pipefds[1];
1448 } else {
1449 nextout=1;
1450 pipefds[0] = -1;
1451 }
1452
1453 /* XXX test for failed fork()? */
Eric Andersen72f9a422001-10-28 05:12:20 +00001454#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
1455 if (!(child->pid = fork()))
1456#else
1457 if (!(child->pid = vfork()))
1458#endif
1459 {
Eric Andersen6c947d22001-06-25 22:24:38 +00001460 /* Set the handling for job control signals back to the default. */
1461 signal(SIGINT, SIG_DFL);
1462 signal(SIGQUIT, SIG_DFL);
Eric Andersen7467c8d2001-07-12 20:26:32 +00001463 signal(SIGTERM, SIG_DFL);
Eric Andersen6c947d22001-06-25 22:24:38 +00001464 signal(SIGTSTP, SIG_DFL);
1465 signal(SIGTTIN, SIG_DFL);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001466 signal(SIGTTOU, SIG_DFL);
Eric Andersen6c947d22001-06-25 22:24:38 +00001467 signal(SIGCHLD, SIG_DFL);
Eric Andersenbafd94f2001-05-02 16:11:59 +00001468
Eric Andersen25f27032001-04-26 23:22:31 +00001469 close_all();
1470
1471 if (nextin != 0) {
1472 dup2(nextin, 0);
1473 close(nextin);
1474 }
1475 if (nextout != 1) {
1476 dup2(nextout, 1);
1477 close(nextout);
1478 }
1479 if (pipefds[0]!=-1) {
1480 close(pipefds[0]); /* opposite end of our output pipe */
1481 }
1482
1483 /* Like bash, explicit redirects override pipes,
1484 * and the pipe fd is available for dup'ing. */
1485 setup_redirects(child,NULL);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001486
Eric Andersenada18ff2001-05-21 16:18:22 +00001487 if (interactive && pi->followup!=PIPE_BG) {
Eric Andersenbfae2522001-05-17 00:14:27 +00001488 /* If we (the child) win the race, put ourselves in the process
1489 * group whose leader is the first process in this pipe. */
Eric Andersen0fcd4472001-05-02 20:12:03 +00001490 if (pi->pgrp < 0) {
Eric Andersenada18ff2001-05-21 16:18:22 +00001491 pi->pgrp = getpid();
Eric Andersen0fcd4472001-05-02 20:12:03 +00001492 }
Eric Andersen0fcd4472001-05-02 20:12:03 +00001493 if (setpgid(0, pi->pgrp) == 0) {
Eric Andersen52a97ca2001-06-22 06:49:26 +00001494 tcsetpgrp(2, pi->pgrp);
Eric Andersen0fcd4472001-05-02 20:12:03 +00001495 }
1496 }
Eric Andersen25f27032001-04-26 23:22:31 +00001497
1498 pseudo_exec(child);
1499 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00001500
1501
1502 /* put our child in the process group whose leader is the
1503 first process in this pipe */
Eric Andersen0fcd4472001-05-02 20:12:03 +00001504 if (pi->pgrp < 0) {
1505 pi->pgrp = child->pid;
Eric Andersen25f27032001-04-26 23:22:31 +00001506 }
Eric Andersen0fcd4472001-05-02 20:12:03 +00001507 /* Don't check for errors. The child may be dead already,
1508 * in which case setpgid returns error code EACCES. */
1509 setpgid(child->pid, pi->pgrp);
1510
Eric Andersen25f27032001-04-26 23:22:31 +00001511 if (nextin != 0)
1512 close(nextin);
1513 if (nextout != 1)
1514 close(nextout);
1515
1516 /* If there isn't another process, nextin is garbage
1517 but it doesn't matter */
1518 nextin = pipefds[0];
1519 }
1520 return -1;
1521}
1522
1523static int run_list_real(struct pipe *pi)
1524{
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001525 char *save_name = NULL;
1526 char **list = NULL;
1527 char **save_list = NULL;
1528 struct pipe *rpipe;
1529 int flag_rep = 0;
1530 int save_num_progs;
1531 int rcode=0, flag_skip=1;
1532 int flag_restore = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00001533 int if_code=0, next_if_code=0; /* need double-buffer to handle elif */
Eric Andersen4ed5e372001-05-01 01:49:50 +00001534 reserved_style rmode, skip_more_in_this_rmode=RES_XXXX;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001535 /* check syntax for "for" */
1536 for (rpipe = pi; rpipe; rpipe = rpipe->next) {
1537 if ((rpipe->r_mode == RES_IN ||
1538 rpipe->r_mode == RES_FOR) &&
1539 (rpipe->next == NULL)) {
1540 syntax();
1541 return 1;
1542 }
1543 if ((rpipe->r_mode == RES_IN &&
1544 (rpipe->next->r_mode == RES_IN &&
1545 rpipe->next->progs->argv != NULL))||
1546 (rpipe->r_mode == RES_FOR &&
1547 rpipe->next->r_mode != RES_IN)) {
1548 syntax();
1549 return 1;
1550 }
1551 }
1552 for (; pi; pi = (flag_restore != 0) ? rpipe : pi->next) {
1553 if (pi->r_mode == RES_WHILE || pi->r_mode == RES_UNTIL ||
1554 pi->r_mode == RES_FOR) {
1555 flag_restore = 0;
1556 if (!rpipe) {
1557 flag_rep = 0;
1558 rpipe = pi;
1559 }
1560 }
Eric Andersen25f27032001-04-26 23:22:31 +00001561 rmode = pi->r_mode;
Eric Andersen4ed5e372001-05-01 01:49:50 +00001562 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 +00001563 if (rmode == skip_more_in_this_rmode && flag_skip) {
1564 if (pi->followup == PIPE_SEQ) flag_skip=0;
1565 continue;
1566 }
1567 flag_skip = 1;
Eric Andersen4ed5e372001-05-01 01:49:50 +00001568 skip_more_in_this_rmode = RES_XXXX;
Eric Andersen25f27032001-04-26 23:22:31 +00001569 if (rmode == RES_THEN || rmode == RES_ELSE) if_code = next_if_code;
1570 if (rmode == RES_THEN && if_code) continue;
1571 if (rmode == RES_ELSE && !if_code) continue;
1572 if (rmode == RES_ELIF && !if_code) continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001573 if (rmode == RES_FOR && pi->num_progs) {
1574 if (!list) {
1575 /* if no variable values after "in" we skip "for" */
1576 if (!pi->next->progs->argv) continue;
1577 /* create list of variable values */
1578 list = make_list_in(pi->next->progs->argv,
1579 pi->progs->argv[0]);
1580 save_list = list;
1581 save_name = pi->progs->argv[0];
1582 pi->progs->argv[0] = NULL;
1583 flag_rep = 1;
1584 }
1585 if (!(*list)) {
1586 free(pi->progs->argv[0]);
1587 free(save_list);
1588 list = NULL;
1589 flag_rep = 0;
1590 pi->progs->argv[0] = save_name;
1591 pi->progs->glob_result.gl_pathv[0] =
1592 pi->progs->argv[0];
1593 continue;
1594 } else {
1595 /* insert new value from list for variable */
1596 if (pi->progs->argv[0])
1597 free(pi->progs->argv[0]);
1598 pi->progs->argv[0] = *list++;
1599 pi->progs->glob_result.gl_pathv[0] =
1600 pi->progs->argv[0];
1601 }
1602 }
1603 if (rmode == RES_IN) continue;
1604 if (rmode == RES_DO) {
1605 if (!flag_rep) continue;
1606 }
1607 if ((rmode == RES_DONE)) {
1608 if (flag_rep) {
1609 flag_restore = 1;
1610 } else {
1611 rpipe = NULL;
1612 }
1613 }
Eric Andersen4ed5e372001-05-01 01:49:50 +00001614 if (pi->num_progs == 0) continue;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001615 save_num_progs = pi->num_progs; /* save number of programs */
Eric Andersen25f27032001-04-26 23:22:31 +00001616 rcode = run_pipe_real(pi);
Eric Andersen04407e52001-06-07 16:42:05 +00001617 debug_printf("run_pipe_real returned %d\n",rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001618 if (rcode!=-1) {
1619 /* We only ran a builtin: rcode was set by the return value
1620 * of run_pipe_real(), and we don't need to wait for anything. */
1621 } else if (pi->followup==PIPE_BG) {
1622 /* XXX check bash's behavior with nontrivial pipes */
1623 /* XXX compute jobid */
1624 /* XXX what does bash do with attempts to background builtins? */
Eric Andersenbafd94f2001-05-02 16:11:59 +00001625 insert_bg_job(pi);
Eric Andersen25f27032001-04-26 23:22:31 +00001626 rcode = EXIT_SUCCESS;
1627 } else {
1628 if (interactive) {
1629 /* move the new process group into the foreground */
Eric Andersen6c947d22001-06-25 22:24:38 +00001630 if (tcsetpgrp(shell_terminal, pi->pgrp) && errno != ENOTTY)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001631 bb_perror_msg("tcsetpgrp-3");
Eric Andersenc798b072001-06-22 06:23:03 +00001632 rcode = checkjobs(pi);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001633 /* move the shell to the foreground */
Eric Andersen6c947d22001-06-25 22:24:38 +00001634 if (tcsetpgrp(shell_terminal, getpgid(0)) && errno != ENOTTY)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001635 bb_perror_msg("tcsetpgrp-4");
Eric Andersen25f27032001-04-26 23:22:31 +00001636 } else {
Eric Andersenc798b072001-06-22 06:23:03 +00001637 rcode = checkjobs(pi);
Eric Andersen25f27032001-04-26 23:22:31 +00001638 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00001639 debug_printf("checkjobs returned %d\n",rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00001640 }
1641 last_return_code=rcode;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001642 pi->num_progs = save_num_progs; /* restore number of programs */
Eric Andersen25f27032001-04-26 23:22:31 +00001643 if ( rmode == RES_IF || rmode == RES_ELIF )
1644 next_if_code=rcode; /* can be overwritten a number of times */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00001645 if (rmode == RES_WHILE)
1646 flag_rep = !last_return_code;
1647 if (rmode == RES_UNTIL)
1648 flag_rep = last_return_code;
Eric Andersen25f27032001-04-26 23:22:31 +00001649 if ( (rcode==EXIT_SUCCESS && pi->followup==PIPE_OR) ||
1650 (rcode!=EXIT_SUCCESS && pi->followup==PIPE_AND) )
Eric Andersen4ed5e372001-05-01 01:49:50 +00001651 skip_more_in_this_rmode=rmode;
Eric Andersen028b65b2001-06-28 01:10:11 +00001652 checkjobs(NULL);
Eric Andersen25f27032001-04-26 23:22:31 +00001653 }
1654 return rcode;
1655}
1656
1657/* broken, of course, but OK for testing */
1658static char *indenter(int i)
1659{
1660 static char blanks[]=" ";
1661 return &blanks[sizeof(blanks)-i-1];
1662}
1663
1664/* return code is the exit status of the pipe */
Eric Andersenbf7df042001-05-23 22:18:35 +00001665static int free_pipe(struct pipe *pi, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00001666{
1667 char **p;
1668 struct child_prog *child;
1669 struct redir_struct *r, *rnext;
1670 int a, i, ret_code=0;
1671 char *ind = indenter(indent);
Eric Andersen52a97ca2001-06-22 06:49:26 +00001672
1673 if (pi->stopped_progs > 0)
1674 return ret_code;
Eric Andersen25f27032001-04-26 23:22:31 +00001675 final_printf("%s run pipe: (pid %d)\n",ind,getpid());
1676 for (i=0; i<pi->num_progs; i++) {
1677 child = &pi->progs[i];
1678 final_printf("%s command %d:\n",ind,i);
1679 if (child->argv) {
1680 for (a=0,p=child->argv; *p; a++,p++) {
1681 final_printf("%s argv[%d] = %s\n",ind,a,*p);
1682 }
1683 globfree(&child->glob_result);
1684 child->argv=NULL;
1685 } else if (child->group) {
1686 final_printf("%s begin group (subshell:%d)\n",ind, child->subshell);
Eric Andersenbf7df042001-05-23 22:18:35 +00001687 ret_code = free_pipe_list(child->group,indent+3);
Eric Andersen25f27032001-04-26 23:22:31 +00001688 final_printf("%s end group\n",ind);
1689 } else {
1690 final_printf("%s (nil)\n",ind);
1691 }
1692 for (r=child->redirects; r; r=rnext) {
1693 final_printf("%s redirect %d%s", ind, r->fd, redir_table[r->type].descrip);
1694 if (r->dup == -1) {
Eric Andersen817e73c2001-06-06 17:56:09 +00001695 /* guard against the case >$FOO, where foo is unset or blank */
1696 if (r->word.gl_pathv) {
1697 final_printf(" %s\n", *r->word.gl_pathv);
1698 globfree(&r->word);
1699 }
Eric Andersen25f27032001-04-26 23:22:31 +00001700 } else {
1701 final_printf("&%d\n", r->dup);
1702 }
1703 rnext=r->next;
1704 free(r);
1705 }
1706 child->redirects=NULL;
1707 }
1708 free(pi->progs); /* children are an array, they get freed all at once */
1709 pi->progs=NULL;
1710 return ret_code;
1711}
1712
Eric Andersenbf7df042001-05-23 22:18:35 +00001713static int free_pipe_list(struct pipe *head, int indent)
Eric Andersen25f27032001-04-26 23:22:31 +00001714{
1715 int rcode=0; /* if list has no members */
1716 struct pipe *pi, *next;
1717 char *ind = indenter(indent);
1718 for (pi=head; pi; pi=next) {
Eric Andersen25f27032001-04-26 23:22:31 +00001719 final_printf("%s pipe reserved mode %d\n", ind, pi->r_mode);
Eric Andersenbf7df042001-05-23 22:18:35 +00001720 rcode = free_pipe(pi, indent);
Eric Andersen25f27032001-04-26 23:22:31 +00001721 final_printf("%s pipe followup code %d\n", ind, pi->followup);
1722 next=pi->next;
1723 pi->next=NULL;
1724 free(pi);
1725 }
1726 return rcode;
1727}
1728
1729/* Select which version we will use */
1730static int run_list(struct pipe *pi)
1731{
1732 int rcode=0;
1733 if (fake_mode==0) {
1734 rcode = run_list_real(pi);
1735 }
Eric Andersenbf7df042001-05-23 22:18:35 +00001736 /* free_pipe_list has the side effect of clearing memory
Eric Andersen25f27032001-04-26 23:22:31 +00001737 * In the long run that function can be merged with run_list_real,
1738 * but doing that now would hobble the debugging effort. */
Eric Andersenbf7df042001-05-23 22:18:35 +00001739 free_pipe_list(pi,0);
Eric Andersen25f27032001-04-26 23:22:31 +00001740 return rcode;
1741}
1742
1743/* The API for glob is arguably broken. This routine pushes a non-matching
1744 * string into the output structure, removing non-backslashed backslashes.
1745 * If someone can prove me wrong, by performing this function within the
1746 * original glob(3) api, feel free to rewrite this routine into oblivion.
1747 * Return code (0 vs. GLOB_NOSPACE) matches glob(3).
1748 * XXX broken if the last character is '\\', check that before calling.
1749 */
1750static int globhack(const char *src, int flags, glob_t *pglob)
1751{
Eric Andersen817e73c2001-06-06 17:56:09 +00001752 int cnt=0, pathc;
Eric Andersen25f27032001-04-26 23:22:31 +00001753 const char *s;
1754 char *dest;
Eric Andersen817e73c2001-06-06 17:56:09 +00001755 for (cnt=1, s=src; s && *s; s++) {
Eric Andersen25f27032001-04-26 23:22:31 +00001756 if (*s == '\\') s++;
1757 cnt++;
1758 }
1759 dest = malloc(cnt);
1760 if (!dest) return GLOB_NOSPACE;
1761 if (!(flags & GLOB_APPEND)) {
1762 pglob->gl_pathv=NULL;
1763 pglob->gl_pathc=0;
1764 pglob->gl_offs=0;
1765 pglob->gl_offs=0;
1766 }
1767 pathc = ++pglob->gl_pathc;
1768 pglob->gl_pathv = realloc(pglob->gl_pathv, (pathc+1)*sizeof(*pglob->gl_pathv));
1769 if (pglob->gl_pathv == NULL) return GLOB_NOSPACE;
1770 pglob->gl_pathv[pathc-1]=dest;
1771 pglob->gl_pathv[pathc]=NULL;
Eric Andersen817e73c2001-06-06 17:56:09 +00001772 for (s=src; s && *s; s++, dest++) {
Eric Andersen25f27032001-04-26 23:22:31 +00001773 if (*s == '\\') s++;
1774 *dest = *s;
1775 }
1776 *dest='\0';
1777 return 0;
1778}
1779
1780/* XXX broken if the last character is '\\', check that before calling */
1781static int glob_needed(const char *s)
1782{
1783 for (; *s; s++) {
1784 if (*s == '\\') s++;
1785 if (strchr("*[?",*s)) return 1;
1786 }
1787 return 0;
1788}
1789
1790#if 0
1791static void globprint(glob_t *pglob)
1792{
1793 int i;
1794 debug_printf("glob_t at %p:\n", pglob);
1795 debug_printf(" gl_pathc=%d gl_pathv=%p gl_offs=%d gl_flags=%d\n",
1796 pglob->gl_pathc, pglob->gl_pathv, pglob->gl_offs, pglob->gl_flags);
1797 for (i=0; i<pglob->gl_pathc; i++)
1798 debug_printf("pglob->gl_pathv[%d] = %p = %s\n", i,
1799 pglob->gl_pathv[i], pglob->gl_pathv[i]);
1800}
1801#endif
1802
1803static int xglob(o_string *dest, int flags, glob_t *pglob)
1804{
1805 int gr;
1806
1807 /* short-circuit for null word */
1808 /* we can code this better when the debug_printf's are gone */
1809 if (dest->length == 0) {
1810 if (dest->nonnull) {
1811 /* bash man page calls this an "explicit" null */
1812 gr = globhack(dest->data, flags, pglob);
1813 debug_printf("globhack returned %d\n",gr);
1814 } else {
1815 return 0;
1816 }
1817 } else if (glob_needed(dest->data)) {
1818 gr = glob(dest->data, flags, NULL, pglob);
1819 debug_printf("glob returned %d\n",gr);
1820 if (gr == GLOB_NOMATCH) {
1821 /* quote removal, or more accurately, backslash removal */
1822 gr = globhack(dest->data, flags, pglob);
1823 debug_printf("globhack returned %d\n",gr);
1824 }
1825 } else {
1826 gr = globhack(dest->data, flags, pglob);
1827 debug_printf("globhack returned %d\n",gr);
1828 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001829 if (gr == GLOB_NOSPACE)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001830 bb_error_msg_and_die("out of memory during glob");
Eric Andersen25f27032001-04-26 23:22:31 +00001831 if (gr != 0) { /* GLOB_ABORTED ? */
Manuel Novoa III cad53642003-03-19 09:13:01 +00001832 bb_error_msg("glob(3) error %d",gr);
Eric Andersen25f27032001-04-26 23:22:31 +00001833 }
1834 /* globprint(glob_target); */
1835 return gr;
1836}
1837
Eric Andersenf72f5622001-05-15 23:21:41 +00001838/* This is used to get/check local shell variables */
1839static char *get_local_var(const char *s)
1840{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001841 struct variables *cur;
Eric Andersenf72f5622001-05-15 23:21:41 +00001842
1843 if (!s)
1844 return NULL;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001845 for (cur = top_vars; cur; cur=cur->next)
1846 if(strcmp(cur->name, s)==0)
1847 return cur->value;
Eric Andersenf72f5622001-05-15 23:21:41 +00001848 return NULL;
1849}
1850
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001851/* This is used to set local shell variables
1852 flg_export==0 if only local (not exporting) variable
1853 flg_export==1 if "new" exporting environ
1854 flg_export>1 if current startup environ (not call putenv()) */
1855static int set_local_var(const char *s, int flg_export)
Eric Andersen78a7c992001-05-15 16:30:25 +00001856{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001857 char *name, *value;
Eric Andersen20a69a72001-05-15 17:24:44 +00001858 int result=0;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001859 struct variables *cur;
Eric Andersen20a69a72001-05-15 17:24:44 +00001860
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001861 name=strdup(s);
Eric Andersen20a69a72001-05-15 17:24:44 +00001862
1863 /* Assume when we enter this function that we are already in
1864 * NAME=VALUE format. So the first order of business is to
1865 * split 's' on the '=' into 'name' and 'value' */
1866 value = strchr(name, '=');
Eric Andersen99785762001-05-22 21:37:48 +00001867 if (value==0 && ++value==0) {
1868 free(name);
1869 return -1;
1870 }
1871 *value++ = 0;
Eric Andersen20a69a72001-05-15 17:24:44 +00001872
Eric Andersen99785762001-05-22 21:37:48 +00001873 for(cur = top_vars; cur; cur = cur->next) {
1874 if(strcmp(cur->name, name)==0)
1875 break;
1876 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001877
Eric Andersen99785762001-05-22 21:37:48 +00001878 if(cur) {
1879 if(strcmp(cur->value, value)==0) {
1880 if(flg_export>0 && cur->flg_export==0)
1881 cur->flg_export=flg_export;
1882 else
1883 result++;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001884 } else {
Eric Andersen99785762001-05-22 21:37:48 +00001885 if(cur->flg_read_only) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001886 bb_error_msg("%s: readonly variable", name);
Eric Andersen20a69a72001-05-15 17:24:44 +00001887 result = -1;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001888 } else {
Eric Andersen99785762001-05-22 21:37:48 +00001889 if(flg_export>0 || cur->flg_export>1)
1890 cur->flg_export=1;
1891 free(cur->value);
1892
1893 cur->value = strdup(value);
1894 }
1895 }
1896 } else {
1897 cur = malloc(sizeof(struct variables));
1898 if(!cur) {
1899 result = -1;
1900 } else {
1901 cur->name = strdup(name);
1902 if(cur->name == 0) {
1903 free(cur);
1904 result = -1;
1905 } else {
1906 struct variables *bottom = top_vars;
1907 cur->value = strdup(value);
1908 cur->next = 0;
1909 cur->flg_export = flg_export;
1910 cur->flg_read_only = 0;
1911 while(bottom->next) bottom=bottom->next;
1912 bottom->next = cur;
Eric Andersen20a69a72001-05-15 17:24:44 +00001913 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001914 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001915 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001916
Eric Andersen94ac2442001-05-22 19:05:18 +00001917 if(result==0 && cur->flg_export==1) {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001918 *(value-1) = '=';
1919 result = putenv(name);
1920 } else {
Eric Andersen94ac2442001-05-22 19:05:18 +00001921 free(name);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001922 if(result>0) /* equivalent to previous set */
1923 result = 0;
1924 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001925 return result;
1926}
1927
Eric Andersenf72f5622001-05-15 23:21:41 +00001928static void unset_local_var(const char *name)
Eric Andersen20a69a72001-05-15 17:24:44 +00001929{
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001930 struct variables *cur;
Eric Andersen20a69a72001-05-15 17:24:44 +00001931
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001932 if (name) {
Eric Andersen94ac2442001-05-22 19:05:18 +00001933 for (cur = top_vars; cur; cur=cur->next) {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001934 if(strcmp(cur->name, name)==0)
1935 break;
Eric Andersen94ac2442001-05-22 19:05:18 +00001936 }
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001937 if(cur!=0) {
1938 struct variables *next = top_vars;
Eric Andersen94ac2442001-05-22 19:05:18 +00001939 if(cur->flg_read_only) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001940 bb_error_msg("%s: readonly variable", name);
Eric Andersen94ac2442001-05-22 19:05:18 +00001941 return;
1942 } else {
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001943 if(cur->flg_export)
1944 unsetenv(cur->name);
1945 free(cur->name);
1946 free(cur->value);
1947 while (next->next != cur)
1948 next = next->next;
1949 next->next = cur->next;
1950 }
1951 free(cur);
Eric Andersenf72f5622001-05-15 23:21:41 +00001952 }
Eric Andersen20a69a72001-05-15 17:24:44 +00001953 }
Eric Andersen78a7c992001-05-15 16:30:25 +00001954}
1955
1956static int is_assignment(const char *s)
1957{
1958 if (s==NULL || !isalpha(*s)) return 0;
1959 ++s;
1960 while(isalnum(*s) || *s=='_') ++s;
1961 return *s=='=';
1962}
1963
Eric Andersen25f27032001-04-26 23:22:31 +00001964/* the src parameter allows us to peek forward to a possible &n syntax
1965 * for file descriptor duplication, e.g., "2>&1".
1966 * Return code is 0 normally, 1 if a syntax error is detected in src.
1967 * Resource errors (in xmalloc) cause the process to exit */
1968static int setup_redirect(struct p_context *ctx, int fd, redir_type style,
1969 struct in_str *input)
1970{
1971 struct child_prog *child=ctx->child;
1972 struct redir_struct *redir = child->redirects;
1973 struct redir_struct *last_redir=NULL;
1974
1975 /* Create a new redir_struct and drop it onto the end of the linked list */
1976 while(redir) {
1977 last_redir=redir;
1978 redir=redir->next;
1979 }
1980 redir = xmalloc(sizeof(struct redir_struct));
1981 redir->next=NULL;
Eric Andersen817e73c2001-06-06 17:56:09 +00001982 redir->word.gl_pathv=NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00001983 if (last_redir) {
1984 last_redir->next=redir;
1985 } else {
1986 child->redirects=redir;
1987 }
1988
1989 redir->type=style;
1990 redir->fd= (fd==-1) ? redir_table[style].default_fd : fd ;
1991
1992 debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
1993
1994 /* Check for a '2>&1' type redirect */
1995 redir->dup = redirect_dup_num(input);
1996 if (redir->dup == -2) return 1; /* syntax error */
1997 if (redir->dup != -1) {
1998 /* Erik had a check here that the file descriptor in question
Eric Andersen83a2ae22001-05-07 17:59:25 +00001999 * is legit; I postpone that to "run time"
2000 * A "-" representation of "close me" shows up as a -3 here */
Eric Andersen25f27032001-04-26 23:22:31 +00002001 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
2002 } else {
2003 /* We do _not_ try to open the file that src points to,
2004 * since we need to return and let src be expanded first.
2005 * Set ctx->pending_redirect, so we know what to do at the
2006 * end of the next parsed word.
2007 */
2008 ctx->pending_redirect = redir;
2009 }
2010 return 0;
2011}
2012
2013struct pipe *new_pipe(void) {
2014 struct pipe *pi;
2015 pi = xmalloc(sizeof(struct pipe));
2016 pi->num_progs = 0;
2017 pi->progs = NULL;
2018 pi->next = NULL;
2019 pi->followup = 0; /* invalid */
2020 return pi;
2021}
2022
2023static void initialize_context(struct p_context *ctx)
2024{
2025 ctx->pipe=NULL;
2026 ctx->pending_redirect=NULL;
2027 ctx->child=NULL;
2028 ctx->list_head=new_pipe();
2029 ctx->pipe=ctx->list_head;
2030 ctx->w=RES_NONE;
2031 ctx->stack=NULL;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002032 ctx->old_flag=0;
Eric Andersen25f27032001-04-26 23:22:31 +00002033 done_command(ctx); /* creates the memory for working child */
2034}
2035
2036/* normal return is 0
2037 * if a reserved word is found, and processed, return 1
2038 * should handle if, then, elif, else, fi, for, while, until, do, done.
2039 * case, function, and select are obnoxious, save those for later.
2040 */
2041int reserved_word(o_string *dest, struct p_context *ctx)
2042{
2043 struct reserved_combo {
2044 char *literal;
2045 int code;
2046 long flag;
2047 };
2048 /* Mostly a list of accepted follow-up reserved words.
2049 * FLAG_END means we are done with the sequence, and are ready
2050 * to turn the compound list into a command.
2051 * FLAG_START means the word must start a new compound list.
2052 */
2053 static struct reserved_combo reserved_list[] = {
2054 { "if", RES_IF, FLAG_THEN | FLAG_START },
2055 { "then", RES_THEN, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
2056 { "elif", RES_ELIF, FLAG_THEN },
2057 { "else", RES_ELSE, FLAG_FI },
2058 { "fi", RES_FI, FLAG_END },
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002059 { "for", RES_FOR, FLAG_IN | FLAG_START },
Eric Andersen25f27032001-04-26 23:22:31 +00002060 { "while", RES_WHILE, FLAG_DO | FLAG_START },
2061 { "until", RES_UNTIL, FLAG_DO | FLAG_START },
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002062 { "in", RES_IN, FLAG_DO },
Eric Andersen25f27032001-04-26 23:22:31 +00002063 { "do", RES_DO, FLAG_DONE },
2064 { "done", RES_DONE, FLAG_END }
2065 };
2066 struct reserved_combo *r;
2067 for (r=reserved_list;
2068#define NRES sizeof(reserved_list)/sizeof(struct reserved_combo)
2069 r<reserved_list+NRES; r++) {
2070 if (strcmp(dest->data, r->literal) == 0) {
2071 debug_printf("found reserved word %s, code %d\n",r->literal,r->code);
2072 if (r->flag & FLAG_START) {
2073 struct p_context *new = xmalloc(sizeof(struct p_context));
2074 debug_printf("push stack\n");
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002075 if (ctx->w == RES_IN || ctx->w == RES_FOR) {
2076 syntax();
2077 free(new);
2078 ctx->w = RES_SNTX;
2079 b_reset(dest);
2080 return 1;
2081 }
Eric Andersen25f27032001-04-26 23:22:31 +00002082 *new = *ctx; /* physical copy */
2083 initialize_context(ctx);
2084 ctx->stack=new;
2085 } else if ( ctx->w == RES_NONE || ! (ctx->old_flag & (1<<r->code))) {
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002086 syntax();
2087 ctx->w = RES_SNTX;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002088 b_reset(dest);
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002089 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002090 }
2091 ctx->w=r->code;
2092 ctx->old_flag = r->flag;
2093 if (ctx->old_flag & FLAG_END) {
2094 struct p_context *old;
2095 debug_printf("pop stack\n");
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002096 done_pipe(ctx,PIPE_SEQ);
Eric Andersen25f27032001-04-26 23:22:31 +00002097 old = ctx->stack;
2098 old->child->group = ctx->list_head;
Eric Andersen04407e52001-06-07 16:42:05 +00002099 old->child->subshell = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00002100 *ctx = *old; /* physical copy */
2101 free(old);
Eric Andersen25f27032001-04-26 23:22:31 +00002102 }
2103 b_reset (dest);
2104 return 1;
2105 }
2106 }
2107 return 0;
2108}
2109
2110/* normal return is 0.
2111 * Syntax or xglob errors return 1. */
2112static int done_word(o_string *dest, struct p_context *ctx)
2113{
2114 struct child_prog *child=ctx->child;
2115 glob_t *glob_target;
2116 int gr, flags = 0;
2117
2118 debug_printf("done_word: %s %p\n", dest->data, child);
2119 if (dest->length == 0 && !dest->nonnull) {
2120 debug_printf(" true null, ignored\n");
2121 return 0;
2122 }
2123 if (ctx->pending_redirect) {
2124 glob_target = &ctx->pending_redirect->word;
2125 } else {
2126 if (child->group) {
2127 syntax();
2128 return 1; /* syntax error, groups and arglists don't mix */
2129 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002130 if (!child->argv && (ctx->type & FLAG_PARSE_SEMICOLON)) {
Eric Andersen25f27032001-04-26 23:22:31 +00002131 debug_printf("checking %s for reserved-ness\n",dest->data);
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002132 if (reserved_word(dest,ctx)) return ctx->w==RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00002133 }
2134 glob_target = &child->glob_result;
2135 if (child->argv) flags |= GLOB_APPEND;
2136 }
2137 gr = xglob(dest, flags, glob_target);
2138 if (gr != 0) return 1;
2139
2140 b_reset(dest);
2141 if (ctx->pending_redirect) {
2142 ctx->pending_redirect=NULL;
2143 if (glob_target->gl_pathc != 1) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002144 bb_error_msg("ambiguous redirect");
Eric Andersen25f27032001-04-26 23:22:31 +00002145 return 1;
2146 }
2147 } else {
2148 child->argv = glob_target->gl_pathv;
2149 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002150 if (ctx->w == RES_FOR) {
2151 done_word(dest,ctx);
2152 done_pipe(ctx,PIPE_SEQ);
2153 }
Eric Andersen25f27032001-04-26 23:22:31 +00002154 return 0;
2155}
2156
2157/* The only possible error here is out of memory, in which case
2158 * xmalloc exits. */
2159static int done_command(struct p_context *ctx)
2160{
2161 /* The child is really already in the pipe structure, so
2162 * advance the pipe counter and make a new, null child.
2163 * Only real trickiness here is that the uncommitted
2164 * child structure, to which ctx->child points, is not
2165 * counted in pi->num_progs. */
2166 struct pipe *pi=ctx->pipe;
2167 struct child_prog *prog=ctx->child;
2168
2169 if (prog && prog->group == NULL
2170 && prog->argv == NULL
2171 && prog->redirects == NULL) {
2172 debug_printf("done_command: skipping null command\n");
2173 return 0;
2174 } else if (prog) {
2175 pi->num_progs++;
2176 debug_printf("done_command: num_progs incremented to %d\n",pi->num_progs);
2177 } else {
2178 debug_printf("done_command: initializing\n");
2179 }
2180 pi->progs = xrealloc(pi->progs, sizeof(*pi->progs) * (pi->num_progs+1));
2181
2182 prog = pi->progs + pi->num_progs;
2183 prog->redirects = NULL;
2184 prog->argv = NULL;
2185 prog->is_stopped = 0;
2186 prog->group = NULL;
2187 prog->glob_result.gl_pathv = NULL;
2188 prog->family = pi;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002189 prog->sp = 0;
2190 ctx->child = prog;
2191 prog->type = ctx->type;
Eric Andersen25f27032001-04-26 23:22:31 +00002192
Eric Andersen25f27032001-04-26 23:22:31 +00002193 /* but ctx->pipe and ctx->list_head remain unchanged */
2194 return 0;
2195}
2196
2197static int done_pipe(struct p_context *ctx, pipe_style type)
2198{
2199 struct pipe *new_p;
2200 done_command(ctx); /* implicit closure of previous command */
2201 debug_printf("done_pipe, type %d\n", type);
2202 ctx->pipe->followup = type;
2203 ctx->pipe->r_mode = ctx->w;
2204 new_p=new_pipe();
2205 ctx->pipe->next = new_p;
2206 ctx->pipe = new_p;
2207 ctx->child = NULL;
2208 done_command(ctx); /* set up new pipe to accept commands */
2209 return 0;
2210}
2211
2212/* peek ahead in the in_str to find out if we have a "&n" construct,
2213 * as in "2>&1", that represents duplicating a file descriptor.
2214 * returns either -2 (syntax error), -1 (no &), or the number found.
2215 */
2216static int redirect_dup_num(struct in_str *input)
2217{
2218 int ch, d=0, ok=0;
2219 ch = b_peek(input);
2220 if (ch != '&') return -1;
2221
2222 b_getch(input); /* get the & */
Eric Andersen83a2ae22001-05-07 17:59:25 +00002223 ch=b_peek(input);
2224 if (ch == '-') {
2225 b_getch(input);
2226 return -3; /* "-" represents "close me" */
2227 }
2228 while (isdigit(ch)) {
Eric Andersen25f27032001-04-26 23:22:31 +00002229 d = d*10+(ch-'0');
2230 ok=1;
2231 b_getch(input);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002232 ch = b_peek(input);
Eric Andersen25f27032001-04-26 23:22:31 +00002233 }
2234 if (ok) return d;
2235
Manuel Novoa III cad53642003-03-19 09:13:01 +00002236 bb_error_msg("ambiguous redirect");
Eric Andersen25f27032001-04-26 23:22:31 +00002237 return -2;
2238}
2239
2240/* If a redirect is immediately preceded by a number, that number is
2241 * supposed to tell which file descriptor to redirect. This routine
2242 * looks for such preceding numbers. In an ideal world this routine
2243 * needs to handle all the following classes of redirects...
2244 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
2245 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
2246 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
2247 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
2248 * A -1 output from this program means no valid number was found, so the
2249 * caller should use the appropriate default for this redirection.
2250 */
2251static int redirect_opt_num(o_string *o)
2252{
2253 int num;
2254
2255 if (o->length==0) return -1;
2256 for(num=0; num<o->length; num++) {
2257 if (!isdigit(*(o->data+num))) {
2258 return -1;
2259 }
2260 }
2261 /* reuse num (and save an int) */
2262 num=atoi(o->data);
2263 b_reset(o);
2264 return num;
2265}
2266
2267FILE *generate_stream_from_list(struct pipe *head)
2268{
2269 FILE *pf;
2270#if 1
2271 int pid, channel[2];
Manuel Novoa III cad53642003-03-19 09:13:01 +00002272 if (pipe(channel)<0) bb_perror_msg_and_die("pipe");
Eric Andersen72f9a422001-10-28 05:12:20 +00002273#if !defined(__UCLIBC__) || defined(__UCLIBC_HAS_MMU__)
Eric Andersen25f27032001-04-26 23:22:31 +00002274 pid=fork();
Eric Andersen72f9a422001-10-28 05:12:20 +00002275#else
2276 pid=vfork();
2277#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002278 if (pid<0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00002279 bb_perror_msg_and_die("fork");
Eric Andersen25f27032001-04-26 23:22:31 +00002280 } else if (pid==0) {
2281 close(channel[0]);
2282 if (channel[1] != 1) {
2283 dup2(channel[1],1);
2284 close(channel[1]);
2285 }
2286#if 0
2287#define SURROGATE "surrogate response"
2288 write(1,SURROGATE,sizeof(SURROGATE));
Eric Andersen94ac2442001-05-22 19:05:18 +00002289 _exit(run_list(head));
Eric Andersen25f27032001-04-26 23:22:31 +00002290#else
Eric Andersen94ac2442001-05-22 19:05:18 +00002291 _exit(run_list_real(head)); /* leaks memory */
Eric Andersen25f27032001-04-26 23:22:31 +00002292#endif
2293 }
2294 debug_printf("forked child %d\n",pid);
2295 close(channel[1]);
2296 pf = fdopen(channel[0],"r");
2297 debug_printf("pipe on FILE *%p\n",pf);
2298#else
Eric Andersenbf7df042001-05-23 22:18:35 +00002299 free_pipe_list(head,0);
Eric Andersen25f27032001-04-26 23:22:31 +00002300 pf=popen("echo surrogate response","r");
2301 debug_printf("started fake pipe on FILE *%p\n",pf);
2302#endif
2303 return pf;
2304}
2305
2306/* this version hacked for testing purposes */
2307/* return code is exit status of the process that is run. */
2308static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end)
2309{
2310 int retcode;
2311 o_string result=NULL_O_STRING;
2312 struct p_context inner;
2313 FILE *p;
2314 struct in_str pipe_str;
2315 initialize_context(&inner);
2316
2317 /* recursion to generate command */
2318 retcode = parse_stream(&result, &inner, input, subst_end);
2319 if (retcode != 0) return retcode; /* syntax error or EOF */
2320 done_word(&result, &inner);
2321 done_pipe(&inner, PIPE_SEQ);
2322 b_free(&result);
2323
2324 p=generate_stream_from_list(inner.list_head);
2325 if (p==NULL) return 1;
2326 mark_open(fileno(p));
2327 setup_file_in_str(&pipe_str, p);
2328
2329 /* now send results of command back into original context */
2330 retcode = parse_stream(dest, ctx, &pipe_str, '\0');
2331 /* XXX In case of a syntax error, should we try to kill the child?
2332 * That would be tough to do right, so just read until EOF. */
2333 if (retcode == 1) {
2334 while (b_getch(&pipe_str)!=EOF) { /* discard */ };
2335 }
2336
2337 debug_printf("done reading from pipe, pclose()ing\n");
2338 /* This is the step that wait()s for the child. Should be pretty
2339 * safe, since we just read an EOF from its stdout. We could try
2340 * to better, by using wait(), and keeping track of background jobs
2341 * at the same time. That would be a lot of work, and contrary
2342 * to the KISS philosophy of this program. */
2343 mark_closed(fileno(p));
2344 retcode=pclose(p);
Eric Andersena15dc152001-05-23 23:46:09 +00002345 free_pipe_list(inner.list_head,0);
Eric Andersen25f27032001-04-26 23:22:31 +00002346 debug_printf("pclosed, retcode=%d\n",retcode);
2347 /* XXX this process fails to trim a single trailing newline */
2348 return retcode;
2349}
2350
2351static int parse_group(o_string *dest, struct p_context *ctx,
2352 struct in_str *input, int ch)
2353{
2354 int rcode, endch=0;
2355 struct p_context sub;
2356 struct child_prog *child = ctx->child;
2357 if (child->argv) {
2358 syntax();
2359 return 1; /* syntax error, groups and arglists don't mix */
2360 }
2361 initialize_context(&sub);
2362 switch(ch) {
2363 case '(': endch=')'; child->subshell=1; break;
2364 case '{': endch='}'; break;
2365 default: syntax(); /* really logic error */
2366 }
2367 rcode=parse_stream(dest,&sub,input,endch);
2368 done_word(dest,&sub); /* finish off the final word in the subcontext */
2369 done_pipe(&sub, PIPE_SEQ); /* and the final command there, too */
2370 child->group = sub.list_head;
2371 return rcode;
2372 /* child remains "open", available for possible redirects */
2373}
2374
2375/* basically useful version until someone wants to get fancier,
2376 * see the bash man page under "Parameter Expansion" */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002377static char *lookup_param(char *src)
Eric Andersen25f27032001-04-26 23:22:31 +00002378{
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002379 char *p=NULL;
2380 if (src) {
2381 p = getenv(src);
Eric Andersenf72f5622001-05-15 23:21:41 +00002382 if (!p)
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002383 p = get_local_var(src);
Eric Andersen20a69a72001-05-15 17:24:44 +00002384 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002385 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002386}
2387
2388/* return code: 0 for OK, 1 for syntax error */
2389static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input)
2390{
2391 int i, advance=0;
Eric Andersen25f27032001-04-26 23:22:31 +00002392 char sep[]=" ";
2393 int ch = input->peek(input); /* first character after the $ */
2394 debug_printf("handle_dollar: ch=%c\n",ch);
2395 if (isalpha(ch)) {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002396 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2397 ctx->child->sp++;
Eric Andersen25f27032001-04-26 23:22:31 +00002398 while(ch=b_peek(input),isalnum(ch) || ch=='_') {
2399 b_getch(input);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002400 b_addchr(dest,ch);
Eric Andersen25f27032001-04-26 23:22:31 +00002401 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002402 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00002403 } else if (isdigit(ch)) {
2404 i = ch-'0'; /* XXX is $0 special? */
2405 if (i<global_argc) {
2406 parse_string(dest, ctx, global_argv[i]); /* recursion */
2407 }
2408 advance = 1;
2409 } else switch (ch) {
2410 case '$':
2411 b_adduint(dest,getpid());
2412 advance = 1;
2413 break;
2414 case '!':
2415 if (last_bg_pid > 0) b_adduint(dest, last_bg_pid);
2416 advance = 1;
2417 break;
2418 case '?':
2419 b_adduint(dest,last_return_code);
2420 advance = 1;
2421 break;
2422 case '#':
2423 b_adduint(dest,global_argc ? global_argc-1 : 0);
2424 advance = 1;
2425 break;
2426 case '{':
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002427 b_addchr(dest, SPECIAL_VAR_SYMBOL);
2428 ctx->child->sp++;
Eric Andersen25f27032001-04-26 23:22:31 +00002429 b_getch(input);
2430 /* XXX maybe someone will try to escape the '}' */
2431 while(ch=b_getch(input),ch!=EOF && ch!='}') {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002432 b_addchr(dest,ch);
Eric Andersen25f27032001-04-26 23:22:31 +00002433 }
2434 if (ch != '}') {
2435 syntax();
2436 return 1;
2437 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002438 b_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00002439 break;
2440 case '(':
Matt Kraai9f8caf12001-05-02 16:26:12 +00002441 b_getch(input);
Eric Andersen25f27032001-04-26 23:22:31 +00002442 process_command_subs(dest, ctx, input, ')');
2443 break;
2444 case '*':
2445 sep[0]=ifs[0];
2446 for (i=1; i<global_argc; i++) {
2447 parse_string(dest, ctx, global_argv[i]);
2448 if (i+1 < global_argc) parse_string(dest, ctx, sep);
2449 }
2450 break;
2451 case '@':
2452 case '-':
2453 case '_':
2454 /* still unhandled, but should be eventually */
Manuel Novoa III cad53642003-03-19 09:13:01 +00002455 bb_error_msg("unhandled syntax: $%c",ch);
Eric Andersen25f27032001-04-26 23:22:31 +00002456 return 1;
2457 break;
2458 default:
2459 b_addqchr(dest,'$',dest->quote);
2460 }
2461 /* Eat the character if the flag was set. If the compiler
2462 * is smart enough, we could substitute "b_getch(input);"
2463 * for all the "advance = 1;" above, and also end up with
2464 * a nice size-optimized program. Hah! That'll be the day.
2465 */
2466 if (advance) b_getch(input);
2467 return 0;
2468}
2469
2470int parse_string(o_string *dest, struct p_context *ctx, const char *src)
2471{
2472 struct in_str foo;
2473 setup_string_in_str(&foo, src);
2474 return parse_stream(dest, ctx, &foo, '\0');
2475}
2476
2477/* return code is 0 for normal exit, 1 for syntax error */
2478int parse_stream(o_string *dest, struct p_context *ctx,
2479 struct in_str *input, int end_trigger)
2480{
2481 unsigned int ch, m;
2482 int redir_fd;
2483 redir_type redir_style;
2484 int next;
2485
2486 /* Only double-quote state is handled in the state variable dest->quote.
2487 * A single-quote triggers a bypass of the main loop until its mate is
2488 * found. When recursing, quote state is passed in via dest->quote. */
2489
2490 debug_printf("parse_stream, end_trigger=%d\n",end_trigger);
2491 while ((ch=b_getch(input))!=EOF) {
2492 m = map[ch];
2493 next = (ch == '\n') ? 0 : b_peek(input);
2494 debug_printf("parse_stream: ch=%c (%d) m=%d quote=%d\n",
2495 ch,ch,m,dest->quote);
2496 if (m==0 || ((m==1 || m==2) && dest->quote)) {
2497 b_addqchr(dest, ch, dest->quote);
Eric Andersenaac75e52001-04-30 18:18:45 +00002498 } else {
2499 if (m==2) { /* unquoted IFS */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002500 if (done_word(dest, ctx)) {
2501 return 1;
2502 }
Matt Kraai20a30692001-05-02 17:52:49 +00002503 /* If we aren't performing a substitution, treat a newline as a
2504 * command separator. */
2505 if (end_trigger != '\0' && ch=='\n')
2506 done_pipe(ctx,PIPE_SEQ);
Eric Andersenaac75e52001-04-30 18:18:45 +00002507 }
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002508 if (ch == end_trigger && !dest->quote && ctx->w==RES_NONE) {
Matt Kraaibdd4ece2001-05-23 17:43:00 +00002509 debug_printf("leaving parse_stream (triggered)\n");
Eric Andersenaf44a0e2001-04-27 07:26:12 +00002510 return 0;
2511 }
Eric Andersen25f27032001-04-26 23:22:31 +00002512#if 0
2513 if (ch=='\n') {
2514 /* Yahoo! Time to run with it! */
2515 done_pipe(ctx,PIPE_SEQ);
2516 run_list(ctx->list_head);
2517 initialize_context(ctx);
2518 }
2519#endif
Eric Andersenaac75e52001-04-30 18:18:45 +00002520 if (m!=2) switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00002521 case '#':
2522 if (dest->length == 0 && !dest->quote) {
2523 while(ch=b_peek(input),ch!=EOF && ch!='\n') { b_getch(input); }
2524 } else {
2525 b_addqchr(dest, ch, dest->quote);
2526 }
2527 break;
2528 case '\\':
2529 if (next == EOF) {
2530 syntax();
2531 return 1;
2532 }
2533 b_addqchr(dest, '\\', dest->quote);
2534 b_addqchr(dest, b_getch(input), dest->quote);
2535 break;
2536 case '$':
2537 if (handle_dollar(dest, ctx, input)!=0) return 1;
2538 break;
2539 case '\'':
2540 dest->nonnull = 1;
2541 while(ch=b_getch(input),ch!=EOF && ch!='\'') {
2542 b_addchr(dest,ch);
2543 }
2544 if (ch==EOF) {
2545 syntax();
2546 return 1;
2547 }
2548 break;
2549 case '"':
2550 dest->nonnull = 1;
2551 dest->quote = !dest->quote;
2552 break;
2553 case '`':
2554 process_command_subs(dest, ctx, input, '`');
2555 break;
2556 case '>':
2557 redir_fd = redirect_opt_num(dest);
2558 done_word(dest, ctx);
2559 redir_style=REDIRECT_OVERWRITE;
2560 if (next == '>') {
2561 redir_style=REDIRECT_APPEND;
2562 b_getch(input);
2563 } else if (next == '(') {
2564 syntax(); /* until we support >(list) Process Substitution */
2565 return 1;
2566 }
2567 setup_redirect(ctx, redir_fd, redir_style, input);
2568 break;
2569 case '<':
2570 redir_fd = redirect_opt_num(dest);
2571 done_word(dest, ctx);
2572 redir_style=REDIRECT_INPUT;
2573 if (next == '<') {
2574 redir_style=REDIRECT_HEREIS;
2575 b_getch(input);
2576 } else if (next == '>') {
2577 redir_style=REDIRECT_IO;
2578 b_getch(input);
2579 } else if (next == '(') {
2580 syntax(); /* until we support <(list) Process Substitution */
2581 return 1;
2582 }
2583 setup_redirect(ctx, redir_fd, redir_style, input);
2584 break;
2585 case ';':
2586 done_word(dest, ctx);
2587 done_pipe(ctx,PIPE_SEQ);
2588 break;
2589 case '&':
2590 done_word(dest, ctx);
2591 if (next=='&') {
2592 b_getch(input);
2593 done_pipe(ctx,PIPE_AND);
2594 } else {
2595 done_pipe(ctx,PIPE_BG);
2596 }
2597 break;
2598 case '|':
2599 done_word(dest, ctx);
2600 if (next=='|') {
2601 b_getch(input);
2602 done_pipe(ctx,PIPE_OR);
2603 } else {
2604 /* we could pick up a file descriptor choice here
2605 * with redirect_opt_num(), but bash doesn't do it.
2606 * "echo foo 2| cat" yields "foo 2". */
2607 done_command(ctx);
2608 }
2609 break;
2610 case '(':
2611 case '{':
2612 if (parse_group(dest, ctx, input, ch)!=0) return 1;
2613 break;
2614 case ')':
2615 case '}':
2616 syntax(); /* Proper use of this character caught by end_trigger */
2617 return 1;
2618 break;
2619 default:
2620 syntax(); /* this is really an internal logic error */
2621 return 1;
Eric Andersenaac75e52001-04-30 18:18:45 +00002622 }
Eric Andersen25f27032001-04-26 23:22:31 +00002623 }
2624 }
2625 /* complain if quote? No, maybe we just finished a command substitution
2626 * that was quoted. Example:
2627 * $ echo "`cat foo` plus more"
2628 * and we just got the EOF generated by the subshell that ran "cat foo"
2629 * The only real complaint is if we got an EOF when end_trigger != '\0',
2630 * that is, we were really supposed to get end_trigger, and never got
2631 * one before the EOF. Can't use the standard "syntax error" return code,
2632 * so that parse_stream_outer can distinguish the EOF and exit smoothly. */
Matt Kraaibdd4ece2001-05-23 17:43:00 +00002633 debug_printf("leaving parse_stream (EOF)\n");
Eric Andersen25f27032001-04-26 23:22:31 +00002634 if (end_trigger != '\0') return -1;
2635 return 0;
2636}
2637
2638void mapset(const unsigned char *set, int code)
2639{
2640 const unsigned char *s;
2641 for (s=set; *s; s++) map[*s] = code;
2642}
2643
2644void update_ifs_map(void)
2645{
2646 /* char *ifs and char map[256] are both globals. */
2647 ifs = getenv("IFS");
2648 if (ifs == NULL) ifs=" \t\n";
2649 /* Precompute a list of 'flow through' behavior so it can be treated
2650 * quickly up front. Computation is necessary because of IFS.
2651 * Special case handling of IFS == " \t\n" is not implemented.
2652 * The map[] array only really needs two bits each, and on most machines
2653 * that would be faster because of the reduced L1 cache footprint.
2654 */
Eric Andersenaeb44c42001-05-22 20:29:00 +00002655 memset(map,0,sizeof(map)); /* most characters flow through always */
2656 mapset("\\$'\"`", 3); /* never flow through */
2657 mapset("<>;&|(){}#", 1); /* flow through if quoted */
2658 mapset(ifs, 2); /* also flow through if quoted */
Eric Andersen25f27032001-04-26 23:22:31 +00002659}
2660
2661/* most recursion does not come through here, the exeception is
2662 * from builtin_source() */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002663int parse_stream_outer(struct in_str *inp, int flag)
Eric Andersen25f27032001-04-26 23:22:31 +00002664{
2665
2666 struct p_context ctx;
2667 o_string temp=NULL_O_STRING;
2668 int rcode;
2669 do {
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002670 ctx.type = flag;
Eric Andersen25f27032001-04-26 23:22:31 +00002671 initialize_context(&ctx);
2672 update_ifs_map();
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002673 if (!(flag & FLAG_PARSE_SEMICOLON) || (flag & FLAG_REPARSING)) mapset(";$&|", 0);
Eric Andersen25f27032001-04-26 23:22:31 +00002674 inp->promptmode=1;
2675 rcode = parse_stream(&temp, &ctx, inp, '\n');
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002676 if (rcode != 1 && ctx.old_flag != 0) {
2677 syntax();
2678 }
2679 if (rcode != 1 && ctx.old_flag == 0) {
2680 done_word(&temp, &ctx);
2681 done_pipe(&ctx,PIPE_SEQ);
2682 run_list(ctx.list_head);
2683 } else {
2684 if (ctx.old_flag != 0) {
2685 free(ctx.stack);
2686 b_reset(&temp);
2687 }
2688 temp.nonnull = 0;
2689 temp.quote = 0;
2690 inp->p = NULL;
2691 free_pipe_list(ctx.list_head,0);
2692 }
Eric Andersena813afc2001-05-24 16:19:36 +00002693 b_free(&temp);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002694 } while (rcode != -1 && !(flag & FLAG_EXIT_FROM_LOOP)); /* loop on syntax errors, return on EOF */
Eric Andersen25f27032001-04-26 23:22:31 +00002695 return 0;
2696}
2697
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002698static int parse_string_outer(const char *s, int flag)
Eric Andersen25f27032001-04-26 23:22:31 +00002699{
2700 struct in_str input;
2701 setup_string_in_str(&input, s);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002702 return parse_stream_outer(&input, flag);
Eric Andersen25f27032001-04-26 23:22:31 +00002703}
2704
2705static int parse_file_outer(FILE *f)
2706{
2707 int rcode;
2708 struct in_str input;
2709 setup_file_in_str(&input, f);
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002710 rcode = parse_stream_outer(&input, FLAG_PARSE_SEMICOLON);
Eric Andersen25f27032001-04-26 23:22:31 +00002711 return rcode;
2712}
2713
Eric Andersen6c947d22001-06-25 22:24:38 +00002714/* Make sure we have a controlling tty. If we get started under a job
2715 * aware app (like bash for example), make sure we are now in charge so
2716 * we don't fight over who gets the foreground */
Eric Anderseneaecbf32001-10-31 10:41:31 +00002717static void setup_job_control(void)
Eric Andersen52a97ca2001-06-22 06:49:26 +00002718{
Eric Andersen6c947d22001-06-25 22:24:38 +00002719 static pid_t shell_pgrp;
2720 /* Loop until we are in the foreground. */
2721 while (tcgetpgrp (shell_terminal) != (shell_pgrp = getpgrp ()))
2722 kill (- shell_pgrp, SIGTTIN);
Eric Andersen52a97ca2001-06-22 06:49:26 +00002723
Eric Andersen6c947d22001-06-25 22:24:38 +00002724 /* Ignore interactive and job-control signals. */
2725 signal(SIGINT, SIG_IGN);
2726 signal(SIGQUIT, SIG_IGN);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002727 signal(SIGTERM, SIG_IGN);
Eric Andersen6c947d22001-06-25 22:24:38 +00002728 signal(SIGTSTP, SIG_IGN);
2729 signal(SIGTTIN, SIG_IGN);
2730 signal(SIGTTOU, SIG_IGN);
Eric Andersen028b65b2001-06-28 01:10:11 +00002731 signal(SIGCHLD, SIG_IGN);
Eric Andersen6c947d22001-06-25 22:24:38 +00002732
2733 /* Put ourselves in our own process group. */
Eric Andersen5c66d062001-06-26 23:16:31 +00002734 setsid();
Eric Andersen6c947d22001-06-25 22:24:38 +00002735 shell_pgrp = getpid ();
Eric Andersena90f20b2001-06-26 23:00:21 +00002736 setpgid (shell_pgrp, shell_pgrp);
Eric Andersen6c947d22001-06-25 22:24:38 +00002737
2738 /* Grab control of the terminal. */
2739 tcsetpgrp(shell_terminal, shell_pgrp);
2740}
Eric Andersenada18ff2001-05-21 16:18:22 +00002741
Matt Kraai2d91deb2001-08-01 17:21:35 +00002742int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002743{
2744 int opt;
2745 FILE *input;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002746 char **e = environ;
Eric Andersenbc604a22001-05-16 05:24:03 +00002747
Eric Andersen25f27032001-04-26 23:22:31 +00002748 /* XXX what should these be while sourcing /etc/profile? */
2749 global_argc = argc;
2750 global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00002751
Matt Kraai2d91deb2001-08-01 17:21:35 +00002752 /* (re?) initialize globals. Sometimes hush_main() ends up calling
2753 * hush_main(), therefore we cannot rely on the BSS to zero out this
Eric Andersen94ac2442001-05-22 19:05:18 +00002754 * stuff. Reset these to 0 every time. */
2755 ifs = NULL;
Eric Andersenaeb44c42001-05-22 20:29:00 +00002756 /* map[] is taken care of with call to update_ifs_map() */
Eric Andersen94ac2442001-05-22 19:05:18 +00002757 fake_mode = 0;
2758 interactive = 0;
2759 close_me_head = NULL;
2760 last_bg_pid = 0;
Eric Andersen52a97ca2001-06-22 06:49:26 +00002761 job_list = NULL;
Eric Andersenc798b072001-06-22 06:23:03 +00002762 last_jobid = 0;
Eric Andersen94ac2442001-05-22 19:05:18 +00002763
2764 /* Initialize some more globals to non-zero values */
2765 set_cwd();
Eric Andersenbdfd0d72001-10-24 05:00:29 +00002766#ifdef CONFIG_FEATURE_COMMAND_EDITING
Eric Andersen94ac2442001-05-22 19:05:18 +00002767 cmdedit_set_initial_prompt();
2768#else
2769 PS1 = NULL;
2770#endif
2771 PS2 = "> ";
2772
2773 /* initialize our shell local variables with the values
2774 * currently living in the environment */
2775 if (e) {
2776 for (; *e; e++)
2777 set_local_var(*e, 2); /* without call putenv() */
2778 }
2779
2780 last_return_code=EXIT_SUCCESS;
2781
Eric Andersen25f27032001-04-26 23:22:31 +00002782
2783 if (argv[0] && argv[0][0] == '-') {
2784 debug_printf("\nsourcing /etc/profile\n");
Eric Andersena90f20b2001-06-26 23:00:21 +00002785 if ((input = fopen("/etc/profile", "r")) != NULL) {
2786 mark_open(fileno(input));
2787 parse_file_outer(input);
2788 mark_closed(fileno(input));
2789 fclose(input);
2790 }
Eric Andersen25f27032001-04-26 23:22:31 +00002791 }
2792 input=stdin;
2793
Eric Andersen25f27032001-04-26 23:22:31 +00002794 while ((opt = getopt(argc, argv, "c:xif")) > 0) {
2795 switch (opt) {
2796 case 'c':
2797 {
2798 global_argv = argv+optind;
2799 global_argc = argc-optind;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002800 opt = parse_string_outer(optarg, FLAG_PARSE_SEMICOLON);
Eric Andersene67c3ce2001-05-02 02:09:36 +00002801 goto final_return;
Eric Andersen25f27032001-04-26 23:22:31 +00002802 }
2803 break;
2804 case 'i':
2805 interactive++;
2806 break;
2807 case 'f':
2808 fake_mode++;
2809 break;
2810 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002811#ifndef BB_VER
Eric Andersen25f27032001-04-26 23:22:31 +00002812 fprintf(stderr, "Usage: sh [FILE]...\n"
2813 " or: sh -c command [args]...\n\n");
2814 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002815#else
Manuel Novoa III cad53642003-03-19 09:13:01 +00002816 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00002817#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002818 }
2819 }
2820 /* A shell is interactive if the `-i' flag was given, or if all of
2821 * the following conditions are met:
2822 * no -c command
2823 * no arguments remaining or the -s flag given
2824 * standard input is a terminal
2825 * standard output is a terminal
2826 * Refer to Posix.2, the description of the `sh' utility. */
2827 if (argv[optind]==NULL && input==stdin &&
2828 isatty(fileno(stdin)) && isatty(fileno(stdout))) {
2829 interactive++;
2830 }
Eric Andersene67c3ce2001-05-02 02:09:36 +00002831
2832 debug_printf("\ninteractive=%d\n", interactive);
Eric Andersen25f27032001-04-26 23:22:31 +00002833 if (interactive) {
2834 /* Looks like they want an interactive shell */
Eric Andersenbdfd0d72001-10-24 05:00:29 +00002835#ifndef CONFIG_FEATURE_SH_EXTRA_QUIET
Eric Andersend63dee42001-10-19 00:22:23 +00002836 printf( "\n\n" BB_BANNER " hush - the humble shell v0.01 (testing)\n");
2837 printf( "Enter 'help' for a list of built-in commands.\n\n");
2838#endif
Eric Andersen52a97ca2001-06-22 06:49:26 +00002839 setup_job_control();
Eric Andersenada18ff2001-05-21 16:18:22 +00002840 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00002841
Eric Andersenada18ff2001-05-21 16:18:22 +00002842 if (argv[optind]==NULL) {
Eric Andersene67c3ce2001-05-02 02:09:36 +00002843 opt=parse_file_outer(stdin);
2844 goto final_return;
Eric Andersen25f27032001-04-26 23:22:31 +00002845 }
Eric Andersen25f27032001-04-26 23:22:31 +00002846
2847 debug_printf("\nrunning script '%s'\n", argv[optind]);
2848 global_argv = argv+optind;
2849 global_argc = argc-optind;
Manuel Novoa III cad53642003-03-19 09:13:01 +00002850 input = bb_xfopen(argv[optind], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00002851 opt = parse_file_outer(input);
2852
Eric Andersenbdfd0d72001-10-24 05:00:29 +00002853#ifdef CONFIG_FEATURE_CLEAN_UP
Eric Andersenaeb44c42001-05-22 20:29:00 +00002854 fclose(input);
Manuel Novoa III cad53642003-03-19 09:13:01 +00002855 if (cwd && cwd != bb_msg_unknown)
Eric Andersenaeb44c42001-05-22 20:29:00 +00002856 free((char*)cwd);
2857 {
2858 struct variables *cur, *tmp;
2859 for(cur = top_vars; cur; cur = tmp) {
2860 tmp = cur->next;
2861 if (!cur->flg_read_only) {
2862 free(cur->name);
2863 free(cur->value);
2864 free(cur);
2865 }
2866 }
2867 }
Eric Andersen25f27032001-04-26 23:22:31 +00002868#endif
2869
Eric Andersene67c3ce2001-05-02 02:09:36 +00002870final_return:
2871 return(opt?opt:last_return_code);
Eric Andersen25f27032001-04-26 23:22:31 +00002872}
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002873
2874static char *insert_var_value(char *inp)
2875{
2876 int res_str_len = 0;
2877 int len;
2878 int done = 0;
2879 char *p, *p1, *res_str = NULL;
2880
2881 while ((p = strchr(inp, SPECIAL_VAR_SYMBOL))) {
2882 if (p != inp) {
2883 len = p - inp;
2884 res_str = xrealloc(res_str, (res_str_len + len));
2885 strncpy((res_str + res_str_len), inp, len);
2886 res_str_len += len;
2887 }
2888 inp = ++p;
2889 p = strchr(inp, SPECIAL_VAR_SYMBOL);
2890 *p = '\0';
2891 if ((p1 = lookup_param(inp))) {
2892 len = res_str_len + strlen(p1);
2893 res_str = xrealloc(res_str, (1 + len));
2894 strcpy((res_str + res_str_len), p1);
2895 res_str_len = len;
2896 }
2897 *p = SPECIAL_VAR_SYMBOL;
2898 inp = ++p;
2899 done = 1;
2900 }
2901 if (done) {
2902 res_str = xrealloc(res_str, (1 + res_str_len + strlen(inp)));
2903 strcpy((res_str + res_str_len), inp);
2904 while ((p = strchr(res_str, '\n'))) {
2905 *p = ' ';
2906 }
2907 }
2908 return (res_str == NULL) ? inp : res_str;
2909}
2910
2911static char **make_list_in(char **inp, char *name)
2912{
2913 int len, i;
2914 int name_len = strlen(name);
2915 int n = 0;
2916 char **list;
2917 char *p1, *p2, *p3;
2918
2919 /* create list of variable values */
2920 list = xmalloc(sizeof(*list));
2921 for (i = 0; inp[i]; i++) {
2922 p3 = insert_var_value(inp[i]);
2923 p1 = p3;
2924 while (*p1) {
2925 if ((*p1 == ' ')) {
2926 p1++;
2927 continue;
2928 }
2929 if ((p2 = strchr(p1, ' '))) {
2930 len = p2 - p1;
2931 } else {
2932 len = strlen(p1);
2933 p2 = p1 + len;
2934 }
2935 /* we use n + 2 in realloc for list,because we add
2936 * new element and then we will add NULL element */
2937 list = xrealloc(list, sizeof(*list) * (n + 2));
2938 list[n] = xmalloc(2 + name_len + len);
2939 strcpy(list[n], name);
2940 strcat(list[n], "=");
2941 strncat(list[n], p1, len);
2942 list[n++][name_len + len + 1] = '\0';
2943 p1 = p2;
2944 }
2945 if (p3 != inp[i]) free(p3);
2946 }
2947 list[n] = NULL;
2948 return list;
2949}
2950
2951/* Make new string for parser */
2952static char * make_string(char ** inp)
2953{
2954 char *p;
2955 char *str = NULL;
2956 int n;
2957 int len = 2;
2958
2959 for (n = 0; inp[n]; n++) {
2960 p = insert_var_value(inp[n]);
2961 str = xrealloc(str, (len + strlen(p)));
2962 if (n) {
2963 strcat(str, " ");
2964 } else {
2965 *str = '\0';
2966 }
2967 strcat(str, p);
2968 len = strlen(str) + 3;
2969 if (p != inp[n]) free(p);
2970 }
2971 len = strlen(str);
2972 *(str + len) = '\n';
2973 *(str + len + 1) = '\0';
2974 return str;
2975}