Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1 | /* 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 Andersen | cb81e64 | 2003-07-14 21:21:08 +0000 | [diff] [blame] | 12 | * written Dec 2000 and Jan 2001 by Larry Doolittle. The |
| 13 | * execution engine, the builtins, and much of the underlying |
| 14 | * support has been adapted from busybox-0.49pre's lash, which is |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 15 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | cb81e64 | 2003-07-14 21:21:08 +0000 | [diff] [blame] | 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 Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 22 | * 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 Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 48 | * aliases |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 49 | * Arithmetic Expansion |
| 50 | * <(list) and >(list) Process Substitution |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 51 | * reserved words: case, esac, select, function |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 52 | * Here Documents ( << word ) |
| 53 | * Functions |
| 54 | * Major bugs: |
| 55 | * job handling woefully incomplete and buggy |
| 56 | * reserved word execution woefully incomplete and buggy |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 57 | * to-do: |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 58 | * 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 Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 63 | * handle children going into background |
| 64 | * clean up recognition of null pipes |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 65 | * check setting of global_argc and global_argv |
| 66 | * control-C handling, probably with longjmp |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 67 | * follow IFS rules more precisely, including update semantics |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 68 | * 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 Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 74 | * document how quoting rules not precisely followed for variable assignments |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 75 | * maybe change map[] to use 2-bit entries |
| 76 | * (eventually) remove all the printf's |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 77 | * |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 78 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 79 | */ |
Bernhard Reutner-Fischer | e15d757 | 2006-06-02 20:56:16 +0000 | [diff] [blame] | 80 | |
| 81 | #include "busybox.h" |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 82 | #include <glob.h> /* glob, of course */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 83 | #include <getopt.h> /* should be pretty obvious */ |
| 84 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 85 | //#include <sys/wait.h> |
| 86 | //#include <signal.h> |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 87 | |
| 88 | /* #include <dmalloc.h> */ |
Eric Andersen | 4ed5e37 | 2001-05-01 01:49:50 +0000 | [diff] [blame] | 89 | /* #define DEBUG_SHELL */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 90 | |
"Robert P. J. Day" | f350160 | 2006-07-01 12:19:39 +0000 | [diff] [blame] | 91 | |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 92 | #define SPECIAL_VAR_SYMBOL 03 |
| 93 | #define FLAG_EXIT_FROM_LOOP 1 |
| 94 | #define FLAG_PARSE_SEMICOLON (1 << 1) /* symbol ';' is special for parser */ |
| 95 | #define FLAG_REPARSING (1 << 2) /* >=2nd pass */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 96 | |
| 97 | typedef enum { |
| 98 | REDIRECT_INPUT = 1, |
| 99 | REDIRECT_OVERWRITE = 2, |
| 100 | REDIRECT_APPEND = 3, |
| 101 | REDIRECT_HEREIS = 4, |
| 102 | REDIRECT_IO = 5 |
| 103 | } redir_type; |
| 104 | |
| 105 | /* The descrip member of this structure is only used to make debugging |
| 106 | * output pretty */ |
"Vladimir N. Oleynik" | 485d7cb | 2005-10-17 09:48:57 +0000 | [diff] [blame] | 107 | static const struct {int mode; int default_fd; const char *descrip;} redir_table[] = { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 108 | { 0, 0, "()" }, |
| 109 | { O_RDONLY, 0, "<" }, |
| 110 | { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" }, |
| 111 | { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" }, |
| 112 | { O_RDONLY, -1, "<<" }, |
| 113 | { O_RDWR, 1, "<>" } |
| 114 | }; |
| 115 | |
| 116 | typedef enum { |
| 117 | PIPE_SEQ = 1, |
| 118 | PIPE_AND = 2, |
| 119 | PIPE_OR = 3, |
| 120 | PIPE_BG = 4, |
| 121 | } pipe_style; |
| 122 | |
| 123 | /* might eventually control execution */ |
| 124 | typedef enum { |
| 125 | RES_NONE = 0, |
| 126 | RES_IF = 1, |
| 127 | RES_THEN = 2, |
| 128 | RES_ELIF = 3, |
| 129 | RES_ELSE = 4, |
| 130 | RES_FI = 5, |
| 131 | RES_FOR = 6, |
| 132 | RES_WHILE = 7, |
| 133 | RES_UNTIL = 8, |
| 134 | RES_DO = 9, |
| 135 | RES_DONE = 10, |
Eric Andersen | af44a0e | 2001-04-27 07:26:12 +0000 | [diff] [blame] | 136 | RES_XXXX = 11, |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 137 | RES_IN = 12, |
| 138 | RES_SNTX = 13 |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 139 | } reserved_style; |
| 140 | #define FLAG_END (1<<RES_NONE) |
| 141 | #define FLAG_IF (1<<RES_IF) |
| 142 | #define FLAG_THEN (1<<RES_THEN) |
| 143 | #define FLAG_ELIF (1<<RES_ELIF) |
| 144 | #define FLAG_ELSE (1<<RES_ELSE) |
| 145 | #define FLAG_FI (1<<RES_FI) |
| 146 | #define FLAG_FOR (1<<RES_FOR) |
| 147 | #define FLAG_WHILE (1<<RES_WHILE) |
| 148 | #define FLAG_UNTIL (1<<RES_UNTIL) |
| 149 | #define FLAG_DO (1<<RES_DO) |
| 150 | #define FLAG_DONE (1<<RES_DONE) |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 151 | #define FLAG_IN (1<<RES_IN) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 152 | #define FLAG_START (1<<RES_XXXX) |
| 153 | |
| 154 | /* This holds pointers to the various results of parsing */ |
| 155 | struct p_context { |
| 156 | struct child_prog *child; |
| 157 | struct pipe *list_head; |
| 158 | struct pipe *pipe; |
| 159 | struct redir_struct *pending_redirect; |
| 160 | reserved_style w; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 161 | int old_flag; /* for figuring out valid reserved words */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 162 | struct p_context *stack; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 163 | int type; /* define type of parser : ";$" common or special symbol */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 164 | /* How about quoting status? */ |
| 165 | }; |
| 166 | |
| 167 | struct redir_struct { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 168 | redir_type type; /* type of redirection */ |
| 169 | int fd; /* file descriptor being redirected */ |
| 170 | int dup; /* -1, or file descriptor being duplicated */ |
| 171 | struct redir_struct *next; /* pointer to the next redirect in the list */ |
| 172 | glob_t word; /* *word.gl_pathv is the filename */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 173 | }; |
| 174 | |
| 175 | struct child_prog { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 176 | pid_t pid; /* 0 if exited */ |
| 177 | char **argv; /* program name and arguments */ |
| 178 | struct pipe *group; /* if non-NULL, first in group or subshell */ |
| 179 | int subshell; /* flag, non-zero if group must be forked */ |
| 180 | struct redir_struct *redirects; /* I/O redirections */ |
| 181 | glob_t glob_result; /* result of parameter globbing */ |
| 182 | int is_stopped; /* is the program currently running? */ |
| 183 | struct pipe *family; /* pointer back to the child's parent pipe */ |
| 184 | int sp; /* number of SPECIAL_VAR_SYMBOL */ |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 185 | int type; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 186 | }; |
| 187 | |
| 188 | struct pipe { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 189 | int jobid; /* job number */ |
| 190 | int num_progs; /* total number of programs in job */ |
| 191 | int running_progs; /* number of programs running */ |
| 192 | char *text; /* name of job */ |
| 193 | char *cmdbuf; /* buffer various argv's point into */ |
| 194 | pid_t pgrp; /* process group ID for the job */ |
| 195 | struct child_prog *progs; /* array of commands in pipe */ |
| 196 | struct pipe *next; /* to track background commands */ |
| 197 | int stopped_progs; /* number of programs alive, but stopped */ |
| 198 | int job_context; /* bitmask defining current context */ |
| 199 | pipe_style followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */ |
| 200 | reserved_style r_mode; /* supports if, for, while, until */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 201 | }; |
| 202 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 203 | struct close_me { |
| 204 | int fd; |
| 205 | struct close_me *next; |
| 206 | }; |
| 207 | |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 208 | struct variables { |
Denis Vlasenko | 15d78fb | 2007-01-30 22:28:21 +0000 | [diff] [blame] | 209 | const char *name; |
| 210 | const char *value; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 211 | int flg_export; |
| 212 | int flg_read_only; |
| 213 | struct variables *next; |
| 214 | }; |
| 215 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 216 | /* globals, connect us to the outside world |
| 217 | * the first three support $?, $#, and $1 */ |
"Vladimir N. Oleynik" | 19c3701 | 2005-09-22 14:33:15 +0000 | [diff] [blame] | 218 | static char **global_argv; |
"Vladimir N. Oleynik" | 4ccd2b4 | 2006-01-31 09:27:48 +0000 | [diff] [blame] | 219 | static int global_argc; |
| 220 | static int last_return_code; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 221 | extern char **environ; /* This is in <unistd.h>, but protected with __USE_GNU */ |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 222 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 223 | /* "globals" within this file */ |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 224 | static const char *ifs; |
"Vladimir N. Oleynik" | 4ccd2b4 | 2006-01-31 09:27:48 +0000 | [diff] [blame] | 225 | static unsigned char map[256]; |
Eric Andersen | bc604a2 | 2001-05-16 05:24:03 +0000 | [diff] [blame] | 226 | static int fake_mode; |
| 227 | static int interactive; |
| 228 | static struct close_me *close_me_head; |
Eric Andersen | cfa88ec | 2001-05-11 18:08:16 +0000 | [diff] [blame] | 229 | static const char *cwd; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 230 | static struct pipe *job_list; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 231 | static unsigned last_bg_pid; |
"Vladimir N. Oleynik" | 4ccd2b4 | 2006-01-31 09:27:48 +0000 | [diff] [blame] | 232 | static int last_jobid; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 233 | static unsigned shell_terminal; |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 234 | static const char *PS1; |
| 235 | static const char *PS2; |
"Vladimir N. Oleynik" | 19c3701 | 2005-09-22 14:33:15 +0000 | [diff] [blame] | 236 | static struct variables shell_ver = { "HUSH_VERSION", "0.01", 1, 1, 0 }; |
| 237 | static struct variables *top_vars = &shell_ver; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 238 | |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 239 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 240 | #define B_CHUNK (100) |
| 241 | #define B_NOSPAC 1 |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 242 | |
| 243 | typedef struct { |
| 244 | char *data; |
| 245 | int length; |
| 246 | int maxlen; |
| 247 | int quote; |
| 248 | int nonnull; |
| 249 | } o_string; |
| 250 | #define NULL_O_STRING {NULL,0,0,0,0} |
| 251 | /* used for initialization: |
| 252 | o_string foo = NULL_O_STRING; */ |
| 253 | |
| 254 | /* I can almost use ordinary FILE *. Is open_memstream() universally |
| 255 | * available? Where is it documented? */ |
| 256 | struct in_str { |
| 257 | const char *p; |
Matt Kraai | bdd4ece | 2001-05-23 17:43:00 +0000 | [diff] [blame] | 258 | char peek_buf[2]; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 259 | int __promptme; |
| 260 | int promptmode; |
| 261 | FILE *file; |
| 262 | int (*get) (struct in_str *); |
| 263 | int (*peek) (struct in_str *); |
| 264 | }; |
| 265 | #define b_getch(input) ((input)->get(input)) |
| 266 | #define b_peek(input) ((input)->peek(input)) |
| 267 | |
| 268 | #define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n" |
| 269 | |
| 270 | struct built_in_command { |
"Vladimir N. Oleynik" | 485d7cb | 2005-10-17 09:48:57 +0000 | [diff] [blame] | 271 | const char *cmd; /* name */ |
| 272 | const char *descr; /* description */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 273 | int (*function) (struct child_prog *); /* function ptr */ |
| 274 | }; |
| 275 | |
| 276 | /* belongs in busybox.h */ |
Denis Vlasenko | 15d78fb | 2007-01-30 22:28:21 +0000 | [diff] [blame] | 277 | static int max(int a, int b) |
| 278 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 279 | return (a>b)?a:b; |
| 280 | } |
| 281 | |
| 282 | /* This should be in utility.c */ |
| 283 | #ifdef DEBUG_SHELL |
| 284 | static void debug_printf(const char *format, ...) |
| 285 | { |
| 286 | va_list args; |
| 287 | va_start(args, format); |
| 288 | vfprintf(stderr, format, args); |
| 289 | va_end(args); |
| 290 | } |
Rob Landley | 88621d7 | 2006-08-29 19:41:06 +0000 | [diff] [blame] | 291 | /* broken, of course, but OK for testing */ |
| 292 | static char *indenter(int i) |
| 293 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 294 | static char blanks[] = " "; |
Rob Landley | 88621d7 | 2006-08-29 19:41:06 +0000 | [diff] [blame] | 295 | return &blanks[sizeof(blanks)-i-1]; |
| 296 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 297 | #else |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 298 | #define debug_printf(...) do {;} while (0); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 299 | #endif |
| 300 | #define final_printf debug_printf |
| 301 | |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 302 | static void __syntax(const char *file, int line) |
| 303 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 304 | bb_error_msg("syntax error %s:%d", file, line); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 305 | } |
Denis Vlasenko | 8de82bf | 2006-10-11 21:38:33 +0000 | [diff] [blame] | 306 | // NB: was __FILE__, but that produces full path sometimess, so... |
| 307 | #define syntax() __syntax("hush.c", __LINE__) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 308 | |
| 309 | /* Index of subroutines: */ |
| 310 | /* function prototypes for builtins */ |
| 311 | static int builtin_cd(struct child_prog *child); |
| 312 | static int builtin_env(struct child_prog *child); |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 313 | static int builtin_eval(struct child_prog *child); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 314 | static int builtin_exec(struct child_prog *child); |
| 315 | static int builtin_exit(struct child_prog *child); |
| 316 | static int builtin_export(struct child_prog *child); |
| 317 | static int builtin_fg_bg(struct child_prog *child); |
| 318 | static int builtin_help(struct child_prog *child); |
| 319 | static int builtin_jobs(struct child_prog *child); |
| 320 | static int builtin_pwd(struct child_prog *child); |
| 321 | static int builtin_read(struct child_prog *child); |
Eric Andersen | f72f562 | 2001-05-15 23:21:41 +0000 | [diff] [blame] | 322 | static int builtin_set(struct child_prog *child); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 323 | static int builtin_shift(struct child_prog *child); |
| 324 | static int builtin_source(struct child_prog *child); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 325 | static int builtin_umask(struct child_prog *child); |
| 326 | static int builtin_unset(struct child_prog *child); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 327 | static int builtin_not_written(struct child_prog *child); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 328 | /* o_string manipulation: */ |
| 329 | static int b_check_space(o_string *o, int len); |
| 330 | static int b_addchr(o_string *o, int ch); |
| 331 | static void b_reset(o_string *o); |
| 332 | static int b_addqchr(o_string *o, int ch, int quote); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 333 | static int b_adduint(o_string *o, unsigned i); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 334 | /* in_str manipulations: */ |
| 335 | static int static_get(struct in_str *i); |
| 336 | static int static_peek(struct in_str *i); |
| 337 | static int file_get(struct in_str *i); |
| 338 | static int file_peek(struct in_str *i); |
| 339 | static void setup_file_in_str(struct in_str *i, FILE *f); |
| 340 | static void setup_string_in_str(struct in_str *i, const char *s); |
| 341 | /* close_me manipulations: */ |
| 342 | static void mark_open(int fd); |
| 343 | static void mark_closed(int fd); |
Eric Andersen | eaecbf3 | 2001-10-31 10:41:31 +0000 | [diff] [blame] | 344 | static void close_all(void); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 345 | /* "run" the final data structures: */ |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 346 | static int free_pipe_list(struct pipe *head, int indent); |
| 347 | static int free_pipe(struct pipe *pi, int indent); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 348 | /* really run the final data structures: */ |
| 349 | static int setup_redirects(struct child_prog *prog, int squirrel[]); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 350 | static int run_list_real(struct pipe *pi); |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 351 | static void pseudo_exec(struct child_prog *child) ATTRIBUTE_NORETURN; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 352 | static int run_pipe_real(struct pipe *pi); |
| 353 | /* extended glob support: */ |
| 354 | static int globhack(const char *src, int flags, glob_t *pglob); |
| 355 | static int glob_needed(const char *s); |
| 356 | static int xglob(o_string *dest, int flags, glob_t *pglob); |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 357 | /* variable assignment: */ |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 358 | static int is_assignment(const char *s); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 359 | /* data structure manipulation: */ |
| 360 | static int setup_redirect(struct p_context *ctx, int fd, redir_type style, struct in_str *input); |
| 361 | static void initialize_context(struct p_context *ctx); |
| 362 | static int done_word(o_string *dest, struct p_context *ctx); |
| 363 | static int done_command(struct p_context *ctx); |
| 364 | static int done_pipe(struct p_context *ctx, pipe_style type); |
| 365 | /* primary string parsing: */ |
| 366 | static int redirect_dup_num(struct in_str *input); |
| 367 | static int redirect_opt_num(o_string *o); |
| 368 | static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end); |
| 369 | static int parse_group(o_string *dest, struct p_context *ctx, struct in_str *input, int ch); |
Denis Vlasenko | 15d78fb | 2007-01-30 22:28:21 +0000 | [diff] [blame] | 370 | static const char *lookup_param(const char *src); |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 371 | static char *make_string(char **inp); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 372 | static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input); |
| 373 | static int parse_string(o_string *dest, struct p_context *ctx, const char *src); |
| 374 | static int parse_stream(o_string *dest, struct p_context *ctx, struct in_str *input0, int end_trigger); |
| 375 | /* setup: */ |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 376 | static int parse_stream_outer(struct in_str *inp, int flag); |
| 377 | static int parse_string_outer(const char *s, int flag); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 378 | static int parse_file_outer(FILE *f); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 379 | /* job management: */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 380 | static int checkjobs(struct pipe* fg_pipe); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 381 | static void insert_bg_job(struct pipe *pi); |
| 382 | static void remove_bg_job(struct pipe *pi); |
Eric Andersen | f72f562 | 2001-05-15 23:21:41 +0000 | [diff] [blame] | 383 | /* local variable support */ |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 384 | static char **make_list_in(char **inp, char *name); |
| 385 | static char *insert_var_value(char *inp); |
Denis Vlasenko | 15d78fb | 2007-01-30 22:28:21 +0000 | [diff] [blame] | 386 | static const char *get_local_var(const char *var); |
Eric Andersen | f72f562 | 2001-05-15 23:21:41 +0000 | [diff] [blame] | 387 | static void unset_local_var(const char *name); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 388 | static int set_local_var(const char *s, int flg_export); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 389 | |
| 390 | /* Table of built-in functions. They can be forked or not, depending on |
| 391 | * context: within pipes, they fork. As simple commands, they do not. |
| 392 | * When used in non-forking context, they can change global variables |
Denis Vlasenko | e1a0d48 | 2006-10-20 13:28:22 +0000 | [diff] [blame] | 393 | * in the parent shell process. If forked, of course they cannot. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 394 | * For example, 'unset foo | whatever' will parse and run, but foo will |
| 395 | * still be set at the end. */ |
"Vladimir N. Oleynik" | 485d7cb | 2005-10-17 09:48:57 +0000 | [diff] [blame] | 396 | static const struct built_in_command bltins[] = { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 397 | { "bg", "Resume a job in the background", builtin_fg_bg }, |
| 398 | { "break", "Exit for, while or until loop", builtin_not_written }, |
| 399 | { "cd", "Change working directory", builtin_cd }, |
| 400 | { "continue", "Continue for, while or until loop", builtin_not_written }, |
| 401 | { "env", "Print all environment variables", builtin_env }, |
| 402 | { "eval", "Construct and run shell command", builtin_eval }, |
| 403 | { "exec", "Exec command, replacing this shell with the exec'd process", |
| 404 | builtin_exec }, |
| 405 | { "exit", "Exit from shell()", builtin_exit }, |
| 406 | { "export", "Set environment variable", builtin_export }, |
| 407 | { "fg", "Bring job into the foreground", builtin_fg_bg }, |
| 408 | { "jobs", "Lists the active jobs", builtin_jobs }, |
| 409 | { "pwd", "Print current directory", builtin_pwd }, |
| 410 | { "read", "Input environment variable", builtin_read }, |
| 411 | { "return", "Return from a function", builtin_not_written }, |
| 412 | { "set", "Set/unset shell local variables", builtin_set }, |
| 413 | { "shift", "Shift positional parameters", builtin_shift }, |
| 414 | { "trap", "Trap signals", builtin_not_written }, |
| 415 | { "ulimit","Controls resource limits", builtin_not_written }, |
| 416 | { "umask","Sets file creation mask", builtin_umask }, |
| 417 | { "unset", "Unset environment variable", builtin_unset }, |
| 418 | { ".", "Source-in and run commands in a file", builtin_source }, |
| 419 | { "help", "List shell built-in commands", builtin_help }, |
| 420 | { NULL, NULL, NULL } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 421 | }; |
| 422 | |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 423 | static const char *set_cwd(void) |
| 424 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 425 | if (cwd == bb_msg_unknown) |
Denis Vlasenko | 6ca0444 | 2007-02-11 16:19:28 +0000 | [diff] [blame] | 426 | cwd = NULL; /* xrealloc_getcwd_or_warn(arg) called free(arg) */ |
| 427 | cwd = xrealloc_getcwd_or_warn((char *)cwd); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 428 | if (!cwd) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 429 | cwd = bb_msg_unknown; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 430 | return cwd; |
| 431 | } |
| 432 | |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 433 | /* built-in 'eval' handler */ |
| 434 | static int builtin_eval(struct child_prog *child) |
| 435 | { |
| 436 | char *str = NULL; |
| 437 | int rcode = EXIT_SUCCESS; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 438 | |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 439 | if (child->argv[1]) { |
| 440 | str = make_string(child->argv + 1); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 441 | parse_string_outer(str, FLAG_EXIT_FROM_LOOP | |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 442 | FLAG_PARSE_SEMICOLON); |
| 443 | free(str); |
| 444 | rcode = last_return_code; |
| 445 | } |
| 446 | return rcode; |
| 447 | } |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 448 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 449 | /* built-in 'cd <path>' handler */ |
| 450 | static int builtin_cd(struct child_prog *child) |
| 451 | { |
| 452 | char *newdir; |
| 453 | if (child->argv[1] == NULL) |
| 454 | newdir = getenv("HOME"); |
| 455 | else |
| 456 | newdir = child->argv[1]; |
| 457 | if (chdir(newdir)) { |
| 458 | printf("cd: %s: %s\n", newdir, strerror(errno)); |
| 459 | return EXIT_FAILURE; |
| 460 | } |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 461 | set_cwd(); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 462 | return EXIT_SUCCESS; |
| 463 | } |
| 464 | |
| 465 | /* built-in 'env' handler */ |
"Vladimir N. Oleynik" | 4ccd2b4 | 2006-01-31 09:27:48 +0000 | [diff] [blame] | 466 | static int builtin_env(struct child_prog *dummy ATTRIBUTE_UNUSED) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 467 | { |
| 468 | char **e = environ; |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 469 | if (e == NULL) |
| 470 | return EXIT_FAILURE; |
| 471 | while (*e) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 472 | puts(*e++); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 473 | } |
| 474 | return EXIT_SUCCESS; |
| 475 | } |
| 476 | |
| 477 | /* built-in 'exec' handler */ |
| 478 | static int builtin_exec(struct child_prog *child) |
| 479 | { |
| 480 | if (child->argv[1] == NULL) |
| 481 | return EXIT_SUCCESS; /* Really? */ |
| 482 | child->argv++; |
| 483 | pseudo_exec(child); |
| 484 | /* never returns */ |
| 485 | } |
| 486 | |
| 487 | /* built-in 'exit' handler */ |
| 488 | static int builtin_exit(struct child_prog *child) |
| 489 | { |
| 490 | if (child->argv[1] == NULL) |
Eric Andersen | e67c3ce | 2001-05-02 02:09:36 +0000 | [diff] [blame] | 491 | exit(last_return_code); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 492 | exit (atoi(child->argv[1])); |
| 493 | } |
| 494 | |
| 495 | /* built-in 'export VAR=value' handler */ |
| 496 | static int builtin_export(struct child_prog *child) |
| 497 | { |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 498 | int res = 0; |
| 499 | char *name = child->argv[1]; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 500 | |
Eric Andersen | f72f562 | 2001-05-15 23:21:41 +0000 | [diff] [blame] | 501 | if (name == NULL) { |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 502 | return builtin_env(child); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 503 | } |
Eric Andersen | f72f562 | 2001-05-15 23:21:41 +0000 | [diff] [blame] | 504 | |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 505 | name = strdup(name); |
Eric Andersen | f72f562 | 2001-05-15 23:21:41 +0000 | [diff] [blame] | 506 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 507 | if (name) { |
Denis Vlasenko | 15d78fb | 2007-01-30 22:28:21 +0000 | [diff] [blame] | 508 | const char *value = strchr(name, '='); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 509 | |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 510 | if (!value) { |
| 511 | char *tmp; |
| 512 | /* They are exporting something without an =VALUE */ |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 513 | |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 514 | value = get_local_var(name); |
| 515 | if (value) { |
| 516 | size_t ln = strlen(name); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 517 | |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 518 | tmp = realloc(name, ln+strlen(value)+2); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 519 | if (tmp == NULL) |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 520 | res = -1; |
| 521 | else { |
| 522 | sprintf(tmp+ln, "=%s", value); |
| 523 | name = tmp; |
| 524 | } |
| 525 | } else { |
| 526 | /* bash does not return an error when trying to export |
| 527 | * an undefined variable. Do likewise. */ |
| 528 | res = 1; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 529 | } |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 530 | } |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 531 | } |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 532 | if (res < 0) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 533 | bb_perror_msg("export"); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 534 | else if (res == 0) |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 535 | res = set_local_var(name, 1); |
| 536 | else |
| 537 | res = 0; |
| 538 | free(name); |
| 539 | return res; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 540 | } |
| 541 | |
| 542 | /* built-in 'fg' and 'bg' handler */ |
| 543 | static int builtin_fg_bg(struct child_prog *child) |
| 544 | { |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 545 | int i, jobnum; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 546 | struct pipe *pi = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 547 | |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 548 | if (!interactive) |
| 549 | return EXIT_FAILURE; |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 550 | /* If they gave us no args, assume they want the last backgrounded task */ |
| 551 | if (!child->argv[1]) { |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 552 | for (pi = job_list; pi; pi = pi->next) { |
| 553 | if (pi->jobid == last_jobid) { |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 554 | break; |
| 555 | } |
| 556 | } |
| 557 | if (!pi) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 558 | bb_error_msg("%s: no current job", child->argv[0]); |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 559 | return EXIT_FAILURE; |
| 560 | } |
| 561 | } else { |
| 562 | if (sscanf(child->argv[1], "%%%d", &jobnum) != 1) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 563 | bb_error_msg("%s: bad argument '%s'", child->argv[0], child->argv[1]); |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 564 | return EXIT_FAILURE; |
| 565 | } |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 566 | for (pi = job_list; pi; pi = pi->next) { |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 567 | if (pi->jobid == jobnum) { |
| 568 | break; |
| 569 | } |
| 570 | } |
| 571 | if (!pi) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 572 | bb_error_msg("%s: %d: no such job", child->argv[0], jobnum); |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 573 | return EXIT_FAILURE; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 574 | } |
| 575 | } |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 576 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 577 | if (*child->argv[0] == 'f') { |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 578 | /* Put the job into the foreground. */ |
| 579 | tcsetpgrp(shell_terminal, pi->pgrp); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 580 | } |
| 581 | |
| 582 | /* Restart the processes in the job */ |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 583 | for (i = 0; i < pi->num_progs; i++) |
| 584 | pi->progs[i].is_stopped = 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 585 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 586 | i = kill(- pi->pgrp, SIGCONT); |
| 587 | if (i < 0) { |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 588 | if (i == ESRCH) { |
| 589 | remove_bg_job(pi); |
| 590 | } else { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 591 | bb_perror_msg("kill (SIGCONT)"); |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 592 | } |
| 593 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 594 | |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 595 | pi->stopped_progs = 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 596 | return EXIT_SUCCESS; |
| 597 | } |
| 598 | |
| 599 | /* built-in 'help' handler */ |
"Vladimir N. Oleynik" | 4ccd2b4 | 2006-01-31 09:27:48 +0000 | [diff] [blame] | 600 | static int builtin_help(struct child_prog *dummy ATTRIBUTE_UNUSED) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 601 | { |
"Vladimir N. Oleynik" | 485d7cb | 2005-10-17 09:48:57 +0000 | [diff] [blame] | 602 | const struct built_in_command *x; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 603 | |
| 604 | printf("\nBuilt-in commands:\n"); |
| 605 | printf("-------------------\n"); |
| 606 | for (x = bltins; x->cmd; x++) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 607 | if (x->descr == NULL) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 608 | continue; |
| 609 | printf("%s\t%s\n", x->cmd, x->descr); |
| 610 | } |
| 611 | printf("\n\n"); |
| 612 | return EXIT_SUCCESS; |
| 613 | } |
| 614 | |
| 615 | /* built-in 'jobs' handler */ |
"Vladimir N. Oleynik" | 4ccd2b4 | 2006-01-31 09:27:48 +0000 | [diff] [blame] | 616 | static int builtin_jobs(struct child_prog *child ATTRIBUTE_UNUSED) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 617 | { |
| 618 | struct pipe *job; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 619 | const char *status_string; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 620 | |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 621 | for (job = job_list; job; job = job->next) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 622 | if (job->running_progs == job->stopped_progs) |
| 623 | status_string = "Stopped"; |
| 624 | else |
| 625 | status_string = "Running"; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 626 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 627 | printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->text); |
| 628 | } |
| 629 | return EXIT_SUCCESS; |
| 630 | } |
| 631 | |
| 632 | |
| 633 | /* built-in 'pwd' handler */ |
"Vladimir N. Oleynik" | 4ccd2b4 | 2006-01-31 09:27:48 +0000 | [diff] [blame] | 634 | static int builtin_pwd(struct child_prog *dummy ATTRIBUTE_UNUSED) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 635 | { |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 636 | puts(set_cwd()); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 637 | return EXIT_SUCCESS; |
| 638 | } |
| 639 | |
| 640 | /* built-in 'read VAR' handler */ |
| 641 | static int builtin_read(struct child_prog *child) |
| 642 | { |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 643 | int res; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 644 | |
| 645 | if (child->argv[1]) { |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 646 | char string[BUFSIZ]; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 647 | char *var = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 648 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 649 | string[0] = '\0'; /* In case stdin has only EOF */ |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 650 | /* read string */ |
| 651 | fgets(string, sizeof(string), stdin); |
| 652 | chomp(string); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 653 | var = malloc(strlen(child->argv[1]) + strlen(string) + 2); |
| 654 | if (var) { |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 655 | sprintf(var, "%s=%s", child->argv[1], string); |
| 656 | res = set_local_var(var, 0); |
| 657 | } else |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 658 | res = -1; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 659 | if (res) |
Rob Landley | 5483de1 | 2006-06-20 21:35:26 +0000 | [diff] [blame] | 660 | bb_perror_msg("read"); |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 661 | free(var); /* So not move up to avoid breaking errno */ |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 662 | return res; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 663 | } |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 664 | do res = getchar(); while (res != '\n' && res != EOF); |
| 665 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 666 | } |
| 667 | |
Eric Andersen | f72f562 | 2001-05-15 23:21:41 +0000 | [diff] [blame] | 668 | /* built-in 'set VAR=value' handler */ |
| 669 | static int builtin_set(struct child_prog *child) |
| 670 | { |
Eric Andersen | f72f562 | 2001-05-15 23:21:41 +0000 | [diff] [blame] | 671 | char *temp = child->argv[1]; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 672 | struct variables *e; |
Eric Andersen | f72f562 | 2001-05-15 23:21:41 +0000 | [diff] [blame] | 673 | |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 674 | if (temp == NULL) |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 675 | for (e = top_vars; e; e = e->next) |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 676 | printf("%s=%s\n", e->name, e->value); |
| 677 | else |
| 678 | set_local_var(temp, 0); |
| 679 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 680 | return EXIT_SUCCESS; |
Eric Andersen | f72f562 | 2001-05-15 23:21:41 +0000 | [diff] [blame] | 681 | } |
| 682 | |
| 683 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 684 | /* Built-in 'shift' handler */ |
| 685 | static int builtin_shift(struct child_prog *child) |
| 686 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 687 | int n = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 688 | if (child->argv[1]) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 689 | n = atoi(child->argv[1]); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 690 | } |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 691 | if (n >= 0 && n < global_argc) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 692 | /* XXX This probably breaks $0 */ |
| 693 | global_argc -= n; |
| 694 | global_argv += n; |
| 695 | return EXIT_SUCCESS; |
| 696 | } else { |
| 697 | return EXIT_FAILURE; |
| 698 | } |
| 699 | } |
| 700 | |
| 701 | /* Built-in '.' handler (read-in and execute commands from file) */ |
| 702 | static int builtin_source(struct child_prog *child) |
| 703 | { |
| 704 | FILE *input; |
| 705 | int status; |
| 706 | |
| 707 | if (child->argv[1] == NULL) |
| 708 | return EXIT_FAILURE; |
| 709 | |
| 710 | /* XXX search through $PATH is missing */ |
| 711 | input = fopen(child->argv[1], "r"); |
| 712 | if (!input) { |
Denis Vlasenko | a959588 | 2006-09-29 21:30:43 +0000 | [diff] [blame] | 713 | bb_error_msg("cannot open '%s'", child->argv[1]); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 714 | return EXIT_FAILURE; |
| 715 | } |
| 716 | |
| 717 | /* Now run the file */ |
| 718 | /* XXX argv and argc are broken; need to save old global_argv |
| 719 | * (pointer only is OK!) on this stack frame, |
| 720 | * set global_argv=child->argv+1, recurse, and restore. */ |
| 721 | mark_open(fileno(input)); |
| 722 | status = parse_file_outer(input); |
| 723 | mark_closed(fileno(input)); |
| 724 | fclose(input); |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 725 | return status; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 726 | } |
| 727 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 728 | static int builtin_umask(struct child_prog *child) |
| 729 | { |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 730 | mode_t new_umask; |
| 731 | const char *arg = child->argv[1]; |
| 732 | char *end; |
| 733 | if (arg) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 734 | new_umask = strtoul(arg, &end, 8); |
| 735 | if (*end != '\0' || end == arg) { |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 736 | return EXIT_FAILURE; |
| 737 | } |
| 738 | } else { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 739 | new_umask = umask(0); |
| 740 | printf("%.3o\n", (unsigned) new_umask); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 741 | } |
| 742 | umask(new_umask); |
| 743 | return EXIT_SUCCESS; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 744 | } |
| 745 | |
| 746 | /* built-in 'unset VAR' handler */ |
| 747 | static int builtin_unset(struct child_prog *child) |
| 748 | { |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 749 | /* bash returned already true */ |
Eric Andersen | f72f562 | 2001-05-15 23:21:41 +0000 | [diff] [blame] | 750 | unset_local_var(child->argv[1]); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 751 | return EXIT_SUCCESS; |
| 752 | } |
| 753 | |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 754 | static int builtin_not_written(struct child_prog *child) |
| 755 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 756 | printf("builtin_%s not written\n", child->argv[0]); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 757 | return EXIT_FAILURE; |
| 758 | } |
| 759 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 760 | static int b_check_space(o_string *o, int len) |
| 761 | { |
| 762 | /* It would be easy to drop a more restrictive policy |
| 763 | * in here, such as setting a maximum string length */ |
| 764 | if (o->length + len > o->maxlen) { |
| 765 | char *old_data = o->data; |
| 766 | /* assert (data == NULL || o->maxlen != 0); */ |
| 767 | o->maxlen += max(2*len, B_CHUNK); |
| 768 | o->data = realloc(o->data, 1 + o->maxlen); |
| 769 | if (o->data == NULL) { |
| 770 | free(old_data); |
| 771 | } |
| 772 | } |
| 773 | return o->data == NULL; |
| 774 | } |
| 775 | |
| 776 | static int b_addchr(o_string *o, int ch) |
| 777 | { |
| 778 | debug_printf("b_addchr: %c %d %p\n", ch, o->length, o); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 779 | if (b_check_space(o, 1)) |
| 780 | return B_NOSPAC; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 781 | o->data[o->length] = ch; |
| 782 | o->length++; |
| 783 | o->data[o->length] = '\0'; |
| 784 | return 0; |
| 785 | } |
| 786 | |
| 787 | static void b_reset(o_string *o) |
| 788 | { |
| 789 | o->length = 0; |
| 790 | o->nonnull = 0; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 791 | if (o->data != NULL) |
| 792 | *o->data = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 793 | } |
| 794 | |
| 795 | static void b_free(o_string *o) |
| 796 | { |
| 797 | b_reset(o); |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 798 | free(o->data); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 799 | o->data = NULL; |
| 800 | o->maxlen = 0; |
| 801 | } |
| 802 | |
| 803 | /* My analysis of quoting semantics tells me that state information |
| 804 | * is associated with a destination, not a source. |
| 805 | */ |
| 806 | static int b_addqchr(o_string *o, int ch, int quote) |
| 807 | { |
| 808 | if (quote && strchr("*?[\\",ch)) { |
| 809 | int rc; |
| 810 | rc = b_addchr(o, '\\'); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 811 | if (rc) |
| 812 | return rc; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 813 | } |
| 814 | return b_addchr(o, ch); |
| 815 | } |
| 816 | |
| 817 | /* belongs in utility.c */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 818 | static char *simple_itoa(unsigned i) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 819 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 820 | static char local[sizeof(int)*3 + 2]; |
| 821 | char *p = &local[sizeof(int)*3 + 2 - 1]; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 822 | *p-- = '\0'; |
| 823 | do { |
| 824 | *p-- = '0' + i % 10; |
| 825 | i /= 10; |
| 826 | } while (i > 0); |
| 827 | return p + 1; |
| 828 | } |
| 829 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 830 | static int b_adduint(o_string *o, unsigned i) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 831 | { |
| 832 | int r; |
| 833 | char *p = simple_itoa(i); |
| 834 | /* no escape checking necessary */ |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 835 | do r = b_addchr(o, *p++); while (r == 0 && *p); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 836 | return r; |
| 837 | } |
| 838 | |
| 839 | static int static_get(struct in_str *i) |
| 840 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 841 | int ch = *i->p++; |
| 842 | if (ch == '\0') return EOF; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 843 | return ch; |
| 844 | } |
| 845 | |
| 846 | static int static_peek(struct in_str *i) |
| 847 | { |
| 848 | return *i->p; |
| 849 | } |
| 850 | |
Rob Landley | 88621d7 | 2006-08-29 19:41:06 +0000 | [diff] [blame] | 851 | static void cmdedit_set_initial_prompt(void) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 852 | { |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 853 | #if !ENABLE_FEATURE_EDITING_FANCY_PROMPT |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 854 | PS1 = NULL; |
| 855 | #else |
| 856 | PS1 = getenv("PS1"); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 857 | if (PS1 == NULL) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 858 | PS1 = "\\w \\$ "; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 859 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 860 | } |
| 861 | |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 862 | static const char* setup_prompt_string(int promptmode) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 863 | { |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 864 | const char *prompt_str; |
| 865 | debug_printf("setup_prompt_string %d ", promptmode); |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 866 | #if !ENABLE_FEATURE_EDITING_FANCY_PROMPT |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 867 | /* Set up the prompt */ |
| 868 | if (promptmode == 1) { |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 869 | char *ns; |
| 870 | free((char*)PS1); |
| 871 | ns = xmalloc(strlen(cwd)+4); |
| 872 | sprintf(ns, "%s %s", cwd, (geteuid() != 0) ? "$ " : "# "); |
| 873 | prompt_str = ns; |
| 874 | PS1 = ns; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 875 | } else { |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 876 | prompt_str = PS2; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 877 | } |
| 878 | #else |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 879 | prompt_str = (promptmode == 1) ? PS1 : PS2; |
Eric Andersen | af44a0e | 2001-04-27 07:26:12 +0000 | [diff] [blame] | 880 | #endif |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 881 | debug_printf("result %s\n", prompt_str); |
| 882 | return prompt_str; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 883 | } |
| 884 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 885 | #if ENABLE_FEATURE_EDITING |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 886 | static line_input_t *line_input_state; |
| 887 | #endif |
| 888 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 889 | static void get_user_input(struct in_str *i) |
| 890 | { |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 891 | const char *prompt_str; |
Eric Andersen | 088875f | 2001-04-27 07:49:41 +0000 | [diff] [blame] | 892 | static char the_command[BUFSIZ]; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 893 | |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 894 | prompt_str = setup_prompt_string(i->promptmode); |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 895 | #if ENABLE_FEATURE_EDITING |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 896 | /* |
| 897 | ** enable command line editing only while a command line |
| 898 | ** is actually being read; otherwise, we'll end up bequeathing |
| 899 | ** atexit() handlers and other unwanted stuff to our |
| 900 | ** child processes (rob@sysgo.de) |
| 901 | */ |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 902 | read_line_input(prompt_str, the_command, BUFSIZ, line_input_state); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 903 | #else |
| 904 | fputs(prompt_str, stdout); |
| 905 | fflush(stdout); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 906 | the_command[0] = fgetc(i->file); |
| 907 | the_command[1] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 908 | #endif |
Eric Andersen | 4f6753e | 2001-05-31 17:17:12 +0000 | [diff] [blame] | 909 | fflush(stdout); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 910 | i->p = the_command; |
| 911 | } |
| 912 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 913 | /* This is the magic location that prints prompts |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 914 | * and gets data back from the user */ |
| 915 | static int file_get(struct in_str *i) |
| 916 | { |
| 917 | int ch; |
| 918 | |
| 919 | ch = 0; |
| 920 | /* If there is data waiting, eat it up */ |
| 921 | if (i->p && *i->p) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 922 | ch = *i->p++; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 923 | } else { |
| 924 | /* need to double check i->file because we might be doing something |
| 925 | * more complicated by now, like sourcing or substituting. */ |
| 926 | if (i->__promptme && interactive && i->file == stdin) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 927 | while (!i->p || !(interactive && strlen(i->p))) { |
Eric Andersen | 4f6753e | 2001-05-31 17:17:12 +0000 | [diff] [blame] | 928 | get_user_input(i); |
| 929 | } |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 930 | i->promptmode = 2; |
Eric Andersen | e67c3ce | 2001-05-02 02:09:36 +0000 | [diff] [blame] | 931 | i->__promptme = 0; |
| 932 | if (i->p && *i->p) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 933 | ch = *i->p++; |
Eric Andersen | e67c3ce | 2001-05-02 02:09:36 +0000 | [diff] [blame] | 934 | } |
Eric Andersen | 4ed5e37 | 2001-05-01 01:49:50 +0000 | [diff] [blame] | 935 | } else { |
Eric Andersen | e67c3ce | 2001-05-02 02:09:36 +0000 | [diff] [blame] | 936 | ch = fgetc(i->file); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 937 | } |
Eric Andersen | 4ed5e37 | 2001-05-01 01:49:50 +0000 | [diff] [blame] | 938 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 939 | debug_printf("b_getch: got a %d\n", ch); |
| 940 | } |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 941 | if (ch == '\n') |
| 942 | i->__promptme = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 943 | return ch; |
| 944 | } |
| 945 | |
| 946 | /* All the callers guarantee this routine will never be |
| 947 | * used right after a newline, so prompting is not needed. |
| 948 | */ |
| 949 | static int file_peek(struct in_str *i) |
| 950 | { |
| 951 | if (i->p && *i->p) { |
| 952 | return *i->p; |
| 953 | } else { |
Matt Kraai | bdd4ece | 2001-05-23 17:43:00 +0000 | [diff] [blame] | 954 | i->peek_buf[0] = fgetc(i->file); |
| 955 | i->peek_buf[1] = '\0'; |
| 956 | i->p = i->peek_buf; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 957 | debug_printf("b_peek: got a %d\n", *i->p); |
Matt Kraai | bdd4ece | 2001-05-23 17:43:00 +0000 | [diff] [blame] | 958 | return *i->p; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 959 | } |
| 960 | } |
| 961 | |
| 962 | static void setup_file_in_str(struct in_str *i, FILE *f) |
| 963 | { |
| 964 | i->peek = file_peek; |
| 965 | i->get = file_get; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 966 | i->__promptme = 1; |
| 967 | i->promptmode = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 968 | i->file = f; |
| 969 | i->p = NULL; |
| 970 | } |
| 971 | |
| 972 | static void setup_string_in_str(struct in_str *i, const char *s) |
| 973 | { |
| 974 | i->peek = static_peek; |
| 975 | i->get = static_get; |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 976 | i->__promptme = 1; |
| 977 | i->promptmode = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 978 | i->p = s; |
| 979 | } |
| 980 | |
| 981 | static void mark_open(int fd) |
| 982 | { |
| 983 | struct close_me *new = xmalloc(sizeof(struct close_me)); |
| 984 | new->fd = fd; |
| 985 | new->next = close_me_head; |
| 986 | close_me_head = new; |
| 987 | } |
| 988 | |
| 989 | static void mark_closed(int fd) |
| 990 | { |
| 991 | struct close_me *tmp; |
| 992 | if (close_me_head == NULL || close_me_head->fd != fd) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 993 | bb_error_msg_and_die("corrupt close_me"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 994 | tmp = close_me_head; |
| 995 | close_me_head = close_me_head->next; |
| 996 | free(tmp); |
| 997 | } |
| 998 | |
Eric Andersen | eaecbf3 | 2001-10-31 10:41:31 +0000 | [diff] [blame] | 999 | static void close_all(void) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1000 | { |
| 1001 | struct close_me *c; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1002 | for (c = close_me_head; c; c = c->next) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1003 | close(c->fd); |
| 1004 | } |
| 1005 | close_me_head = NULL; |
| 1006 | } |
| 1007 | |
| 1008 | /* squirrel != NULL means we squirrel away copies of stdin, stdout, |
| 1009 | * and stderr if they are redirected. */ |
| 1010 | static int setup_redirects(struct child_prog *prog, int squirrel[]) |
| 1011 | { |
| 1012 | int openfd, mode; |
| 1013 | struct redir_struct *redir; |
| 1014 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1015 | for (redir = prog->redirects; redir; redir = redir->next) { |
Eric Andersen | 817e73c | 2001-06-06 17:56:09 +0000 | [diff] [blame] | 1016 | if (redir->dup == -1 && redir->word.gl_pathv == NULL) { |
| 1017 | /* something went wrong in the parse. Pretend it didn't happen */ |
| 1018 | continue; |
| 1019 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1020 | if (redir->dup == -1) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1021 | mode = redir_table[redir->type].mode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1022 | openfd = open(redir->word.gl_pathv[0], mode, 0666); |
| 1023 | if (openfd < 0) { |
| 1024 | /* this could get lost if stderr has been redirected, but |
| 1025 | bash and ash both lose it as well (though zsh doesn't!) */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1026 | bb_perror_msg("error opening %s", redir->word.gl_pathv[0]); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1027 | return 1; |
| 1028 | } |
| 1029 | } else { |
| 1030 | openfd = redir->dup; |
| 1031 | } |
| 1032 | |
| 1033 | if (openfd != redir->fd) { |
| 1034 | if (squirrel && redir->fd < 3) { |
| 1035 | squirrel[redir->fd] = dup(redir->fd); |
| 1036 | } |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 1037 | if (openfd == -3) { |
| 1038 | close(openfd); |
| 1039 | } else { |
| 1040 | dup2(openfd, redir->fd); |
Matt Kraai | c616e53 | 2001-06-05 16:50:08 +0000 | [diff] [blame] | 1041 | if (redir->dup == -1) |
| 1042 | close (openfd); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 1043 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1044 | } |
| 1045 | } |
| 1046 | return 0; |
| 1047 | } |
| 1048 | |
| 1049 | static void restore_redirects(int squirrel[]) |
| 1050 | { |
| 1051 | int i, fd; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1052 | for (i = 0; i < 3; i++) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1053 | fd = squirrel[i]; |
| 1054 | if (fd != -1) { |
| 1055 | /* No error checking. I sure wouldn't know what |
| 1056 | * to do with an error if I found one! */ |
| 1057 | dup2(fd, i); |
| 1058 | close(fd); |
| 1059 | } |
| 1060 | } |
| 1061 | } |
| 1062 | |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 1063 | /* never returns */ |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 1064 | /* XXX no exit() here. If you don't exec, use _exit instead. |
| 1065 | * The at_exit handlers apparently confuse the calling process, |
| 1066 | * in particular stdin handling. Not sure why? */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1067 | static void pseudo_exec(struct child_prog *child) |
| 1068 | { |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 1069 | int i, rcode; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1070 | char *p; |
"Vladimir N. Oleynik" | 485d7cb | 2005-10-17 09:48:57 +0000 | [diff] [blame] | 1071 | const struct built_in_command *x; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1072 | if (child->argv) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1073 | for (i = 0; is_assignment(child->argv[i]); i++) { |
| 1074 | debug_printf("pid %d environment modification: %s\n", |
| 1075 | getpid(), child->argv[i]); |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1076 | p = insert_var_value(child->argv[i]); |
| 1077 | putenv(strdup(p)); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1078 | if (p != child->argv[i]) |
| 1079 | free(p); |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 1080 | } |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1081 | child->argv += i; /* XXX this hack isn't so horrible, since we are about |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 1082 | to exit, and therefore don't need to keep data |
| 1083 | structures consistent for free() use. */ |
| 1084 | /* If a variable is assigned in a forest, and nobody listens, |
| 1085 | * was it ever really set? |
| 1086 | */ |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 1087 | if (child->argv[0] == NULL) { |
| 1088 | _exit(EXIT_SUCCESS); |
| 1089 | } |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 1090 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1091 | /* |
| 1092 | * Check if the command matches any of the builtins. |
| 1093 | * Depending on context, this might be redundant. But it's |
| 1094 | * easier to waste a few CPU cycles than it is to figure out |
| 1095 | * if this is one of those cases. |
| 1096 | */ |
| 1097 | for (x = bltins; x->cmd; x++) { |
| 1098 | if (strcmp(child->argv[0], x->cmd) == 0 ) { |
| 1099 | debug_printf("builtin exec %s\n", child->argv[0]); |
Eric Andersen | 57e6a49 | 2001-05-22 22:34:51 +0000 | [diff] [blame] | 1100 | rcode = x->function(child); |
| 1101 | fflush(stdout); |
| 1102 | _exit(rcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1103 | } |
| 1104 | } |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 1105 | |
| 1106 | /* Check if the command matches any busybox internal commands |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1107 | * ("applets") here. |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 1108 | * FIXME: This feature is not 100% safe, since |
| 1109 | * BusyBox is not fully reentrant, so we have no guarantee the things |
| 1110 | * from the .bss are still zeroed, or that things from .data are still |
| 1111 | * at their defaults. We could exec ourself from /proc/self/exe, but I |
| 1112 | * really dislike relying on /proc for things. We could exec ourself |
| 1113 | * from global_argv[0], but if we are in a chroot, we may not be able |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1114 | * to find ourself... */ |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 1115 | #if ENABLE_FEATURE_SH_STANDALONE_SHELL |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 1116 | { |
| 1117 | int argc_l; |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 1118 | char** argv_l = child->argv; |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 1119 | char *name = child->argv[0]; |
| 1120 | |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 1121 | /* Count argc for use in a second... */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1122 | for (argc_l = 0; *argv_l; argv_l++, argc_l++) |
| 1123 | /**/; |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 1124 | optind = 1; |
| 1125 | debug_printf("running applet %s\n", name); |
| 1126 | run_applet_by_name(name, argc_l, child->argv); |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 1127 | } |
| 1128 | #endif |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1129 | debug_printf("exec of %s\n", child->argv[0]); |
| 1130 | execvp(child->argv[0], child->argv); |
| 1131 | bb_perror_msg("cannot exec: %s", child->argv[0]); |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 1132 | _exit(1); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1133 | } else if (child->group) { |
| 1134 | debug_printf("runtime nesting to group\n"); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1135 | interactive = 0; /* crucial!!!! */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1136 | rcode = run_list_real(child->group); |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 1137 | /* OK to leak memory by not calling free_pipe_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1138 | * since this process is about to exit */ |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 1139 | _exit(rcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1140 | } else { |
| 1141 | /* Can happen. See what bash does with ">foo" by itself. */ |
| 1142 | debug_printf("trying to pseudo_exec null command\n"); |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 1143 | _exit(EXIT_SUCCESS); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1144 | } |
| 1145 | } |
| 1146 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1147 | static void insert_bg_job(struct pipe *pi) |
| 1148 | { |
| 1149 | struct pipe *thejob; |
| 1150 | |
| 1151 | /* Linear search for the ID of the job to use */ |
| 1152 | pi->jobid = 1; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 1153 | for (thejob = job_list; thejob; thejob = thejob->next) |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1154 | if (thejob->jobid >= pi->jobid) |
| 1155 | pi->jobid = thejob->jobid + 1; |
| 1156 | |
| 1157 | /* add thejob to the list of running jobs */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 1158 | if (!job_list) { |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 1159 | thejob = job_list = xmalloc(sizeof(*thejob)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1160 | } else { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1161 | for (thejob = job_list; thejob->next; thejob = thejob->next) |
| 1162 | /* nothing */; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1163 | thejob->next = xmalloc(sizeof(*thejob)); |
| 1164 | thejob = thejob->next; |
| 1165 | } |
| 1166 | |
| 1167 | /* physically copy the struct job */ |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 1168 | memcpy(thejob, pi, sizeof(struct pipe)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1169 | thejob->next = NULL; |
| 1170 | thejob->running_progs = thejob->num_progs; |
| 1171 | thejob->stopped_progs = 0; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1172 | thejob->text = xmalloc(BUFSIZ); /* cmdedit buffer size */ |
Eric Andersen | 1a6d39b | 2001-05-08 05:11:54 +0000 | [diff] [blame] | 1173 | |
| 1174 | //if (pi->progs[0] && pi->progs[0].argv && pi->progs[0].argv[0]) |
| 1175 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1176 | char *bar = thejob->text; |
| 1177 | char **foo = pi->progs[0].argv; |
| 1178 | if (foo) |
| 1179 | while (*foo) |
| 1180 | bar += sprintf(bar, "%s ", *foo++); |
Eric Andersen | 1a6d39b | 2001-05-08 05:11:54 +0000 | [diff] [blame] | 1181 | } |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1182 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1183 | /* we don't wait for background thejobs to return -- append it |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1184 | to the list of backgrounded thejobs and leave it alone */ |
Eric Andersen | 1a6d39b | 2001-05-08 05:11:54 +0000 | [diff] [blame] | 1185 | printf("[%d] %d\n", thejob->jobid, thejob->progs[0].pid); |
| 1186 | last_bg_pid = thejob->progs[0].pid; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 1187 | last_jobid = thejob->jobid; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1188 | } |
| 1189 | |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 1190 | /* remove a backgrounded job */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1191 | static void remove_bg_job(struct pipe *pi) |
| 1192 | { |
| 1193 | struct pipe *prev_pipe; |
| 1194 | |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 1195 | if (pi == job_list) { |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 1196 | job_list = pi->next; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1197 | } else { |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 1198 | prev_pipe = job_list; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1199 | while (prev_pipe->next != pi) |
| 1200 | prev_pipe = prev_pipe->next; |
| 1201 | prev_pipe->next = pi->next; |
| 1202 | } |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 1203 | if (job_list) |
| 1204 | last_jobid = job_list->jobid; |
| 1205 | else |
| 1206 | last_jobid = 0; |
| 1207 | |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 1208 | pi->stopped_progs = 0; |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 1209 | free_pipe(pi, 0); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1210 | free(pi); |
| 1211 | } |
| 1212 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1213 | /* Checks to see if any processes have exited -- if they |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1214 | have, figure out why and see if a job has completed */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 1215 | static int checkjobs(struct pipe* fg_pipe) |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1216 | { |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 1217 | int attributes; |
| 1218 | int status; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1219 | int prognum = 0; |
| 1220 | struct pipe *pi; |
| 1221 | pid_t childpid; |
| 1222 | |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 1223 | attributes = WUNTRACED; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1224 | if (fg_pipe == NULL) { |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 1225 | attributes |= WNOHANG; |
| 1226 | } |
| 1227 | |
| 1228 | while ((childpid = waitpid(-1, &status, attributes)) > 0) { |
| 1229 | if (fg_pipe) { |
| 1230 | int i, rcode = 0; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1231 | for (i = 0; i < fg_pipe->num_progs; i++) { |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 1232 | if (fg_pipe->progs[i].pid == childpid) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1233 | if (i == fg_pipe->num_progs-1) |
| 1234 | rcode = WEXITSTATUS(status); |
| 1235 | fg_pipe->num_progs--; |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1236 | return rcode; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 1237 | } |
| 1238 | } |
| 1239 | } |
| 1240 | |
| 1241 | for (pi = job_list; pi; pi = pi->next) { |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1242 | prognum = 0; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 1243 | while (prognum < pi->num_progs && pi->progs[prognum].pid != childpid) { |
| 1244 | prognum++; |
| 1245 | } |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1246 | if (prognum < pi->num_progs) |
| 1247 | break; |
| 1248 | } |
| 1249 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1250 | if (pi == NULL) { |
| 1251 | debug_printf("checkjobs: pid %d was not in our list!\n", |
| 1252 | childpid); |
Eric Andersen | 9978576 | 2001-05-22 21:37:48 +0000 | [diff] [blame] | 1253 | continue; |
| 1254 | } |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 1255 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1256 | if (WIFEXITED(status) || WIFSIGNALED(status)) { |
| 1257 | /* child exited */ |
| 1258 | pi->running_progs--; |
| 1259 | pi->progs[prognum].pid = 0; |
| 1260 | |
| 1261 | if (!pi->running_progs) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1262 | printf(JOB_STATUS_FORMAT, pi->jobid, |
| 1263 | "Done", pi->text); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1264 | remove_bg_job(pi); |
| 1265 | } |
| 1266 | } else { |
| 1267 | /* child stopped */ |
| 1268 | pi->stopped_progs++; |
| 1269 | pi->progs[prognum].is_stopped = 1; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1270 | } |
| 1271 | } |
| 1272 | |
Matt Kraai | 80abc45 | 2001-05-02 21:48:17 +0000 | [diff] [blame] | 1273 | if (childpid == -1 && errno != ECHILD) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1274 | bb_perror_msg("waitpid"); |
Matt Kraai | 80abc45 | 2001-05-02 21:48:17 +0000 | [diff] [blame] | 1275 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1276 | /* move the shell to the foreground */ |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 1277 | //if (interactive && tcsetpgrp(shell_terminal, getpgid(0))) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1278 | // bb_perror_msg("tcsetpgrp-2"); |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 1279 | return -1; |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 1280 | } |
| 1281 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1282 | /* run_pipe_real() starts all the jobs, but doesn't wait for anything |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 1283 | * to finish. See checkjobs(). |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1284 | * |
| 1285 | * return code is normally -1, when the caller has to wait for children |
| 1286 | * to finish to determine the exit status of the pipe. If the pipe |
| 1287 | * is a simple builtin command, however, the action is done by the |
| 1288 | * time run_pipe_real returns, and the exit code is provided as the |
| 1289 | * return value. |
| 1290 | * |
| 1291 | * The input of the pipe is always stdin, the output is always |
| 1292 | * stdout. The outpipe[] mechanism in BusyBox-0.48 lash is bogus, |
| 1293 | * because it tries to avoid running the command substitution in |
| 1294 | * subshell, when that is in fact necessary. The subshell process |
| 1295 | * now has its stdout directed to the input of the appropriate pipe, |
| 1296 | * so this routine is noticeably simpler. |
| 1297 | */ |
| 1298 | static int run_pipe_real(struct pipe *pi) |
| 1299 | { |
| 1300 | int i; |
| 1301 | int nextin, nextout; |
| 1302 | int pipefds[2]; /* pipefds[0] is for reading */ |
Rob Landley | 53702e5 | 2006-07-19 21:43:53 +0000 | [diff] [blame] | 1303 | struct child_prog *child; |
"Vladimir N. Oleynik" | 485d7cb | 2005-10-17 09:48:57 +0000 | [diff] [blame] | 1304 | const struct built_in_command *x; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1305 | char *p; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1306 | |
| 1307 | nextin = 0; |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 1308 | pi->pgrp = -1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1309 | |
| 1310 | /* Check if this is a simple builtin (not part of a pipe). |
| 1311 | * Builtins within pipes have to fork anyway, and are handled in |
| 1312 | * pseudo_exec. "echo foo | read bar" doesn't work on bash, either. |
| 1313 | */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1314 | child = &(pi->progs[0]); |
Eric Andersen | 04407e5 | 2001-06-07 16:42:05 +0000 | [diff] [blame] | 1315 | if (pi->num_progs == 1 && child->group && child->subshell == 0) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1316 | int squirrel[] = { -1, -1, -1 }; |
Eric Andersen | 04407e5 | 2001-06-07 16:42:05 +0000 | [diff] [blame] | 1317 | int rcode; |
| 1318 | debug_printf("non-subshell grouping\n"); |
| 1319 | setup_redirects(child, squirrel); |
| 1320 | /* XXX could we merge code with following builtin case, |
| 1321 | * by creating a pseudo builtin that calls run_list_real? */ |
| 1322 | rcode = run_list_real(child->group); |
| 1323 | restore_redirects(squirrel); |
| 1324 | return rcode; |
| 1325 | } else if (pi->num_progs == 1 && pi->progs[0].argv != NULL) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1326 | for (i = 0; is_assignment(child->argv[i]); i++) |
| 1327 | /* nothing */; |
| 1328 | if (i != 0 && child->argv[i] == NULL) { |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 1329 | /* assignments, but no command: set the local environment */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1330 | for (i = 0; child->argv[i] != NULL; i++) { |
Eric Andersen | 9978576 | 2001-05-22 21:37:48 +0000 | [diff] [blame] | 1331 | /* Ok, this case is tricky. We have to decide if this is a |
| 1332 | * local variable, or an already exported variable. If it is |
| 1333 | * already exported, we have to export the new value. If it is |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1334 | * not exported, we need only set this as a local variable. |
Eric Andersen | 9978576 | 2001-05-22 21:37:48 +0000 | [diff] [blame] | 1335 | * This junk is all to decide whether or not to export this |
| 1336 | * variable. */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1337 | int export_me = 0; |
Eric Andersen | 9978576 | 2001-05-22 21:37:48 +0000 | [diff] [blame] | 1338 | char *name, *value; |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 1339 | name = xstrdup(child->argv[i]); |
Eric Andersen | 04407e5 | 2001-06-07 16:42:05 +0000 | [diff] [blame] | 1340 | debug_printf("Local environment set: %s\n", name); |
Eric Andersen | 9978576 | 2001-05-22 21:37:48 +0000 | [diff] [blame] | 1341 | value = strchr(name, '='); |
| 1342 | if (value) |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1343 | *value = 0; |
| 1344 | if (get_local_var(name)) { |
| 1345 | export_me = 1; |
Eric Andersen | 9978576 | 2001-05-22 21:37:48 +0000 | [diff] [blame] | 1346 | } |
| 1347 | free(name); |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1348 | p = insert_var_value(child->argv[i]); |
| 1349 | set_local_var(p, export_me); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1350 | if (p != child->argv[i]) |
| 1351 | free(p); |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 1352 | } |
| 1353 | return EXIT_SUCCESS; /* don't worry about errors in set_local_var() yet */ |
| 1354 | } |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1355 | for (i = 0; is_assignment(child->argv[i]); i++) { |
| 1356 | p = insert_var_value(child->argv[i]); |
| 1357 | putenv(strdup(p)); |
| 1358 | if (p != child->argv[i]) { |
| 1359 | child->sp--; |
| 1360 | free(p); |
| 1361 | } |
| 1362 | } |
| 1363 | if (child->sp) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1364 | char *str = NULL; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1365 | |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1366 | str = make_string((child->argv + i)); |
| 1367 | parse_string_outer(str, FLAG_EXIT_FROM_LOOP | FLAG_REPARSING); |
| 1368 | free(str); |
| 1369 | return last_return_code; |
| 1370 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1371 | for (x = bltins; x->cmd; x++) { |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 1372 | if (strcmp(child->argv[i], x->cmd) == 0 ) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1373 | int squirrel[] = { -1, -1, -1 }; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1374 | int rcode; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1375 | if (x->function == builtin_exec && child->argv[i+1] == NULL) { |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 1376 | debug_printf("magic exec\n"); |
| 1377 | setup_redirects(child,NULL); |
| 1378 | return EXIT_SUCCESS; |
| 1379 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1380 | debug_printf("builtin inline %s\n", child->argv[0]); |
| 1381 | /* XXX setup_redirects acts on file descriptors, not FILEs. |
| 1382 | * This is perfect for work that comes after exec(). |
| 1383 | * Is it really safe for inline use? Experimentally, |
| 1384 | * things seem to work with glibc. */ |
| 1385 | setup_redirects(child, squirrel); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1386 | child->argv += i; /* XXX horrible hack */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1387 | rcode = x->function(child); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1388 | child->argv -= i; /* XXX restore hack so free() can work right */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1389 | restore_redirects(squirrel); |
| 1390 | return rcode; |
| 1391 | } |
| 1392 | } |
| 1393 | } |
| 1394 | |
| 1395 | for (i = 0; i < pi->num_progs; i++) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1396 | child = &(pi->progs[i]); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1397 | |
| 1398 | /* pipes are inserted between pairs of commands */ |
| 1399 | if ((i + 1) < pi->num_progs) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1400 | if (pipe(pipefds) < 0) |
| 1401 | bb_perror_msg_and_die("pipe"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1402 | nextout = pipefds[1]; |
| 1403 | } else { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1404 | nextout = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1405 | pipefds[0] = -1; |
| 1406 | } |
| 1407 | |
| 1408 | /* XXX test for failed fork()? */ |
Eric Andersen | e3efc92 | 2004-04-12 17:59:24 +0000 | [diff] [blame] | 1409 | #if !defined(__UCLIBC__) || defined(__ARCH_HAS_MMU__) |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1410 | child->pid = fork(); |
Eric Andersen | 72f9a42 | 2001-10-28 05:12:20 +0000 | [diff] [blame] | 1411 | #else |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1412 | child->pid = vfork(); |
Eric Andersen | 72f9a42 | 2001-10-28 05:12:20 +0000 | [diff] [blame] | 1413 | #endif |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1414 | if (!child->pid) { |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 1415 | /* Set the handling for job control signals back to the default. */ |
| 1416 | signal(SIGINT, SIG_DFL); |
| 1417 | signal(SIGQUIT, SIG_DFL); |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 1418 | signal(SIGTERM, SIG_DFL); |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 1419 | signal(SIGTSTP, SIG_DFL); |
| 1420 | signal(SIGTTIN, SIG_DFL); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1421 | signal(SIGTTOU, SIG_DFL); |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 1422 | signal(SIGCHLD, SIG_DFL); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1423 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1424 | close_all(); |
| 1425 | |
| 1426 | if (nextin != 0) { |
| 1427 | dup2(nextin, 0); |
| 1428 | close(nextin); |
| 1429 | } |
| 1430 | if (nextout != 1) { |
| 1431 | dup2(nextout, 1); |
| 1432 | close(nextout); |
| 1433 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 1434 | if (pipefds[0] != -1) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1435 | close(pipefds[0]); /* opposite end of our output pipe */ |
| 1436 | } |
| 1437 | |
| 1438 | /* Like bash, explicit redirects override pipes, |
| 1439 | * and the pipe fd is available for dup'ing. */ |
| 1440 | setup_redirects(child,NULL); |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 1441 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 1442 | if (interactive && pi->followup != PIPE_BG) { |
Eric Andersen | bfae252 | 2001-05-17 00:14:27 +0000 | [diff] [blame] | 1443 | /* If we (the child) win the race, put ourselves in the process |
| 1444 | * group whose leader is the first process in this pipe. */ |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 1445 | if (pi->pgrp < 0) { |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 1446 | pi->pgrp = getpid(); |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 1447 | } |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 1448 | if (setpgid(0, pi->pgrp) == 0) { |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 1449 | tcsetpgrp(2, pi->pgrp); |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 1450 | } |
| 1451 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1452 | |
| 1453 | pseudo_exec(child); |
| 1454 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1455 | |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 1456 | /* put our child in the process group whose leader is the |
| 1457 | first process in this pipe */ |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 1458 | if (pi->pgrp < 0) { |
| 1459 | pi->pgrp = child->pid; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1460 | } |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 1461 | /* Don't check for errors. The child may be dead already, |
| 1462 | * in which case setpgid returns error code EACCES. */ |
| 1463 | setpgid(child->pid, pi->pgrp); |
| 1464 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1465 | if (nextin != 0) |
| 1466 | close(nextin); |
| 1467 | if (nextout != 1) |
| 1468 | close(nextout); |
| 1469 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1470 | /* If there isn't another process, nextin is garbage |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1471 | but it doesn't matter */ |
| 1472 | nextin = pipefds[0]; |
| 1473 | } |
| 1474 | return -1; |
| 1475 | } |
| 1476 | |
| 1477 | static int run_list_real(struct pipe *pi) |
| 1478 | { |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1479 | char *save_name = NULL; |
| 1480 | char **list = NULL; |
| 1481 | char **save_list = NULL; |
| 1482 | struct pipe *rpipe; |
| 1483 | int flag_rep = 0; |
| 1484 | int save_num_progs; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1485 | int rcode = 0, flag_skip = 1; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1486 | int flag_restore = 0; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1487 | int if_code = 0, next_if_code = 0; /* need double-buffer to handle elif */ |
| 1488 | reserved_style rmode, skip_more_in_this_rmode = RES_XXXX; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1489 | /* check syntax for "for" */ |
| 1490 | for (rpipe = pi; rpipe; rpipe = rpipe->next) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1491 | if ((rpipe->r_mode == RES_IN || rpipe->r_mode == RES_FOR) |
| 1492 | && (rpipe->next == NULL) |
| 1493 | ) { |
| 1494 | syntax(); |
| 1495 | return 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1496 | } |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1497 | if ((rpipe->r_mode == RES_IN && rpipe->next->r_mode == RES_IN && rpipe->next->progs->argv != NULL) |
| 1498 | || (rpipe->r_mode == RES_FOR && rpipe->next->r_mode != RES_IN) |
| 1499 | ) { |
| 1500 | syntax(); |
| 1501 | return 1; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1502 | } |
| 1503 | } |
| 1504 | for (; pi; pi = (flag_restore != 0) ? rpipe : pi->next) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1505 | if (pi->r_mode == RES_WHILE || pi->r_mode == RES_UNTIL |
| 1506 | || pi->r_mode == RES_FOR |
| 1507 | ) { |
| 1508 | flag_restore = 0; |
| 1509 | if (!rpipe) { |
| 1510 | flag_rep = 0; |
| 1511 | rpipe = pi; |
| 1512 | } |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1513 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1514 | rmode = pi->r_mode; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1515 | debug_printf("rmode=%d if_code=%d next_if_code=%d skip_more=%d\n", |
| 1516 | rmode, if_code, next_if_code, skip_more_in_this_rmode); |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1517 | if (rmode == skip_more_in_this_rmode && flag_skip) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1518 | if (pi->followup == PIPE_SEQ) |
| 1519 | flag_skip = 0; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1520 | continue; |
| 1521 | } |
| 1522 | flag_skip = 1; |
Eric Andersen | 4ed5e37 | 2001-05-01 01:49:50 +0000 | [diff] [blame] | 1523 | skip_more_in_this_rmode = RES_XXXX; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1524 | if (rmode == RES_THEN || rmode == RES_ELSE) |
| 1525 | if_code = next_if_code; |
| 1526 | if (rmode == RES_THEN && if_code) |
| 1527 | continue; |
| 1528 | if (rmode == RES_ELSE && !if_code) |
| 1529 | continue; |
| 1530 | if (rmode == RES_ELIF && !if_code) |
| 1531 | break; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1532 | if (rmode == RES_FOR && pi->num_progs) { |
| 1533 | if (!list) { |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1534 | /* if no variable values after "in" we skip "for" */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1535 | if (!pi->next->progs->argv) |
| 1536 | continue; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1537 | /* create list of variable values */ |
| 1538 | list = make_list_in(pi->next->progs->argv, |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1539 | pi->progs->argv[0]); |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1540 | save_list = list; |
| 1541 | save_name = pi->progs->argv[0]; |
| 1542 | pi->progs->argv[0] = NULL; |
| 1543 | flag_rep = 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1544 | } |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1545 | if (!*list) { |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1546 | free(pi->progs->argv[0]); |
| 1547 | free(save_list); |
| 1548 | list = NULL; |
| 1549 | flag_rep = 0; |
| 1550 | pi->progs->argv[0] = save_name; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1551 | pi->progs->glob_result.gl_pathv[0] = pi->progs->argv[0]; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1552 | continue; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1553 | } else { |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1554 | /* insert new value from list for variable */ |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1555 | if (pi->progs->argv[0]) |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1556 | free(pi->progs->argv[0]); |
| 1557 | pi->progs->argv[0] = *list++; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1558 | pi->progs->glob_result.gl_pathv[0] = pi->progs->argv[0]; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1559 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1560 | } |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1561 | if (rmode == RES_IN) |
| 1562 | continue; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1563 | if (rmode == RES_DO) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1564 | if (!flag_rep) |
| 1565 | continue; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 1566 | } |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1567 | if ((rmode == RES_DONE)) { |
| 1568 | if (flag_rep) { |
| 1569 | flag_restore = 1; |
| 1570 | } else { |
| 1571 | rpipe = NULL; |
| 1572 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1573 | } |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1574 | if (pi->num_progs == 0) |
| 1575 | continue; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1576 | save_num_progs = pi->num_progs; /* save number of programs */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1577 | rcode = run_pipe_real(pi); |
Eric Andersen | 04407e5 | 2001-06-07 16:42:05 +0000 | [diff] [blame] | 1578 | debug_printf("run_pipe_real returned %d\n",rcode); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1579 | if (rcode != -1) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1580 | /* We only ran a builtin: rcode was set by the return value |
| 1581 | * of run_pipe_real(), and we don't need to wait for anything. */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1582 | } else if (pi->followup == PIPE_BG) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1583 | /* XXX check bash's behavior with nontrivial pipes */ |
| 1584 | /* XXX compute jobid */ |
| 1585 | /* XXX what does bash do with attempts to background builtins? */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 1586 | insert_bg_job(pi); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1587 | rcode = EXIT_SUCCESS; |
| 1588 | } else { |
| 1589 | if (interactive) { |
| 1590 | /* move the new process group into the foreground */ |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 1591 | if (tcsetpgrp(shell_terminal, pi->pgrp) && errno != ENOTTY) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1592 | bb_perror_msg("tcsetpgrp-3"); |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 1593 | rcode = checkjobs(pi); |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 1594 | /* move the shell to the foreground */ |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 1595 | if (tcsetpgrp(shell_terminal, getpgid(0)) && errno != ENOTTY) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1596 | bb_perror_msg("tcsetpgrp-4"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1597 | } else { |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 1598 | rcode = checkjobs(pi); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1599 | } |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 1600 | debug_printf("checkjobs returned %d\n",rcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1601 | } |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1602 | last_return_code = rcode; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1603 | pi->num_progs = save_num_progs; /* restore number of programs */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1604 | if ( rmode == RES_IF || rmode == RES_ELIF ) |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1605 | next_if_code = rcode; /* can be overwritten a number of times */ |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1606 | if (rmode == RES_WHILE) |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1607 | flag_rep = !last_return_code; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1608 | if (rmode == RES_UNTIL) |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 1609 | flag_rep = last_return_code; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1610 | if ((rcode == EXIT_SUCCESS && pi->followup == PIPE_OR) |
| 1611 | || (rcode != EXIT_SUCCESS && pi->followup == PIPE_AND) |
| 1612 | ) { |
| 1613 | skip_more_in_this_rmode = rmode; |
| 1614 | } |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 1615 | checkjobs(NULL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1616 | } |
| 1617 | return rcode; |
| 1618 | } |
| 1619 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1620 | /* return code is the exit status of the pipe */ |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 1621 | static int free_pipe(struct pipe *pi, int indent) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1622 | { |
| 1623 | char **p; |
| 1624 | struct child_prog *child; |
| 1625 | struct redir_struct *r, *rnext; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1626 | int a, i, ret_code = 0; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 1627 | |
| 1628 | if (pi->stopped_progs > 0) |
| 1629 | return ret_code; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1630 | final_printf("%s run pipe: (pid %d)\n", indenter(indent), getpid()); |
| 1631 | for (i = 0; i < pi->num_progs; i++) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1632 | child = &pi->progs[i]; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1633 | final_printf("%s command %d:\n", indenter(indent), i); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1634 | if (child->argv) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1635 | for (a = 0, p = child->argv; *p; a++, p++) { |
| 1636 | final_printf("%s argv[%d] = %s\n", indenter(indent), a, *p); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1637 | } |
| 1638 | globfree(&child->glob_result); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1639 | child->argv = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1640 | } else if (child->group) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1641 | final_printf("%s begin group (subshell:%d)\n", indenter(indent), child->subshell); |
| 1642 | ret_code = free_pipe_list(child->group, indent+3); |
| 1643 | final_printf("%s end group\n", indenter(indent)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1644 | } else { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1645 | final_printf("%s (nil)\n", indenter(indent)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1646 | } |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1647 | for (r = child->redirects; r; r = rnext) { |
Rob Landley | 88621d7 | 2006-08-29 19:41:06 +0000 | [diff] [blame] | 1648 | final_printf("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->type].descrip); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1649 | if (r->dup == -1) { |
Eric Andersen | 817e73c | 2001-06-06 17:56:09 +0000 | [diff] [blame] | 1650 | /* guard against the case >$FOO, where foo is unset or blank */ |
| 1651 | if (r->word.gl_pathv) { |
| 1652 | final_printf(" %s\n", *r->word.gl_pathv); |
| 1653 | globfree(&r->word); |
| 1654 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1655 | } else { |
| 1656 | final_printf("&%d\n", r->dup); |
| 1657 | } |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1658 | rnext = r->next; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1659 | free(r); |
| 1660 | } |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1661 | child->redirects = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1662 | } |
| 1663 | free(pi->progs); /* children are an array, they get freed all at once */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1664 | pi->progs = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1665 | return ret_code; |
| 1666 | } |
| 1667 | |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 1668 | static int free_pipe_list(struct pipe *head, int indent) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1669 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1670 | int rcode = 0; /* if list has no members */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1671 | struct pipe *pi, *next; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1672 | for (pi = head; pi; pi = next) { |
Rob Landley | 88621d7 | 2006-08-29 19:41:06 +0000 | [diff] [blame] | 1673 | final_printf("%s pipe reserved mode %d\n", indenter(indent), pi->r_mode); |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 1674 | rcode = free_pipe(pi, indent); |
Rob Landley | 88621d7 | 2006-08-29 19:41:06 +0000 | [diff] [blame] | 1675 | final_printf("%s pipe followup code %d\n", indenter(indent), pi->followup); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1676 | next = pi->next; |
| 1677 | pi->next = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1678 | free(pi); |
| 1679 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1680 | return rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1681 | } |
| 1682 | |
| 1683 | /* Select which version we will use */ |
| 1684 | static int run_list(struct pipe *pi) |
| 1685 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1686 | int rcode = 0; |
| 1687 | if (fake_mode == 0) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1688 | rcode = run_list_real(pi); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1689 | } |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 1690 | /* free_pipe_list has the side effect of clearing memory |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1691 | * In the long run that function can be merged with run_list_real, |
| 1692 | * but doing that now would hobble the debugging effort. */ |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 1693 | free_pipe_list(pi,0); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1694 | return rcode; |
| 1695 | } |
| 1696 | |
| 1697 | /* The API for glob is arguably broken. This routine pushes a non-matching |
| 1698 | * string into the output structure, removing non-backslashed backslashes. |
| 1699 | * If someone can prove me wrong, by performing this function within the |
| 1700 | * original glob(3) api, feel free to rewrite this routine into oblivion. |
| 1701 | * Return code (0 vs. GLOB_NOSPACE) matches glob(3). |
| 1702 | * XXX broken if the last character is '\\', check that before calling. |
| 1703 | */ |
| 1704 | static int globhack(const char *src, int flags, glob_t *pglob) |
| 1705 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1706 | int cnt = 0, pathc; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1707 | const char *s; |
| 1708 | char *dest; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1709 | for (cnt = 1, s = src; s && *s; s++) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1710 | if (*s == '\\') s++; |
| 1711 | cnt++; |
| 1712 | } |
| 1713 | dest = malloc(cnt); |
| 1714 | if (!dest) return GLOB_NOSPACE; |
| 1715 | if (!(flags & GLOB_APPEND)) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1716 | pglob->gl_pathv = NULL; |
| 1717 | pglob->gl_pathc = 0; |
| 1718 | pglob->gl_offs = 0; |
| 1719 | pglob->gl_offs = 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1720 | } |
| 1721 | pathc = ++pglob->gl_pathc; |
| 1722 | pglob->gl_pathv = realloc(pglob->gl_pathv, (pathc+1)*sizeof(*pglob->gl_pathv)); |
| 1723 | if (pglob->gl_pathv == NULL) return GLOB_NOSPACE; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1724 | pglob->gl_pathv[pathc-1] = dest; |
| 1725 | pglob->gl_pathv[pathc] = NULL; |
| 1726 | for (s = src; s && *s; s++, dest++) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1727 | if (*s == '\\') s++; |
| 1728 | *dest = *s; |
| 1729 | } |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1730 | *dest = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1731 | return 0; |
| 1732 | } |
| 1733 | |
| 1734 | /* XXX broken if the last character is '\\', check that before calling */ |
| 1735 | static int glob_needed(const char *s) |
| 1736 | { |
| 1737 | for (; *s; s++) { |
| 1738 | if (*s == '\\') s++; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1739 | if (strchr("*[?", *s)) return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1740 | } |
| 1741 | return 0; |
| 1742 | } |
| 1743 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1744 | static int xglob(o_string *dest, int flags, glob_t *pglob) |
| 1745 | { |
| 1746 | int gr; |
| 1747 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 1748 | /* short-circuit for null word */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1749 | /* we can code this better when the debug_printf's are gone */ |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 1750 | if (dest->length == 0) { |
| 1751 | if (dest->nonnull) { |
| 1752 | /* bash man page calls this an "explicit" null */ |
| 1753 | gr = globhack(dest->data, flags, pglob); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1754 | debug_printf("globhack returned %d\n", gr); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 1755 | } else { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1756 | return 0; |
| 1757 | } |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 1758 | } else if (glob_needed(dest->data)) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1759 | gr = glob(dest->data, flags, NULL, pglob); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1760 | debug_printf("glob returned %d\n", gr); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1761 | if (gr == GLOB_NOMATCH) { |
| 1762 | /* quote removal, or more accurately, backslash removal */ |
| 1763 | gr = globhack(dest->data, flags, pglob); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1764 | debug_printf("globhack returned %d\n", gr); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1765 | } |
| 1766 | } else { |
| 1767 | gr = globhack(dest->data, flags, pglob); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1768 | debug_printf("globhack returned %d\n", gr); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1769 | } |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1770 | if (gr == GLOB_NOSPACE) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1771 | bb_error_msg_and_die("out of memory during glob"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1772 | if (gr != 0) { /* GLOB_ABORTED ? */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1773 | bb_error_msg("glob(3) error %d", gr); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1774 | } |
| 1775 | /* globprint(glob_target); */ |
| 1776 | return gr; |
| 1777 | } |
| 1778 | |
Eric Andersen | f72f562 | 2001-05-15 23:21:41 +0000 | [diff] [blame] | 1779 | /* This is used to get/check local shell variables */ |
Denis Vlasenko | 15d78fb | 2007-01-30 22:28:21 +0000 | [diff] [blame] | 1780 | static const char *get_local_var(const char *s) |
Eric Andersen | f72f562 | 2001-05-15 23:21:41 +0000 | [diff] [blame] | 1781 | { |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1782 | struct variables *cur; |
Eric Andersen | f72f562 | 2001-05-15 23:21:41 +0000 | [diff] [blame] | 1783 | |
| 1784 | if (!s) |
| 1785 | return NULL; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1786 | for (cur = top_vars; cur; cur = cur->next) |
| 1787 | if (strcmp(cur->name, s) == 0) |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1788 | return cur->value; |
Eric Andersen | f72f562 | 2001-05-15 23:21:41 +0000 | [diff] [blame] | 1789 | return NULL; |
| 1790 | } |
| 1791 | |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1792 | /* This is used to set local shell variables |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 1793 | flg_export == 0 if only local (not exporting) variable |
| 1794 | flg_export == 1 if "new" exporting environ |
| 1795 | flg_export > 1 if current startup environ (not call putenv()) */ |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1796 | static int set_local_var(const char *s, int flg_export) |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 1797 | { |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1798 | char *name, *value; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1799 | int result = 0; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1800 | struct variables *cur; |
Eric Andersen | 20a69a7 | 2001-05-15 17:24:44 +0000 | [diff] [blame] | 1801 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1802 | name = strdup(s); |
Eric Andersen | 20a69a7 | 2001-05-15 17:24:44 +0000 | [diff] [blame] | 1803 | |
| 1804 | /* Assume when we enter this function that we are already in |
| 1805 | * NAME=VALUE format. So the first order of business is to |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1806 | * split 's' on the '=' into 'name' and 'value' */ |
Eric Andersen | 20a69a7 | 2001-05-15 17:24:44 +0000 | [diff] [blame] | 1807 | value = strchr(name, '='); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1808 | if (value == 0 && ++value == 0) { |
Eric Andersen | 9978576 | 2001-05-22 21:37:48 +0000 | [diff] [blame] | 1809 | free(name); |
| 1810 | return -1; |
| 1811 | } |
| 1812 | *value++ = 0; |
Eric Andersen | 20a69a7 | 2001-05-15 17:24:44 +0000 | [diff] [blame] | 1813 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1814 | for (cur = top_vars; cur; cur = cur->next) { |
| 1815 | if (strcmp(cur->name, name) == 0) |
Eric Andersen | 9978576 | 2001-05-22 21:37:48 +0000 | [diff] [blame] | 1816 | break; |
| 1817 | } |
Eric Andersen | 20a69a7 | 2001-05-15 17:24:44 +0000 | [diff] [blame] | 1818 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1819 | if (cur) { |
| 1820 | if (strcmp(cur->value, value) == 0) { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 1821 | if (flg_export > 0 && cur->flg_export == 0) |
Denis Vlasenko | 15d78fb | 2007-01-30 22:28:21 +0000 | [diff] [blame] | 1822 | cur->flg_export = flg_export; |
Eric Andersen | 9978576 | 2001-05-22 21:37:48 +0000 | [diff] [blame] | 1823 | else |
| 1824 | result++; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1825 | } else { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1826 | if (cur->flg_read_only) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1827 | bb_error_msg("%s: readonly variable", name); |
Eric Andersen | 20a69a7 | 2001-05-15 17:24:44 +0000 | [diff] [blame] | 1828 | result = -1; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1829 | } else { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 1830 | if (flg_export > 0 || cur->flg_export > 1) |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1831 | cur->flg_export = 1; |
Denis Vlasenko | 15d78fb | 2007-01-30 22:28:21 +0000 | [diff] [blame] | 1832 | free((char*)cur->value); |
Eric Andersen | 9978576 | 2001-05-22 21:37:48 +0000 | [diff] [blame] | 1833 | |
| 1834 | cur->value = strdup(value); |
| 1835 | } |
| 1836 | } |
| 1837 | } else { |
| 1838 | cur = malloc(sizeof(struct variables)); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1839 | if (!cur) { |
Eric Andersen | 9978576 | 2001-05-22 21:37:48 +0000 | [diff] [blame] | 1840 | result = -1; |
| 1841 | } else { |
| 1842 | cur->name = strdup(name); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1843 | if (cur->name) { |
Eric Andersen | 9978576 | 2001-05-22 21:37:48 +0000 | [diff] [blame] | 1844 | free(cur); |
| 1845 | result = -1; |
| 1846 | } else { |
| 1847 | struct variables *bottom = top_vars; |
| 1848 | cur->value = strdup(value); |
| 1849 | cur->next = 0; |
| 1850 | cur->flg_export = flg_export; |
| 1851 | cur->flg_read_only = 0; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1852 | while (bottom->next) |
| 1853 | bottom = bottom->next; |
Eric Andersen | 9978576 | 2001-05-22 21:37:48 +0000 | [diff] [blame] | 1854 | bottom->next = cur; |
Eric Andersen | 20a69a7 | 2001-05-15 17:24:44 +0000 | [diff] [blame] | 1855 | } |
Eric Andersen | 20a69a7 | 2001-05-15 17:24:44 +0000 | [diff] [blame] | 1856 | } |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1857 | } |
Eric Andersen | 20a69a7 | 2001-05-15 17:24:44 +0000 | [diff] [blame] | 1858 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1859 | if (result == 0 && cur->flg_export == 1) { |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1860 | *(value-1) = '='; |
| 1861 | result = putenv(name); |
| 1862 | } else { |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 1863 | free(name); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1864 | if (result > 0) /* equivalent to previous set */ |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1865 | result = 0; |
| 1866 | } |
Eric Andersen | 20a69a7 | 2001-05-15 17:24:44 +0000 | [diff] [blame] | 1867 | return result; |
| 1868 | } |
| 1869 | |
Eric Andersen | f72f562 | 2001-05-15 23:21:41 +0000 | [diff] [blame] | 1870 | static void unset_local_var(const char *name) |
Eric Andersen | 20a69a7 | 2001-05-15 17:24:44 +0000 | [diff] [blame] | 1871 | { |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1872 | struct variables *cur; |
Eric Andersen | 20a69a7 | 2001-05-15 17:24:44 +0000 | [diff] [blame] | 1873 | |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1874 | if (name) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1875 | for (cur = top_vars; cur; cur = cur->next) { |
| 1876 | if (strcmp(cur->name, name) == 0) |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1877 | break; |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 1878 | } |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1879 | if (cur != 0) { |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1880 | struct variables *next = top_vars; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1881 | if (cur->flg_read_only) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1882 | bb_error_msg("%s: readonly variable", name); |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 1883 | return; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1884 | } |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1885 | if (cur->flg_export) |
| 1886 | unsetenv(cur->name); |
| 1887 | free((char*)cur->name); |
| 1888 | free((char*)cur->value); |
| 1889 | while (next->next != cur) |
| 1890 | next = next->next; |
| 1891 | next->next = cur->next; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1892 | free(cur); |
Eric Andersen | f72f562 | 2001-05-15 23:21:41 +0000 | [diff] [blame] | 1893 | } |
Eric Andersen | 20a69a7 | 2001-05-15 17:24:44 +0000 | [diff] [blame] | 1894 | } |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 1895 | } |
| 1896 | |
| 1897 | static int is_assignment(const char *s) |
| 1898 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1899 | if (!s || !isalpha(*s)) |
| 1900 | return 0; |
| 1901 | s++; |
| 1902 | while (isalnum(*s) || *s == '_') |
| 1903 | s++; |
| 1904 | return *s == '='; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 1905 | } |
| 1906 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1907 | /* the src parameter allows us to peek forward to a possible &n syntax |
| 1908 | * for file descriptor duplication, e.g., "2>&1". |
| 1909 | * Return code is 0 normally, 1 if a syntax error is detected in src. |
| 1910 | * Resource errors (in xmalloc) cause the process to exit */ |
| 1911 | static int setup_redirect(struct p_context *ctx, int fd, redir_type style, |
| 1912 | struct in_str *input) |
| 1913 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1914 | struct child_prog *child = ctx->child; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1915 | struct redir_struct *redir = child->redirects; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1916 | struct redir_struct *last_redir = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1917 | |
| 1918 | /* Create a new redir_struct and drop it onto the end of the linked list */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1919 | while (redir) { |
| 1920 | last_redir = redir; |
| 1921 | redir = redir->next; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1922 | } |
| 1923 | redir = xmalloc(sizeof(struct redir_struct)); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1924 | redir->next = NULL; |
| 1925 | redir->word.gl_pathv = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1926 | if (last_redir) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1927 | last_redir->next = redir; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1928 | } else { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1929 | child->redirects = redir; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1930 | } |
| 1931 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1932 | redir->type = style; |
| 1933 | redir->fd = (fd == -1) ? redir_table[style].default_fd : fd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1934 | |
| 1935 | debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip); |
| 1936 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1937 | /* Check for a '2>&1' type redirect */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1938 | redir->dup = redirect_dup_num(input); |
| 1939 | if (redir->dup == -2) return 1; /* syntax error */ |
| 1940 | if (redir->dup != -1) { |
| 1941 | /* Erik had a check here that the file descriptor in question |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 1942 | * is legit; I postpone that to "run time" |
| 1943 | * A "-" representation of "close me" shows up as a -3 here */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1944 | debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup); |
| 1945 | } else { |
| 1946 | /* We do _not_ try to open the file that src points to, |
| 1947 | * since we need to return and let src be expanded first. |
| 1948 | * Set ctx->pending_redirect, so we know what to do at the |
| 1949 | * end of the next parsed word. |
| 1950 | */ |
| 1951 | ctx->pending_redirect = redir; |
| 1952 | } |
| 1953 | return 0; |
| 1954 | } |
| 1955 | |
"Vladimir N. Oleynik" | 19c3701 | 2005-09-22 14:33:15 +0000 | [diff] [blame] | 1956 | static struct pipe *new_pipe(void) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1957 | struct pipe *pi; |
| 1958 | pi = xmalloc(sizeof(struct pipe)); |
| 1959 | pi->num_progs = 0; |
| 1960 | pi->progs = NULL; |
| 1961 | pi->next = NULL; |
| 1962 | pi->followup = 0; /* invalid */ |
Rob Landley | 032e2cb | 2005-12-12 06:52:45 +0000 | [diff] [blame] | 1963 | pi->r_mode = RES_NONE; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1964 | return pi; |
| 1965 | } |
| 1966 | |
| 1967 | static void initialize_context(struct p_context *ctx) |
| 1968 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1969 | ctx->pipe = NULL; |
| 1970 | ctx->pending_redirect = NULL; |
| 1971 | ctx->child = NULL; |
| 1972 | ctx->list_head = new_pipe(); |
| 1973 | ctx->pipe = ctx->list_head; |
| 1974 | ctx->w = RES_NONE; |
| 1975 | ctx->stack = NULL; |
| 1976 | ctx->old_flag = 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1977 | done_command(ctx); /* creates the memory for working child */ |
| 1978 | } |
| 1979 | |
| 1980 | /* normal return is 0 |
| 1981 | * if a reserved word is found, and processed, return 1 |
| 1982 | * should handle if, then, elif, else, fi, for, while, until, do, done. |
| 1983 | * case, function, and select are obnoxious, save those for later. |
| 1984 | */ |
"Vladimir N. Oleynik" | 19c3701 | 2005-09-22 14:33:15 +0000 | [diff] [blame] | 1985 | static int reserved_word(o_string *dest, struct p_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1986 | { |
| 1987 | struct reserved_combo { |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 1988 | const char *literal; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1989 | int code; |
| 1990 | long flag; |
| 1991 | }; |
| 1992 | /* Mostly a list of accepted follow-up reserved words. |
| 1993 | * FLAG_END means we are done with the sequence, and are ready |
| 1994 | * to turn the compound list into a command. |
| 1995 | * FLAG_START means the word must start a new compound list. |
| 1996 | */ |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 1997 | static const struct reserved_combo reserved_list[] = { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1998 | { "if", RES_IF, FLAG_THEN | FLAG_START }, |
| 1999 | { "then", RES_THEN, FLAG_ELIF | FLAG_ELSE | FLAG_FI }, |
| 2000 | { "elif", RES_ELIF, FLAG_THEN }, |
| 2001 | { "else", RES_ELSE, FLAG_FI }, |
| 2002 | { "fi", RES_FI, FLAG_END }, |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2003 | { "for", RES_FOR, FLAG_IN | FLAG_START }, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2004 | { "while", RES_WHILE, FLAG_DO | FLAG_START }, |
| 2005 | { "until", RES_UNTIL, FLAG_DO | FLAG_START }, |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2006 | { "in", RES_IN, FLAG_DO }, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2007 | { "do", RES_DO, FLAG_DONE }, |
| 2008 | { "done", RES_DONE, FLAG_END } |
| 2009 | }; |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 2010 | const struct reserved_combo *r; |
| 2011 | #define NRES sizeof(reserved_list)/sizeof(reserved_list[0]) |
| 2012 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2013 | for (r = reserved_list; r < reserved_list+NRES; r++) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2014 | if (strcmp(dest->data, r->literal) == 0) { |
| 2015 | debug_printf("found reserved word %s, code %d\n",r->literal,r->code); |
| 2016 | if (r->flag & FLAG_START) { |
| 2017 | struct p_context *new = xmalloc(sizeof(struct p_context)); |
| 2018 | debug_printf("push stack\n"); |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2019 | if (ctx->w == RES_IN || ctx->w == RES_FOR) { |
| 2020 | syntax(); |
| 2021 | free(new); |
| 2022 | ctx->w = RES_SNTX; |
| 2023 | b_reset(dest); |
| 2024 | return 1; |
| 2025 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2026 | *new = *ctx; /* physical copy */ |
| 2027 | initialize_context(ctx); |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2028 | ctx->stack = new; |
| 2029 | } else if (ctx->w == RES_NONE || !(ctx->old_flag & (1 << r->code))) { |
Eric Andersen | af44a0e | 2001-04-27 07:26:12 +0000 | [diff] [blame] | 2030 | syntax(); |
| 2031 | ctx->w = RES_SNTX; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2032 | b_reset(dest); |
Eric Andersen | af44a0e | 2001-04-27 07:26:12 +0000 | [diff] [blame] | 2033 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2034 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2035 | ctx->w = r->code; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2036 | ctx->old_flag = r->flag; |
| 2037 | if (ctx->old_flag & FLAG_END) { |
| 2038 | struct p_context *old; |
| 2039 | debug_printf("pop stack\n"); |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2040 | done_pipe(ctx,PIPE_SEQ); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2041 | old = ctx->stack; |
| 2042 | old->child->group = ctx->list_head; |
Eric Andersen | 04407e5 | 2001-06-07 16:42:05 +0000 | [diff] [blame] | 2043 | old->child->subshell = 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2044 | *ctx = *old; /* physical copy */ |
| 2045 | free(old); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2046 | } |
| 2047 | b_reset (dest); |
| 2048 | return 1; |
| 2049 | } |
| 2050 | } |
| 2051 | return 0; |
| 2052 | } |
| 2053 | |
| 2054 | /* normal return is 0. |
| 2055 | * Syntax or xglob errors return 1. */ |
| 2056 | static int done_word(o_string *dest, struct p_context *ctx) |
| 2057 | { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2058 | struct child_prog *child = ctx->child; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2059 | glob_t *glob_target; |
| 2060 | int gr, flags = 0; |
| 2061 | |
| 2062 | debug_printf("done_word: %s %p\n", dest->data, child); |
| 2063 | if (dest->length == 0 && !dest->nonnull) { |
| 2064 | debug_printf(" true null, ignored\n"); |
| 2065 | return 0; |
| 2066 | } |
| 2067 | if (ctx->pending_redirect) { |
| 2068 | glob_target = &ctx->pending_redirect->word; |
| 2069 | } else { |
| 2070 | if (child->group) { |
| 2071 | syntax(); |
| 2072 | return 1; /* syntax error, groups and arglists don't mix */ |
| 2073 | } |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2074 | if (!child->argv && (ctx->type & FLAG_PARSE_SEMICOLON)) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2075 | debug_printf("checking %s for reserved-ness\n",dest->data); |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2076 | if (reserved_word(dest,ctx)) |
| 2077 | return (ctx->w == RES_SNTX); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2078 | } |
| 2079 | glob_target = &child->glob_result; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 2080 | if (child->argv) flags |= GLOB_APPEND; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2081 | } |
| 2082 | gr = xglob(dest, flags, glob_target); |
| 2083 | if (gr != 0) return 1; |
| 2084 | |
| 2085 | b_reset(dest); |
| 2086 | if (ctx->pending_redirect) { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2087 | ctx->pending_redirect = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2088 | if (glob_target->gl_pathc != 1) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 2089 | bb_error_msg("ambiguous redirect"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2090 | return 1; |
| 2091 | } |
| 2092 | } else { |
| 2093 | child->argv = glob_target->gl_pathv; |
| 2094 | } |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2095 | if (ctx->w == RES_FOR) { |
| 2096 | done_word(dest,ctx); |
| 2097 | done_pipe(ctx,PIPE_SEQ); |
| 2098 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2099 | return 0; |
| 2100 | } |
| 2101 | |
| 2102 | /* The only possible error here is out of memory, in which case |
| 2103 | * xmalloc exits. */ |
| 2104 | static int done_command(struct p_context *ctx) |
| 2105 | { |
| 2106 | /* The child is really already in the pipe structure, so |
| 2107 | * advance the pipe counter and make a new, null child. |
| 2108 | * Only real trickiness here is that the uncommitted |
| 2109 | * child structure, to which ctx->child points, is not |
| 2110 | * counted in pi->num_progs. */ |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2111 | struct pipe *pi = ctx->pipe; |
| 2112 | struct child_prog *prog = ctx->child; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2113 | |
| 2114 | if (prog && prog->group == NULL |
| 2115 | && prog->argv == NULL |
| 2116 | && prog->redirects == NULL) { |
| 2117 | debug_printf("done_command: skipping null command\n"); |
| 2118 | return 0; |
| 2119 | } else if (prog) { |
| 2120 | pi->num_progs++; |
| 2121 | debug_printf("done_command: num_progs incremented to %d\n",pi->num_progs); |
| 2122 | } else { |
| 2123 | debug_printf("done_command: initializing\n"); |
| 2124 | } |
| 2125 | pi->progs = xrealloc(pi->progs, sizeof(*pi->progs) * (pi->num_progs+1)); |
| 2126 | |
| 2127 | prog = pi->progs + pi->num_progs; |
| 2128 | prog->redirects = NULL; |
| 2129 | prog->argv = NULL; |
| 2130 | prog->is_stopped = 0; |
| 2131 | prog->group = NULL; |
| 2132 | prog->glob_result.gl_pathv = NULL; |
| 2133 | prog->family = pi; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2134 | prog->sp = 0; |
| 2135 | ctx->child = prog; |
| 2136 | prog->type = ctx->type; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2137 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2138 | /* but ctx->pipe and ctx->list_head remain unchanged */ |
| 2139 | return 0; |
| 2140 | } |
| 2141 | |
| 2142 | static int done_pipe(struct p_context *ctx, pipe_style type) |
| 2143 | { |
| 2144 | struct pipe *new_p; |
| 2145 | done_command(ctx); /* implicit closure of previous command */ |
| 2146 | debug_printf("done_pipe, type %d\n", type); |
| 2147 | ctx->pipe->followup = type; |
| 2148 | ctx->pipe->r_mode = ctx->w; |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2149 | new_p = new_pipe(); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2150 | ctx->pipe->next = new_p; |
| 2151 | ctx->pipe = new_p; |
| 2152 | ctx->child = NULL; |
| 2153 | done_command(ctx); /* set up new pipe to accept commands */ |
| 2154 | return 0; |
| 2155 | } |
| 2156 | |
| 2157 | /* peek ahead in the in_str to find out if we have a "&n" construct, |
| 2158 | * as in "2>&1", that represents duplicating a file descriptor. |
| 2159 | * returns either -2 (syntax error), -1 (no &), or the number found. |
| 2160 | */ |
| 2161 | static int redirect_dup_num(struct in_str *input) |
| 2162 | { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2163 | int ch, d = 0, ok = 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2164 | ch = b_peek(input); |
| 2165 | if (ch != '&') return -1; |
| 2166 | |
| 2167 | b_getch(input); /* get the & */ |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2168 | ch = b_peek(input); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2169 | if (ch == '-') { |
| 2170 | b_getch(input); |
| 2171 | return -3; /* "-" represents "close me" */ |
| 2172 | } |
| 2173 | while (isdigit(ch)) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2174 | d = d*10+(ch-'0'); |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2175 | ok = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2176 | b_getch(input); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2177 | ch = b_peek(input); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2178 | } |
| 2179 | if (ok) return d; |
| 2180 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 2181 | bb_error_msg("ambiguous redirect"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2182 | return -2; |
| 2183 | } |
| 2184 | |
| 2185 | /* If a redirect is immediately preceded by a number, that number is |
| 2186 | * supposed to tell which file descriptor to redirect. This routine |
| 2187 | * looks for such preceding numbers. In an ideal world this routine |
| 2188 | * needs to handle all the following classes of redirects... |
| 2189 | * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo |
| 2190 | * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo |
| 2191 | * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo |
| 2192 | * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo |
| 2193 | * A -1 output from this program means no valid number was found, so the |
| 2194 | * caller should use the appropriate default for this redirection. |
| 2195 | */ |
| 2196 | static int redirect_opt_num(o_string *o) |
| 2197 | { |
| 2198 | int num; |
| 2199 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2200 | if (o->length == 0) |
| 2201 | return -1; |
| 2202 | for (num = 0; num < o->length; num++) { |
| 2203 | if (!isdigit(*(o->data + num))) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2204 | return -1; |
| 2205 | } |
| 2206 | } |
| 2207 | /* reuse num (and save an int) */ |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2208 | num = atoi(o->data); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2209 | b_reset(o); |
| 2210 | return num; |
| 2211 | } |
| 2212 | |
"Vladimir N. Oleynik" | 19c3701 | 2005-09-22 14:33:15 +0000 | [diff] [blame] | 2213 | static FILE *generate_stream_from_list(struct pipe *head) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2214 | { |
| 2215 | FILE *pf; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2216 | int pid, channel[2]; |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2217 | if (pipe(channel) < 0) bb_perror_msg_and_die("pipe"); |
Eric Andersen | e3efc92 | 2004-04-12 17:59:24 +0000 | [diff] [blame] | 2218 | #if !defined(__UCLIBC__) || defined(__ARCH_HAS_MMU__) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2219 | pid = fork(); |
Eric Andersen | 72f9a42 | 2001-10-28 05:12:20 +0000 | [diff] [blame] | 2220 | #else |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2221 | pid = vfork(); |
Eric Andersen | 72f9a42 | 2001-10-28 05:12:20 +0000 | [diff] [blame] | 2222 | #endif |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2223 | if (pid < 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 2224 | bb_perror_msg_and_die("fork"); |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2225 | } else if (pid == 0) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2226 | close(channel[0]); |
| 2227 | if (channel[1] != 1) { |
| 2228 | dup2(channel[1],1); |
| 2229 | close(channel[1]); |
| 2230 | } |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2231 | _exit(run_list_real(head)); /* leaks memory */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2232 | } |
| 2233 | debug_printf("forked child %d\n",pid); |
| 2234 | close(channel[1]); |
| 2235 | pf = fdopen(channel[0],"r"); |
| 2236 | debug_printf("pipe on FILE *%p\n",pf); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2237 | return pf; |
| 2238 | } |
| 2239 | |
| 2240 | /* this version hacked for testing purposes */ |
| 2241 | /* return code is exit status of the process that is run. */ |
| 2242 | static int process_command_subs(o_string *dest, struct p_context *ctx, struct in_str *input, int subst_end) |
| 2243 | { |
| 2244 | int retcode; |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2245 | o_string result = NULL_O_STRING; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2246 | struct p_context inner; |
| 2247 | FILE *p; |
| 2248 | struct in_str pipe_str; |
| 2249 | initialize_context(&inner); |
| 2250 | |
| 2251 | /* recursion to generate command */ |
| 2252 | retcode = parse_stream(&result, &inner, input, subst_end); |
| 2253 | if (retcode != 0) return retcode; /* syntax error or EOF */ |
| 2254 | done_word(&result, &inner); |
| 2255 | done_pipe(&inner, PIPE_SEQ); |
| 2256 | b_free(&result); |
| 2257 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2258 | p = generate_stream_from_list(inner.list_head); |
| 2259 | if (p == NULL) return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2260 | mark_open(fileno(p)); |
| 2261 | setup_file_in_str(&pipe_str, p); |
| 2262 | |
| 2263 | /* now send results of command back into original context */ |
| 2264 | retcode = parse_stream(dest, ctx, &pipe_str, '\0'); |
| 2265 | /* XXX In case of a syntax error, should we try to kill the child? |
| 2266 | * That would be tough to do right, so just read until EOF. */ |
| 2267 | if (retcode == 1) { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2268 | while (b_getch(&pipe_str) != EOF) |
| 2269 | /* discard */; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2270 | } |
| 2271 | |
| 2272 | debug_printf("done reading from pipe, pclose()ing\n"); |
| 2273 | /* This is the step that wait()s for the child. Should be pretty |
| 2274 | * safe, since we just read an EOF from its stdout. We could try |
| 2275 | * to better, by using wait(), and keeping track of background jobs |
| 2276 | * at the same time. That would be a lot of work, and contrary |
| 2277 | * to the KISS philosophy of this program. */ |
| 2278 | mark_closed(fileno(p)); |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2279 | retcode = pclose(p); |
Eric Andersen | a15dc15 | 2001-05-23 23:46:09 +0000 | [diff] [blame] | 2280 | free_pipe_list(inner.list_head,0); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2281 | debug_printf("pclosed, retcode=%d\n",retcode); |
| 2282 | /* XXX this process fails to trim a single trailing newline */ |
| 2283 | return retcode; |
| 2284 | } |
| 2285 | |
| 2286 | static int parse_group(o_string *dest, struct p_context *ctx, |
| 2287 | struct in_str *input, int ch) |
| 2288 | { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2289 | int rcode, endch = 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2290 | struct p_context sub; |
| 2291 | struct child_prog *child = ctx->child; |
| 2292 | if (child->argv) { |
| 2293 | syntax(); |
| 2294 | return 1; /* syntax error, groups and arglists don't mix */ |
| 2295 | } |
| 2296 | initialize_context(&sub); |
Denis Vlasenko | bf0a201 | 2006-12-26 10:42:51 +0000 | [diff] [blame] | 2297 | switch (ch) { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2298 | case '(': |
| 2299 | endch = ')'; |
| 2300 | child->subshell = 1; |
| 2301 | break; |
| 2302 | case '{': |
| 2303 | endch = '}'; |
| 2304 | break; |
| 2305 | default: |
| 2306 | syntax(); /* really logic error */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2307 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2308 | rcode = parse_stream(dest,&sub,input,endch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2309 | done_word(dest,&sub); /* finish off the final word in the subcontext */ |
| 2310 | done_pipe(&sub, PIPE_SEQ); /* and the final command there, too */ |
| 2311 | child->group = sub.list_head; |
| 2312 | return rcode; |
| 2313 | /* child remains "open", available for possible redirects */ |
| 2314 | } |
| 2315 | |
| 2316 | /* basically useful version until someone wants to get fancier, |
| 2317 | * see the bash man page under "Parameter Expansion" */ |
Denis Vlasenko | 15d78fb | 2007-01-30 22:28:21 +0000 | [diff] [blame] | 2318 | static const char *lookup_param(const char *src) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2319 | { |
Denis Vlasenko | 15d78fb | 2007-01-30 22:28:21 +0000 | [diff] [blame] | 2320 | const char *p = NULL; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2321 | if (src) { |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2322 | p = getenv(src); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2323 | if (!p) |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2324 | p = get_local_var(src); |
Eric Andersen | 20a69a7 | 2001-05-15 17:24:44 +0000 | [diff] [blame] | 2325 | } |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2326 | return p; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2327 | } |
| 2328 | |
| 2329 | /* return code: 0 for OK, 1 for syntax error */ |
| 2330 | static int handle_dollar(o_string *dest, struct p_context *ctx, struct in_str *input) |
| 2331 | { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2332 | int i, advance = 0; |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 2333 | char sep[] = " "; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2334 | int ch = input->peek(input); /* first character after the $ */ |
| 2335 | debug_printf("handle_dollar: ch=%c\n",ch); |
| 2336 | if (isalpha(ch)) { |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2337 | b_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 2338 | ctx->child->sp++; |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2339 | while (ch = b_peek(input),isalnum(ch) || ch == '_') { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2340 | b_getch(input); |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2341 | b_addchr(dest,ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2342 | } |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2343 | b_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2344 | } else if (isdigit(ch)) { |
| 2345 | i = ch-'0'; /* XXX is $0 special? */ |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2346 | if (i < global_argc) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2347 | parse_string(dest, ctx, global_argv[i]); /* recursion */ |
| 2348 | } |
| 2349 | advance = 1; |
| 2350 | } else switch (ch) { |
| 2351 | case '$': |
| 2352 | b_adduint(dest,getpid()); |
| 2353 | advance = 1; |
| 2354 | break; |
| 2355 | case '!': |
| 2356 | if (last_bg_pid > 0) b_adduint(dest, last_bg_pid); |
| 2357 | advance = 1; |
| 2358 | break; |
| 2359 | case '?': |
| 2360 | b_adduint(dest,last_return_code); |
| 2361 | advance = 1; |
| 2362 | break; |
| 2363 | case '#': |
| 2364 | b_adduint(dest,global_argc ? global_argc-1 : 0); |
| 2365 | advance = 1; |
| 2366 | break; |
| 2367 | case '{': |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2368 | b_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 2369 | ctx->child->sp++; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2370 | b_getch(input); |
| 2371 | /* XXX maybe someone will try to escape the '}' */ |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2372 | while (1) { |
| 2373 | ch = b_getch(input); |
| 2374 | if (ch == EOF || ch == '}') |
| 2375 | break; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2376 | b_addchr(dest,ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2377 | } |
| 2378 | if (ch != '}') { |
| 2379 | syntax(); |
| 2380 | return 1; |
| 2381 | } |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2382 | b_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2383 | break; |
| 2384 | case '(': |
Matt Kraai | 9f8caf1 | 2001-05-02 16:26:12 +0000 | [diff] [blame] | 2385 | b_getch(input); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2386 | process_command_subs(dest, ctx, input, ')'); |
| 2387 | break; |
| 2388 | case '*': |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2389 | sep[0] = ifs[0]; |
| 2390 | for (i = 1; i < global_argc; i++) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2391 | parse_string(dest, ctx, global_argv[i]); |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2392 | if (i+1 < global_argc) |
| 2393 | parse_string(dest, ctx, sep); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2394 | } |
| 2395 | break; |
| 2396 | case '@': |
| 2397 | case '-': |
| 2398 | case '_': |
| 2399 | /* still unhandled, but should be eventually */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 2400 | bb_error_msg("unhandled syntax: $%c",ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2401 | return 1; |
| 2402 | break; |
| 2403 | default: |
| 2404 | b_addqchr(dest,'$',dest->quote); |
| 2405 | } |
| 2406 | /* Eat the character if the flag was set. If the compiler |
| 2407 | * is smart enough, we could substitute "b_getch(input);" |
| 2408 | * for all the "advance = 1;" above, and also end up with |
| 2409 | * a nice size-optimized program. Hah! That'll be the day. |
| 2410 | */ |
| 2411 | if (advance) b_getch(input); |
| 2412 | return 0; |
| 2413 | } |
| 2414 | |
| 2415 | int parse_string(o_string *dest, struct p_context *ctx, const char *src) |
| 2416 | { |
| 2417 | struct in_str foo; |
| 2418 | setup_string_in_str(&foo, src); |
| 2419 | return parse_stream(dest, ctx, &foo, '\0'); |
| 2420 | } |
| 2421 | |
| 2422 | /* return code is 0 for normal exit, 1 for syntax error */ |
| 2423 | int parse_stream(o_string *dest, struct p_context *ctx, |
| 2424 | struct in_str *input, int end_trigger) |
| 2425 | { |
"Vladimir N. Oleynik" | 4ccd2b4 | 2006-01-31 09:27:48 +0000 | [diff] [blame] | 2426 | int ch, m; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2427 | int redir_fd; |
| 2428 | redir_type redir_style; |
| 2429 | int next; |
| 2430 | |
| 2431 | /* Only double-quote state is handled in the state variable dest->quote. |
| 2432 | * A single-quote triggers a bypass of the main loop until its mate is |
| 2433 | * found. When recursing, quote state is passed in via dest->quote. */ |
| 2434 | |
| 2435 | debug_printf("parse_stream, end_trigger=%d\n",end_trigger); |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2436 | while ((ch = b_getch(input)) != EOF) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2437 | m = map[ch]; |
| 2438 | next = (ch == '\n') ? 0 : b_peek(input); |
| 2439 | debug_printf("parse_stream: ch=%c (%d) m=%d quote=%d\n", |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2440 | ch, ch, m, dest->quote); |
| 2441 | if (m == 0 || ((m == 1 || m == 2) && dest->quote)) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2442 | b_addqchr(dest, ch, dest->quote); |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2443 | continue; |
| 2444 | } |
| 2445 | if (m == 2) { /* unquoted IFS */ |
| 2446 | if (done_word(dest, ctx)) { |
| 2447 | return 1; |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 2448 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2449 | /* If we aren't performing a substitution, treat a newline as a |
| 2450 | * command separator. */ |
| 2451 | if (end_trigger != '\0' && ch == '\n') |
| 2452 | done_pipe(ctx,PIPE_SEQ); |
| 2453 | } |
| 2454 | if (ch == end_trigger && !dest->quote && ctx->w == RES_NONE) { |
| 2455 | debug_printf("leaving parse_stream (triggered)\n"); |
| 2456 | return 0; |
| 2457 | } |
| 2458 | if (m == 2) |
| 2459 | continue; |
| 2460 | switch (ch) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2461 | case '#': |
| 2462 | if (dest->length == 0 && !dest->quote) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2463 | while (1) { |
| 2464 | ch = b_peek(input); |
| 2465 | if (ch == EOF || ch == '\n') |
| 2466 | break; |
| 2467 | b_getch(input); |
| 2468 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2469 | } else { |
| 2470 | b_addqchr(dest, ch, dest->quote); |
| 2471 | } |
| 2472 | break; |
| 2473 | case '\\': |
| 2474 | if (next == EOF) { |
| 2475 | syntax(); |
| 2476 | return 1; |
| 2477 | } |
| 2478 | b_addqchr(dest, '\\', dest->quote); |
| 2479 | b_addqchr(dest, b_getch(input), dest->quote); |
| 2480 | break; |
| 2481 | case '$': |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2482 | if (handle_dollar(dest, ctx, input) != 0) return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2483 | break; |
| 2484 | case '\'': |
| 2485 | dest->nonnull = 1; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2486 | while (1) { |
| 2487 | ch = b_getch(input); |
| 2488 | if (ch == EOF || ch == '\'') |
| 2489 | break; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2490 | b_addchr(dest,ch); |
| 2491 | } |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2492 | if (ch == EOF) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2493 | syntax(); |
| 2494 | return 1; |
| 2495 | } |
| 2496 | break; |
| 2497 | case '"': |
| 2498 | dest->nonnull = 1; |
| 2499 | dest->quote = !dest->quote; |
| 2500 | break; |
| 2501 | case '`': |
| 2502 | process_command_subs(dest, ctx, input, '`'); |
| 2503 | break; |
| 2504 | case '>': |
| 2505 | redir_fd = redirect_opt_num(dest); |
| 2506 | done_word(dest, ctx); |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2507 | redir_style = REDIRECT_OVERWRITE; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2508 | if (next == '>') { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2509 | redir_style = REDIRECT_APPEND; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2510 | b_getch(input); |
| 2511 | } else if (next == '(') { |
| 2512 | syntax(); /* until we support >(list) Process Substitution */ |
| 2513 | return 1; |
| 2514 | } |
| 2515 | setup_redirect(ctx, redir_fd, redir_style, input); |
| 2516 | break; |
| 2517 | case '<': |
| 2518 | redir_fd = redirect_opt_num(dest); |
| 2519 | done_word(dest, ctx); |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2520 | redir_style = REDIRECT_INPUT; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2521 | if (next == '<') { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2522 | redir_style = REDIRECT_HEREIS; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2523 | b_getch(input); |
| 2524 | } else if (next == '>') { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2525 | redir_style = REDIRECT_IO; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2526 | b_getch(input); |
| 2527 | } else if (next == '(') { |
| 2528 | syntax(); /* until we support <(list) Process Substitution */ |
| 2529 | return 1; |
| 2530 | } |
| 2531 | setup_redirect(ctx, redir_fd, redir_style, input); |
| 2532 | break; |
| 2533 | case ';': |
| 2534 | done_word(dest, ctx); |
| 2535 | done_pipe(ctx,PIPE_SEQ); |
| 2536 | break; |
| 2537 | case '&': |
| 2538 | done_word(dest, ctx); |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2539 | if (next == '&') { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2540 | b_getch(input); |
| 2541 | done_pipe(ctx,PIPE_AND); |
| 2542 | } else { |
| 2543 | done_pipe(ctx,PIPE_BG); |
| 2544 | } |
| 2545 | break; |
| 2546 | case '|': |
| 2547 | done_word(dest, ctx); |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2548 | if (next == '|') { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2549 | b_getch(input); |
| 2550 | done_pipe(ctx,PIPE_OR); |
| 2551 | } else { |
| 2552 | /* we could pick up a file descriptor choice here |
| 2553 | * with redirect_opt_num(), but bash doesn't do it. |
| 2554 | * "echo foo 2| cat" yields "foo 2". */ |
| 2555 | done_command(ctx); |
| 2556 | } |
| 2557 | break; |
| 2558 | case '(': |
| 2559 | case '{': |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2560 | if (parse_group(dest, ctx, input, ch) != 0) |
| 2561 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2562 | break; |
| 2563 | case ')': |
| 2564 | case '}': |
| 2565 | syntax(); /* Proper use of this character caught by end_trigger */ |
| 2566 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2567 | default: |
| 2568 | syntax(); /* this is really an internal logic error */ |
| 2569 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2570 | } |
| 2571 | } |
| 2572 | /* complain if quote? No, maybe we just finished a command substitution |
| 2573 | * that was quoted. Example: |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2574 | * $ echo "`cat foo` plus more" |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2575 | * and we just got the EOF generated by the subshell that ran "cat foo" |
| 2576 | * The only real complaint is if we got an EOF when end_trigger != '\0', |
| 2577 | * that is, we were really supposed to get end_trigger, and never got |
| 2578 | * one before the EOF. Can't use the standard "syntax error" return code, |
| 2579 | * so that parse_stream_outer can distinguish the EOF and exit smoothly. */ |
Matt Kraai | bdd4ece | 2001-05-23 17:43:00 +0000 | [diff] [blame] | 2580 | debug_printf("leaving parse_stream (EOF)\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2581 | if (end_trigger != '\0') return -1; |
| 2582 | return 0; |
| 2583 | } |
| 2584 | |
Eric Andersen | a68ea1c | 2006-01-30 22:48:39 +0000 | [diff] [blame] | 2585 | static void mapset(const char *set, int code) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2586 | { |
"Vladimir N. Oleynik" | 4ccd2b4 | 2006-01-31 09:27:48 +0000 | [diff] [blame] | 2587 | const unsigned char *s; |
| 2588 | for (s = (const unsigned char *)set; *s; s++) map[(int)*s] = code; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2589 | } |
| 2590 | |
"Vladimir N. Oleynik" | 19c3701 | 2005-09-22 14:33:15 +0000 | [diff] [blame] | 2591 | static void update_ifs_map(void) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2592 | { |
| 2593 | /* char *ifs and char map[256] are both globals. */ |
| 2594 | ifs = getenv("IFS"); |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 2595 | if (ifs == NULL) ifs = " \t\n"; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2596 | /* Precompute a list of 'flow through' behavior so it can be treated |
| 2597 | * quickly up front. Computation is necessary because of IFS. |
| 2598 | * Special case handling of IFS == " \t\n" is not implemented. |
| 2599 | * The map[] array only really needs two bits each, and on most machines |
| 2600 | * that would be faster because of the reduced L1 cache footprint. |
| 2601 | */ |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 2602 | memset(map, 0, sizeof(map)); /* most characters flow through always */ |
| 2603 | mapset("\\$'\"`", 3); /* never flow through */ |
| 2604 | mapset("<>;&|(){}#", 1); /* flow through if quoted */ |
| 2605 | mapset(ifs, 2); /* also flow through if quoted */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2606 | } |
| 2607 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 2608 | /* most recursion does not come through here, the exception is |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2609 | * from builtin_source() */ |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2610 | int parse_stream_outer(struct in_str *inp, int flag) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2611 | { |
| 2612 | |
| 2613 | struct p_context ctx; |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2614 | o_string temp = NULL_O_STRING; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2615 | int rcode; |
| 2616 | do { |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2617 | ctx.type = flag; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2618 | initialize_context(&ctx); |
| 2619 | update_ifs_map(); |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2620 | if (!(flag & FLAG_PARSE_SEMICOLON) || (flag & FLAG_REPARSING)) mapset(";$&|", 0); |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2621 | inp->promptmode = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2622 | rcode = parse_stream(&temp, &ctx, inp, '\n'); |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2623 | if (rcode != 1 && ctx.old_flag != 0) { |
| 2624 | syntax(); |
| 2625 | } |
| 2626 | if (rcode != 1 && ctx.old_flag == 0) { |
| 2627 | done_word(&temp, &ctx); |
| 2628 | done_pipe(&ctx,PIPE_SEQ); |
| 2629 | run_list(ctx.list_head); |
| 2630 | } else { |
| 2631 | if (ctx.old_flag != 0) { |
| 2632 | free(ctx.stack); |
| 2633 | b_reset(&temp); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2634 | } |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2635 | temp.nonnull = 0; |
| 2636 | temp.quote = 0; |
| 2637 | inp->p = NULL; |
| 2638 | free_pipe_list(ctx.list_head,0); |
| 2639 | } |
Eric Andersen | a813afc | 2001-05-24 16:19:36 +0000 | [diff] [blame] | 2640 | b_free(&temp); |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2641 | } while (rcode != -1 && !(flag & FLAG_EXIT_FROM_LOOP)); /* loop on syntax errors, return on EOF */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2642 | return 0; |
| 2643 | } |
| 2644 | |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2645 | static int parse_string_outer(const char *s, int flag) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2646 | { |
| 2647 | struct in_str input; |
| 2648 | setup_string_in_str(&input, s); |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2649 | return parse_stream_outer(&input, flag); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2650 | } |
| 2651 | |
| 2652 | static int parse_file_outer(FILE *f) |
| 2653 | { |
| 2654 | int rcode; |
| 2655 | struct in_str input; |
| 2656 | setup_file_in_str(&input, f); |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2657 | rcode = parse_stream_outer(&input, FLAG_PARSE_SEMICOLON); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2658 | return rcode; |
| 2659 | } |
| 2660 | |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 2661 | /* Make sure we have a controlling tty. If we get started under a job |
| 2662 | * aware app (like bash for example), make sure we are now in charge so |
| 2663 | * we don't fight over who gets the foreground */ |
Eric Andersen | eaecbf3 | 2001-10-31 10:41:31 +0000 | [diff] [blame] | 2664 | static void setup_job_control(void) |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 2665 | { |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 2666 | static pid_t shell_pgrp; |
| 2667 | /* Loop until we are in the foreground. */ |
| 2668 | while (tcgetpgrp (shell_terminal) != (shell_pgrp = getpgrp ())) |
| 2669 | kill (- shell_pgrp, SIGTTIN); |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 2670 | |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 2671 | /* Ignore interactive and job-control signals. */ |
| 2672 | signal(SIGINT, SIG_IGN); |
| 2673 | signal(SIGQUIT, SIG_IGN); |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 2674 | signal(SIGTERM, SIG_IGN); |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 2675 | signal(SIGTSTP, SIG_IGN); |
| 2676 | signal(SIGTTIN, SIG_IGN); |
| 2677 | signal(SIGTTOU, SIG_IGN); |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 2678 | signal(SIGCHLD, SIG_IGN); |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 2679 | |
| 2680 | /* Put ourselves in our own process group. */ |
Eric Andersen | 5c66d06 | 2001-06-26 23:16:31 +0000 | [diff] [blame] | 2681 | setsid(); |
Denis Vlasenko | 9af7c9d | 2007-01-19 21:19:35 +0000 | [diff] [blame] | 2682 | shell_pgrp = getpid(); |
| 2683 | setpgid(shell_pgrp, shell_pgrp); |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 2684 | |
| 2685 | /* Grab control of the terminal. */ |
| 2686 | tcsetpgrp(shell_terminal, shell_pgrp); |
| 2687 | } |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 2688 | |
Denis Vlasenko | 06af216 | 2007-02-03 17:28:39 +0000 | [diff] [blame] | 2689 | int hush_main(int argc, char **argv); |
Matt Kraai | 2d91deb | 2001-08-01 17:21:35 +0000 | [diff] [blame] | 2690 | int hush_main(int argc, char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2691 | { |
| 2692 | int opt; |
| 2693 | FILE *input; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 2694 | char **e = environ; |
Eric Andersen | bc604a2 | 2001-05-16 05:24:03 +0000 | [diff] [blame] | 2695 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 2696 | #if ENABLE_FEATURE_EDITING |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 2697 | line_input_state = new_line_input_t(FOR_SHELL); |
| 2698 | #endif |
| 2699 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2700 | /* XXX what should these be while sourcing /etc/profile? */ |
| 2701 | global_argc = argc; |
| 2702 | global_argv = argv; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2703 | |
Matt Kraai | 2d91deb | 2001-08-01 17:21:35 +0000 | [diff] [blame] | 2704 | /* (re?) initialize globals. Sometimes hush_main() ends up calling |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2705 | * hush_main(), therefore we cannot rely on the BSS to zero out this |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2706 | * stuff. Reset these to 0 every time. */ |
| 2707 | ifs = NULL; |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 2708 | /* map[] is taken care of with call to update_ifs_map() */ |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2709 | fake_mode = 0; |
| 2710 | interactive = 0; |
| 2711 | close_me_head = NULL; |
| 2712 | last_bg_pid = 0; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 2713 | job_list = NULL; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2714 | last_jobid = 0; |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2715 | |
| 2716 | /* Initialize some more globals to non-zero values */ |
| 2717 | set_cwd(); |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 2718 | if (ENABLE_FEATURE_EDITING) |
| 2719 | cmdedit_set_initial_prompt(); |
Rob Landley | 215c61d | 2006-09-15 04:10:05 +0000 | [diff] [blame] | 2720 | else PS1 = NULL; |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2721 | PS2 = "> "; |
| 2722 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2723 | /* initialize our shell local variables with the values |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2724 | * currently living in the environment */ |
| 2725 | if (e) { |
| 2726 | for (; *e; e++) |
| 2727 | set_local_var(*e, 2); /* without call putenv() */ |
| 2728 | } |
| 2729 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2730 | last_return_code = EXIT_SUCCESS; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2731 | |
| 2732 | if (argv[0] && argv[0][0] == '-') { |
| 2733 | debug_printf("\nsourcing /etc/profile\n"); |
Eric Andersen | a90f20b | 2001-06-26 23:00:21 +0000 | [diff] [blame] | 2734 | if ((input = fopen("/etc/profile", "r")) != NULL) { |
| 2735 | mark_open(fileno(input)); |
| 2736 | parse_file_outer(input); |
| 2737 | mark_closed(fileno(input)); |
| 2738 | fclose(input); |
| 2739 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2740 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2741 | input = stdin; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2742 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2743 | while ((opt = getopt(argc, argv, "c:xif")) > 0) { |
| 2744 | switch (opt) { |
| 2745 | case 'c': |
| 2746 | { |
| 2747 | global_argv = argv+optind; |
| 2748 | global_argc = argc-optind; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2749 | opt = parse_string_outer(optarg, FLAG_PARSE_SEMICOLON); |
Eric Andersen | e67c3ce | 2001-05-02 02:09:36 +0000 | [diff] [blame] | 2750 | goto final_return; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2751 | } |
| 2752 | break; |
| 2753 | case 'i': |
| 2754 | interactive++; |
| 2755 | break; |
| 2756 | case 'f': |
| 2757 | fake_mode++; |
| 2758 | break; |
| 2759 | default: |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 2760 | #ifndef BB_VER |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2761 | fprintf(stderr, "Usage: sh [FILE]...\n" |
| 2762 | " or: sh -c command [args]...\n\n"); |
| 2763 | exit(EXIT_FAILURE); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 2764 | #else |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 2765 | bb_show_usage(); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 2766 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2767 | } |
| 2768 | } |
| 2769 | /* A shell is interactive if the `-i' flag was given, or if all of |
| 2770 | * the following conditions are met: |
| 2771 | * no -c command |
| 2772 | * no arguments remaining or the -s flag given |
| 2773 | * standard input is a terminal |
| 2774 | * standard output is a terminal |
| 2775 | * Refer to Posix.2, the description of the `sh' utility. */ |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2776 | if (argv[optind] == NULL && input == stdin |
| 2777 | && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO) |
| 2778 | ) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2779 | interactive++; |
| 2780 | } |
Eric Andersen | e67c3ce | 2001-05-02 02:09:36 +0000 | [diff] [blame] | 2781 | |
| 2782 | debug_printf("\ninteractive=%d\n", interactive); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2783 | if (interactive) { |
| 2784 | /* Looks like they want an interactive shell */ |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 2785 | #if !ENABLE_FEATURE_SH_EXTRA_QUIET |
"Vladimir N. Oleynik" | dd1ccdd | 2006-02-16 15:40:24 +0000 | [diff] [blame] | 2786 | printf( "\n\n%s hush - the humble shell v0.01 (testing)\n", |
| 2787 | BB_BANNER); |
Eric Andersen | d63dee4 | 2001-10-19 00:22:23 +0000 | [diff] [blame] | 2788 | printf( "Enter 'help' for a list of built-in commands.\n\n"); |
| 2789 | #endif |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 2790 | setup_job_control(); |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 2791 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2792 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2793 | if (argv[optind] == NULL) { |
| 2794 | opt = parse_file_outer(stdin); |
Eric Andersen | e67c3ce | 2001-05-02 02:09:36 +0000 | [diff] [blame] | 2795 | goto final_return; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2796 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2797 | |
| 2798 | debug_printf("\nrunning script '%s'\n", argv[optind]); |
Denis Vlasenko | 4c97863 | 2007-02-03 03:31:13 +0000 | [diff] [blame] | 2799 | global_argv = argv + optind; |
| 2800 | global_argc = argc - optind; |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 2801 | input = xfopen(argv[optind], "r"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2802 | opt = parse_file_outer(input); |
| 2803 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 2804 | #if ENABLE_FEATURE_CLEAN_UP |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 2805 | fclose(input); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 2806 | if (cwd && cwd != bb_msg_unknown) |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 2807 | free((char*)cwd); |
| 2808 | { |
| 2809 | struct variables *cur, *tmp; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2810 | for (cur = top_vars; cur; cur = tmp) { |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 2811 | tmp = cur->next; |
| 2812 | if (!cur->flg_read_only) { |
Denis Vlasenko | 4c97863 | 2007-02-03 03:31:13 +0000 | [diff] [blame] | 2813 | free((char*)cur->name); |
| 2814 | free((char*)cur->value); |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 2815 | free(cur); |
| 2816 | } |
| 2817 | } |
| 2818 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2819 | #endif |
| 2820 | |
Eric Andersen | e67c3ce | 2001-05-02 02:09:36 +0000 | [diff] [blame] | 2821 | final_return: |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 2822 | return opt ? opt : last_return_code; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2823 | } |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2824 | |
| 2825 | static char *insert_var_value(char *inp) |
| 2826 | { |
| 2827 | int res_str_len = 0; |
| 2828 | int len; |
| 2829 | int done = 0; |
Denis Vlasenko | 15d78fb | 2007-01-30 22:28:21 +0000 | [diff] [blame] | 2830 | char *p, *res_str = NULL; |
| 2831 | const char *p1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2832 | |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2833 | while ((p = strchr(inp, SPECIAL_VAR_SYMBOL))) { |
| 2834 | if (p != inp) { |
| 2835 | len = p - inp; |
| 2836 | res_str = xrealloc(res_str, (res_str_len + len)); |
| 2837 | strncpy((res_str + res_str_len), inp, len); |
| 2838 | res_str_len += len; |
| 2839 | } |
| 2840 | inp = ++p; |
| 2841 | p = strchr(inp, SPECIAL_VAR_SYMBOL); |
| 2842 | *p = '\0'; |
Denis Vlasenko | 15d78fb | 2007-01-30 22:28:21 +0000 | [diff] [blame] | 2843 | p1 = lookup_param(inp); |
| 2844 | if (p1) { |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2845 | len = res_str_len + strlen(p1); |
| 2846 | res_str = xrealloc(res_str, (1 + len)); |
| 2847 | strcpy((res_str + res_str_len), p1); |
| 2848 | res_str_len = len; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2849 | } |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2850 | *p = SPECIAL_VAR_SYMBOL; |
| 2851 | inp = ++p; |
| 2852 | done = 1; |
| 2853 | } |
| 2854 | if (done) { |
| 2855 | res_str = xrealloc(res_str, (1 + res_str_len + strlen(inp))); |
| 2856 | strcpy((res_str + res_str_len), inp); |
| 2857 | while ((p = strchr(res_str, '\n'))) { |
| 2858 | *p = ' '; |
| 2859 | } |
| 2860 | } |
| 2861 | return (res_str == NULL) ? inp : res_str; |
| 2862 | } |
| 2863 | |
| 2864 | static char **make_list_in(char **inp, char *name) |
| 2865 | { |
| 2866 | int len, i; |
| 2867 | int name_len = strlen(name); |
| 2868 | int n = 0; |
| 2869 | char **list; |
| 2870 | char *p1, *p2, *p3; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2871 | |
| 2872 | /* create list of variable values */ |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2873 | list = xmalloc(sizeof(*list)); |
| 2874 | for (i = 0; inp[i]; i++) { |
| 2875 | p3 = insert_var_value(inp[i]); |
| 2876 | p1 = p3; |
| 2877 | while (*p1) { |
| 2878 | if ((*p1 == ' ')) { |
| 2879 | p1++; |
| 2880 | continue; |
| 2881 | } |
| 2882 | if ((p2 = strchr(p1, ' '))) { |
| 2883 | len = p2 - p1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2884 | } else { |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2885 | len = strlen(p1); |
| 2886 | p2 = p1 + len; |
| 2887 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2888 | /* we use n + 2 in realloc for list,because we add |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2889 | * new element and then we will add NULL element */ |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2890 | list = xrealloc(list, sizeof(*list) * (n + 2)); |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2891 | list[n] = xmalloc(2 + name_len + len); |
| 2892 | strcpy(list[n], name); |
| 2893 | strcat(list[n], "="); |
| 2894 | strncat(list[n], p1, len); |
| 2895 | list[n++][name_len + len + 1] = '\0'; |
| 2896 | p1 = p2; |
| 2897 | } |
| 2898 | if (p3 != inp[i]) free(p3); |
| 2899 | } |
| 2900 | list[n] = NULL; |
| 2901 | return list; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2902 | } |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2903 | |
| 2904 | /* Make new string for parser */ |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 2905 | static char* make_string(char ** inp) |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2906 | { |
| 2907 | char *p; |
| 2908 | char *str = NULL; |
| 2909 | int n; |
| 2910 | int len = 2; |
| 2911 | |
| 2912 | for (n = 0; inp[n]; n++) { |
| 2913 | p = insert_var_value(inp[n]); |
| 2914 | str = xrealloc(str, (len + strlen(p))); |
| 2915 | if (n) { |
| 2916 | strcat(str, " "); |
| 2917 | } else { |
| 2918 | *str = '\0'; |
| 2919 | } |
| 2920 | strcat(str, p); |
| 2921 | len = strlen(str) + 3; |
| 2922 | if (p != inp[n]) free(p); |
| 2923 | } |
| 2924 | len = strlen(str); |
| 2925 | *(str + len) = '\n'; |
| 2926 | *(str + len + 1) = '\0'; |
| 2927 | return str; |
| 2928 | } |