Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3 | * 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. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 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: |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 23 | * o_addchr() derived from similar w_addchar function in glibc-2.2. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 24 | * setup_redirect(), redirect_opt_num(), and big chunks of main() |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 25 | * and many builtins derived from contributions by Erik Andersen. |
| 26 | * Miscellaneous bugfixes from Matt Kraai. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 27 | * |
| 28 | * There are two big (and related) architecture differences between |
| 29 | * this parser and the lash parser. One is that this version is |
| 30 | * actually designed from the ground up to understand nearly all |
| 31 | * of the Bourne grammar. The second, consequential change is that |
| 32 | * the parser and input reader have been turned inside out. Now, |
| 33 | * the parser is in control, and asks for input as needed. The old |
| 34 | * way had the input reader in control, and it asked for parsing to |
| 35 | * take place as needed. The new way makes it much easier to properly |
| 36 | * handle the recursion implicit in the various substitutions, especially |
| 37 | * across continuation lines. |
| 38 | * |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 39 | * POSIX syntax not implemented: |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 40 | * aliases |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 41 | * Arithmetic Expansion |
| 42 | * <(list) and >(list) Process Substitution |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 43 | * Here Documents ( << word ) |
| 44 | * Functions |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 45 | * Tilde Expansion |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 46 | * Parameter Expansion for substring processing ${var#word} ${var%word} |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 47 | * |
| 48 | * Bash stuff maybe optional enable: |
| 49 | * &> and >& redirection of stdout+stderr |
| 50 | * Brace expansion |
| 51 | * reserved words: [[ ]] function select |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 52 | * substrings ${var:1:5} |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 53 | * |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 54 | * Major bugs: |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 55 | * job handling woefully incomplete and buggy (improved --vda) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 56 | * to-do: |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 57 | * port selected bugfixes from post-0.49 busybox lash - done? |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 58 | * change { and } from special chars to reserved words |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 59 | * builtins: return, trap, ulimit |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 60 | * test magic exec with redirection only |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 61 | * follow IFS rules more precisely, including update semantics |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 62 | * figure out what to do with backslash-newline |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 63 | * propagate syntax errors, die on resource errors? |
| 64 | * continuation lines, both explicit and implicit - done? |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 65 | * maybe change charmap[] to use 2-bit entries |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 66 | * |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 67 | * 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] | 68 | */ |
Bernhard Reutner-Fischer | e15d757 | 2006-06-02 20:56:16 +0000 | [diff] [blame] | 69 | |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 70 | #include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 71 | //TODO: pull in some .h and find out whether we have SINGLE_APPLET_MAIN? |
Denis Vlasenko | 61befda | 2008-11-25 01:36:03 +0000 | [diff] [blame] | 72 | //#include "applet_tables.h" doesn't work |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 73 | #include <glob.h> |
| 74 | /* #include <dmalloc.h> */ |
| 75 | #if ENABLE_HUSH_CASE |
| 76 | #include <fnmatch.h> |
| 77 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 78 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 79 | #define HUSH_VER_STR "0.92" |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 80 | |
Denis Vlasenko | 61befda | 2008-11-25 01:36:03 +0000 | [diff] [blame] | 81 | #if defined SINGLE_APPLET_MAIN |
| 82 | /* STANDALONE does not make sense, and won't compile */ |
| 83 | #undef CONFIG_FEATURE_SH_STANDALONE |
| 84 | #undef ENABLE_FEATURE_SH_STANDALONE |
| 85 | #undef USE_FEATURE_SH_STANDALONE |
| 86 | #define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__ |
| 87 | #define ENABLE_FEATURE_SH_STANDALONE 0 |
| 88 | #define USE_FEATURE_SH_STANDALONE(...) |
| 89 | #define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__ |
| 90 | #endif |
| 91 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 92 | #if !BB_MMU && ENABLE_HUSH_TICK |
| 93 | //#undef ENABLE_HUSH_TICK |
| 94 | //#define ENABLE_HUSH_TICK 0 |
| 95 | #warning On NOMMU, hush command substitution is dangerous. |
| 96 | #warning Dont use it for commands which produce lots of output. |
| 97 | #warning For more info see shell/hush.c, generate_stream_from_list(). |
| 98 | #endif |
| 99 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 100 | #if !ENABLE_HUSH_INTERACTIVE |
| 101 | #undef ENABLE_FEATURE_EDITING |
| 102 | #define ENABLE_FEATURE_EDITING 0 |
| 103 | #undef ENABLE_FEATURE_EDITING_FANCY_PROMPT |
| 104 | #define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0 |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 105 | #endif |
| 106 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 107 | /* Do we support ANY keywords? */ |
| 108 | #if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
| 109 | #define HAS_KEYWORDS 1 |
| 110 | #define IF_HAS_KEYWORDS(...) __VA_ARGS__ |
| 111 | #define IF_HAS_NO_KEYWORDS(...) |
| 112 | #else |
| 113 | #define HAS_KEYWORDS 0 |
| 114 | #define IF_HAS_KEYWORDS(...) |
| 115 | #define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__ |
| 116 | #endif |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 117 | |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 118 | /* Keep unconditionally on for now */ |
| 119 | #define HUSH_DEBUG 1 |
| 120 | /* In progress... */ |
| 121 | #define ENABLE_HUSH_FUNCTIONS 0 |
| 122 | |
| 123 | |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 124 | /* If you comment out one of these below, it will be #defined later |
| 125 | * to perform debug printfs to stderr: */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 126 | #define debug_printf(...) do {} while (0) |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 127 | /* Finer-grained debug switches */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 128 | #define debug_printf_parse(...) do {} while (0) |
| 129 | #define debug_print_tree(a, b) do {} while (0) |
| 130 | #define debug_printf_exec(...) do {} while (0) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 131 | #define debug_printf_env(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 132 | #define debug_printf_jobs(...) do {} while (0) |
| 133 | #define debug_printf_expand(...) do {} while (0) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 134 | #define debug_printf_glob(...) do {} while (0) |
| 135 | #define debug_printf_list(...) do {} while (0) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 136 | #define debug_printf_subst(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 137 | #define debug_printf_clean(...) do {} while (0) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 138 | |
| 139 | #ifndef debug_printf |
| 140 | #define debug_printf(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 141 | #endif |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 142 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 143 | #ifndef debug_printf_parse |
| 144 | #define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 145 | #endif |
| 146 | |
| 147 | #ifndef debug_printf_exec |
| 148 | #define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__) |
| 149 | #endif |
| 150 | |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 151 | #ifndef debug_printf_env |
| 152 | #define debug_printf_env(...) fprintf(stderr, __VA_ARGS__) |
| 153 | #endif |
| 154 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 155 | #ifndef debug_printf_jobs |
| 156 | #define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 157 | #define DEBUG_JOBS 1 |
| 158 | #else |
| 159 | #define DEBUG_JOBS 0 |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 160 | #endif |
| 161 | |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 162 | #ifndef debug_printf_expand |
| 163 | #define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__) |
| 164 | #define DEBUG_EXPAND 1 |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 165 | #else |
| 166 | #define DEBUG_EXPAND 0 |
| 167 | #endif |
| 168 | |
| 169 | #ifndef debug_printf_glob |
| 170 | #define debug_printf_glob(...) fprintf(stderr, __VA_ARGS__) |
| 171 | #define DEBUG_GLOB 1 |
| 172 | #else |
| 173 | #define DEBUG_GLOB 0 |
| 174 | #endif |
| 175 | |
| 176 | #ifndef debug_printf_list |
| 177 | #define debug_printf_list(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 178 | #endif |
| 179 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 180 | #ifndef debug_printf_subst |
| 181 | #define debug_printf_subst(...) fprintf(stderr, __VA_ARGS__) |
| 182 | #endif |
| 183 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 184 | #ifndef debug_printf_clean |
| 185 | /* broken, of course, but OK for testing */ |
| 186 | static const char *indenter(int i) |
| 187 | { |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 188 | static const char blanks[] ALIGN1 = |
| 189 | " "; |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 190 | return &blanks[sizeof(blanks) - i - 1]; |
| 191 | } |
| 192 | #define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 193 | #define DEBUG_CLEAN 1 |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 194 | #endif |
| 195 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 196 | #if DEBUG_EXPAND |
| 197 | static void debug_print_strings(const char *prefix, char **vv) |
| 198 | { |
| 199 | fprintf(stderr, "%s:\n", prefix); |
| 200 | while (*vv) |
| 201 | fprintf(stderr, " '%s'\n", *vv++); |
| 202 | } |
| 203 | #else |
| 204 | #define debug_print_strings(prefix, vv) ((void)0) |
| 205 | #endif |
| 206 | |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 207 | /* |
| 208 | * Leak hunting. Use hush_leaktool.sh for post-processing. |
| 209 | */ |
| 210 | #ifdef FOR_HUSH_LEAKTOOL |
Denis Vlasenko | ccce59d | 2008-06-16 14:35:57 +0000 | [diff] [blame] | 211 | /* suppress "warning: no previous prototype..." */ |
| 212 | void *xxmalloc(int lineno, size_t size); |
| 213 | void *xxrealloc(int lineno, void *ptr, size_t size); |
| 214 | char *xxstrdup(int lineno, const char *str); |
| 215 | void xxfree(void *ptr); |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 216 | void *xxmalloc(int lineno, size_t size) |
| 217 | { |
| 218 | void *ptr = xmalloc((size + 0xff) & ~0xff); |
| 219 | fprintf(stderr, "line %d: malloc %p\n", lineno, ptr); |
| 220 | return ptr; |
| 221 | } |
| 222 | void *xxrealloc(int lineno, void *ptr, size_t size) |
| 223 | { |
| 224 | ptr = xrealloc(ptr, (size + 0xff) & ~0xff); |
| 225 | fprintf(stderr, "line %d: realloc %p\n", lineno, ptr); |
| 226 | return ptr; |
| 227 | } |
| 228 | char *xxstrdup(int lineno, const char *str) |
| 229 | { |
| 230 | char *ptr = xstrdup(str); |
| 231 | fprintf(stderr, "line %d: strdup %p\n", lineno, ptr); |
| 232 | return ptr; |
| 233 | } |
| 234 | void xxfree(void *ptr) |
| 235 | { |
| 236 | fprintf(stderr, "free %p\n", ptr); |
| 237 | free(ptr); |
| 238 | } |
| 239 | #define xmalloc(s) xxmalloc(__LINE__, s) |
| 240 | #define xrealloc(p, s) xxrealloc(__LINE__, p, s) |
| 241 | #define xstrdup(s) xxstrdup(__LINE__, s) |
| 242 | #define free(p) xxfree(p) |
| 243 | #endif |
| 244 | |
| 245 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 246 | static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="HUSH_VER_STR; |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 247 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 248 | #define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n" |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 249 | |
Denis Vlasenko | 5703c22 | 2008-06-15 11:49:42 +0000 | [diff] [blame] | 250 | #define SPECIAL_VAR_SYMBOL 3 |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 251 | #define PARSEFLAG_EXIT_FROM_LOOP 1 |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 252 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 253 | typedef enum redir_type { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 254 | REDIRECT_INPUT = 1, |
| 255 | REDIRECT_OVERWRITE = 2, |
| 256 | REDIRECT_APPEND = 3, |
| 257 | REDIRECT_HEREIS = 4, |
| 258 | REDIRECT_IO = 5 |
| 259 | } redir_type; |
| 260 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 261 | /* The descrip member of this structure is only used to make |
| 262 | * debugging output pretty */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 263 | static const struct { |
| 264 | int mode; |
Denis Vlasenko | ef36ead | 2007-05-02 15:34:47 +0000 | [diff] [blame] | 265 | signed char default_fd; |
| 266 | char descrip[3]; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 267 | } redir_table[] = { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 268 | { 0, 0, "()" }, |
| 269 | { O_RDONLY, 0, "<" }, |
| 270 | { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" }, |
| 271 | { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" }, |
| 272 | { O_RDONLY, -1, "<<" }, |
| 273 | { O_RDWR, 1, "<>" } |
| 274 | }; |
| 275 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 276 | typedef enum pipe_style { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 277 | PIPE_SEQ = 1, |
| 278 | PIPE_AND = 2, |
| 279 | PIPE_OR = 3, |
| 280 | PIPE_BG = 4, |
| 281 | } pipe_style; |
| 282 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 283 | typedef enum reserved_style { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 284 | RES_NONE = 0, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 285 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 286 | RES_IF , |
| 287 | RES_THEN , |
| 288 | RES_ELIF , |
| 289 | RES_ELSE , |
| 290 | RES_FI , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 291 | #endif |
| 292 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 293 | RES_FOR , |
| 294 | RES_WHILE , |
| 295 | RES_UNTIL , |
| 296 | RES_DO , |
| 297 | RES_DONE , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 298 | #endif |
| 299 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 300 | RES_IN , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 301 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 302 | #if ENABLE_HUSH_CASE |
| 303 | RES_CASE , |
| 304 | /* two pseudo-keywords support contrived "case" syntax: */ |
| 305 | RES_MATCH , /* "word)" */ |
| 306 | RES_CASEI , /* "this command is inside CASE" */ |
| 307 | RES_ESAC , |
| 308 | #endif |
| 309 | RES_XXXX , |
| 310 | RES_SNTX |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 311 | } reserved_style; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 312 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 313 | struct redir_struct { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 314 | struct redir_struct *next; |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 315 | char *rd_filename; /* filename */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 316 | int fd; /* file descriptor being redirected */ |
| 317 | int dup; /* -1, or file descriptor being duplicated */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 318 | smallint /*enum redir_type*/ rd_type; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 319 | }; |
| 320 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 321 | struct command { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 322 | pid_t pid; /* 0 if exited */ |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 323 | int assignment_cnt; /* how many argv[i] are assignments? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 324 | smallint is_stopped; /* is the command currently running? */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 325 | smallint grp_type; /* GRP_xxx */ |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 326 | struct pipe *group; /* if non-NULL, this "prog" is {} group, |
| 327 | * subshell, or a compound statement */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 328 | char **argv; /* command name and arguments */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 329 | struct redir_struct *redirects; /* I/O redirections */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 330 | }; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 331 | /* argv vector may contain variable references (^Cvar^C, ^C0^C etc) |
| 332 | * and on execution these are substituted with their values. |
| 333 | * Substitution can make _several_ words out of one argv[n]! |
| 334 | * Example: argv[0]=='.^C*^C.' here: echo .$*. |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 335 | * References of the form ^C`cmd arg^C are `cmd arg` substitutions. |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 336 | */ |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 337 | #define GRP_NORMAL 0 |
| 338 | #define GRP_SUBSHELL 1 |
| 339 | #if ENABLE_HUSH_FUNCTIONS |
| 340 | #define GRP_FUNCTION 2 |
| 341 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 342 | |
| 343 | struct pipe { |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 344 | struct pipe *next; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 345 | int num_cmds; /* total number of commands in job */ |
| 346 | int alive_cmds; /* number of commands running (not exited) */ |
| 347 | int stopped_cmds; /* number of commands alive, but stopped */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 348 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 349 | int jobid; /* job number */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 350 | pid_t pgrp; /* process group ID for the job */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 351 | char *cmdtext; /* name of job */ |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 352 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 353 | struct command *cmds; /* array of commands in pipe */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 354 | smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 355 | IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */ |
| 356 | IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 357 | }; |
| 358 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 359 | /* This holds pointers to the various results of parsing */ |
| 360 | struct parse_context { |
| 361 | struct command *command; |
| 362 | struct pipe *list_head; |
| 363 | struct pipe *pipe; |
| 364 | struct redir_struct *pending_redirect; |
| 365 | #if HAS_KEYWORDS |
| 366 | smallint ctx_res_w; |
| 367 | smallint ctx_inverted; /* "! cmd | cmd" */ |
| 368 | #if ENABLE_HUSH_CASE |
| 369 | smallint ctx_dsemicolon; /* ";;" seen */ |
| 370 | #endif |
| 371 | int old_flag; /* bitmask of FLAG_xxx, for figuring out valid reserved words */ |
| 372 | struct parse_context *stack; |
| 373 | #endif |
| 374 | }; |
| 375 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 376 | /* On program start, environ points to initial environment. |
| 377 | * putenv adds new pointers into it, unsetenv removes them. |
| 378 | * Neither of these (de)allocates the strings. |
| 379 | * setenv allocates new strings in malloc space and does putenv, |
| 380 | * and thus setenv is unusable (leaky) for shell's purposes */ |
| 381 | #define setenv(...) setenv_is_leaky_dont_use() |
| 382 | struct variable { |
| 383 | struct variable *next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 384 | char *varstr; /* points to "name=" portion */ |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 385 | int max_len; /* if > 0, name is part of initial env; else name is malloced */ |
| 386 | smallint flg_export; /* putenv should be done on this var */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 387 | smallint flg_read_only; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 388 | }; |
| 389 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 390 | typedef struct o_string { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 391 | char *data; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 392 | int length; /* position where data is appended */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 393 | int maxlen; |
Denis Vlasenko | 324a3fd | 2008-06-18 17:49:58 +0000 | [diff] [blame] | 394 | /* Misnomer! it's not "quoting", it's "protection against globbing"! |
| 395 | * (by prepending \ to *, ?, [ and to \ too) */ |
Denis Vlasenko | ff09762 | 2007-10-01 10:00:45 +0000 | [diff] [blame] | 396 | smallint o_quote; |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 397 | smallint o_glob; |
Denis Vlasenko | ff09762 | 2007-10-01 10:00:45 +0000 | [diff] [blame] | 398 | smallint nonnull; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 399 | smallint has_empty_slot; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 400 | smallint o_assignment; /* 0:maybe, 1:yes, 2:no */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 401 | } o_string; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 402 | enum { |
| 403 | MAYBE_ASSIGNMENT = 0, |
| 404 | DEFINITELY_ASSIGNMENT = 1, |
| 405 | NOT_ASSIGNMENT = 2, |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 406 | WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */ |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 407 | }; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 408 | /* Used for initialization: o_string foo = NULL_O_STRING; */ |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 409 | #define NULL_O_STRING { NULL } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 410 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 411 | /* I can almost use ordinary FILE*. Is open_memstream() universally |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 412 | * available? Where is it documented? */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 413 | typedef struct in_str { |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 414 | const char *p; |
| 415 | /* eof_flag=1: last char in ->p is really an EOF */ |
| 416 | char eof_flag; /* meaningless if ->p == NULL */ |
| 417 | char peek_buf[2]; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 418 | #if ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | 5a1437d | 2007-05-24 13:22:47 +0000 | [diff] [blame] | 419 | smallint promptme; |
| 420 | smallint promptmode; /* 0: PS1, 1: PS2 */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 421 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 422 | FILE *file; |
| 423 | int (*get) (struct in_str *); |
| 424 | int (*peek) (struct in_str *); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 425 | } in_str; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 426 | #define i_getch(input) ((input)->get(input)) |
| 427 | #define i_peek(input) ((input)->peek(input)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 428 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 429 | enum { |
| 430 | CHAR_ORDINARY = 0, |
| 431 | CHAR_ORDINARY_IF_QUOTED = 1, /* example: *, # */ |
| 432 | CHAR_IFS = 2, /* treated as ordinary if quoted */ |
| 433 | CHAR_SPECIAL = 3, /* example: $ */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 434 | }; |
| 435 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 436 | enum { |
| 437 | BC_BREAK = 1, |
| 438 | BC_CONTINUE = 2, |
| 439 | }; |
| 440 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 441 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 442 | /* "Globals" within this file */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 443 | /* Sorted roughly by size (smaller offsets == smaller code) */ |
| 444 | struct globals { |
| 445 | #if ENABLE_HUSH_INTERACTIVE |
| 446 | /* 'interactive_fd' is a fd# open to ctty, if we have one |
| 447 | * _AND_ if we decided to act interactively */ |
| 448 | int interactive_fd; |
| 449 | const char *PS1; |
| 450 | const char *PS2; |
| 451 | #endif |
| 452 | #if ENABLE_FEATURE_EDITING |
| 453 | line_input_t *line_input_state; |
| 454 | #endif |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 455 | pid_t root_pid; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 456 | pid_t last_bg_pid; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 457 | #if ENABLE_HUSH_JOB |
| 458 | int run_list_level; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 459 | pid_t saved_tty_pgrp; |
| 460 | int last_jobid; |
| 461 | struct pipe *job_list; |
| 462 | struct pipe *toplevel_list; |
| 463 | smallint ctrl_z_flag; |
| 464 | #endif |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 465 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 466 | smallint flag_break_continue; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 467 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 468 | smallint fake_mode; |
| 469 | /* these three support $?, $#, and $1 */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 470 | smalluint last_return_code; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 471 | /* is global_argv and global_argv[1..n] malloced? (note: not [0]) */ |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 472 | smalluint global_args_malloced; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 473 | /* how many non-NULL argv's we have. NB: $# + 1 */ |
| 474 | int global_argc; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 475 | char **global_argv; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 476 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 477 | unsigned depth_break_continue; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 478 | unsigned depth_of_loop; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 479 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 480 | const char *ifs; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 481 | const char *cwd; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 482 | struct variable *top_var; /* = &G.shell_ver (set in main()) */ |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 483 | struct variable shell_ver; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 484 | #if ENABLE_FEATURE_SH_STANDALONE |
| 485 | struct nofork_save_area nofork_save; |
| 486 | #endif |
| 487 | #if ENABLE_HUSH_JOB |
| 488 | sigjmp_buf toplevel_jb; |
| 489 | #endif |
| 490 | unsigned char charmap[256]; |
| 491 | char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2]; |
| 492 | }; |
| 493 | |
| 494 | #define G (*ptr_to_globals) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 495 | /* Not #defining name to G.name - this quickly gets unwieldy |
| 496 | * (too many defines). Also, I actually prefer to see when a variable |
| 497 | * is global, thus "G." prefix is a useful hint */ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 498 | #define INIT_G() do { \ |
| 499 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
| 500 | } while (0) |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 501 | |
| 502 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 503 | /* Function prototypes for builtins */ |
| 504 | static int builtin_cd(char **argv); |
| 505 | static int builtin_echo(char **argv); |
| 506 | static int builtin_eval(char **argv); |
| 507 | static int builtin_exec(char **argv); |
| 508 | static int builtin_exit(char **argv); |
| 509 | static int builtin_export(char **argv); |
| 510 | #if ENABLE_HUSH_JOB |
| 511 | static int builtin_fg_bg(char **argv); |
| 512 | static int builtin_jobs(char **argv); |
| 513 | #endif |
| 514 | #if ENABLE_HUSH_HELP |
| 515 | static int builtin_help(char **argv); |
| 516 | #endif |
| 517 | static int builtin_pwd(char **argv); |
| 518 | static int builtin_read(char **argv); |
| 519 | static int builtin_test(char **argv); |
| 520 | static int builtin_true(char **argv); |
| 521 | static int builtin_set(char **argv); |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 522 | static int builtin_set_mode(const char, const char); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 523 | static int builtin_shift(char **argv); |
| 524 | static int builtin_source(char **argv); |
| 525 | static int builtin_umask(char **argv); |
| 526 | static int builtin_unset(char **argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 527 | static int builtin_wait(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 528 | #if ENABLE_HUSH_LOOPS |
| 529 | static int builtin_break(char **argv); |
| 530 | static int builtin_continue(char **argv); |
| 531 | #endif |
| 532 | //static int builtin_not_written(char **argv); |
| 533 | |
| 534 | /* Table of built-in functions. They can be forked or not, depending on |
| 535 | * context: within pipes, they fork. As simple commands, they do not. |
| 536 | * When used in non-forking context, they can change global variables |
| 537 | * in the parent shell process. If forked, of course they cannot. |
| 538 | * For example, 'unset foo | whatever' will parse and run, but foo will |
| 539 | * still be set at the end. */ |
| 540 | struct built_in_command { |
| 541 | const char *cmd; |
| 542 | int (*function)(char **argv); |
| 543 | #if ENABLE_HUSH_HELP |
| 544 | const char *descr; |
| 545 | #define BLTIN(cmd, func, help) { cmd, func, help } |
| 546 | #else |
| 547 | #define BLTIN(cmd, func, help) { cmd, func } |
| 548 | #endif |
| 549 | }; |
| 550 | |
| 551 | /* For now, echo and test are unconditionally enabled. |
| 552 | * Maybe make it configurable? */ |
| 553 | static const struct built_in_command bltins[] = { |
| 554 | BLTIN("." , builtin_source, "Run commands in a file"), |
| 555 | BLTIN(":" , builtin_true, "No-op"), |
| 556 | BLTIN("[" , builtin_test, "Test condition"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 557 | #if ENABLE_HUSH_JOB |
| 558 | BLTIN("bg" , builtin_fg_bg, "Resume a job in the background"), |
| 559 | #endif |
| 560 | #if ENABLE_HUSH_LOOPS |
| 561 | BLTIN("break" , builtin_break, "Exit from a loop"), |
| 562 | #endif |
| 563 | BLTIN("cd" , builtin_cd, "Change directory"), |
| 564 | #if ENABLE_HUSH_LOOPS |
| 565 | BLTIN("continue", builtin_continue, "Start new loop iteration"), |
| 566 | #endif |
| 567 | BLTIN("echo" , builtin_echo, "Write to stdout"), |
| 568 | BLTIN("eval" , builtin_eval, "Construct and run shell command"), |
| 569 | BLTIN("exec" , builtin_exec, "Execute command, don't return to shell"), |
| 570 | BLTIN("exit" , builtin_exit, "Exit"), |
| 571 | BLTIN("export", builtin_export, "Set environment variable"), |
| 572 | #if ENABLE_HUSH_JOB |
| 573 | BLTIN("fg" , builtin_fg_bg, "Bring job into the foreground"), |
| 574 | BLTIN("jobs" , builtin_jobs, "List active jobs"), |
| 575 | #endif |
| 576 | BLTIN("pwd" , builtin_pwd, "Print current directory"), |
| 577 | BLTIN("read" , builtin_read, "Input environment variable"), |
| 578 | // BLTIN("return", builtin_not_written, "Return from a function"), |
| 579 | BLTIN("set" , builtin_set, "Set/unset shell local variables"), |
| 580 | BLTIN("shift" , builtin_shift, "Shift positional parameters"), |
| 581 | // BLTIN("trap" , builtin_not_written, "Trap signals"), |
| 582 | BLTIN("test" , builtin_test, "Test condition"), |
| 583 | // BLTIN("ulimit", builtin_not_written, "Control resource limits"), |
| 584 | BLTIN("umask" , builtin_umask, "Set file creation mask"), |
| 585 | BLTIN("unset" , builtin_unset, "Unset environment variable"), |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 586 | BLTIN("wait" , builtin_wait, "Wait for process"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 587 | #if ENABLE_HUSH_HELP |
| 588 | BLTIN("help" , builtin_help, "List shell built-in commands"), |
| 589 | #endif |
| 590 | }; |
| 591 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 592 | |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 593 | /* Normal */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 594 | static void maybe_die(const char *notice, const char *msg) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 595 | { |
Denis Vlasenko | 5a1437d | 2007-05-24 13:22:47 +0000 | [diff] [blame] | 596 | /* Was using fancy stuff: |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 597 | * (G.interactive_fd ? bb_error_msg : bb_error_msg_and_die)(...params...) |
Denis Vlasenko | 5a1437d | 2007-05-24 13:22:47 +0000 | [diff] [blame] | 598 | * but it SEGVs. ?! Oh well... explicit temp ptr works around that */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 599 | void FAST_FUNC (*fp)(const char *s, ...) = bb_error_msg_and_die; |
| 600 | #if ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 601 | fp = (G.interactive_fd ? bb_error_msg : bb_error_msg_and_die); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 602 | #endif |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 603 | fp(msg ? "%s: %s" : notice, notice, msg); |
| 604 | } |
Mike Frysinger | 5a82845 | 2009-03-28 19:09:04 +0000 | [diff] [blame] | 605 | #if 1 |
| 606 | #define syntax(msg) maybe_die("syntax error", msg); |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 607 | #else |
Mike Frysinger | 5a82845 | 2009-03-28 19:09:04 +0000 | [diff] [blame] | 608 | /* Debug -- trick gcc to expand __LINE__ and convert to string */ |
| 609 | #define __syntax(msg, line) maybe_die("syntax error hush.c:" # line, msg) |
| 610 | #define _syntax(msg, line) __syntax(msg, line) |
| 611 | #define syntax(msg) _syntax(msg, __LINE__) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 612 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 613 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 614 | static int glob_needed(const char *s) |
| 615 | { |
| 616 | while (*s) { |
| 617 | if (*s == '\\') |
| 618 | s++; |
| 619 | if (*s == '*' || *s == '[' || *s == '?') |
| 620 | return 1; |
| 621 | s++; |
| 622 | } |
| 623 | return 0; |
| 624 | } |
| 625 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 626 | static int is_assignment(const char *s) |
| 627 | { |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 628 | if (!s || !(isalpha(*s) || *s == '_')) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 629 | return 0; |
| 630 | s++; |
| 631 | while (isalnum(*s) || *s == '_') |
| 632 | s++; |
| 633 | return *s == '='; |
| 634 | } |
| 635 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 636 | /* Replace each \x with x in place, return ptr past NUL. */ |
| 637 | static char *unbackslash(char *src) |
| 638 | { |
| 639 | char *dst = src; |
| 640 | while (1) { |
| 641 | if (*src == '\\') |
| 642 | src++; |
| 643 | if ((*dst++ = *src++) == '\0') |
| 644 | break; |
| 645 | } |
| 646 | return dst; |
| 647 | } |
| 648 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 649 | static char **add_strings_to_strings(char **strings, char **add, int need_to_dup) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 650 | { |
| 651 | int i; |
| 652 | unsigned count1; |
| 653 | unsigned count2; |
| 654 | char **v; |
| 655 | |
| 656 | v = strings; |
| 657 | count1 = 0; |
| 658 | if (v) { |
| 659 | while (*v) { |
| 660 | count1++; |
| 661 | v++; |
| 662 | } |
| 663 | } |
| 664 | count2 = 0; |
| 665 | v = add; |
| 666 | while (*v) { |
| 667 | count2++; |
| 668 | v++; |
| 669 | } |
| 670 | v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*)); |
| 671 | v[count1 + count2] = NULL; |
| 672 | i = count2; |
| 673 | while (--i >= 0) |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 674 | v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 675 | return v; |
| 676 | } |
| 677 | |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 678 | static char **add_string_to_strings(char **strings, char *add) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 679 | { |
| 680 | char *v[2]; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 681 | v[0] = add; |
| 682 | v[1] = NULL; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 683 | return add_strings_to_strings(strings, v, /*dup:*/ 0); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 684 | } |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 685 | |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 686 | static void putenv_all(char **strings) |
| 687 | { |
| 688 | if (!strings) |
| 689 | return; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 690 | while (*strings) { |
| 691 | debug_printf_env("putenv '%s'\n", *strings); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 692 | putenv(*strings++); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 693 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 694 | } |
| 695 | |
| 696 | static char **putenv_all_and_save_old(char **strings) |
| 697 | { |
| 698 | char **old = NULL; |
| 699 | char **s = strings; |
| 700 | |
| 701 | if (!strings) |
| 702 | return old; |
| 703 | while (*strings) { |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 704 | char *v, *eq; |
| 705 | |
| 706 | eq = strchr(*strings, '='); |
| 707 | if (eq) { |
| 708 | *eq = '\0'; |
| 709 | v = getenv(*strings); |
| 710 | *eq = '='; |
| 711 | if (v) { |
| 712 | /* v points to VAL in VAR=VAL, go back to VAR */ |
| 713 | v -= (eq - *strings) + 1; |
| 714 | old = add_string_to_strings(old, v); |
| 715 | } |
| 716 | } |
| 717 | strings++; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 718 | } |
| 719 | putenv_all(s); |
| 720 | return old; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 721 | } |
| 722 | |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 723 | static void free_strings_and_unsetenv(char **strings, int unset) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 724 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 725 | char **v; |
| 726 | |
| 727 | if (!strings) |
| 728 | return; |
| 729 | |
| 730 | v = strings; |
| 731 | while (*v) { |
| 732 | if (unset) { |
Denis Vlasenko | 76ddc2e | 2008-12-30 05:05:31 +0000 | [diff] [blame] | 733 | debug_printf_env("unsetenv '%s'\n", *v); |
| 734 | bb_unsetenv(*v); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 735 | } |
| 736 | free(*v++); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 737 | } |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 738 | free(strings); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 739 | } |
| 740 | |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 741 | static void free_strings(char **strings) |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 742 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 743 | free_strings_and_unsetenv(strings, 0); |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 744 | } |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 745 | |
| 746 | |
Denis Vlasenko | 4830fc5 | 2008-05-25 21:50:55 +0000 | [diff] [blame] | 747 | /* Signals are grouped, we handle them in batches */ |
| 748 | static void set_misc_sighandler(void (*handler)(int)) |
| 749 | { |
| 750 | bb_signals(0 |
| 751 | + (1 << SIGINT) |
| 752 | + (1 << SIGQUIT) |
| 753 | + (1 << SIGTERM) |
| 754 | , handler); |
| 755 | } |
| 756 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 757 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 758 | |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 759 | static void set_fatal_sighandler(void (*handler)(int)) |
| 760 | { |
Denis Vlasenko | 25591c3 | 2008-02-16 22:58:56 +0000 | [diff] [blame] | 761 | bb_signals(0 |
| 762 | + (1 << SIGILL) |
| 763 | + (1 << SIGTRAP) |
| 764 | + (1 << SIGABRT) |
| 765 | + (1 << SIGFPE) |
| 766 | + (1 << SIGBUS) |
| 767 | + (1 << SIGSEGV) |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 768 | /* bash 3.2 seems to handle these just like 'fatal' ones */ |
Denis Vlasenko | 25591c3 | 2008-02-16 22:58:56 +0000 | [diff] [blame] | 769 | + (1 << SIGHUP) |
| 770 | + (1 << SIGPIPE) |
| 771 | + (1 << SIGALRM) |
| 772 | , handler); |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 773 | } |
| 774 | static void set_jobctrl_sighandler(void (*handler)(int)) |
| 775 | { |
Denis Vlasenko | 25591c3 | 2008-02-16 22:58:56 +0000 | [diff] [blame] | 776 | bb_signals(0 |
| 777 | + (1 << SIGTSTP) |
| 778 | + (1 << SIGTTIN) |
| 779 | + (1 << SIGTTOU) |
| 780 | , handler); |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 781 | } |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 782 | /* SIGCHLD is special and handled separately */ |
| 783 | |
| 784 | static void set_every_sighandler(void (*handler)(int)) |
| 785 | { |
| 786 | set_fatal_sighandler(handler); |
| 787 | set_jobctrl_sighandler(handler); |
| 788 | set_misc_sighandler(handler); |
| 789 | signal(SIGCHLD, handler); |
| 790 | } |
| 791 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 792 | static void handler_ctrl_c(int sig UNUSED_PARAM) |
Denis Vlasenko | b5eaabb | 2007-04-28 16:45:59 +0000 | [diff] [blame] | 793 | { |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 794 | debug_printf_jobs("got sig %d\n", sig); |
Denis Vlasenko | b5eaabb | 2007-04-28 16:45:59 +0000 | [diff] [blame] | 795 | // as usual we can have all kinds of nasty problems with leaked malloc data here |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 796 | siglongjmp(G.toplevel_jb, 1); |
Denis Vlasenko | b5eaabb | 2007-04-28 16:45:59 +0000 | [diff] [blame] | 797 | } |
| 798 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 799 | static void handler_ctrl_z(int sig UNUSED_PARAM) |
Denis Vlasenko | a6a1785 | 2007-04-28 16:42:11 +0000 | [diff] [blame] | 800 | { |
| 801 | pid_t pid; |
| 802 | |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 803 | debug_printf_jobs("got tty sig %d in pid %d\n", sig, getpid()); |
Mike Frysinger | bfc0fae | 2009-03-26 18:14:16 +0000 | [diff] [blame] | 804 | |
| 805 | if (!BB_MMU) { |
| 806 | fputs("Sorry, backgrounding (CTRL+Z) of foreground scripts not supported on nommu\n", stderr); |
| 807 | return; |
| 808 | } |
| 809 | |
Denis Vlasenko | a6a1785 | 2007-04-28 16:42:11 +0000 | [diff] [blame] | 810 | pid = fork(); |
Denis Vlasenko | c299032 | 2007-05-16 12:57:12 +0000 | [diff] [blame] | 811 | if (pid < 0) /* can't fork. Pretend there was no ctrl-Z */ |
Denis Vlasenko | a6a1785 | 2007-04-28 16:42:11 +0000 | [diff] [blame] | 812 | return; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 813 | G.ctrl_z_flag = 1; |
Denis Vlasenko | a6a1785 | 2007-04-28 16:42:11 +0000 | [diff] [blame] | 814 | if (!pid) { /* child */ |
Denis Vlasenko | 8317799 | 2008-02-11 08:44:36 +0000 | [diff] [blame] | 815 | if (ENABLE_HUSH_JOB) |
| 816 | die_sleep = 0; /* let nofork's xfuncs die */ |
Bernhard Reutner-Fischer | 864329d | 2008-09-25 10:55:05 +0000 | [diff] [blame] | 817 | bb_setpgrp(); |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 818 | debug_printf_jobs("set pgrp for child %d ok\n", getpid()); |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 819 | set_every_sighandler(SIG_DFL); |
Denis Vlasenko | 18e19f2 | 2007-04-28 16:43:18 +0000 | [diff] [blame] | 820 | raise(SIGTSTP); /* resend TSTP so that child will be stopped */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 821 | debug_printf_jobs("returning in child\n"); |
Denis Vlasenko | a6a1785 | 2007-04-28 16:42:11 +0000 | [diff] [blame] | 822 | /* return to nofork, it will eventually exit now, |
| 823 | * not return back to shell */ |
| 824 | return; |
| 825 | } |
| 826 | /* parent */ |
| 827 | /* finish filling up pipe info */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 828 | G.toplevel_list->pgrp = pid; /* child is in its own pgrp */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 829 | G.toplevel_list->cmds[0].pid = pid; |
Denis Vlasenko | a6a1785 | 2007-04-28 16:42:11 +0000 | [diff] [blame] | 830 | /* parent needs to longjmp out of running nofork. |
| 831 | * we will "return" exitcode 0, with child put in background */ |
| 832 | // as usual we can have all kinds of nasty problems with leaked malloc data here |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 833 | debug_printf_jobs("siglongjmp in parent\n"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 834 | siglongjmp(G.toplevel_jb, 1); |
Denis Vlasenko | a6a1785 | 2007-04-28 16:42:11 +0000 | [diff] [blame] | 835 | } |
| 836 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 837 | /* Restores tty foreground process group, and exits. |
| 838 | * May be called as signal handler for fatal signal |
| 839 | * (will faithfully resend signal to itself, producing correct exit state) |
| 840 | * or called directly with -EXITCODE. |
| 841 | * We also call it if xfunc is exiting. */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 842 | static void sigexit(int sig) NORETURN; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 843 | static void sigexit(int sig) |
| 844 | { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 845 | /* Disable all signals: job control, SIGPIPE, etc. */ |
Denis Vlasenko | 3f165fa | 2008-03-17 08:29:08 +0000 | [diff] [blame] | 846 | sigprocmask_allsigs(SIG_BLOCK); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 847 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 848 | #if ENABLE_HUSH_INTERACTIVE |
| 849 | if (G.interactive_fd) |
| 850 | tcsetpgrp(G.interactive_fd, G.saved_tty_pgrp); |
| 851 | #endif |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 852 | |
| 853 | /* Not a signal, just exit */ |
| 854 | if (sig <= 0) |
| 855 | _exit(- sig); |
| 856 | |
Denis Vlasenko | 400d8bb | 2008-02-24 13:36:01 +0000 | [diff] [blame] | 857 | kill_myself_with_sig(sig); /* does not return */ |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 858 | } |
| 859 | |
| 860 | /* Restores tty foreground process group, and exits. */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 861 | static void hush_exit(int exitcode) NORETURN; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 862 | static void hush_exit(int exitcode) |
| 863 | { |
| 864 | fflush(NULL); /* flush all streams */ |
| 865 | sigexit(- (exitcode & 0xff)); |
| 866 | } |
| 867 | |
Denis Vlasenko | ef36ead | 2007-05-02 15:34:47 +0000 | [diff] [blame] | 868 | #else /* !JOB */ |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 869 | |
| 870 | #define set_fatal_sighandler(handler) ((void)0) |
| 871 | #define set_jobctrl_sighandler(handler) ((void)0) |
Denis Vlasenko | ef36ead | 2007-05-02 15:34:47 +0000 | [diff] [blame] | 872 | #define hush_exit(e) exit(e) |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 873 | |
Denis Vlasenko | ef36ead | 2007-05-02 15:34:47 +0000 | [diff] [blame] | 874 | #endif /* JOB */ |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 875 | |
| 876 | |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 877 | static const char *set_cwd(void) |
| 878 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 879 | /* xrealloc_getcwd_or_warn(arg) calls free(arg), |
| 880 | * we must not try to free(bb_msg_unknown) */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 881 | if (G.cwd == bb_msg_unknown) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 882 | G.cwd = NULL; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 883 | G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd); |
| 884 | if (!G.cwd) |
| 885 | G.cwd = bb_msg_unknown; |
| 886 | return G.cwd; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 887 | } |
| 888 | |
Denis Vlasenko | 8350686 | 2007-11-23 13:11:42 +0000 | [diff] [blame] | 889 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 890 | /* Get/check local shell variables */ |
| 891 | static struct variable *get_local_var(const char *name) |
| 892 | { |
| 893 | struct variable *cur; |
| 894 | int len; |
| 895 | |
| 896 | if (!name) |
| 897 | return NULL; |
| 898 | len = strlen(name); |
| 899 | for (cur = G.top_var; cur; cur = cur->next) { |
| 900 | if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=') |
| 901 | return cur; |
| 902 | } |
| 903 | return NULL; |
| 904 | } |
| 905 | |
| 906 | /* Basically useful version until someone wants to get fancier, |
| 907 | * see the bash man page under "Parameter Expansion" */ |
| 908 | static const char *lookup_param(const char *src) |
| 909 | { |
| 910 | struct variable *var = get_local_var(src); |
| 911 | if (var) |
| 912 | return strchr(var->varstr, '=') + 1; |
| 913 | return NULL; |
| 914 | } |
| 915 | |
| 916 | /* str holds "NAME=VAL" and is expected to be malloced. |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 917 | * We take ownership of it. |
| 918 | * flg_export is used by: |
| 919 | * 0: do not export |
| 920 | * 1: export |
| 921 | * -1: if NAME is set, leave export status alone |
| 922 | * if NAME is not set, do not export |
| 923 | */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 924 | static int set_local_var(char *str, int flg_export) |
| 925 | { |
| 926 | struct variable *cur; |
| 927 | char *value; |
| 928 | int name_len; |
| 929 | |
| 930 | value = strchr(str, '='); |
| 931 | if (!value) { /* not expected to ever happen? */ |
| 932 | free(str); |
| 933 | return -1; |
| 934 | } |
| 935 | |
| 936 | name_len = value - str + 1; /* including '=' */ |
| 937 | cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */ |
| 938 | while (1) { |
| 939 | if (strncmp(cur->varstr, str, name_len) != 0) { |
| 940 | if (!cur->next) { |
| 941 | /* Bail out. Note that now cur points |
| 942 | * to last var in linked list */ |
| 943 | break; |
| 944 | } |
| 945 | cur = cur->next; |
| 946 | continue; |
| 947 | } |
| 948 | /* We found an existing var with this name */ |
| 949 | *value = '\0'; |
| 950 | if (cur->flg_read_only) { |
| 951 | bb_error_msg("%s: readonly variable", str); |
| 952 | free(str); |
| 953 | return -1; |
| 954 | } |
| 955 | debug_printf_env("%s: unsetenv '%s'\n", __func__, str); |
| 956 | unsetenv(str); /* just in case */ |
| 957 | *value = '='; |
| 958 | if (strcmp(cur->varstr, str) == 0) { |
| 959 | free_and_exp: |
| 960 | free(str); |
| 961 | goto exp; |
| 962 | } |
| 963 | if (cur->max_len >= strlen(str)) { |
| 964 | /* This one is from startup env, reuse space */ |
| 965 | strcpy(cur->varstr, str); |
| 966 | goto free_and_exp; |
| 967 | } |
| 968 | /* max_len == 0 signifies "malloced" var, which we can |
| 969 | * (and has to) free */ |
| 970 | if (!cur->max_len) |
| 971 | free(cur->varstr); |
| 972 | cur->max_len = 0; |
| 973 | goto set_str_and_exp; |
| 974 | } |
| 975 | |
| 976 | /* Not found - create next variable struct */ |
| 977 | cur->next = xzalloc(sizeof(*cur)); |
| 978 | cur = cur->next; |
| 979 | |
| 980 | set_str_and_exp: |
| 981 | cur->varstr = str; |
| 982 | exp: |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 983 | if (flg_export == 1) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 984 | cur->flg_export = 1; |
| 985 | if (cur->flg_export) { |
| 986 | debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr); |
| 987 | return putenv(cur->varstr); |
| 988 | } |
| 989 | return 0; |
| 990 | } |
| 991 | |
| 992 | static void unset_local_var(const char *name) |
| 993 | { |
| 994 | struct variable *cur; |
| 995 | struct variable *prev = prev; /* for gcc */ |
| 996 | int name_len; |
| 997 | |
| 998 | if (!name) |
| 999 | return; |
| 1000 | name_len = strlen(name); |
| 1001 | cur = G.top_var; |
| 1002 | while (cur) { |
| 1003 | if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') { |
| 1004 | if (cur->flg_read_only) { |
| 1005 | bb_error_msg("%s: readonly variable", name); |
| 1006 | return; |
| 1007 | } |
| 1008 | /* prev is ok to use here because 1st variable, HUSH_VERSION, |
| 1009 | * is ro, and we cannot reach this code on the 1st pass */ |
| 1010 | prev->next = cur->next; |
| 1011 | debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr); |
| 1012 | bb_unsetenv(cur->varstr); |
| 1013 | if (!cur->max_len) |
| 1014 | free(cur->varstr); |
| 1015 | free(cur); |
| 1016 | return; |
| 1017 | } |
| 1018 | prev = cur; |
| 1019 | cur = cur->next; |
| 1020 | } |
| 1021 | } |
| 1022 | |
| 1023 | |
| 1024 | /* |
| 1025 | * in_str support |
| 1026 | */ |
| 1027 | static int static_get(struct in_str *i) |
| 1028 | { |
| 1029 | int ch = *i->p++; |
| 1030 | if (ch == '\0') return EOF; |
| 1031 | return ch; |
| 1032 | } |
| 1033 | |
| 1034 | static int static_peek(struct in_str *i) |
| 1035 | { |
| 1036 | return *i->p; |
| 1037 | } |
| 1038 | |
| 1039 | #if ENABLE_HUSH_INTERACTIVE |
| 1040 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1041 | static void cmdedit_set_initial_prompt(void) |
| 1042 | { |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1043 | if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 1044 | G.PS1 = getenv("PS1"); |
| 1045 | if (G.PS1 == NULL) |
| 1046 | G.PS1 = "\\w \\$ "; |
| 1047 | } else |
| 1048 | G.PS1 = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1049 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1050 | |
| 1051 | static const char* setup_prompt_string(int promptmode) |
| 1052 | { |
| 1053 | const char *prompt_str; |
| 1054 | debug_printf("setup_prompt_string %d ", promptmode); |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1055 | if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 1056 | /* Set up the prompt */ |
| 1057 | if (promptmode == 0) { /* PS1 */ |
| 1058 | free((char*)G.PS1); |
| 1059 | G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#'); |
| 1060 | prompt_str = G.PS1; |
| 1061 | } else |
| 1062 | prompt_str = G.PS2; |
| 1063 | } else |
| 1064 | prompt_str = (promptmode == 0) ? G.PS1 : G.PS2; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1065 | debug_printf("result '%s'\n", prompt_str); |
| 1066 | return prompt_str; |
| 1067 | } |
| 1068 | |
| 1069 | static void get_user_input(struct in_str *i) |
| 1070 | { |
| 1071 | int r; |
| 1072 | const char *prompt_str; |
| 1073 | |
| 1074 | prompt_str = setup_prompt_string(i->promptmode); |
| 1075 | #if ENABLE_FEATURE_EDITING |
| 1076 | /* Enable command line editing only while a command line |
| 1077 | * is actually being read */ |
| 1078 | do { |
| 1079 | r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state); |
| 1080 | } while (r == 0); /* repeat if Ctrl-C */ |
| 1081 | i->eof_flag = (r < 0); |
| 1082 | if (i->eof_flag) { /* EOF/error detected */ |
| 1083 | G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */ |
| 1084 | G.user_input_buf[1] = '\0'; |
| 1085 | } |
| 1086 | #else |
| 1087 | fputs(prompt_str, stdout); |
| 1088 | fflush(stdout); |
| 1089 | G.user_input_buf[0] = r = fgetc(i->file); |
| 1090 | /*G.user_input_buf[1] = '\0'; - already is and never changed */ |
| 1091 | i->eof_flag = (r == EOF); |
| 1092 | #endif |
| 1093 | i->p = G.user_input_buf; |
| 1094 | } |
| 1095 | |
| 1096 | #endif /* INTERACTIVE */ |
| 1097 | |
| 1098 | /* This is the magic location that prints prompts |
| 1099 | * and gets data back from the user */ |
| 1100 | static int file_get(struct in_str *i) |
| 1101 | { |
| 1102 | int ch; |
| 1103 | |
| 1104 | /* If there is data waiting, eat it up */ |
| 1105 | if (i->p && *i->p) { |
| 1106 | #if ENABLE_HUSH_INTERACTIVE |
| 1107 | take_cached: |
| 1108 | #endif |
| 1109 | ch = *i->p++; |
| 1110 | if (i->eof_flag && !*i->p) |
| 1111 | ch = EOF; |
| 1112 | } else { |
| 1113 | /* need to double check i->file because we might be doing something |
| 1114 | * more complicated by now, like sourcing or substituting. */ |
| 1115 | #if ENABLE_HUSH_INTERACTIVE |
| 1116 | if (G.interactive_fd && i->promptme && i->file == stdin) { |
| 1117 | do { |
| 1118 | get_user_input(i); |
| 1119 | } while (!*i->p); /* need non-empty line */ |
| 1120 | i->promptmode = 1; /* PS2 */ |
| 1121 | i->promptme = 0; |
| 1122 | goto take_cached; |
| 1123 | } |
| 1124 | #endif |
| 1125 | ch = fgetc(i->file); |
| 1126 | } |
| 1127 | debug_printf("file_get: got a '%c' %d\n", ch, ch); |
| 1128 | #if ENABLE_HUSH_INTERACTIVE |
| 1129 | if (ch == '\n') |
| 1130 | i->promptme = 1; |
| 1131 | #endif |
| 1132 | return ch; |
| 1133 | } |
| 1134 | |
| 1135 | /* All the callers guarantee this routine will never be |
| 1136 | * used right after a newline, so prompting is not needed. |
| 1137 | */ |
| 1138 | static int file_peek(struct in_str *i) |
| 1139 | { |
| 1140 | int ch; |
| 1141 | if (i->p && *i->p) { |
| 1142 | if (i->eof_flag && !i->p[1]) |
| 1143 | return EOF; |
| 1144 | return *i->p; |
| 1145 | } |
| 1146 | ch = fgetc(i->file); |
| 1147 | i->eof_flag = (ch == EOF); |
| 1148 | i->peek_buf[0] = ch; |
| 1149 | i->peek_buf[1] = '\0'; |
| 1150 | i->p = i->peek_buf; |
| 1151 | debug_printf("file_peek: got a '%c' %d\n", *i->p, *i->p); |
| 1152 | return ch; |
| 1153 | } |
| 1154 | |
| 1155 | static void setup_file_in_str(struct in_str *i, FILE *f) |
| 1156 | { |
| 1157 | i->peek = file_peek; |
| 1158 | i->get = file_get; |
| 1159 | #if ENABLE_HUSH_INTERACTIVE |
| 1160 | i->promptme = 1; |
| 1161 | i->promptmode = 0; /* PS1 */ |
| 1162 | #endif |
| 1163 | i->file = f; |
| 1164 | i->p = NULL; |
| 1165 | } |
| 1166 | |
| 1167 | static void setup_string_in_str(struct in_str *i, const char *s) |
| 1168 | { |
| 1169 | i->peek = static_peek; |
| 1170 | i->get = static_get; |
| 1171 | #if ENABLE_HUSH_INTERACTIVE |
| 1172 | i->promptme = 1; |
| 1173 | i->promptmode = 0; /* PS1 */ |
| 1174 | #endif |
| 1175 | i->p = s; |
| 1176 | i->eof_flag = 0; |
| 1177 | } |
| 1178 | |
| 1179 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1180 | /* |
| 1181 | * o_string support |
| 1182 | */ |
| 1183 | #define B_CHUNK (32 * sizeof(char*)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1184 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1185 | static void o_reset(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1186 | { |
| 1187 | o->length = 0; |
| 1188 | o->nonnull = 0; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1189 | if (o->data) |
| 1190 | o->data[0] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1191 | } |
| 1192 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1193 | static void o_free(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1194 | { |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 1195 | free(o->data); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1196 | memset(o, 0, sizeof(*o)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1197 | } |
| 1198 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1199 | static void o_grow_by(o_string *o, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1200 | { |
| 1201 | if (o->length + len > o->maxlen) { |
| 1202 | o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK); |
| 1203 | o->data = xrealloc(o->data, 1 + o->maxlen); |
| 1204 | } |
| 1205 | } |
| 1206 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1207 | static void o_addchr(o_string *o, int ch) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1208 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1209 | debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o); |
| 1210 | o_grow_by(o, 1); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1211 | o->data[o->length] = ch; |
| 1212 | o->length++; |
| 1213 | o->data[o->length] = '\0'; |
| 1214 | } |
| 1215 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1216 | static void o_addstr(o_string *o, const char *str, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1217 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1218 | o_grow_by(o, len); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1219 | memcpy(&o->data[o->length], str, len); |
| 1220 | o->length += len; |
| 1221 | o->data[o->length] = '\0'; |
| 1222 | } |
| 1223 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1224 | static void o_addstr_duplicate_backslash(o_string *o, const char *str, int len) |
| 1225 | { |
| 1226 | while (len) { |
| 1227 | o_addchr(o, *str); |
| 1228 | if (*str++ == '\\' |
| 1229 | && (*str != '*' && *str != '?' && *str != '[') |
| 1230 | ) { |
| 1231 | o_addchr(o, '\\'); |
| 1232 | } |
| 1233 | len--; |
| 1234 | } |
| 1235 | } |
| 1236 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1237 | /* My analysis of quoting semantics tells me that state information |
| 1238 | * is associated with a destination, not a source. |
| 1239 | */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1240 | static void o_addqchr(o_string *o, int ch) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1241 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1242 | int sz = 1; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 1243 | char *found = strchr("*?[\\", ch); |
| 1244 | if (found) |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1245 | sz++; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 1246 | o_grow_by(o, sz); |
| 1247 | if (found) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1248 | o->data[o->length] = '\\'; |
| 1249 | o->length++; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1250 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1251 | o->data[o->length] = ch; |
| 1252 | o->length++; |
| 1253 | o->data[o->length] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1254 | } |
| 1255 | |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1256 | static void o_addQchr(o_string *o, int ch) |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1257 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1258 | int sz = 1; |
| 1259 | if (o->o_quote && strchr("*?[\\", ch)) { |
| 1260 | sz++; |
| 1261 | o->data[o->length] = '\\'; |
| 1262 | o->length++; |
| 1263 | } |
| 1264 | o_grow_by(o, sz); |
| 1265 | o->data[o->length] = ch; |
| 1266 | o->length++; |
| 1267 | o->data[o->length] = '\0'; |
| 1268 | } |
| 1269 | |
| 1270 | static void o_addQstr(o_string *o, const char *str, int len) |
| 1271 | { |
| 1272 | if (!o->o_quote) { |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1273 | o_addstr(o, str, len); |
| 1274 | return; |
| 1275 | } |
| 1276 | while (len) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1277 | char ch; |
| 1278 | int sz; |
| 1279 | int ordinary_cnt = strcspn(str, "*?[\\"); |
| 1280 | if (ordinary_cnt > len) /* paranoia */ |
| 1281 | ordinary_cnt = len; |
| 1282 | o_addstr(o, str, ordinary_cnt); |
| 1283 | if (ordinary_cnt == len) |
| 1284 | return; |
| 1285 | str += ordinary_cnt; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1286 | len -= ordinary_cnt + 1; /* we are processing + 1 char below */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1287 | |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1288 | ch = *str++; |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1289 | sz = 1; |
| 1290 | if (ch) { /* it is necessarily one of "*?[\\" */ |
| 1291 | sz++; |
| 1292 | o->data[o->length] = '\\'; |
| 1293 | o->length++; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1294 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1295 | o_grow_by(o, sz); |
| 1296 | o->data[o->length] = ch; |
| 1297 | o->length++; |
| 1298 | o->data[o->length] = '\0'; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1299 | } |
| 1300 | } |
| 1301 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1302 | /* A special kind of o_string for $VAR and `cmd` expansion. |
| 1303 | * It contains char* list[] at the beginning, which is grown in 16 element |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1304 | * increments. Actual string data starts at the next multiple of 16 * (char*). |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1305 | * list[i] contains an INDEX (int!) into this string data. |
| 1306 | * It means that if list[] needs to grow, data needs to be moved higher up |
| 1307 | * but list[i]'s need not be modified. |
| 1308 | * NB: remembering how many list[i]'s you have there is crucial. |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1309 | * o_finalize_list() operation post-processes this structure - calculates |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1310 | * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well. |
| 1311 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1312 | #if DEBUG_EXPAND || DEBUG_GLOB |
| 1313 | static void debug_print_list(const char *prefix, o_string *o, int n) |
| 1314 | { |
| 1315 | char **list = (char**)o->data; |
| 1316 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1317 | int i = 0; |
| 1318 | fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n", |
| 1319 | prefix, list, n, string_start, o->length, o->maxlen); |
| 1320 | while (i < n) { |
| 1321 | fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i], |
| 1322 | o->data + (int)list[i] + string_start, |
| 1323 | o->data + (int)list[i] + string_start); |
| 1324 | i++; |
| 1325 | } |
| 1326 | if (n) { |
| 1327 | const char *p = o->data + (int)list[n - 1] + string_start; |
Mike Frysinger | d006edb | 2009-03-28 12:43:53 +0000 | [diff] [blame] | 1328 | fprintf(stderr, " total_sz:%ld\n", (p + strlen(p) + 1) - o->data); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1329 | } |
| 1330 | } |
| 1331 | #else |
| 1332 | #define debug_print_list(prefix, o, n) ((void)0) |
| 1333 | #endif |
| 1334 | |
| 1335 | /* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value |
| 1336 | * in list[n] so that it points past last stored byte so far. |
| 1337 | * It returns n+1. */ |
| 1338 | static int o_save_ptr_helper(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1339 | { |
| 1340 | char **list = (char**)o->data; |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1341 | int string_start; |
| 1342 | int string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1343 | |
| 1344 | if (!o->has_empty_slot) { |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1345 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1346 | string_len = o->length - string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1347 | if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */ |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1348 | debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1349 | /* list[n] points to string_start, make space for 16 more pointers */ |
| 1350 | o->maxlen += 0x10 * sizeof(list[0]); |
| 1351 | o->data = xrealloc(o->data, o->maxlen + 1); |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 1352 | list = (char**)o->data; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1353 | memmove(list + n + 0x10, list + n, string_len); |
| 1354 | o->length += 0x10 * sizeof(list[0]); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1355 | } else |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1356 | debug_printf_list("list[%d]=%d string_start=%d\n", n, string_len, string_start); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1357 | } else { |
| 1358 | /* We have empty slot at list[n], reuse without growth */ |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1359 | string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */ |
| 1360 | string_len = o->length - string_start; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1361 | debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n", n, string_len, string_start); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1362 | o->has_empty_slot = 0; |
| 1363 | } |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1364 | list[n] = (char*)(ptrdiff_t)string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1365 | return n + 1; |
| 1366 | } |
| 1367 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1368 | /* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1369 | static int o_get_last_ptr(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1370 | { |
| 1371 | char **list = (char**)o->data; |
| 1372 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1373 | |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1374 | return ((int)(ptrdiff_t)list[n-1]) + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1375 | } |
| 1376 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1377 | /* o_glob performs globbing on last list[], saving each result |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1378 | * as a new list[]. */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1379 | static int o_glob(o_string *o, int n) |
| 1380 | { |
| 1381 | glob_t globdata; |
| 1382 | int gr; |
| 1383 | char *pattern; |
| 1384 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1385 | debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1386 | if (!o->data) |
| 1387 | return o_save_ptr_helper(o, n); |
| 1388 | pattern = o->data + o_get_last_ptr(o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1389 | debug_printf_glob("glob pattern '%s'\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1390 | if (!glob_needed(pattern)) { |
| 1391 | literal: |
| 1392 | o->length = unbackslash(pattern) - o->data; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1393 | debug_printf_glob("glob pattern '%s' is literal\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1394 | return o_save_ptr_helper(o, n); |
| 1395 | } |
| 1396 | |
| 1397 | memset(&globdata, 0, sizeof(globdata)); |
| 1398 | gr = glob(pattern, 0, NULL, &globdata); |
| 1399 | debug_printf_glob("glob('%s'):%d\n", pattern, gr); |
| 1400 | if (gr == GLOB_NOSPACE) |
| 1401 | bb_error_msg_and_die("out of memory during glob"); |
| 1402 | if (gr == GLOB_NOMATCH) { |
| 1403 | globfree(&globdata); |
| 1404 | goto literal; |
| 1405 | } |
| 1406 | if (gr != 0) { /* GLOB_ABORTED ? */ |
| 1407 | //TODO: testcase for bad glob pattern behavior |
| 1408 | bb_error_msg("glob(3) error %d on '%s'", gr, pattern); |
| 1409 | } |
| 1410 | if (globdata.gl_pathv && globdata.gl_pathv[0]) { |
| 1411 | char **argv = globdata.gl_pathv; |
| 1412 | o->length = pattern - o->data; /* "forget" pattern */ |
| 1413 | while (1) { |
| 1414 | o_addstr(o, *argv, strlen(*argv) + 1); |
| 1415 | n = o_save_ptr_helper(o, n); |
| 1416 | argv++; |
| 1417 | if (!*argv) |
| 1418 | break; |
| 1419 | } |
| 1420 | } |
| 1421 | globfree(&globdata); |
| 1422 | if (DEBUG_GLOB) |
| 1423 | debug_print_list("o_glob returning", o, n); |
| 1424 | return n; |
| 1425 | } |
| 1426 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1427 | /* If o->o_glob == 1, glob the string so far remembered. |
| 1428 | * Otherwise, just finish current list[] and start new */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1429 | static int o_save_ptr(o_string *o, int n) |
| 1430 | { |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 1431 | if (o->o_glob) { /* if globbing is requested */ |
| 1432 | /* If o->has_empty_slot, list[n] was already globbed |
| 1433 | * (if it was requested back then when it was filled) |
| 1434 | * so don't do that again! */ |
| 1435 | if (!o->has_empty_slot) |
| 1436 | return o_glob(o, n); /* o_save_ptr_helper is inside */ |
| 1437 | } |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1438 | return o_save_ptr_helper(o, n); |
| 1439 | } |
| 1440 | |
| 1441 | /* "Please convert list[n] to real char* ptrs, and NULL terminate it." */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1442 | static char **o_finalize_list(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1443 | { |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1444 | char **list; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1445 | int string_start; |
| 1446 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1447 | n = o_save_ptr(o, n); /* force growth for list[n] if necessary */ |
| 1448 | if (DEBUG_EXPAND) |
| 1449 | debug_print_list("finalized", o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1450 | debug_printf_expand("finalized n:%d\n", n); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1451 | list = (char**)o->data; |
| 1452 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1453 | list[--n] = NULL; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1454 | while (n) { |
| 1455 | n--; |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1456 | list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1457 | } |
| 1458 | return list; |
| 1459 | } |
| 1460 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1461 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1462 | /* expand_strvec_to_strvec() takes a list of strings, expands |
| 1463 | * all variable references within and returns a pointer to |
| 1464 | * a list of expanded strings, possibly with larger number |
| 1465 | * of strings. (Think VAR="a b"; echo $VAR). |
| 1466 | * This new list is allocated as a single malloc block. |
| 1467 | * NULL-terminated list of char* pointers is at the beginning of it, |
| 1468 | * followed by strings themself. |
| 1469 | * Caller can deallocate entire list by single free(list). */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1470 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1471 | /* Store given string, finalizing the word and starting new one whenever |
| 1472 | * we encounter IFS char(s). This is used for expanding variable values. |
| 1473 | * End-of-string does NOT finalize word: think about 'echo -$VAR-' */ |
| 1474 | static int expand_on_ifs(o_string *output, int n, const char *str) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1475 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1476 | while (1) { |
| 1477 | int word_len = strcspn(str, G.ifs); |
| 1478 | if (word_len) { |
| 1479 | if (output->o_quote || !output->o_glob) |
| 1480 | o_addQstr(output, str, word_len); |
| 1481 | else /* protect backslashes against globbing up :) */ |
| 1482 | o_addstr_duplicate_backslash(output, str, word_len); |
| 1483 | str += word_len; |
| 1484 | } |
| 1485 | if (!*str) /* EOL - do not finalize word */ |
| 1486 | break; |
| 1487 | o_addchr(output, '\0'); |
| 1488 | debug_print_list("expand_on_ifs", output, n); |
| 1489 | n = o_save_ptr(output, n); |
| 1490 | str += strspn(str, G.ifs); /* skip ifs chars */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1491 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1492 | debug_print_list("expand_on_ifs[1]", output, n); |
| 1493 | return n; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1494 | } |
| 1495 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1496 | #if ENABLE_HUSH_TICK |
| 1497 | static int process_command_subs(o_string *dest, |
| 1498 | struct in_str *input, const char *subst_end); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1499 | #endif |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1500 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1501 | /* Expand all variable references in given string, adding words to list[] |
| 1502 | * at n, n+1,... positions. Return updated n (so that list[n] is next one |
| 1503 | * to be filled). This routine is extremely tricky: has to deal with |
| 1504 | * variables/parameters with whitespace, $* and $@, and constructs like |
| 1505 | * 'echo -$*-'. If you play here, you must run testsuite afterwards! */ |
| 1506 | static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1507 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1508 | /* or_mask is either 0 (normal case) or 0x80 |
| 1509 | * (expansion of right-hand side of assignment == 1-element expand. |
| 1510 | * It will also do no globbing, and thus we must not backslash-quote!) */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1511 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1512 | char first_ch, ored_ch; |
| 1513 | int i; |
| 1514 | const char *val; |
| 1515 | char *p; |
| 1516 | |
| 1517 | ored_ch = 0; |
| 1518 | |
| 1519 | debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg); |
| 1520 | debug_print_list("expand_vars_to_list", output, n); |
| 1521 | n = o_save_ptr(output, n); |
| 1522 | debug_print_list("expand_vars_to_list[0]", output, n); |
| 1523 | |
| 1524 | while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) { |
| 1525 | #if ENABLE_HUSH_TICK |
| 1526 | o_string subst_result = NULL_O_STRING; |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 1527 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1528 | o_addstr(output, arg, p - arg); |
| 1529 | debug_print_list("expand_vars_to_list[1]", output, n); |
| 1530 | arg = ++p; |
| 1531 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 1532 | |
| 1533 | first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */ |
| 1534 | /* "$@" is special. Even if quoted, it can still |
| 1535 | * expand to nothing (not even an empty string) */ |
| 1536 | if ((first_ch & 0x7f) != '@') |
| 1537 | ored_ch |= first_ch; |
| 1538 | val = NULL; |
| 1539 | switch (first_ch & 0x7f) { |
| 1540 | /* Highest bit in first_ch indicates that var is double-quoted */ |
| 1541 | case '$': /* pid */ |
| 1542 | val = utoa(G.root_pid); |
| 1543 | break; |
| 1544 | case '!': /* bg pid */ |
| 1545 | val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)""; |
| 1546 | break; |
| 1547 | case '?': /* exitcode */ |
| 1548 | val = utoa(G.last_return_code); |
| 1549 | break; |
| 1550 | case '#': /* argc */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1551 | if (arg[1] != SPECIAL_VAR_SYMBOL) |
| 1552 | /* actually, it's a ${#var} */ |
| 1553 | goto case_default; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1554 | val = utoa(G.global_argc ? G.global_argc-1 : 0); |
| 1555 | break; |
| 1556 | case '*': |
| 1557 | case '@': |
| 1558 | i = 1; |
| 1559 | if (!G.global_argv[i]) |
| 1560 | break; |
| 1561 | ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */ |
| 1562 | if (!(first_ch & 0x80)) { /* unquoted $* or $@ */ |
| 1563 | smallint sv = output->o_quote; |
| 1564 | /* unquoted var's contents should be globbed, so don't quote */ |
| 1565 | output->o_quote = 0; |
| 1566 | while (G.global_argv[i]) { |
| 1567 | n = expand_on_ifs(output, n, G.global_argv[i]); |
| 1568 | debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1); |
| 1569 | if (G.global_argv[i++][0] && G.global_argv[i]) { |
| 1570 | /* this argv[] is not empty and not last: |
| 1571 | * put terminating NUL, start new word */ |
| 1572 | o_addchr(output, '\0'); |
| 1573 | debug_print_list("expand_vars_to_list[2]", output, n); |
| 1574 | n = o_save_ptr(output, n); |
| 1575 | debug_print_list("expand_vars_to_list[3]", output, n); |
| 1576 | } |
| 1577 | } |
| 1578 | output->o_quote = sv; |
| 1579 | } else |
| 1580 | /* If or_mask is nonzero, we handle assignment 'a=....$@.....' |
| 1581 | * and in this case should treat it like '$*' - see 'else...' below */ |
| 1582 | if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */ |
| 1583 | while (1) { |
| 1584 | o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i])); |
| 1585 | if (++i >= G.global_argc) |
| 1586 | break; |
| 1587 | o_addchr(output, '\0'); |
| 1588 | debug_print_list("expand_vars_to_list[4]", output, n); |
| 1589 | n = o_save_ptr(output, n); |
| 1590 | } |
| 1591 | } else { /* quoted $*: add as one word */ |
| 1592 | while (1) { |
| 1593 | o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i])); |
| 1594 | if (!G.global_argv[++i]) |
| 1595 | break; |
| 1596 | if (G.ifs[0]) |
| 1597 | o_addchr(output, G.ifs[0]); |
| 1598 | } |
| 1599 | } |
| 1600 | break; |
| 1601 | case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */ |
| 1602 | /* "Empty variable", used to make "" etc to not disappear */ |
| 1603 | arg++; |
| 1604 | ored_ch = 0x80; |
| 1605 | break; |
| 1606 | #if ENABLE_HUSH_TICK |
| 1607 | case '`': { /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */ |
| 1608 | struct in_str input; |
| 1609 | *p = '\0'; |
| 1610 | arg++; |
| 1611 | //TODO: can we just stuff it into "output" directly? |
| 1612 | debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch); |
| 1613 | setup_string_in_str(&input, arg); |
| 1614 | process_command_subs(&subst_result, &input, NULL); |
| 1615 | debug_printf_subst("SUBST RES '%s'\n", subst_result.data); |
| 1616 | val = subst_result.data; |
| 1617 | goto store_val; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1618 | } |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 1619 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1620 | default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1621 | case_default: { |
| 1622 | bool exp_len = false, exp_null = false; |
| 1623 | char *var = arg, exp_save, exp_op, *exp_word; |
| 1624 | size_t exp_off = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1625 | *p = '\0'; |
| 1626 | arg[0] = first_ch & 0x7f; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1627 | |
| 1628 | /* prepare for expansions */ |
| 1629 | if (var[0] == '#') { |
| 1630 | /* handle length expansion ${#var} */ |
| 1631 | exp_len = true; |
| 1632 | ++var; |
| 1633 | } else { |
| 1634 | /* maybe handle parameter expansion */ |
| 1635 | exp_off = strcspn(var, ":-=+?"); |
| 1636 | if (!var[exp_off]) |
| 1637 | exp_off = 0; |
| 1638 | if (exp_off) { |
| 1639 | exp_save = var[exp_off]; |
| 1640 | exp_null = exp_save == ':'; |
| 1641 | exp_word = var + exp_off; |
| 1642 | if (exp_null) ++exp_word; |
| 1643 | exp_op = *exp_word++; |
| 1644 | var[exp_off] = '\0'; |
| 1645 | } |
| 1646 | } |
| 1647 | |
| 1648 | /* lookup the variable in question */ |
| 1649 | if (isdigit(var[0])) { |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 1650 | /* handle_dollar() should have vetted var for us */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1651 | i = xatoi_u(var); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1652 | if (i < G.global_argc) |
| 1653 | val = G.global_argv[i]; |
| 1654 | /* else val remains NULL: $N with too big N */ |
| 1655 | } else |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1656 | val = lookup_param(var); |
| 1657 | |
| 1658 | /* handle any expansions */ |
| 1659 | if (exp_len) { |
| 1660 | debug_printf_expand("expand: length of '%s' = ", val); |
| 1661 | val = utoa(val ? strlen(val) : 0); |
| 1662 | debug_printf_expand("%s\n", val); |
| 1663 | } else if (exp_off) { |
| 1664 | /* we need to do an expansion */ |
| 1665 | int exp_test = (!val || (exp_null && !val[0])); |
| 1666 | if (exp_op == '+') |
| 1667 | exp_test = !exp_test; |
| 1668 | debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op, |
| 1669 | exp_null ? "true" : "false", exp_test); |
| 1670 | if (exp_test) { |
| 1671 | if (exp_op == '?') |
| 1672 | maybe_die(var, *exp_word ? exp_word : "parameter null or not set"); |
| 1673 | else |
| 1674 | val = exp_word; |
| 1675 | |
| 1676 | if (exp_op == '=') { |
| 1677 | if (isdigit(var[0]) || var[0] == '#') { |
| 1678 | maybe_die(var, "special vars cannot assign in this way"); |
| 1679 | val = NULL; |
| 1680 | } else { |
| 1681 | char *new_var = xmalloc(strlen(var) + strlen(val) + 2); |
| 1682 | sprintf(new_var, "%s=%s", var, val); |
| 1683 | set_local_var(new_var, -1); |
| 1684 | } |
| 1685 | } |
| 1686 | } |
| 1687 | var[exp_off] = exp_save; |
| 1688 | } |
| 1689 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1690 | arg[0] = first_ch; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1691 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1692 | #if ENABLE_HUSH_TICK |
| 1693 | store_val: |
| 1694 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1695 | if (!(first_ch & 0x80)) { /* unquoted $VAR */ |
| 1696 | debug_printf_expand("unquoted '%s', output->o_quote:%d\n", val, output->o_quote); |
| 1697 | if (val) { |
| 1698 | /* unquoted var's contents should be globbed, so don't quote */ |
| 1699 | smallint sv = output->o_quote; |
| 1700 | output->o_quote = 0; |
| 1701 | n = expand_on_ifs(output, n, val); |
| 1702 | val = NULL; |
| 1703 | output->o_quote = sv; |
| 1704 | } |
| 1705 | } else { /* quoted $VAR, val will be appended below */ |
| 1706 | debug_printf_expand("quoted '%s', output->o_quote:%d\n", val, output->o_quote); |
| 1707 | } |
| 1708 | } |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1709 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1710 | if (val) { |
| 1711 | o_addQstr(output, val, strlen(val)); |
| 1712 | } |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1713 | /* Do the check to avoid writing to a const string */ |
| 1714 | if (p && *p != SPECIAL_VAR_SYMBOL) |
| 1715 | *p = SPECIAL_VAR_SYMBOL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1716 | |
| 1717 | #if ENABLE_HUSH_TICK |
| 1718 | o_free(&subst_result); |
| 1719 | #endif |
| 1720 | arg = ++p; |
| 1721 | } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */ |
| 1722 | |
| 1723 | if (arg[0]) { |
| 1724 | debug_print_list("expand_vars_to_list[a]", output, n); |
| 1725 | /* this part is literal, and it was already pre-quoted |
| 1726 | * if needed (much earlier), do not use o_addQstr here! */ |
| 1727 | o_addstr(output, arg, strlen(arg) + 1); |
| 1728 | debug_print_list("expand_vars_to_list[b]", output, n); |
| 1729 | } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */ |
| 1730 | && !(ored_ch & 0x80) /* and all vars were not quoted. */ |
| 1731 | ) { |
| 1732 | n--; |
| 1733 | /* allow to reuse list[n] later without re-growth */ |
| 1734 | output->has_empty_slot = 1; |
| 1735 | } else { |
| 1736 | o_addchr(output, '\0'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1737 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1738 | return n; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1739 | } |
| 1740 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1741 | static char **expand_variables(char **argv, int or_mask) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1742 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1743 | int n; |
| 1744 | char **list; |
| 1745 | char **v; |
| 1746 | o_string output = NULL_O_STRING; |
| 1747 | |
| 1748 | if (or_mask & 0x100) { |
| 1749 | output.o_quote = 1; /* protect against globbing for "$var" */ |
| 1750 | /* (unquoted $var will temporarily switch it off) */ |
| 1751 | output.o_glob = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1752 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1753 | |
| 1754 | n = 0; |
| 1755 | v = argv; |
| 1756 | while (*v) { |
| 1757 | n = expand_vars_to_list(&output, n, *v, (char)or_mask); |
| 1758 | v++; |
| 1759 | } |
| 1760 | debug_print_list("expand_variables", &output, n); |
| 1761 | |
| 1762 | /* output.data (malloced in one block) gets returned in "list" */ |
| 1763 | list = o_finalize_list(&output, n); |
| 1764 | debug_print_strings("expand_variables[1]", list); |
| 1765 | return list; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1766 | } |
| 1767 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1768 | static char **expand_strvec_to_strvec(char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1769 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1770 | return expand_variables(argv, 0x100); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1771 | } |
| 1772 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1773 | /* Used for expansion of right hand of assignments */ |
| 1774 | /* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs |
| 1775 | * "v=/bin/c*" */ |
| 1776 | static char *expand_string_to_string(const char *str) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1777 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1778 | char *argv[2], **list; |
| 1779 | |
| 1780 | argv[0] = (char*)str; |
| 1781 | argv[1] = NULL; |
| 1782 | list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */ |
| 1783 | if (HUSH_DEBUG) |
| 1784 | if (!list[0] || list[1]) |
| 1785 | bb_error_msg_and_die("BUG in varexp2"); |
| 1786 | /* actually, just move string 2*sizeof(char*) bytes back */ |
| 1787 | overlapping_strcpy((char*)list, list[0]); |
| 1788 | debug_printf_expand("string_to_string='%s'\n", (char*)list); |
| 1789 | return (char*)list; |
| 1790 | } |
| 1791 | |
| 1792 | /* Used for "eval" builtin */ |
| 1793 | static char* expand_strvec_to_string(char **argv) |
| 1794 | { |
| 1795 | char **list; |
| 1796 | |
| 1797 | list = expand_variables(argv, 0x80); |
| 1798 | /* Convert all NULs to spaces */ |
| 1799 | if (list[0]) { |
| 1800 | int n = 1; |
| 1801 | while (list[n]) { |
| 1802 | if (HUSH_DEBUG) |
| 1803 | if (list[n-1] + strlen(list[n-1]) + 1 != list[n]) |
| 1804 | bb_error_msg_and_die("BUG in varexp3"); |
| 1805 | list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */ |
| 1806 | n++; |
| 1807 | } |
| 1808 | } |
| 1809 | overlapping_strcpy((char*)list, list[0]); |
| 1810 | debug_printf_expand("strvec_to_string='%s'\n", (char*)list); |
| 1811 | return (char*)list; |
| 1812 | } |
| 1813 | |
| 1814 | static char **expand_assignments(char **argv, int count) |
| 1815 | { |
| 1816 | int i; |
| 1817 | char **p = NULL; |
| 1818 | /* Expand assignments into one string each */ |
| 1819 | for (i = 0; i < count; i++) { |
| 1820 | p = add_string_to_strings(p, expand_string_to_string(argv[i])); |
| 1821 | } |
| 1822 | return p; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1823 | } |
| 1824 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1825 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1826 | /* squirrel != NULL means we squirrel away copies of stdin, stdout, |
| 1827 | * and stderr if they are redirected. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 1828 | static int setup_redirects(struct command *prog, int squirrel[]) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1829 | { |
| 1830 | int openfd, mode; |
| 1831 | struct redir_struct *redir; |
| 1832 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1833 | for (redir = prog->redirects; redir; redir = redir->next) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 1834 | if (redir->dup == -1 && redir->rd_filename == NULL) { |
Eric Andersen | 817e73c | 2001-06-06 17:56:09 +0000 | [diff] [blame] | 1835 | /* something went wrong in the parse. Pretend it didn't happen */ |
| 1836 | continue; |
| 1837 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1838 | if (redir->dup == -1) { |
Denis Vlasenko | cccdc4e | 2007-11-23 21:08:38 +0000 | [diff] [blame] | 1839 | char *p; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1840 | mode = redir_table[redir->rd_type].mode; |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 1841 | //TODO: check redir for names like '\\' |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 1842 | p = expand_string_to_string(redir->rd_filename); |
Denis Vlasenko | cccdc4e | 2007-11-23 21:08:38 +0000 | [diff] [blame] | 1843 | openfd = open_or_warn(p, mode); |
| 1844 | free(p); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1845 | if (openfd < 0) { |
| 1846 | /* this could get lost if stderr has been redirected, but |
| 1847 | bash and ash both lose it as well (though zsh doesn't!) */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1848 | return 1; |
| 1849 | } |
| 1850 | } else { |
| 1851 | openfd = redir->dup; |
| 1852 | } |
| 1853 | |
| 1854 | if (openfd != redir->fd) { |
| 1855 | if (squirrel && redir->fd < 3) { |
| 1856 | squirrel[redir->fd] = dup(redir->fd); |
| 1857 | } |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 1858 | if (openfd == -3) { |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 1859 | //close(openfd); // close(-3) ??! |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 1860 | } else { |
| 1861 | dup2(openfd, redir->fd); |
Matt Kraai | c616e53 | 2001-06-05 16:50:08 +0000 | [diff] [blame] | 1862 | if (redir->dup == -1) |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 1863 | close(openfd); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 1864 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1865 | } |
| 1866 | } |
| 1867 | return 0; |
| 1868 | } |
| 1869 | |
| 1870 | static void restore_redirects(int squirrel[]) |
| 1871 | { |
| 1872 | int i, fd; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 1873 | for (i = 0; i < 3; i++) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1874 | fd = squirrel[i]; |
| 1875 | if (fd != -1) { |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 1876 | /* We simply die on error */ |
| 1877 | xmove_fd(fd, i); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1878 | } |
| 1879 | } |
| 1880 | } |
| 1881 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1882 | |
| 1883 | #if !defined(DEBUG_CLEAN) |
| 1884 | #define free_pipe_list(head, indent) free_pipe_list(head) |
| 1885 | #define free_pipe(pi, indent) free_pipe(pi) |
| 1886 | #endif |
| 1887 | static int free_pipe_list(struct pipe *head, int indent); |
| 1888 | |
| 1889 | /* return code is the exit status of the pipe */ |
| 1890 | static int free_pipe(struct pipe *pi, int indent) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 1891 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1892 | char **p; |
| 1893 | struct command *command; |
| 1894 | struct redir_struct *r, *rnext; |
| 1895 | int a, i, ret_code = 0; |
| 1896 | |
| 1897 | if (pi->stopped_cmds > 0) |
| 1898 | return ret_code; |
| 1899 | debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid()); |
| 1900 | for (i = 0; i < pi->num_cmds; i++) { |
| 1901 | command = &pi->cmds[i]; |
| 1902 | debug_printf_clean("%s command %d:\n", indenter(indent), i); |
| 1903 | if (command->argv) { |
| 1904 | for (a = 0, p = command->argv; *p; a++, p++) { |
| 1905 | debug_printf_clean("%s argv[%d] = %s\n", indenter(indent), a, *p); |
| 1906 | } |
| 1907 | free_strings(command->argv); |
| 1908 | command->argv = NULL; |
| 1909 | } else if (command->group) { |
| 1910 | debug_printf_clean("%s begin group (grp_type:%d)\n", indenter(indent), command->grp_type); |
| 1911 | ret_code = free_pipe_list(command->group, indent+3); |
| 1912 | debug_printf_clean("%s end group\n", indenter(indent)); |
| 1913 | } else { |
| 1914 | debug_printf_clean("%s (nil)\n", indenter(indent)); |
| 1915 | } |
| 1916 | for (r = command->redirects; r; r = rnext) { |
| 1917 | debug_printf_clean("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->rd_type].descrip); |
| 1918 | if (r->dup == -1) { |
| 1919 | /* guard against the case >$FOO, where foo is unset or blank */ |
| 1920 | if (r->rd_filename) { |
| 1921 | debug_printf_clean(" %s\n", r->rd_filename); |
| 1922 | free(r->rd_filename); |
| 1923 | r->rd_filename = NULL; |
| 1924 | } |
| 1925 | } else { |
| 1926 | debug_printf_clean("&%d\n", r->dup); |
| 1927 | } |
| 1928 | rnext = r->next; |
| 1929 | free(r); |
| 1930 | } |
| 1931 | command->redirects = NULL; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 1932 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1933 | free(pi->cmds); /* children are an array, they get freed all at once */ |
| 1934 | pi->cmds = NULL; |
| 1935 | #if ENABLE_HUSH_JOB |
| 1936 | free(pi->cmdtext); |
| 1937 | pi->cmdtext = NULL; |
| 1938 | #endif |
| 1939 | return ret_code; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 1940 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1941 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1942 | static int free_pipe_list(struct pipe *head, int indent) |
| 1943 | { |
| 1944 | int rcode = 0; /* if list has no members */ |
| 1945 | struct pipe *pi, *next; |
| 1946 | |
| 1947 | for (pi = head; pi; pi = next) { |
| 1948 | #if HAS_KEYWORDS |
| 1949 | debug_printf_clean("%s pipe reserved mode %d\n", indenter(indent), pi->res_word); |
| 1950 | #endif |
| 1951 | rcode = free_pipe(pi, indent); |
| 1952 | debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup); |
| 1953 | next = pi->next; |
| 1954 | /*pi->next = NULL;*/ |
| 1955 | free(pi); |
| 1956 | } |
| 1957 | return rcode; |
| 1958 | } |
| 1959 | |
| 1960 | |
| 1961 | #if !BB_MMU |
| 1962 | typedef struct nommu_save_t { |
| 1963 | char **new_env; |
| 1964 | char **old_env; |
| 1965 | char **argv; |
| 1966 | } nommu_save_t; |
| 1967 | #else |
| 1968 | #define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \ |
| 1969 | pseudo_exec_argv(argv, assignment_cnt, argv_expanded) |
| 1970 | #define pseudo_exec(nommu_save, command, argv_expanded) \ |
| 1971 | pseudo_exec(command, argv_expanded) |
| 1972 | #endif |
| 1973 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 1974 | /* Called after [v]fork() in run_pipe(), or from builtin_exec(). |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 1975 | * Never returns. |
| 1976 | * XXX no exit() here. If you don't exec, use _exit instead. |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 1977 | * The at_exit handlers apparently confuse the calling process, |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 1978 | * in particular stdin handling. Not sure why? -- because of vfork! (vda) */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1979 | static void pseudo_exec_argv(nommu_save_t *nommu_save, char **argv, int assignment_cnt, char **argv_expanded) NORETURN; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 1980 | static void pseudo_exec_argv(nommu_save_t *nommu_save, char **argv, int assignment_cnt, char **argv_expanded) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1981 | { |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 1982 | int rcode; |
| 1983 | char **new_env; |
"Vladimir N. Oleynik" | 485d7cb | 2005-10-17 09:48:57 +0000 | [diff] [blame] | 1984 | const struct built_in_command *x; |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 1985 | |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 1986 | /* If a variable is assigned in a forest, and nobody listens, |
| 1987 | * was it ever really set? |
| 1988 | */ |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 1989 | if (!argv[assignment_cnt]) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 1990 | _exit(EXIT_SUCCESS); |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 1991 | |
Denis Vlasenko | 9504e44 | 2008-10-29 01:19:15 +0000 | [diff] [blame] | 1992 | new_env = expand_assignments(argv, assignment_cnt); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 1993 | #if BB_MMU |
| 1994 | putenv_all(new_env); |
| 1995 | free(new_env); /* optional */ |
| 1996 | #else |
| 1997 | nommu_save->new_env = new_env; |
| 1998 | nommu_save->old_env = putenv_all_and_save_old(new_env); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 1999 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2000 | if (argv_expanded) { |
| 2001 | argv = argv_expanded; |
| 2002 | } else { |
| 2003 | argv = expand_strvec_to_strvec(argv); |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2004 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2005 | nommu_save->argv = argv; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2006 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2007 | } |
Denis Vlasenko | 764d59d | 2007-05-14 16:23:23 +0000 | [diff] [blame] | 2008 | |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2009 | /* |
| 2010 | * Check if the command matches any of the builtins. |
| 2011 | * Depending on context, this might be redundant. But it's |
| 2012 | * easier to waste a few CPU cycles than it is to figure out |
| 2013 | * if this is one of those cases. |
| 2014 | */ |
Denis Vlasenko | dd316dd | 2008-06-14 15:50:55 +0000 | [diff] [blame] | 2015 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2016 | if (strcmp(argv[0], x->cmd) == 0) { |
Denis Vlasenko | 764d59d | 2007-05-14 16:23:23 +0000 | [diff] [blame] | 2017 | debug_printf_exec("running builtin '%s'\n", argv[0]); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2018 | rcode = x->function(argv); |
| 2019 | fflush(stdout); |
| 2020 | _exit(rcode); |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2021 | } |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2022 | } |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 2023 | |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2024 | /* Check if the command matches any busybox applets */ |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 2025 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2026 | if (strchr(argv[0], '/') == NULL) { |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 2027 | int a = find_applet_by_name(argv[0]); |
| 2028 | if (a >= 0) { |
| 2029 | if (APPLET_IS_NOEXEC(a)) { |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2030 | debug_printf_exec("running applet '%s'\n", argv[0]); |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 2031 | // is it ok that run_applet_no_and_exit() does exit(), not _exit()? |
| 2032 | run_applet_no_and_exit(a, argv); |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2033 | } |
| 2034 | /* re-exec ourselves with the new arguments */ |
| 2035 | debug_printf_exec("re-execing applet '%s'\n", argv[0]); |
Denis Vlasenko | bdbbb7e | 2007-06-08 15:02:55 +0000 | [diff] [blame] | 2036 | execvp(bb_busybox_exec_path, argv); |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2037 | /* If they called chroot or otherwise made the binary no longer |
| 2038 | * executable, fall through */ |
| 2039 | } |
| 2040 | } |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 2041 | #endif |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2042 | |
| 2043 | debug_printf_exec("execing '%s'\n", argv[0]); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2044 | execvp(argv[0], argv); |
Bernhard Reutner-Fischer | a53de7f | 2008-07-21 13:46:54 +0000 | [diff] [blame] | 2045 | bb_perror_msg("can't exec '%s'", argv[0]); |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 2046 | _exit(EXIT_FAILURE); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2047 | } |
| 2048 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2049 | static int run_list(struct pipe *pi); |
| 2050 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2051 | /* Called after [v]fork() in run_pipe() |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2052 | */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2053 | static void pseudo_exec(nommu_save_t *nommu_save, struct command *command, char **argv_expanded) NORETURN; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2054 | static void pseudo_exec(nommu_save_t *nommu_save, struct command *command, char **argv_expanded) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2055 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2056 | if (command->argv) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2057 | pseudo_exec_argv(nommu_save, command->argv, command->assignment_cnt, argv_expanded); |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2058 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2059 | if (command->group) { |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2060 | #if !BB_MMU |
Denis Vlasenko | 3b49216 | 2007-12-24 14:26:57 +0000 | [diff] [blame] | 2061 | bb_error_msg_and_die("nested lists are not supported on NOMMU"); |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2062 | #else |
Denis Vlasenko | 3b49216 | 2007-12-24 14:26:57 +0000 | [diff] [blame] | 2063 | int rcode; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2064 | debug_printf_exec("pseudo_exec: run_list\n"); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2065 | rcode = run_list(command->group); |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 2066 | /* OK to leak memory by not calling free_pipe_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2067 | * since this process is about to exit */ |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2068 | _exit(rcode); |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2069 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2070 | } |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2071 | |
| 2072 | /* Can happen. See what bash does with ">foo" by itself. */ |
| 2073 | debug_printf("trying to pseudo_exec null command\n"); |
| 2074 | _exit(EXIT_SUCCESS); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2075 | } |
| 2076 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2077 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2078 | static const char *get_cmdtext(struct pipe *pi) |
| 2079 | { |
| 2080 | char **argv; |
| 2081 | char *p; |
| 2082 | int len; |
| 2083 | |
| 2084 | /* This is subtle. ->cmdtext is created only on first backgrounding. |
| 2085 | * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...) |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2086 | * On subsequent bg argv is trashed, but we won't use it */ |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2087 | if (pi->cmdtext) |
| 2088 | return pi->cmdtext; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2089 | argv = pi->cmds[0].argv; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 2090 | if (!argv || !argv[0]) { |
| 2091 | pi->cmdtext = xzalloc(1); |
| 2092 | return pi->cmdtext; |
| 2093 | } |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2094 | |
| 2095 | len = 0; |
| 2096 | do len += strlen(*argv) + 1; while (*++argv); |
| 2097 | pi->cmdtext = p = xmalloc(len); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2098 | argv = pi->cmds[0].argv; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2099 | do { |
| 2100 | len = strlen(*argv); |
| 2101 | memcpy(p, *argv, len); |
| 2102 | p += len; |
| 2103 | *p++ = ' '; |
| 2104 | } while (*++argv); |
| 2105 | p[-1] = '\0'; |
| 2106 | return pi->cmdtext; |
| 2107 | } |
| 2108 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2109 | static void insert_bg_job(struct pipe *pi) |
| 2110 | { |
| 2111 | struct pipe *thejob; |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2112 | int i; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2113 | |
| 2114 | /* Linear search for the ID of the job to use */ |
| 2115 | pi->jobid = 1; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2116 | for (thejob = G.job_list; thejob; thejob = thejob->next) |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2117 | if (thejob->jobid >= pi->jobid) |
| 2118 | pi->jobid = thejob->jobid + 1; |
| 2119 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2120 | /* Add thejob to the list of running jobs */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2121 | if (!G.job_list) { |
| 2122 | thejob = G.job_list = xmalloc(sizeof(*thejob)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2123 | } else { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2124 | for (thejob = G.job_list; thejob->next; thejob = thejob->next) |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2125 | continue; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2126 | thejob->next = xmalloc(sizeof(*thejob)); |
| 2127 | thejob = thejob->next; |
| 2128 | } |
| 2129 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2130 | /* Physically copy the struct job */ |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 2131 | memcpy(thejob, pi, sizeof(struct pipe)); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2132 | thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds); |
| 2133 | /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */ |
| 2134 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2135 | // TODO: do we really need to have so many fields which are just dead weight |
| 2136 | // at execution stage? |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2137 | thejob->cmds[i].pid = pi->cmds[i].pid; |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2138 | /* all other fields are not used and stay zero */ |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2139 | } |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2140 | thejob->next = NULL; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2141 | thejob->cmdtext = xstrdup(get_cmdtext(pi)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2142 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2143 | /* We don't wait for background thejobs to return -- append it |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2144 | to the list of backgrounded thejobs and leave it alone */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2145 | printf("[%d] %d %s\n", thejob->jobid, thejob->cmds[0].pid, thejob->cmdtext); |
| 2146 | G.last_bg_pid = thejob->cmds[0].pid; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2147 | G.last_jobid = thejob->jobid; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2148 | } |
| 2149 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2150 | static void remove_bg_job(struct pipe *pi) |
| 2151 | { |
| 2152 | struct pipe *prev_pipe; |
| 2153 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2154 | if (pi == G.job_list) { |
| 2155 | G.job_list = pi->next; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2156 | } else { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2157 | prev_pipe = G.job_list; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2158 | while (prev_pipe->next != pi) |
| 2159 | prev_pipe = prev_pipe->next; |
| 2160 | prev_pipe->next = pi->next; |
| 2161 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2162 | if (G.job_list) |
| 2163 | G.last_jobid = G.job_list->jobid; |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 2164 | else |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2165 | G.last_jobid = 0; |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2166 | } |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 2167 | |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2168 | /* Remove a backgrounded job */ |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2169 | static void delete_finished_bg_job(struct pipe *pi) |
| 2170 | { |
| 2171 | remove_bg_job(pi); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2172 | pi->stopped_cmds = 0; |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 2173 | free_pipe(pi, 0); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2174 | free(pi); |
| 2175 | } |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2176 | #endif /* JOB */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2177 | |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2178 | /* Check to see if any processes have exited -- if they |
| 2179 | * have, figure out why and see if a job has completed */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2180 | static int checkjobs(struct pipe* fg_pipe) |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2181 | { |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2182 | int attributes; |
| 2183 | int status; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2184 | #if ENABLE_HUSH_JOB |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2185 | struct pipe *pi; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2186 | #endif |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2187 | pid_t childpid; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2188 | int rcode = 0; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2189 | |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2190 | attributes = WUNTRACED; |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2191 | if (fg_pipe == NULL) |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2192 | attributes |= WNOHANG; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2193 | |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2194 | /* Do we do this right? |
| 2195 | * bash-3.00# sleep 20 | false |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2196 | * <ctrl-Z pressed> |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2197 | * [3]+ Stopped sleep 20 | false |
| 2198 | * bash-3.00# echo $? |
| 2199 | * 1 <========== bg pipe is not fully done, but exitcode is already known! |
| 2200 | */ |
| 2201 | |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2202 | //FIXME: non-interactive bash does not continue even if all processes in fg pipe |
| 2203 | //are stopped. Testcase: "cat | cat" in a script (not on command line) |
| 2204 | // + killall -STOP cat |
| 2205 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2206 | wait_more: |
Denis Vlasenko | fb0eba7 | 2008-01-02 19:55:04 +0000 | [diff] [blame] | 2207 | // TODO: safe_waitpid? |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2208 | while ((childpid = waitpid(-1, &status, attributes)) > 0) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2209 | int i; |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2210 | const int dead = WIFEXITED(status) || WIFSIGNALED(status); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2211 | #if DEBUG_JOBS |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2212 | if (WIFSTOPPED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 2213 | debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2214 | childpid, WSTOPSIG(status), WEXITSTATUS(status)); |
| 2215 | if (WIFSIGNALED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 2216 | debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2217 | childpid, WTERMSIG(status), WEXITSTATUS(status)); |
| 2218 | if (WIFEXITED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 2219 | debug_printf_jobs("pid %d exited, exitcode %d\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2220 | childpid, WEXITSTATUS(status)); |
| 2221 | #endif |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2222 | /* Were we asked to wait for fg pipe? */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2223 | if (fg_pipe) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2224 | for (i = 0; i < fg_pipe->num_cmds; i++) { |
| 2225 | debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid); |
| 2226 | if (fg_pipe->cmds[i].pid != childpid) |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2227 | continue; |
| 2228 | /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */ |
| 2229 | if (dead) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2230 | fg_pipe->cmds[i].pid = 0; |
| 2231 | fg_pipe->alive_cmds--; |
| 2232 | if (i == fg_pipe->num_cmds - 1) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2233 | /* last process gives overall exitstatus */ |
| 2234 | rcode = WEXITSTATUS(status); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 2235 | IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2236 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2237 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2238 | fg_pipe->cmds[i].is_stopped = 1; |
| 2239 | fg_pipe->stopped_cmds++; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2240 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2241 | debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n", |
| 2242 | fg_pipe->alive_cmds, fg_pipe->stopped_cmds); |
| 2243 | if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2244 | /* All processes in fg pipe have exited/stopped */ |
| 2245 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2246 | if (fg_pipe->alive_cmds) |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2247 | insert_bg_job(fg_pipe); |
| 2248 | #endif |
| 2249 | return rcode; |
| 2250 | } |
| 2251 | /* There are still running processes in the fg pipe */ |
| 2252 | goto wait_more; /* do waitpid again */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2253 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2254 | /* it wasnt fg_pipe, look for process in bg pipes */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2255 | } |
| 2256 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2257 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2258 | /* We asked to wait for bg or orphaned children */ |
| 2259 | /* No need to remember exitcode in this case */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2260 | for (pi = G.job_list; pi; pi = pi->next) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2261 | for (i = 0; i < pi->num_cmds; i++) { |
| 2262 | if (pi->cmds[i].pid == childpid) |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 2263 | goto found_pi_and_prognum; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 2264 | } |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2265 | } |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 2266 | /* Happens when shell is used as init process (init=/bin/sh) */ |
| 2267 | debug_printf("checkjobs: pid %d was not in our list!\n", childpid); |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2268 | continue; /* do waitpid again */ |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 2269 | |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 2270 | found_pi_and_prognum: |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2271 | if (dead) { |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2272 | /* child exited */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2273 | pi->cmds[i].pid = 0; |
| 2274 | pi->alive_cmds--; |
| 2275 | if (!pi->alive_cmds) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2276 | printf(JOB_STATUS_FORMAT, pi->jobid, |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2277 | "Done", pi->cmdtext); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2278 | delete_finished_bg_job(pi); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2279 | } |
| 2280 | } else { |
| 2281 | /* child stopped */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2282 | pi->cmds[i].is_stopped = 1; |
| 2283 | pi->stopped_cmds++; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2284 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2285 | #endif |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2286 | } /* while (waitpid succeeds)... */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2287 | |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2288 | /* wait found no children or failed */ |
| 2289 | |
| 2290 | if (childpid && errno != ECHILD) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 2291 | bb_perror_msg("waitpid"); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2292 | return rcode; |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 2293 | } |
| 2294 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2295 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 2296 | static int checkjobs_and_fg_shell(struct pipe* fg_pipe) |
| 2297 | { |
| 2298 | pid_t p; |
| 2299 | int rcode = checkjobs(fg_pipe); |
| 2300 | /* Job finished, move the shell to the foreground */ |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 2301 | p = getpgid(0); /* pgid of our process */ |
| 2302 | debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2303 | tcsetpgrp(G.interactive_fd, p); |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 2304 | return rcode; |
| 2305 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2306 | #endif |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 2307 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2308 | /* run_pipe() starts all the jobs, but doesn't wait for anything |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2309 | * to finish. See checkjobs(). |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2310 | * |
| 2311 | * return code is normally -1, when the caller has to wait for children |
| 2312 | * to finish to determine the exit status of the pipe. If the pipe |
| 2313 | * is a simple builtin command, however, the action is done by the |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2314 | * time run_pipe returns, and the exit code is provided as the |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2315 | * return value. |
| 2316 | * |
| 2317 | * The input of the pipe is always stdin, the output is always |
| 2318 | * stdout. The outpipe[] mechanism in BusyBox-0.48 lash is bogus, |
| 2319 | * because it tries to avoid running the command substitution in |
| 2320 | * subshell, when that is in fact necessary. The subshell process |
| 2321 | * now has its stdout directed to the input of the appropriate pipe, |
| 2322 | * so this routine is noticeably simpler. |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 2323 | * |
| 2324 | * Returns -1 only if started some children. IOW: we have to |
| 2325 | * mask out retvals of builtins etc with 0xff! |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2326 | */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2327 | static int run_pipe(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2328 | { |
| 2329 | int i; |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2330 | int nextin; |
| 2331 | int pipefds[2]; /* pipefds[0] is for reading */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2332 | struct command *command; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2333 | char **argv_expanded; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2334 | char **argv; |
"Vladimir N. Oleynik" | 485d7cb | 2005-10-17 09:48:57 +0000 | [diff] [blame] | 2335 | const struct built_in_command *x; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2336 | char *p; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 2337 | /* it is not always needed, but we aim to smaller code */ |
| 2338 | int squirrel[] = { -1, -1, -1 }; |
| 2339 | int rcode; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2340 | const int single_and_fg = (pi->num_cmds == 1 && pi->followup != PIPE_BG); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2341 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2342 | debug_printf_exec("run_pipe start: single_and_fg=%d\n", single_and_fg); |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 2343 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2344 | #if ENABLE_HUSH_JOB |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 2345 | pi->pgrp = -1; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2346 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2347 | pi->alive_cmds = 1; |
| 2348 | pi->stopped_cmds = 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2349 | |
| 2350 | /* Check if this is a simple builtin (not part of a pipe). |
| 2351 | * Builtins within pipes have to fork anyway, and are handled in |
| 2352 | * pseudo_exec. "echo foo | read bar" doesn't work on bash, either. |
| 2353 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2354 | command = &(pi->cmds[0]); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2355 | |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2356 | #if ENABLE_HUSH_FUNCTIONS |
| 2357 | if (single_and_fg && command->group && command->grp_type == GRP_FUNCTION) { |
| 2358 | /* We "execute" function definition */ |
| 2359 | bb_error_msg("here we ought to remember function definition, and go on"); |
| 2360 | return EXIT_SUCCESS; |
| 2361 | } |
| 2362 | #endif |
| 2363 | |
| 2364 | if (single_and_fg && command->group && command->grp_type == GRP_NORMAL) { |
Eric Andersen | 04407e5 | 2001-06-07 16:42:05 +0000 | [diff] [blame] | 2365 | debug_printf("non-subshell grouping\n"); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2366 | setup_redirects(command, squirrel); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2367 | debug_printf_exec(": run_list\n"); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2368 | rcode = run_list(command->group) & 0xff; |
Eric Andersen | 04407e5 | 2001-06-07 16:42:05 +0000 | [diff] [blame] | 2369 | restore_redirects(squirrel); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2370 | debug_printf_exec("run_pipe return %d\n", rcode); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 2371 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2372 | return rcode; |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2373 | } |
| 2374 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2375 | argv = command->argv; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2376 | argv_expanded = NULL; |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2377 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2378 | if (single_and_fg && argv != NULL) { |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2379 | char **new_env = NULL; |
| 2380 | char **old_env = NULL; |
| 2381 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2382 | i = command->assignment_cnt; |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2383 | if (i != 0 && argv[i] == NULL) { |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2384 | /* assignments, but no command: set local environment */ |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2385 | for (i = 0; argv[i] != NULL; i++) { |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 2386 | debug_printf("local environment set: %s\n", argv[i]); |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 2387 | p = expand_string_to_string(argv[i]); |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 2388 | set_local_var(p, 0); |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 2389 | } |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2390 | return EXIT_SUCCESS; /* don't worry about errors in set_local_var() yet */ |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 2391 | } |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2392 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2393 | /* Expand the rest into (possibly) many strings each */ |
| 2394 | argv_expanded = expand_strvec_to_strvec(argv + i); |
| 2395 | |
Denis Vlasenko | dd316dd | 2008-06-14 15:50:55 +0000 | [diff] [blame] | 2396 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2397 | if (strcmp(argv_expanded[0], x->cmd) != 0) |
| 2398 | continue; |
| 2399 | if (x->function == builtin_exec && argv_expanded[1] == NULL) { |
| 2400 | debug_printf("exec with redirects only\n"); |
| 2401 | setup_redirects(command, NULL); |
| 2402 | rcode = EXIT_SUCCESS; |
| 2403 | goto clean_up_and_ret1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2404 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2405 | debug_printf("builtin inline %s\n", argv_expanded[0]); |
| 2406 | /* XXX setup_redirects acts on file descriptors, not FILEs. |
| 2407 | * This is perfect for work that comes after exec(). |
| 2408 | * Is it really safe for inline use? Experimentally, |
| 2409 | * things seem to work with glibc. */ |
| 2410 | setup_redirects(command, squirrel); |
| 2411 | new_env = expand_assignments(argv, command->assignment_cnt); |
| 2412 | old_env = putenv_all_and_save_old(new_env); |
| 2413 | debug_printf_exec(": builtin '%s' '%s'...\n", x->cmd, argv_expanded[1]); |
| 2414 | rcode = x->function(argv_expanded) & 0xff; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2415 | #if ENABLE_FEATURE_SH_STANDALONE |
| 2416 | clean_up_and_ret: |
| 2417 | #endif |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2418 | restore_redirects(squirrel); |
| 2419 | free_strings_and_unsetenv(new_env, 1); |
| 2420 | putenv_all(old_env); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2421 | free(old_env); /* not free_strings()! */ |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2422 | clean_up_and_ret1: |
| 2423 | free(argv_expanded); |
| 2424 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 2425 | debug_printf_exec("run_pipe return %d\n", rcode); |
| 2426 | return rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2427 | } |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 2428 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2429 | i = find_applet_by_name(argv_expanded[0]); |
| 2430 | if (i >= 0 && APPLET_IS_NOFORK(i)) { |
| 2431 | setup_redirects(command, squirrel); |
| 2432 | save_nofork_data(&G.nofork_save); |
| 2433 | new_env = expand_assignments(argv, command->assignment_cnt); |
| 2434 | old_env = putenv_all_and_save_old(new_env); |
| 2435 | debug_printf_exec(": run_nofork_applet '%s' '%s'...\n", argv_expanded[0], argv_expanded[1]); |
| 2436 | rcode = run_nofork_applet_prime(&G.nofork_save, i, argv_expanded); |
| 2437 | goto clean_up_and_ret; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 2438 | } |
| 2439 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2440 | } |
| 2441 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2442 | /* NB: argv_expanded may already be created, and that |
| 2443 | * might include `cmd` runs! Do not rerun it! We *must* |
| 2444 | * use argv_expanded if it's non-NULL */ |
| 2445 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2446 | /* Disable job control signals for shell (parent) and |
| 2447 | * for initial child code after fork */ |
| 2448 | set_jobctrl_sighandler(SIG_IGN); |
| 2449 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2450 | /* Going to fork a child per each pipe member */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2451 | pi->alive_cmds = 0; |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2452 | nextin = 0; |
| 2453 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2454 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2455 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2456 | volatile nommu_save_t nommu_save; |
| 2457 | nommu_save.new_env = NULL; |
| 2458 | nommu_save.old_env = NULL; |
| 2459 | nommu_save.argv = NULL; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2460 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2461 | command = &(pi->cmds[i]); |
| 2462 | if (command->argv) { |
| 2463 | debug_printf_exec(": pipe member '%s' '%s'...\n", command->argv[0], command->argv[1]); |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2464 | } else |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2465 | debug_printf_exec(": pipe member with no argv\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2466 | |
| 2467 | /* pipes are inserted between pairs of commands */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2468 | pipefds[0] = 0; |
| 2469 | pipefds[1] = 1; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2470 | if ((i + 1) < pi->num_cmds) |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2471 | xpipe(pipefds); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2472 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2473 | command->pid = BB_MMU ? fork() : vfork(); |
| 2474 | if (!command->pid) { /* child */ |
Denis Vlasenko | 8317799 | 2008-02-11 08:44:36 +0000 | [diff] [blame] | 2475 | if (ENABLE_HUSH_JOB) |
| 2476 | die_sleep = 0; /* let nofork's xfuncs die */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2477 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2478 | /* Every child adds itself to new process group |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2479 | * with pgid == pid_of_first_child_in_pipe */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2480 | if (G.run_list_level == 1 && G.interactive_fd) { |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2481 | pid_t pgrp; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2482 | /* Don't do pgrp restore anymore on fatal signals */ |
| 2483 | set_fatal_sighandler(SIG_DFL); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2484 | pgrp = pi->pgrp; |
| 2485 | if (pgrp < 0) /* true for 1st process only */ |
| 2486 | pgrp = getpid(); |
| 2487 | if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2488 | /* We do it in *every* child, not just first, |
| 2489 | * to avoid races */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2490 | tcsetpgrp(G.interactive_fd, pgrp); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2491 | } |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2492 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2493 | #endif |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2494 | xmove_fd(nextin, 0); |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2495 | xmove_fd(pipefds[1], 1); /* write end */ |
| 2496 | if (pipefds[0] > 1) |
| 2497 | close(pipefds[0]); /* read end */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2498 | /* Like bash, explicit redirects override pipes, |
| 2499 | * and the pipe fd is available for dup'ing. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2500 | setup_redirects(command, NULL); |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 2501 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2502 | /* Restore default handlers just prior to exec */ |
| 2503 | set_jobctrl_sighandler(SIG_DFL); |
| 2504 | set_misc_sighandler(SIG_DFL); |
| 2505 | signal(SIGCHLD, SIG_DFL); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2506 | /* Stores to nommu_save list of env vars putenv'ed |
| 2507 | * (NOMMU, on MMU we don't need that) */ |
| 2508 | /* cast away volatility... */ |
| 2509 | pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2510 | /* pseudo_exec() does not return */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2511 | } |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2512 | /* parent */ |
| 2513 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2514 | /* Clean up after vforked child */ |
| 2515 | free(nommu_save.argv); |
| 2516 | free_strings_and_unsetenv(nommu_save.new_env, 1); |
| 2517 | putenv_all(nommu_save.old_env); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2518 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2519 | free(argv_expanded); |
| 2520 | argv_expanded = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2521 | if (command->pid < 0) { /* [v]fork failed */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2522 | /* Clearly indicate, was it fork or vfork */ |
Denis Vlasenko | 82604e9 | 2008-07-01 15:59:42 +0000 | [diff] [blame] | 2523 | bb_perror_msg(BB_MMU ? "fork" : "vfork"); |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2524 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2525 | pi->alive_cmds++; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2526 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2527 | /* Second and next children need to know pid of first one */ |
| 2528 | if (pi->pgrp < 0) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2529 | pi->pgrp = command->pid; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2530 | #endif |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2531 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2532 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2533 | if (i) |
| 2534 | close(nextin); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2535 | if ((i + 1) < pi->num_cmds) |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2536 | close(pipefds[1]); /* write end */ |
| 2537 | /* Pass read (output) pipe end to next iteration */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2538 | nextin = pipefds[0]; |
| 2539 | } |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2540 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2541 | if (!pi->alive_cmds) { |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2542 | debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n"); |
| 2543 | return 1; |
| 2544 | } |
| 2545 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2546 | debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2547 | return -1; |
| 2548 | } |
| 2549 | |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 2550 | #ifndef debug_print_tree |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2551 | static void debug_print_tree(struct pipe *pi, int lvl) |
| 2552 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2553 | static const char *const PIPE[] = { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2554 | [PIPE_SEQ] = "SEQ", |
| 2555 | [PIPE_AND] = "AND", |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2556 | [PIPE_OR ] = "OR" , |
| 2557 | [PIPE_BG ] = "BG" , |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2558 | }; |
| 2559 | static const char *RES[] = { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2560 | [RES_NONE ] = "NONE" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2561 | #if ENABLE_HUSH_IF |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2562 | [RES_IF ] = "IF" , |
| 2563 | [RES_THEN ] = "THEN" , |
| 2564 | [RES_ELIF ] = "ELIF" , |
| 2565 | [RES_ELSE ] = "ELSE" , |
| 2566 | [RES_FI ] = "FI" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2567 | #endif |
| 2568 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2569 | [RES_FOR ] = "FOR" , |
| 2570 | [RES_WHILE] = "WHILE", |
| 2571 | [RES_UNTIL] = "UNTIL", |
| 2572 | [RES_DO ] = "DO" , |
| 2573 | [RES_DONE ] = "DONE" , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 2574 | #endif |
| 2575 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2576 | [RES_IN ] = "IN" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2577 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2578 | #if ENABLE_HUSH_CASE |
| 2579 | [RES_CASE ] = "CASE" , |
| 2580 | [RES_MATCH] = "MATCH", |
| 2581 | [RES_CASEI] = "CASEI", |
| 2582 | [RES_ESAC ] = "ESAC" , |
| 2583 | #endif |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2584 | [RES_XXXX ] = "XXXX" , |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2585 | [RES_SNTX ] = "SNTX" , |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2586 | }; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2587 | static const char *const GRPTYPE[] = { |
| 2588 | "()", |
| 2589 | "{}", |
| 2590 | #if ENABLE_HUSH_FUNCTIONS |
| 2591 | "func()", |
| 2592 | #endif |
| 2593 | }; |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2594 | |
| 2595 | int pin, prn; |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 2596 | |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2597 | pin = 0; |
| 2598 | while (pi) { |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 2599 | fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "", |
| 2600 | pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2601 | prn = 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2602 | while (prn < pi->num_cmds) { |
| 2603 | struct command *command = &pi->cmds[prn]; |
| 2604 | char **argv = command->argv; |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 2605 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2606 | fprintf(stderr, "%*s prog %d assignment_cnt:%d", lvl*2, "", prn, command->assignment_cnt); |
| 2607 | if (command->group) { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2608 | fprintf(stderr, " group %s: (argv=%p)\n", |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2609 | GRPTYPE[command->grp_type], |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 2610 | argv); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2611 | debug_print_tree(command->group, lvl+1); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2612 | prn++; |
| 2613 | continue; |
| 2614 | } |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2615 | if (argv) while (*argv) { |
| 2616 | fprintf(stderr, " '%s'", *argv); |
| 2617 | argv++; |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 2618 | } |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2619 | fprintf(stderr, "\n"); |
| 2620 | prn++; |
| 2621 | } |
| 2622 | pi = pi->next; |
| 2623 | pin++; |
| 2624 | } |
| 2625 | } |
| 2626 | #endif |
| 2627 | |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2628 | /* NB: called by pseudo_exec, and therefore must not modify any |
| 2629 | * global data until exec/_exit (we can be a child after vfork!) */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2630 | static int run_list(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2631 | { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2632 | #if ENABLE_HUSH_CASE |
| 2633 | char *case_word = NULL; |
| 2634 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2635 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2636 | struct pipe *loop_top = NULL; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2637 | char *for_varname = NULL; |
| 2638 | char **for_lcur = NULL; |
| 2639 | char **for_list = NULL; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2640 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2641 | smallint flag_skip = 1; |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 2642 | smalluint rcode = 0; /* probably just for compiler */ |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 2643 | #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2644 | smalluint cond_code = 0; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2645 | #else |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2646 | enum { cond_code = 0, }; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2647 | #endif |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2648 | /*enum reserved_style*/ smallint rword = RES_NONE; |
| 2649 | /*enum reserved_style*/ smallint skip_more_for_this_rword = RES_XXXX; |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 2650 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2651 | debug_printf_exec("run_list start lvl %d\n", G.run_list_level + 1); |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 2652 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2653 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2654 | /* Check syntax for "for" */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 2655 | for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) { |
| 2656 | if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2657 | continue; |
| 2658 | /* current word is FOR or IN (BOLD in comments below) */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 2659 | if (cpipe->next == NULL) { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2660 | syntax("malformed for"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2661 | debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2662 | return 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2663 | } |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2664 | /* "FOR v; do ..." and "for v IN a b; do..." are ok */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 2665 | if (cpipe->next->res_word == RES_DO) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2666 | continue; |
| 2667 | /* next word is not "do". It must be "in" then ("FOR v in ...") */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 2668 | if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */ |
| 2669 | || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2670 | ) { |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 2671 | syntax("malformed for"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2672 | debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2673 | return 1; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2674 | } |
| 2675 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2676 | #endif |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2677 | |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 2678 | /* Past this point, all code paths should jump to ret: label |
Denis Vlasenko | 12acec5 | 2008-07-28 15:15:59 +0000 | [diff] [blame] | 2679 | * in order to return, no direct "return" statements please. |
| 2680 | * This helps to ensure that no memory is leaked. */ |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 2681 | |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2682 | #if ENABLE_HUSH_JOB |
| 2683 | /* Example of nested list: "while true; do { sleep 1 | exit 2; } done". |
| 2684 | * We are saving state before entering outermost list ("while...done") |
| 2685 | * so that ctrl-Z will correctly background _entire_ outermost list, |
| 2686 | * not just a part of it (like "sleep 1 | exit 2") */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2687 | if (++G.run_list_level == 1 && G.interactive_fd) { |
| 2688 | if (sigsetjmp(G.toplevel_jb, 1)) { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2689 | /* ctrl-Z forked and we are parent; or ctrl-C. |
| 2690 | * Sighandler has longjmped us here */ |
| 2691 | signal(SIGINT, SIG_IGN); |
| 2692 | signal(SIGTSTP, SIG_IGN); |
| 2693 | /* Restore level (we can be coming from deep inside |
| 2694 | * nested levels) */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2695 | G.run_list_level = 1; |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2696 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2697 | if (G.nofork_save.saved) { /* if save area is valid */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2698 | debug_printf_jobs("exiting nofork early\n"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2699 | restore_nofork_data(&G.nofork_save); |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2700 | } |
| 2701 | #endif |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2702 | if (G.ctrl_z_flag) { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2703 | /* ctrl-Z has forked and stored pid of the child in pi->pid. |
| 2704 | * Remember this child as background job */ |
| 2705 | insert_bg_job(pi); |
| 2706 | } else { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2707 | /* ctrl-C. We just stop doing whatever we were doing */ |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 2708 | bb_putchar('\n'); |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2709 | } |
Denis Vlasenko | ff29b4f | 2008-07-29 13:57:59 +0000 | [diff] [blame] | 2710 | USE_HUSH_LOOPS(loop_top = NULL;) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2711 | USE_HUSH_LOOPS(G.depth_of_loop = 0;) |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2712 | rcode = 0; |
| 2713 | goto ret; |
| 2714 | } |
| 2715 | /* ctrl-Z handler will store pid etc in pi */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2716 | G.toplevel_list = pi; |
| 2717 | G.ctrl_z_flag = 0; |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2718 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2719 | G.nofork_save.saved = 0; /* in case we will run a nofork later */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2720 | #endif |
Denis Vlasenko | 8e2cfec | 2008-03-12 23:19:35 +0000 | [diff] [blame] | 2721 | signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z); |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2722 | signal(SIGINT, handler_ctrl_c); |
| 2723 | } |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2724 | #endif /* JOB */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2725 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2726 | /* Go through list of pipes, (maybe) executing them. */ |
| 2727 | for (; pi; pi = USE_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) { |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 2728 | IF_HAS_KEYWORDS(rword = pi->res_word;) |
| 2729 | IF_HAS_NO_KEYWORDS(rword = RES_NONE;) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2730 | debug_printf_exec(": rword=%d cond_code=%d skip_more=%d\n", |
| 2731 | rword, cond_code, skip_more_for_this_rword); |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2732 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 4554b72 | 2008-07-29 13:36:09 +0000 | [diff] [blame] | 2733 | if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2734 | && loop_top == NULL /* avoid bumping G.depth_of_loop twice */ |
Denis Vlasenko | 4554b72 | 2008-07-29 13:36:09 +0000 | [diff] [blame] | 2735 | ) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2736 | /* start of a loop: remember where loop starts */ |
| 2737 | loop_top = pi; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2738 | G.depth_of_loop++; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2739 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2740 | #endif |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 2741 | if (rword == skip_more_for_this_rword && flag_skip) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2742 | if (pi->followup == PIPE_SEQ) |
| 2743 | flag_skip = 0; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 2744 | /* it is "<false> && CMD" or "<true> || CMD" |
| 2745 | * and we should not execute CMD */ |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2746 | continue; |
| 2747 | } |
| 2748 | flag_skip = 1; |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 2749 | skip_more_for_this_rword = RES_XXXX; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2750 | #if ENABLE_HUSH_IF |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2751 | if (cond_code) { |
| 2752 | if (rword == RES_THEN) { |
| 2753 | /* "if <false> THEN cmd": skip cmd */ |
| 2754 | continue; |
| 2755 | } |
| 2756 | } else { |
| 2757 | if (rword == RES_ELSE || rword == RES_ELIF) { |
| 2758 | /* "if <true> then ... ELSE/ELIF cmd": |
| 2759 | * skip cmd and all following ones */ |
| 2760 | break; |
| 2761 | } |
| 2762 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2763 | #endif |
| 2764 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2765 | if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 2766 | if (!for_lcur) { |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 2767 | /* first loop through for */ |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 2768 | |
| 2769 | static const char encoded_dollar_at[] ALIGN1 = { |
| 2770 | SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0' |
| 2771 | }; /* encoded representation of "$@" */ |
| 2772 | static const char *const encoded_dollar_at_argv[] = { |
| 2773 | encoded_dollar_at, NULL |
| 2774 | }; /* argv list with one element: "$@" */ |
| 2775 | char **vals; |
| 2776 | |
| 2777 | vals = (char**)encoded_dollar_at_argv; |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 2778 | if (pi->next->res_word == RES_IN) { |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 2779 | /* if no variable values after "in" we skip "for" */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2780 | if (!pi->next->cmds[0].argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2781 | break; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2782 | vals = pi->next->cmds[0].argv; |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 2783 | } /* else: "for var; do..." -> assume "$@" list */ |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2784 | /* create list of variable values */ |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 2785 | debug_print_strings("for_list made from", vals); |
| 2786 | for_list = expand_strvec_to_strvec(vals); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 2787 | for_lcur = for_list; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2788 | debug_print_strings("for_list", for_list); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2789 | for_varname = pi->cmds[0].argv[0]; |
| 2790 | pi->cmds[0].argv[0] = NULL; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2791 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2792 | free(pi->cmds[0].argv[0]); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 2793 | if (!*for_lcur) { |
Denis Vlasenko | 12acec5 | 2008-07-28 15:15:59 +0000 | [diff] [blame] | 2794 | /* "for" loop is over, clean up */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 2795 | free(for_list); |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 2796 | for_list = NULL; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 2797 | for_lcur = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2798 | pi->cmds[0].argv[0] = for_varname; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2799 | break; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2800 | } |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 2801 | /* insert next value from for_lcur */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2802 | //TODO: does it need escaping? |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2803 | pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++); |
| 2804 | pi->cmds[0].assignment_cnt = 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2805 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2806 | if (rword == RES_IN) /* "for v IN list;..." - "in" has no cmds anyway */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2807 | continue; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2808 | if (rword == RES_DONE) { |
| 2809 | continue; /* "done" has no cmds too */ |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2810 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2811 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2812 | #if ENABLE_HUSH_CASE |
| 2813 | if (rword == RES_CASE) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2814 | case_word = expand_strvec_to_string(pi->cmds->argv); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2815 | continue; |
| 2816 | } |
| 2817 | if (rword == RES_MATCH) { |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 2818 | char **argv; |
| 2819 | |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2820 | if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */ |
| 2821 | break; |
| 2822 | /* all prev words didn't match, does this one match? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2823 | argv = pi->cmds->argv; |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 2824 | while (*argv) { |
| 2825 | char *pattern = expand_string_to_string(*argv); |
| 2826 | /* TODO: which FNM_xxx flags to use? */ |
| 2827 | cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0); |
| 2828 | free(pattern); |
| 2829 | if (cond_code == 0) { /* match! we will execute this branch */ |
| 2830 | free(case_word); /* make future "word)" stop */ |
| 2831 | case_word = NULL; |
| 2832 | break; |
| 2833 | } |
| 2834 | argv++; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2835 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2836 | continue; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2837 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2838 | if (rword == RES_CASEI) { /* inside of a case branch */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2839 | if (cond_code != 0) |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2840 | continue; /* not matched yet, skip this pipe */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2841 | } |
| 2842 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2843 | if (pi->num_cmds == 0) |
Mike Frysinger | 8ec1c9d | 2009-03-29 00:45:26 +0000 | [diff] [blame] | 2844 | goto check_jobs_and_continue; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2845 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2846 | /* After analyzing all keywords and conditions, we decided |
| 2847 | * to execute this pipe. NB: has to do checkjobs(NULL) |
| 2848 | * after run_pipe() to collect any background children, |
| 2849 | * even if list execution is to be stopped. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2850 | debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2851 | { |
| 2852 | int r; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 2853 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2854 | G.flag_break_continue = 0; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 2855 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2856 | rcode = r = run_pipe(pi); /* NB: rcode is a smallint */ |
| 2857 | if (r != -1) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2858 | /* we only ran a builtin: rcode is already known |
| 2859 | * and we don't need to wait for anything. */ |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 2860 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2861 | /* was it "break" or "continue"? */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2862 | if (G.flag_break_continue) { |
| 2863 | smallint fbc = G.flag_break_continue; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2864 | /* we might fall into outer *loop*, |
| 2865 | * don't want to break it too */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2866 | if (loop_top) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2867 | G.depth_break_continue--; |
| 2868 | if (G.depth_break_continue == 0) |
| 2869 | G.flag_break_continue = 0; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 2870 | /* else: e.g. "continue 2" should *break* once, *then* continue */ |
| 2871 | } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2872 | if (G.depth_break_continue != 0 || fbc == BC_BREAK) |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 2873 | goto check_jobs_and_break; |
| 2874 | /* "continue": simulate end of loop */ |
| 2875 | rword = RES_DONE; |
| 2876 | continue; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2877 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 2878 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2879 | } else if (pi->followup == PIPE_BG) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2880 | /* what does bash do with attempts to background builtins? */ |
| 2881 | /* even bash 3.2 doesn't do that well with nested bg: |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2882 | * try "{ { sleep 10; echo DEEP; } & echo HERE; } &". |
| 2883 | * I'm NOT treating inner &'s as jobs */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2884 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2885 | if (G.run_list_level == 1) |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2886 | insert_bg_job(pi); |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2887 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2888 | rcode = 0; /* EXIT_SUCCESS */ |
| 2889 | } else { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2890 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2891 | if (G.run_list_level == 1 && G.interactive_fd) { |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2892 | /* waits for completion, then fg's main shell */ |
| 2893 | rcode = checkjobs_and_fg_shell(pi); |
| 2894 | debug_printf_exec(": checkjobs_and_fg_shell returned %d\n", rcode); |
| 2895 | } else |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2896 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2897 | { /* this one just waits for completion */ |
| 2898 | rcode = checkjobs(pi); |
| 2899 | debug_printf_exec(": checkjobs returned %d\n", rcode); |
| 2900 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2901 | } |
| 2902 | } |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2903 | debug_printf_exec(": setting last_return_code=%d\n", rcode); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2904 | G.last_return_code = rcode; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2905 | |
| 2906 | /* Analyze how result affects subsequent commands */ |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2907 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 2908 | if (rword == RES_IF || rword == RES_ELIF) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2909 | cond_code = rcode; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2910 | #endif |
| 2911 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2912 | if (rword == RES_WHILE) { |
Denis Vlasenko | 918a34b | 2008-07-28 23:17:31 +0000 | [diff] [blame] | 2913 | if (rcode) { |
| 2914 | rcode = 0; /* "while false; do...done" - exitcode 0 */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2915 | goto check_jobs_and_break; |
Denis Vlasenko | 918a34b | 2008-07-28 23:17:31 +0000 | [diff] [blame] | 2916 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2917 | } |
| 2918 | if (rword == RES_UNTIL) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2919 | if (!rcode) { |
| 2920 | check_jobs_and_break: |
| 2921 | checkjobs(NULL); |
| 2922 | break; |
| 2923 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2924 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2925 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2926 | if ((rcode == 0 && pi->followup == PIPE_OR) |
| 2927 | || (rcode != 0 && pi->followup == PIPE_AND) |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2928 | ) { |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 2929 | skip_more_for_this_rword = rword; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2930 | } |
Mike Frysinger | 8ec1c9d | 2009-03-29 00:45:26 +0000 | [diff] [blame] | 2931 | |
| 2932 | check_jobs_and_continue: |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 2933 | checkjobs(NULL); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2934 | } /* for (pi) */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2935 | |
| 2936 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2937 | if (G.ctrl_z_flag) { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2938 | /* ctrl-Z forked somewhere in the past, we are the child, |
| 2939 | * and now we completed running the list. Exit. */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2940 | //TODO: _exit? |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2941 | exit(rcode); |
| 2942 | } |
| 2943 | ret: |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2944 | if (!--G.run_list_level && G.interactive_fd) { |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 2945 | signal(SIGTSTP, SIG_IGN); |
| 2946 | signal(SIGINT, SIG_IGN); |
| 2947 | } |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2948 | #endif |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2949 | debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode); |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 2950 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 2951 | if (loop_top) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2952 | G.depth_of_loop--; |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 2953 | free(for_list); |
| 2954 | #endif |
| 2955 | #if ENABLE_HUSH_CASE |
| 2956 | free(case_word); |
| 2957 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2958 | return rcode; |
| 2959 | } |
| 2960 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2961 | /* Select which version we will use */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2962 | static int run_and_free_list(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2963 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2964 | int rcode = 0; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2965 | debug_printf_exec("run_and_free_list entered\n"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2966 | if (!G.fake_mode) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2967 | debug_printf_exec(": run_list with %d members\n", pi->num_cmds); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2968 | rcode = run_list(pi); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2969 | } |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2970 | /* free_pipe_list has the side effect of clearing memory. |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2971 | * In the long run that function can be merged with run_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2972 | * but doing that now would hobble the debugging effort. */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2973 | free_pipe_list(pi, /* indent: */ 0); |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 2974 | debug_printf_exec("run_and_free_list return %d\n", rcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2975 | return rcode; |
| 2976 | } |
| 2977 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 2978 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2979 | /* Peek ahead in the in_str to find out if we have a "&n" construct, |
| 2980 | * as in "2>&1", that represents duplicating a file descriptor. |
| 2981 | * Return either -2 (syntax error), -1 (no &), or the number found. |
| 2982 | */ |
| 2983 | static int redirect_dup_num(struct in_str *input) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 2984 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2985 | int ch, d = 0, ok = 0; |
| 2986 | ch = i_peek(input); |
| 2987 | if (ch != '&') return -1; |
| 2988 | |
| 2989 | i_getch(input); /* get the & */ |
| 2990 | ch = i_peek(input); |
| 2991 | if (ch == '-') { |
| 2992 | i_getch(input); |
| 2993 | return -3; /* "-" represents "close me" */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 2994 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2995 | while (isdigit(ch)) { |
| 2996 | d = d*10 + (ch-'0'); |
| 2997 | ok = 1; |
| 2998 | i_getch(input); |
| 2999 | ch = i_peek(input); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3000 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3001 | if (ok) return d; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3002 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3003 | bb_error_msg("ambiguous redirect"); |
| 3004 | return -2; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 3005 | } |
| 3006 | |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3007 | /* The src parameter allows us to peek forward to a possible &n syntax |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3008 | * for file descriptor duplication, e.g., "2>&1". |
| 3009 | * Return code is 0 normally, 1 if a syntax error is detected in src. |
| 3010 | * Resource errors (in xmalloc) cause the process to exit */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3011 | static int setup_redirect(struct parse_context *ctx, int fd, redir_type style, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3012 | struct in_str *input) |
| 3013 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3014 | struct command *command = ctx->command; |
| 3015 | struct redir_struct *redir = command->redirects; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3016 | struct redir_struct *last_redir = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3017 | |
| 3018 | /* 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] | 3019 | while (redir) { |
| 3020 | last_redir = redir; |
| 3021 | redir = redir->next; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3022 | } |
Denis Vlasenko | ff09762 | 2007-10-01 10:00:45 +0000 | [diff] [blame] | 3023 | redir = xzalloc(sizeof(struct redir_struct)); |
| 3024 | /* redir->next = NULL; */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3025 | /* redir->rd_filename = NULL; */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3026 | if (last_redir) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3027 | last_redir->next = redir; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3028 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3029 | command->redirects = redir; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3030 | } |
| 3031 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3032 | redir->rd_type = style; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3033 | redir->fd = (fd == -1) ? redir_table[style].default_fd : fd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3034 | |
| 3035 | debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip); |
| 3036 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3037 | /* Check for a '2>&1' type redirect */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3038 | redir->dup = redirect_dup_num(input); |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3039 | if (redir->dup == -2) |
| 3040 | return 1; /* syntax error */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3041 | if (redir->dup != -1) { |
| 3042 | /* Erik had a check here that the file descriptor in question |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 3043 | * is legit; I postpone that to "run time" |
| 3044 | * A "-" representation of "close me" shows up as a -3 here */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3045 | debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup); |
| 3046 | } else { |
| 3047 | /* We do _not_ try to open the file that src points to, |
| 3048 | * since we need to return and let src be expanded first. |
| 3049 | * Set ctx->pending_redirect, so we know what to do at the |
Denis Vlasenko | 201c72a | 2007-05-25 10:00:36 +0000 | [diff] [blame] | 3050 | * end of the next parsed word. */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3051 | ctx->pending_redirect = redir; |
| 3052 | } |
| 3053 | return 0; |
| 3054 | } |
| 3055 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3056 | |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 3057 | static struct pipe *new_pipe(void) |
| 3058 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3059 | struct pipe *pi; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3060 | pi = xzalloc(sizeof(struct pipe)); |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3061 | /*pi->followup = 0; - deliberately invalid value */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3062 | /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3063 | return pi; |
| 3064 | } |
| 3065 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3066 | /* Command (member of a pipe) is complete. The only possible error here |
| 3067 | * is out of memory, in which case xmalloc exits. */ |
| 3068 | static int done_command(struct parse_context *ctx) |
| 3069 | { |
| 3070 | /* The command is really already in the pipe structure, so |
| 3071 | * advance the pipe counter and make a new, null command. */ |
| 3072 | struct pipe *pi = ctx->pipe; |
| 3073 | struct command *command = ctx->command; |
| 3074 | |
| 3075 | if (command) { |
| 3076 | if (command->group == NULL |
| 3077 | && command->argv == NULL |
| 3078 | && command->redirects == NULL |
| 3079 | ) { |
| 3080 | debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds); |
| 3081 | return pi->num_cmds; |
| 3082 | } |
| 3083 | pi->num_cmds++; |
| 3084 | debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds); |
| 3085 | } else { |
| 3086 | debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds); |
| 3087 | } |
| 3088 | |
| 3089 | /* Only real trickiness here is that the uncommitted |
| 3090 | * command structure is not counted in pi->num_cmds. */ |
| 3091 | pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1)); |
| 3092 | command = &pi->cmds[pi->num_cmds]; |
| 3093 | memset(command, 0, sizeof(*command)); |
| 3094 | |
| 3095 | ctx->command = command; |
| 3096 | /* but ctx->pipe and ctx->list_head remain unchanged */ |
| 3097 | |
| 3098 | return pi->num_cmds; /* used only for 0/nonzero check */ |
| 3099 | } |
| 3100 | |
| 3101 | static void done_pipe(struct parse_context *ctx, pipe_style type) |
| 3102 | { |
| 3103 | int not_null; |
| 3104 | |
| 3105 | debug_printf_parse("done_pipe entered, followup %d\n", type); |
| 3106 | /* Close previous command */ |
| 3107 | not_null = done_command(ctx); |
| 3108 | ctx->pipe->followup = type; |
| 3109 | IF_HAS_KEYWORDS(ctx->pipe->pi_inverted = ctx->ctx_inverted;) |
| 3110 | IF_HAS_KEYWORDS(ctx->ctx_inverted = 0;) |
| 3111 | IF_HAS_KEYWORDS(ctx->pipe->res_word = ctx->ctx_res_w;) |
| 3112 | |
| 3113 | /* Without this check, even just <enter> on command line generates |
| 3114 | * tree of three NOPs (!). Which is harmless but annoying. |
| 3115 | * IOW: it is safe to do it unconditionally. |
| 3116 | * RES_NONE case is for "for a in; do ..." (empty IN set) |
| 3117 | * to work, possibly other cases too. */ |
| 3118 | if (not_null IF_HAS_KEYWORDS(|| ctx->ctx_res_w != RES_NONE)) { |
| 3119 | struct pipe *new_p; |
| 3120 | debug_printf_parse("done_pipe: adding new pipe: " |
| 3121 | "not_null:%d ctx->ctx_res_w:%d\n", |
| 3122 | not_null, ctx->ctx_res_w); |
| 3123 | new_p = new_pipe(); |
| 3124 | ctx->pipe->next = new_p; |
| 3125 | ctx->pipe = new_p; |
| 3126 | ctx->command = NULL; /* needed! */ |
| 3127 | /* RES_THEN, RES_DO etc are "sticky" - |
| 3128 | * they remain set for commands inside if/while. |
| 3129 | * This is used to control execution. |
| 3130 | * RES_FOR and RES_IN are NOT sticky (needed to support |
| 3131 | * cases where variable or value happens to match a keyword): |
| 3132 | */ |
| 3133 | #if ENABLE_HUSH_LOOPS |
| 3134 | if (ctx->ctx_res_w == RES_FOR |
| 3135 | || ctx->ctx_res_w == RES_IN) |
| 3136 | ctx->ctx_res_w = RES_NONE; |
| 3137 | #endif |
| 3138 | #if ENABLE_HUSH_CASE |
| 3139 | if (ctx->ctx_res_w == RES_MATCH) |
| 3140 | ctx->ctx_res_w = RES_CASEI; |
| 3141 | #endif |
| 3142 | /* Create the memory for command, roughly: |
| 3143 | * ctx->pipe->cmds = new struct command; |
| 3144 | * ctx->command = &ctx->pipe->cmds[0]; |
| 3145 | */ |
| 3146 | done_command(ctx); |
| 3147 | } |
| 3148 | debug_printf_parse("done_pipe return\n"); |
| 3149 | } |
| 3150 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3151 | static void initialize_context(struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3152 | { |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3153 | memset(ctx, 0, sizeof(*ctx)); |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3154 | ctx->pipe = ctx->list_head = new_pipe(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3155 | /* Create the memory for command, roughly: |
| 3156 | * ctx->pipe->cmds = new struct command; |
| 3157 | * ctx->command = &ctx->pipe->cmds[0]; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3158 | */ |
| 3159 | done_command(ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3160 | } |
| 3161 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3162 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3163 | /* If a reserved word is found and processed, parse context is modified |
| 3164 | * and 1 is returned. |
| 3165 | * Handles if, then, elif, else, fi, for, while, until, do, done. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3166 | * case, function, and select are obnoxious, save those for later. |
| 3167 | */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3168 | #if HAS_KEYWORDS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3169 | struct reserved_combo { |
| 3170 | char literal[6]; |
| 3171 | unsigned char res; |
| 3172 | unsigned char assignment_flag; |
| 3173 | int flag; |
| 3174 | }; |
| 3175 | enum { |
| 3176 | FLAG_END = (1 << RES_NONE ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3177 | #if ENABLE_HUSH_IF |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3178 | FLAG_IF = (1 << RES_IF ), |
| 3179 | FLAG_THEN = (1 << RES_THEN ), |
| 3180 | FLAG_ELIF = (1 << RES_ELIF ), |
| 3181 | FLAG_ELSE = (1 << RES_ELSE ), |
| 3182 | FLAG_FI = (1 << RES_FI ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3183 | #endif |
| 3184 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3185 | FLAG_FOR = (1 << RES_FOR ), |
| 3186 | FLAG_WHILE = (1 << RES_WHILE), |
| 3187 | FLAG_UNTIL = (1 << RES_UNTIL), |
| 3188 | FLAG_DO = (1 << RES_DO ), |
| 3189 | FLAG_DONE = (1 << RES_DONE ), |
| 3190 | FLAG_IN = (1 << RES_IN ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3191 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3192 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3193 | FLAG_MATCH = (1 << RES_MATCH), |
| 3194 | FLAG_ESAC = (1 << RES_ESAC ), |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3195 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3196 | FLAG_START = (1 << RES_XXXX ), |
| 3197 | }; |
| 3198 | |
| 3199 | static const struct reserved_combo* match_reserved_word(o_string *word) |
| 3200 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3201 | /* Mostly a list of accepted follow-up reserved words. |
| 3202 | * FLAG_END means we are done with the sequence, and are ready |
| 3203 | * to turn the compound list into a command. |
| 3204 | * FLAG_START means the word must start a new compound list. |
| 3205 | */ |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3206 | static const struct reserved_combo reserved_list[] = { |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3207 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3208 | { "!", RES_NONE, NOT_ASSIGNMENT , 0 }, |
| 3209 | { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START }, |
| 3210 | { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI }, |
| 3211 | { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN }, |
| 3212 | { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI }, |
| 3213 | { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3214 | #endif |
| 3215 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3216 | { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START }, |
| 3217 | { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START }, |
| 3218 | { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START }, |
| 3219 | { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO }, |
| 3220 | { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE }, |
| 3221 | { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3222 | #endif |
| 3223 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3224 | { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START }, |
| 3225 | { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3226 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3227 | }; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3228 | const struct reserved_combo *r; |
| 3229 | |
| 3230 | for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) { |
| 3231 | if (strcmp(word->data, r->literal) == 0) |
| 3232 | return r; |
| 3233 | } |
| 3234 | return NULL; |
| 3235 | } |
| 3236 | static int reserved_word(o_string *word, struct parse_context *ctx) |
| 3237 | { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3238 | #if ENABLE_HUSH_CASE |
| 3239 | static const struct reserved_combo reserved_match = { |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3240 | "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3241 | }; |
| 3242 | #endif |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3243 | const struct reserved_combo *r; |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3244 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3245 | r = match_reserved_word(word); |
| 3246 | if (!r) |
| 3247 | return 0; |
| 3248 | |
| 3249 | debug_printf("found reserved word %s, res %d\n", r->literal, r->res); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3250 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3251 | if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE) |
| 3252 | /* "case word IN ..." - IN part starts first match part */ |
| 3253 | r = &reserved_match; |
| 3254 | else |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3255 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3256 | if (r->flag == 0) { /* '!' */ |
| 3257 | if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */ |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 3258 | syntax(NULL); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3259 | IF_HAS_KEYWORDS(ctx->ctx_res_w = RES_SNTX;) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3260 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3261 | ctx->ctx_inverted = 1; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3262 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3263 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3264 | if (r->flag & FLAG_START) { |
| 3265 | struct parse_context *new; |
| 3266 | debug_printf("push stack\n"); |
| 3267 | new = xmalloc(sizeof(*new)); |
| 3268 | *new = *ctx; /* physical copy */ |
| 3269 | initialize_context(ctx); |
| 3270 | ctx->stack = new; |
| 3271 | } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) { |
| 3272 | syntax(NULL); |
| 3273 | ctx->ctx_res_w = RES_SNTX; |
| 3274 | return 1; |
| 3275 | } |
| 3276 | ctx->ctx_res_w = r->res; |
| 3277 | ctx->old_flag = r->flag; |
| 3278 | if (ctx->old_flag & FLAG_END) { |
| 3279 | struct parse_context *old; |
| 3280 | debug_printf("pop stack\n"); |
| 3281 | done_pipe(ctx, PIPE_SEQ); |
| 3282 | old = ctx->stack; |
| 3283 | old->command->group = ctx->list_head; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3284 | old->command->grp_type = GRP_NORMAL; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3285 | *ctx = *old; /* physical copy */ |
| 3286 | free(old); |
| 3287 | } |
| 3288 | word->o_assignment = r->assignment_flag; |
| 3289 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3290 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3291 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3292 | |
Denis Vlasenko | ddc8ae3 | 2008-10-14 12:50:34 +0000 | [diff] [blame] | 3293 | //TODO: many, many callers don't check error from done_word() |
| 3294 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3295 | /* Word is complete, look at it and update parsing context. |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3296 | * Normal return is 0. Syntax errors return 1. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3297 | static int done_word(o_string *word, struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3298 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3299 | struct command *command = ctx->command; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3300 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3301 | debug_printf_parse("done_word entered: '%s' %p\n", word->data, command); |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3302 | if (word->length == 0 && word->nonnull == 0) { |
| 3303 | debug_printf_parse("done_word return 0: true null, ignored\n"); |
| 3304 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3305 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3306 | /* If this word wasn't an assignment, next ones definitely |
| 3307 | * can't be assignments. Even if they look like ones. */ |
| 3308 | if (word->o_assignment != DEFINITELY_ASSIGNMENT |
| 3309 | && word->o_assignment != WORD_IS_KEYWORD |
| 3310 | ) { |
| 3311 | word->o_assignment = NOT_ASSIGNMENT; |
| 3312 | } else { |
| 3313 | if (word->o_assignment == DEFINITELY_ASSIGNMENT) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3314 | command->assignment_cnt++; |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3315 | word->o_assignment = MAYBE_ASSIGNMENT; |
| 3316 | } |
| 3317 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3318 | if (ctx->pending_redirect) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3319 | /* We do not glob in e.g. >*.tmp case. bash seems to glob here |
| 3320 | * only if run as "bash", not "sh" */ |
| 3321 | ctx->pending_redirect->rd_filename = xstrdup(word->data); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3322 | word->o_assignment = NOT_ASSIGNMENT; |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3323 | debug_printf("word stored in rd_filename: '%s'\n", word->data); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3324 | } else { |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 3325 | /* "{ echo foo; } echo bar" - bad */ |
| 3326 | /* NB: bash allows e.g. "if true; then { echo foo; } fi". TODO? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3327 | if (command->group) { |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 3328 | syntax(NULL); |
| 3329 | debug_printf_parse("done_word return 1: syntax error, groups and arglists don't mix\n"); |
| 3330 | return 1; |
| 3331 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3332 | #if HAS_KEYWORDS |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3333 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | 757361f | 2008-07-14 08:26:47 +0000 | [diff] [blame] | 3334 | if (ctx->ctx_dsemicolon |
| 3335 | && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */ |
| 3336 | ) { |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 3337 | /* already done when ctx_dsemicolon was set to 1: */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3338 | /* ctx->ctx_res_w = RES_MATCH; */ |
| 3339 | ctx->ctx_dsemicolon = 0; |
| 3340 | } else |
| 3341 | #endif |
| 3342 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3343 | if (!command->argv /* if it's the first word... */ |
Denis Vlasenko | 6bdff08 | 2008-07-09 20:14:53 +0000 | [diff] [blame] | 3344 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3345 | && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */ |
| 3346 | && ctx->ctx_res_w != RES_IN |
Denis Vlasenko | 6bdff08 | 2008-07-09 20:14:53 +0000 | [diff] [blame] | 3347 | #endif |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3348 | ) { |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3349 | debug_printf_parse(": checking '%s' for reserved-ness\n", word->data); |
| 3350 | if (reserved_word(word, ctx)) { |
| 3351 | o_reset(word); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3352 | debug_printf_parse("done_word return %d\n", (ctx->ctx_res_w == RES_SNTX)); |
| 3353 | return (ctx->ctx_res_w == RES_SNTX); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3354 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3355 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3356 | #endif |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3357 | if (word->nonnull /* word had "xx" or 'xx' at least as part of it. */ |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3358 | /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */ |
| 3359 | && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL) |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3360 | /* (otherwise it's known to be not empty and is already safe) */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3361 | ) { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3362 | /* exclude "$@" - it can expand to no word despite "" */ |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 3363 | char *p = word->data; |
| 3364 | while (p[0] == SPECIAL_VAR_SYMBOL |
| 3365 | && (p[1] & 0x7f) == '@' |
| 3366 | && p[2] == SPECIAL_VAR_SYMBOL |
| 3367 | ) { |
| 3368 | p += 3; |
| 3369 | } |
| 3370 | if (p == word->data || p[0] != '\0') { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3371 | /* saw no "$@", or not only "$@" but some |
| 3372 | * real text is there too */ |
| 3373 | /* insert "empty variable" reference, this makes |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 3374 | * e.g. "", $empty"" etc to not disappear */ |
| 3375 | o_addchr(word, SPECIAL_VAR_SYMBOL); |
| 3376 | o_addchr(word, SPECIAL_VAR_SYMBOL); |
| 3377 | } |
Denis Vlasenko | c1c63b6 | 2008-06-18 09:20:35 +0000 | [diff] [blame] | 3378 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3379 | command->argv = add_string_to_strings(command->argv, xstrdup(word->data)); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3380 | debug_print_strings("word appended to argv", command->argv); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3381 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3382 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3383 | o_reset(word); |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3384 | ctx->pending_redirect = NULL; |
| 3385 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3386 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3387 | /* Force FOR to have just one word (variable name) */ |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3388 | /* NB: basically, this makes hush see "for v in ..." syntax as if |
| 3389 | * as it is "for v; in ...". FOR and IN become two pipe structs |
| 3390 | * in parse tree. */ |
| 3391 | if (ctx->ctx_res_w == RES_FOR) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3392 | //TODO: check that command->argv[0] is a valid variable name! |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 3393 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3394 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3395 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3396 | #if ENABLE_HUSH_CASE |
| 3397 | /* Force CASE to have just one word */ |
| 3398 | if (ctx->ctx_res_w == RES_CASE) { |
| 3399 | done_pipe(ctx, PIPE_SEQ); |
| 3400 | } |
| 3401 | #endif |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3402 | debug_printf_parse("done_word return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3403 | return 0; |
| 3404 | } |
| 3405 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3406 | /* If a redirect is immediately preceded by a number, that number is |
| 3407 | * supposed to tell which file descriptor to redirect. This routine |
| 3408 | * looks for such preceding numbers. In an ideal world this routine |
| 3409 | * needs to handle all the following classes of redirects... |
| 3410 | * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo |
| 3411 | * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo |
| 3412 | * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo |
| 3413 | * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo |
| 3414 | * A -1 output from this program means no valid number was found, so the |
| 3415 | * caller should use the appropriate default for this redirection. |
| 3416 | */ |
| 3417 | static int redirect_opt_num(o_string *o) |
| 3418 | { |
| 3419 | int num; |
| 3420 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3421 | if (o->length == 0) |
| 3422 | return -1; |
| 3423 | for (num = 0; num < o->length; num++) { |
Denis Vlasenko | c1c63b6 | 2008-06-18 09:20:35 +0000 | [diff] [blame] | 3424 | if (!isdigit(o->data[num])) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3425 | return -1; |
| 3426 | } |
| 3427 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3428 | num = atoi(o->data); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3429 | o_reset(o); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3430 | return num; |
| 3431 | } |
| 3432 | |
Mike Frysinger | ddbee97 | 2009-03-22 22:48:41 +0000 | [diff] [blame] | 3433 | static int parse_stream(o_string *dest, struct parse_context *ctx, |
| 3434 | struct in_str *input0, const char *end_trigger); |
| 3435 | |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 3436 | #if ENABLE_HUSH_TICK |
"Vladimir N. Oleynik" | 19c3701 | 2005-09-22 14:33:15 +0000 | [diff] [blame] | 3437 | static FILE *generate_stream_from_list(struct pipe *head) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3438 | { |
| 3439 | FILE *pf; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3440 | int pid, channel[2]; |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 3441 | |
Denis Vlasenko | 5a6aedd | 2007-05-26 16:44:20 +0000 | [diff] [blame] | 3442 | xpipe(channel); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3443 | /* *** NOMMU WARNING *** */ |
| 3444 | /* By using vfork here, we suspend parent till child exits or execs. |
| 3445 | * If child will not do it before it fills the pipe, it can block forever |
| 3446 | * in write(STDOUT_FILENO), and parent (shell) will be also stuck. |
Denis Vlasenko | 3fe4f98 | 2008-06-09 16:02:39 +0000 | [diff] [blame] | 3447 | * Try this script: |
| 3448 | * yes "0123456789012345678901234567890" | dd bs=32 count=64k >TESTFILE |
| 3449 | * huge=`cat TESTFILE` # will block here forever |
| 3450 | * echo OK |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3451 | */ |
Denis Vlasenko | 82604e9 | 2008-07-01 15:59:42 +0000 | [diff] [blame] | 3452 | pid = BB_MMU ? fork() : vfork(); |
| 3453 | if (pid < 0) |
| 3454 | bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork"); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3455 | if (pid == 0) { /* child */ |
Denis Vlasenko | 8317799 | 2008-02-11 08:44:36 +0000 | [diff] [blame] | 3456 | if (ENABLE_HUSH_JOB) |
| 3457 | die_sleep = 0; /* let nofork's xfuncs die */ |
Denis Vlasenko | 284d0fa | 2008-02-16 13:18:17 +0000 | [diff] [blame] | 3458 | close(channel[0]); /* NB: close _first_, then move fd! */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3459 | xmove_fd(channel[1], 1); |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 3460 | /* Prevent it from trying to handle ctrl-z etc */ |
Denis Vlasenko | 27f79ff | 2007-05-30 00:55:52 +0000 | [diff] [blame] | 3461 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3462 | G.run_list_level = 1; |
Denis Vlasenko | 27f79ff | 2007-05-30 00:55:52 +0000 | [diff] [blame] | 3463 | #endif |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 3464 | /* Process substitution is not considered to be usual |
| 3465 | * 'command execution'. |
| 3466 | * SUSv3 says ctrl-Z should be ignored, ctrl-C should not. */ |
| 3467 | /* Not needed, we are relying on it being disabled |
| 3468 | * everywhere outside actual command execution. */ |
| 3469 | /*set_jobctrl_sighandler(SIG_IGN);*/ |
| 3470 | set_misc_sighandler(SIG_DFL); |
Denis Vlasenko | c04163a | 2008-02-11 08:30:53 +0000 | [diff] [blame] | 3471 | /* Freeing 'head' here would break NOMMU. */ |
| 3472 | _exit(run_list(head)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3473 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3474 | close(channel[1]); |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 3475 | pf = fdopen(channel[0], "r"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3476 | return pf; |
Denis Vlasenko | c04163a | 2008-02-11 08:30:53 +0000 | [diff] [blame] | 3477 | /* 'head' is freed by the caller */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3478 | } |
| 3479 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3480 | /* Return code is exit status of the process that is run. */ |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 3481 | static int process_command_subs(o_string *dest, |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 3482 | struct in_str *input, |
| 3483 | const char *subst_end) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3484 | { |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 3485 | int retcode, ch, eol_cnt; |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3486 | o_string result = NULL_O_STRING; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3487 | struct parse_context inner; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3488 | FILE *p; |
| 3489 | struct in_str pipe_str; |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 3490 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3491 | initialize_context(&inner); |
| 3492 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3493 | /* Recursion to generate command */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3494 | retcode = parse_stream(&result, &inner, input, subst_end); |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3495 | if (retcode != 0) |
| 3496 | return retcode; /* syntax error or EOF */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3497 | done_word(&result, &inner); |
| 3498 | done_pipe(&inner, PIPE_SEQ); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3499 | o_free(&result); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3500 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3501 | p = generate_stream_from_list(inner.list_head); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3502 | if (p == NULL) |
| 3503 | return 1; |
Denis Vlasenko | a089817 | 2007-10-01 09:59:01 +0000 | [diff] [blame] | 3504 | close_on_exec_on(fileno(p)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3505 | setup_file_in_str(&pipe_str, p); |
| 3506 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3507 | /* Now send results of command back into original context */ |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 3508 | eol_cnt = 0; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3509 | while ((ch = i_getch(&pipe_str)) != EOF) { |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 3510 | if (ch == '\n') { |
| 3511 | eol_cnt++; |
| 3512 | continue; |
| 3513 | } |
| 3514 | while (eol_cnt) { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3515 | o_addchr(dest, '\n'); |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 3516 | eol_cnt--; |
| 3517 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 3518 | o_addQchr(dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3519 | } |
| 3520 | |
| 3521 | debug_printf("done reading from pipe, pclose()ing\n"); |
| 3522 | /* This is the step that wait()s for the child. Should be pretty |
| 3523 | * safe, since we just read an EOF from its stdout. We could try |
Denis Vlasenko | 262d765 | 2007-05-20 21:52:49 +0000 | [diff] [blame] | 3524 | * to do better, by using wait(), and keeping track of background jobs |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3525 | * at the same time. That would be a lot of work, and contrary |
| 3526 | * to the KISS philosophy of this program. */ |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 3527 | retcode = fclose(p); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3528 | free_pipe_list(inner.list_head, /* indent: */ 0); |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 3529 | debug_printf("closed FILE from child, retcode=%d\n", retcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3530 | return retcode; |
| 3531 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 3532 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3533 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3534 | static int parse_group(o_string *dest, struct parse_context *ctx, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3535 | struct in_str *input, int ch) |
| 3536 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3537 | /* dest contains characters seen prior to ( or {. |
| 3538 | * Typically it's empty, but for functions defs, |
| 3539 | * it contains function name (without '()'). */ |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3540 | int rcode; |
| 3541 | const char *endch = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3542 | struct parse_context sub; |
| 3543 | struct command *command = ctx->command; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3544 | |
| 3545 | debug_printf_parse("parse_group entered\n"); |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3546 | #if ENABLE_HUSH_FUNCTIONS |
| 3547 | if (ch == 'F') { /* function definition? */ |
| 3548 | bb_error_msg("aha '%s' is a function, parsing it...", dest->data); |
| 3549 | //command->fname = dest->data; |
| 3550 | command->grp_type = GRP_FUNCTION; |
| 3551 | //TODO: review every o_reset() location... do they handle all o_string fields correctly? |
| 3552 | memset(dest, 0, sizeof(*dest)); |
| 3553 | } |
| 3554 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3555 | if (command->argv /* word [word](... */ |
| 3556 | || dest->length /* word(... */ |
| 3557 | || dest->nonnull /* ""(... */ |
| 3558 | ) { |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 3559 | syntax(NULL); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3560 | debug_printf_parse("parse_group return 1: syntax error, groups and arglists don't mix\n"); |
| 3561 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3562 | } |
| 3563 | initialize_context(&sub); |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 3564 | endch = "}"; |
| 3565 | if (ch == '(') { |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3566 | endch = ")"; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3567 | command->grp_type = GRP_SUBSHELL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3568 | } |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 3569 | rcode = parse_stream(dest, &sub, input, endch); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 3570 | if (rcode == 0) { |
| 3571 | done_word(dest, &sub); /* finish off the final word in the subcontext */ |
| 3572 | done_pipe(&sub, PIPE_SEQ); /* and the final command there, too */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3573 | command->group = sub.list_head; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 3574 | } |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3575 | debug_printf_parse("parse_group return %d\n", rcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3576 | return rcode; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3577 | /* command remains "open", available for possible redirects */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3578 | } |
| 3579 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3580 | #if ENABLE_HUSH_TICK |
| 3581 | /* Subroutines for copying $(...) and `...` things */ |
| 3582 | static void add_till_backquote(o_string *dest, struct in_str *input); |
| 3583 | /* '...' */ |
| 3584 | static void add_till_single_quote(o_string *dest, struct in_str *input) |
| 3585 | { |
| 3586 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3587 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3588 | if (ch == EOF) |
| 3589 | break; |
| 3590 | if (ch == '\'') |
| 3591 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3592 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3593 | } |
| 3594 | } |
| 3595 | /* "...\"...`..`...." - do we need to handle "...$(..)..." too? */ |
| 3596 | static void add_till_double_quote(o_string *dest, struct in_str *input) |
| 3597 | { |
| 3598 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3599 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3600 | if (ch == '"') |
| 3601 | break; |
| 3602 | if (ch == '\\') { /* \x. Copy both chars. */ |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3603 | o_addchr(dest, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3604 | ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3605 | } |
| 3606 | if (ch == EOF) |
| 3607 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3608 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3609 | if (ch == '`') { |
| 3610 | add_till_backquote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3611 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3612 | continue; |
| 3613 | } |
Denis Vlasenko | 5703c22 | 2008-06-15 11:49:42 +0000 | [diff] [blame] | 3614 | //if (ch == '$') ... |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3615 | } |
| 3616 | } |
| 3617 | /* Process `cmd` - copy contents until "`" is seen. Complicated by |
| 3618 | * \` quoting. |
| 3619 | * "Within the backquoted style of command substitution, backslash |
| 3620 | * shall retain its literal meaning, except when followed by: '$', '`', or '\'. |
| 3621 | * The search for the matching backquote shall be satisfied by the first |
| 3622 | * backquote found without a preceding backslash; during this search, |
| 3623 | * if a non-escaped backquote is encountered within a shell comment, |
| 3624 | * a here-document, an embedded command substitution of the $(command) |
| 3625 | * form, or a quoted string, undefined results occur. A single-quoted |
| 3626 | * or double-quoted string that begins, but does not end, within the |
| 3627 | * "`...`" sequence produces undefined results." |
| 3628 | * Example Output |
| 3629 | * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST |
| 3630 | */ |
| 3631 | static void add_till_backquote(o_string *dest, struct in_str *input) |
| 3632 | { |
| 3633 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3634 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3635 | if (ch == '`') |
| 3636 | break; |
| 3637 | if (ch == '\\') { /* \x. Copy both chars unless it is \` */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3638 | int ch2 = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3639 | if (ch2 != '`' && ch2 != '$' && ch2 != '\\') |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3640 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3641 | ch = ch2; |
| 3642 | } |
| 3643 | if (ch == EOF) |
| 3644 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3645 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3646 | } |
| 3647 | } |
| 3648 | /* Process $(cmd) - copy contents until ")" is seen. Complicated by |
| 3649 | * quoting and nested ()s. |
| 3650 | * "With the $(command) style of command substitution, all characters |
| 3651 | * following the open parenthesis to the matching closing parenthesis |
| 3652 | * constitute the command. Any valid shell script can be used for command, |
| 3653 | * except a script consisting solely of redirections which produces |
| 3654 | * unspecified results." |
| 3655 | * Example Output |
| 3656 | * echo $(echo '(TEST)' BEST) (TEST) BEST |
| 3657 | * echo $(echo 'TEST)' BEST) TEST) BEST |
| 3658 | * echo $(echo \(\(TEST\) BEST) ((TEST) BEST |
| 3659 | */ |
| 3660 | static void add_till_closing_curly_brace(o_string *dest, struct in_str *input) |
| 3661 | { |
| 3662 | int count = 0; |
| 3663 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3664 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3665 | if (ch == EOF) |
| 3666 | break; |
| 3667 | if (ch == '(') |
| 3668 | count++; |
| 3669 | if (ch == ')') |
| 3670 | if (--count < 0) |
| 3671 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3672 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3673 | if (ch == '\'') { |
| 3674 | add_till_single_quote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3675 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3676 | continue; |
| 3677 | } |
| 3678 | if (ch == '"') { |
| 3679 | add_till_double_quote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3680 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3681 | continue; |
| 3682 | } |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 3683 | if (ch == '\\') { /* \x. Copy verbatim. Important for \(, \) */ |
| 3684 | ch = i_getch(input); |
| 3685 | if (ch == EOF) |
| 3686 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3687 | o_addchr(dest, ch); |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 3688 | continue; |
| 3689 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3690 | } |
| 3691 | } |
| 3692 | #endif /* ENABLE_HUSH_TICK */ |
| 3693 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3694 | /* Return code: 0 for OK, 1 for syntax error */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3695 | static int handle_dollar(o_string *dest, struct in_str *input) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3696 | { |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 3697 | int expansion; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3698 | int ch = i_peek(input); /* first character after the $ */ |
Denis Vlasenko | ff09762 | 2007-10-01 10:00:45 +0000 | [diff] [blame] | 3699 | unsigned char quote_mask = dest->o_quote ? 0x80 : 0; |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 3700 | |
| 3701 | debug_printf_parse("handle_dollar entered: ch='%c'\n", ch); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 3702 | if (isalpha(ch)) { |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 3703 | i_getch(input); |
| 3704 | make_var: |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3705 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 3706 | while (1) { |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 3707 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3708 | o_addchr(dest, ch | quote_mask); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 3709 | quote_mask = 0; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3710 | ch = i_peek(input); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 3711 | if (!isalnum(ch) && ch != '_') |
| 3712 | break; |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 3713 | i_getch(input); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3714 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3715 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3716 | } else if (isdigit(ch)) { |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 3717 | make_one_char_var: |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 3718 | i_getch(input); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3719 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 3720 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3721 | o_addchr(dest, ch | quote_mask); |
| 3722 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3723 | } else switch (ch) { |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 3724 | case '$': /* pid */ |
| 3725 | case '!': /* last bg pid */ |
| 3726 | case '?': /* last exit code */ |
| 3727 | case '#': /* number of args */ |
| 3728 | case '*': /* args */ |
| 3729 | case '@': /* args */ |
| 3730 | goto make_one_char_var; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 3731 | case '{': { |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 3732 | bool first_char, all_digits; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 3733 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3734 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 3735 | i_getch(input); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3736 | /* XXX maybe someone will try to escape the '}' */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 3737 | expansion = 0; |
| 3738 | first_char = true; |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 3739 | all_digits = false; |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3740 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3741 | ch = i_getch(input); |
Denis Vlasenko | b055001 | 2007-05-24 12:18:16 +0000 | [diff] [blame] | 3742 | if (ch == '}') |
| 3743 | break; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 3744 | |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 3745 | if (first_char) { |
| 3746 | if (ch == '#') |
| 3747 | /* ${#var}: length of var contents */ |
| 3748 | goto char_ok; |
| 3749 | else if (isdigit(ch)) { |
| 3750 | all_digits = true; |
| 3751 | goto char_ok; |
| 3752 | } |
| 3753 | } |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 3754 | |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 3755 | if (expansion < 2 && |
| 3756 | ((all_digits && !isdigit(ch)) || |
| 3757 | (!all_digits && !isalnum(ch) && ch != '_'))) |
| 3758 | { |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 3759 | /* handle parameter expansions |
| 3760 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02 |
| 3761 | */ |
| 3762 | if (first_char) |
| 3763 | goto case_default; |
| 3764 | switch (ch) { |
| 3765 | case ':': /* null modifier */ |
| 3766 | if (expansion == 0) { |
| 3767 | debug_printf_parse(": null modifier\n"); |
| 3768 | ++expansion; |
| 3769 | break; |
| 3770 | } |
| 3771 | goto case_default; |
| 3772 | |
| 3773 | #if 0 /* not implemented yet :( */ |
| 3774 | case '#': /* remove prefix */ |
| 3775 | case '%': /* remove suffix */ |
| 3776 | if (expansion == 0) { |
| 3777 | debug_printf_parse(": remove suffix/prefix\n"); |
| 3778 | expansion = 2; |
| 3779 | break; |
| 3780 | } |
| 3781 | goto case_default; |
| 3782 | #endif |
| 3783 | |
| 3784 | case '-': /* default value */ |
| 3785 | case '=': /* assign default */ |
| 3786 | case '+': /* alternative */ |
| 3787 | case '?': /* error indicate */ |
| 3788 | debug_printf_parse(": parameter expansion\n"); |
| 3789 | expansion = 2; |
| 3790 | break; |
| 3791 | |
| 3792 | default: |
| 3793 | case_default: |
| 3794 | syntax("unterminated ${name}"); |
| 3795 | debug_printf_parse("handle_dollar return 1: unterminated ${name}\n"); |
| 3796 | return 1; |
| 3797 | } |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 3798 | } |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 3799 | |
| 3800 | char_ok: |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 3801 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3802 | o_addchr(dest, ch | quote_mask); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 3803 | quote_mask = 0; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 3804 | first_char = false; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3805 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3806 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3807 | break; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 3808 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 3809 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 3810 | case '(': { |
| 3811 | //int pos = dest->length; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3812 | i_getch(input); |
| 3813 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 3814 | o_addchr(dest, quote_mask | '`'); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3815 | add_till_closing_curly_brace(dest, input); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 3816 | //debug_printf_subst("SUBST RES2 '%s'\n", dest->data + pos); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3817 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3818 | break; |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 3819 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 3820 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3821 | case '_': |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 3822 | i_getch(input); |
| 3823 | ch = i_peek(input); |
| 3824 | if (isalnum(ch)) { /* it's $_name or $_123 */ |
| 3825 | ch = '_'; |
| 3826 | goto make_var; |
| 3827 | } |
| 3828 | /* else: it's $_ */ |
| 3829 | case '-': |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3830 | /* still unhandled, but should be eventually */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 3831 | bb_error_msg("unhandled syntax: $%c", ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3832 | return 1; |
| 3833 | break; |
| 3834 | default: |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 3835 | o_addQchr(dest, '$'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3836 | } |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 3837 | debug_printf_parse("handle_dollar return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3838 | return 0; |
| 3839 | } |
| 3840 | |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3841 | /* Scan input, call done_word() whenever full IFS delimited word was seen. |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3842 | * Call done_pipe if '\n' was seen (and end_trigger != NULL). |
| 3843 | * Return code is 0 if end_trigger char is met, |
| 3844 | * -1 on EOF (but if end_trigger == NULL then return 0), |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3845 | * 1 for syntax error */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3846 | static int parse_stream(o_string *dest, struct parse_context *ctx, |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3847 | struct in_str *input, const char *end_trigger) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3848 | { |
"Vladimir N. Oleynik" | 4ccd2b4 | 2006-01-31 09:27:48 +0000 | [diff] [blame] | 3849 | int ch, m; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3850 | int redir_fd; |
| 3851 | redir_type redir_style; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3852 | int shadow_quote = dest->o_quote; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3853 | int next; |
| 3854 | |
Denis Vlasenko | ff09762 | 2007-10-01 10:00:45 +0000 | [diff] [blame] | 3855 | /* Only double-quote state is handled in the state variable dest->o_quote. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3856 | * A single-quote triggers a bypass of the main loop until its mate is |
Denis Vlasenko | ff09762 | 2007-10-01 10:00:45 +0000 | [diff] [blame] | 3857 | * found. When recursing, quote state is passed in via dest->o_quote. */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3858 | |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3859 | debug_printf_parse("parse_stream entered, end_trigger='%s' dest->o_assignment:%d\n", end_trigger, dest->o_assignment); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3860 | |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3861 | while (1) { |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3862 | m = CHAR_IFS; |
| 3863 | next = '\0'; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3864 | ch = i_getch(input); |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3865 | if (ch != EOF) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3866 | m = G.charmap[ch]; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3867 | if (ch != '\n') { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3868 | next = i_peek(input); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3869 | } |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3870 | } |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3871 | debug_printf_parse(": ch=%c (%d) m=%d quote=%d\n", |
Denis Vlasenko | ff09762 | 2007-10-01 10:00:45 +0000 | [diff] [blame] | 3872 | ch, ch, m, dest->o_quote); |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 3873 | if (m == CHAR_ORDINARY |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3874 | || (m != CHAR_SPECIAL && shadow_quote) |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3875 | ) { |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 3876 | if (ch == EOF) { |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 3877 | syntax("unterminated \""); |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 3878 | debug_printf_parse("parse_stream return 1: unterminated \"\n"); |
| 3879 | return 1; |
| 3880 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 3881 | o_addQchr(dest, ch); |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3882 | if ((dest->o_assignment == MAYBE_ASSIGNMENT |
| 3883 | || dest->o_assignment == WORD_IS_KEYWORD) |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3884 | && ch == '=' |
| 3885 | && is_assignment(dest->data) |
| 3886 | ) { |
| 3887 | dest->o_assignment = DEFINITELY_ASSIGNMENT; |
| 3888 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3889 | continue; |
| 3890 | } |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 3891 | if (m == CHAR_IFS) { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3892 | if (done_word(dest, ctx)) { |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 3893 | debug_printf_parse("parse_stream return 1: done_word!=0\n"); |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3894 | return 1; |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 3895 | } |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3896 | if (ch == EOF) |
| 3897 | break; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3898 | /* If we aren't performing a substitution, treat |
| 3899 | * a newline as a command separator. |
| 3900 | * [why we don't handle it exactly like ';'? --vda] */ |
| 3901 | if (end_trigger && ch == '\n') { |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 3902 | #if ENABLE_HUSH_CASE |
| 3903 | /* "case ... in <newline> word) ..." - |
| 3904 | * newlines are ignored (but ';' wouldn't be) */ |
| 3905 | if (dest->length == 0 // && argv[0] == NULL |
| 3906 | && ctx->ctx_res_w == RES_MATCH |
| 3907 | ) { |
| 3908 | continue; |
| 3909 | } |
| 3910 | #endif |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 3911 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3912 | dest->o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3913 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3914 | } |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 3915 | if (end_trigger) { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3916 | if (!shadow_quote && strchr(end_trigger, ch)) { |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 3917 | /* Special case: (...word) makes last word terminate, |
| 3918 | * as if ';' is seen */ |
| 3919 | if (ch == ')') { |
| 3920 | done_word(dest, ctx); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3921 | //err chk? |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 3922 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3923 | dest->o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 3924 | } |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3925 | if (!HAS_KEYWORDS |
| 3926 | IF_HAS_KEYWORDS(|| (ctx->ctx_res_w == RES_NONE && ctx->old_flag == 0)) |
| 3927 | ) { |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 3928 | debug_printf_parse("parse_stream return 0: end_trigger char found\n"); |
| 3929 | return 0; |
| 3930 | } |
| 3931 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3932 | } |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 3933 | if (m == CHAR_IFS) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3934 | continue; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3935 | |
| 3936 | if (dest->o_assignment == MAYBE_ASSIGNMENT) { |
| 3937 | /* ch is a special char and thus this word |
| 3938 | * cannot be an assignment: */ |
| 3939 | dest->o_assignment = NOT_ASSIGNMENT; |
| 3940 | } |
| 3941 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3942 | switch (ch) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3943 | case '#': |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3944 | if (dest->length == 0 && !shadow_quote) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3945 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3946 | ch = i_peek(input); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3947 | if (ch == EOF || ch == '\n') |
| 3948 | break; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3949 | i_getch(input); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3950 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3951 | } else { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 3952 | o_addQchr(dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3953 | } |
| 3954 | break; |
| 3955 | case '\\': |
| 3956 | if (next == EOF) { |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 3957 | syntax("\\<eof>"); |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 3958 | debug_printf_parse("parse_stream return 1: \\<eof>\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3959 | return 1; |
| 3960 | } |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 3961 | /* bash: |
| 3962 | * "The backslash retains its special meaning [in "..."] |
| 3963 | * only when followed by one of the following characters: |
| 3964 | * $, `, ", \, or <newline>. A double quote may be quoted |
| 3965 | * within double quotes by preceding it with a backslash. |
| 3966 | * If enabled, history expansion will be performed unless |
| 3967 | * an ! appearing in double quotes is escaped using |
| 3968 | * a backslash. The backslash preceding the ! is not removed." |
| 3969 | */ |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3970 | if (shadow_quote) { //NOT SURE dest->o_quote) { |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 3971 | if (strchr("$`\"\\", next) != NULL) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 3972 | o_addqchr(dest, i_getch(input)); |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 3973 | } else { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 3974 | o_addqchr(dest, '\\'); |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 3975 | } |
| 3976 | } else { |
| 3977 | o_addchr(dest, '\\'); |
| 3978 | o_addchr(dest, i_getch(input)); |
| 3979 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3980 | break; |
| 3981 | case '$': |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3982 | if (handle_dollar(dest, input) != 0) { |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3983 | debug_printf_parse("parse_stream return 1: handle_dollar returned non-0\n"); |
| 3984 | return 1; |
| 3985 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3986 | break; |
| 3987 | case '\'': |
| 3988 | dest->nonnull = 1; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3989 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3990 | ch = i_getch(input); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 3991 | if (ch == EOF) { |
| 3992 | syntax("unterminated '"); |
| 3993 | debug_printf_parse("parse_stream return 1: unterminated '\n"); |
| 3994 | return 1; |
| 3995 | } |
| 3996 | if (ch == '\'') |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3997 | break; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3998 | if (dest->o_assignment == NOT_ASSIGNMENT) |
| 3999 | o_addqchr(dest, ch); |
| 4000 | else |
| 4001 | o_addchr(dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4002 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4003 | break; |
| 4004 | case '"': |
| 4005 | dest->nonnull = 1; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4006 | shadow_quote ^= 1; /* invert */ |
| 4007 | if (dest->o_assignment == NOT_ASSIGNMENT) |
| 4008 | dest->o_quote ^= 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4009 | break; |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4010 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4011 | case '`': { |
| 4012 | //int pos = dest->length; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4013 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4014 | o_addchr(dest, shadow_quote /*or dest->o_quote??*/ ? 0x80 | '`' : '`'); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4015 | add_till_backquote(dest, input); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4016 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 4017 | //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4018 | break; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4019 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4020 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4021 | case '>': |
| 4022 | redir_fd = redirect_opt_num(dest); |
| 4023 | done_word(dest, ctx); |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4024 | redir_style = REDIRECT_OVERWRITE; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4025 | if (next == '>') { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4026 | redir_style = REDIRECT_APPEND; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4027 | i_getch(input); |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4028 | } |
| 4029 | #if 0 |
| 4030 | else if (next == '(') { |
| 4031 | syntax(">(process) not supported"); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4032 | debug_printf_parse("parse_stream return 1: >(process) not supported\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4033 | return 1; |
| 4034 | } |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4035 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4036 | setup_redirect(ctx, redir_fd, redir_style, input); |
| 4037 | break; |
| 4038 | case '<': |
| 4039 | redir_fd = redirect_opt_num(dest); |
| 4040 | done_word(dest, ctx); |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4041 | redir_style = REDIRECT_INPUT; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4042 | if (next == '<') { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4043 | redir_style = REDIRECT_HEREIS; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4044 | i_getch(input); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4045 | } else if (next == '>') { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4046 | redir_style = REDIRECT_IO; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4047 | i_getch(input); |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4048 | } |
| 4049 | #if 0 |
| 4050 | else if (next == '(') { |
| 4051 | syntax("<(process) not supported"); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4052 | debug_printf_parse("parse_stream return 1: <(process) not supported\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4053 | return 1; |
| 4054 | } |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4055 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4056 | setup_redirect(ctx, redir_fd, redir_style, input); |
| 4057 | break; |
| 4058 | case ';': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4059 | #if ENABLE_HUSH_CASE |
| 4060 | case_semi: |
| 4061 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4062 | done_word(dest, ctx); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4063 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4064 | #if ENABLE_HUSH_CASE |
| 4065 | /* Eat multiple semicolons, detect |
| 4066 | * whether it means something special */ |
| 4067 | while (1) { |
| 4068 | ch = i_peek(input); |
| 4069 | if (ch != ';') |
| 4070 | break; |
| 4071 | i_getch(input); |
| 4072 | if (ctx->ctx_res_w == RES_CASEI) { |
| 4073 | ctx->ctx_dsemicolon = 1; |
| 4074 | ctx->ctx_res_w = RES_MATCH; |
| 4075 | break; |
| 4076 | } |
| 4077 | } |
| 4078 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4079 | new_cmd: |
| 4080 | /* We just finished a cmd. New one may start |
| 4081 | * with an assignment */ |
| 4082 | dest->o_assignment = MAYBE_ASSIGNMENT; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4083 | break; |
| 4084 | case '&': |
| 4085 | done_word(dest, ctx); |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4086 | if (next == '&') { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4087 | i_getch(input); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4088 | done_pipe(ctx, PIPE_AND); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4089 | } else { |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4090 | done_pipe(ctx, PIPE_BG); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4091 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4092 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4093 | case '|': |
| 4094 | done_word(dest, ctx); |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 4095 | #if ENABLE_HUSH_CASE |
| 4096 | if (ctx->ctx_res_w == RES_MATCH) |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 4097 | break; /* we are in case's "word | word)" */ |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 4098 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4099 | if (next == '|') { /* || */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4100 | i_getch(input); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4101 | done_pipe(ctx, PIPE_OR); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4102 | } else { |
| 4103 | /* we could pick up a file descriptor choice here |
| 4104 | * with redirect_opt_num(), but bash doesn't do it. |
| 4105 | * "echo foo 2| cat" yields "foo 2". */ |
| 4106 | done_command(ctx); |
| 4107 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4108 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4109 | case '(': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4110 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 4111 | /* "case... in [(]word)..." - skip '(' */ |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4112 | if (ctx->ctx_res_w == RES_MATCH |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4113 | && ctx->command->argv == NULL /* not (word|(... */ |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4114 | && dest->length == 0 /* not word(... */ |
| 4115 | && dest->nonnull == 0 /* not ""(... */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4116 | ) { |
| 4117 | continue; |
| 4118 | } |
| 4119 | #endif |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4120 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4121 | if (dest->length != 0 /* not just () but word() */ |
| 4122 | && dest->nonnull == 0 /* not a"b"c() */ |
| 4123 | && ctx->command->argv == NULL /* it's the first word */ |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4124 | //TODO: "func ( ) {...}" - note spaces - is valid format too in bash |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4125 | && i_peek(input) == ')' |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4126 | && !match_reserved_word(dest) |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4127 | ) { |
| 4128 | bb_error_msg("seems like a function definition"); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4129 | i_getch(input); |
| 4130 | do { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4131 | //TODO: do it properly. |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4132 | ch = i_getch(input); |
| 4133 | } while (ch == ' ' || ch == '\n'); |
| 4134 | if (ch != '{') { |
| 4135 | syntax("was expecting {"); |
| 4136 | debug_printf_parse("parse_stream return 1\n"); |
| 4137 | return 1; |
| 4138 | } |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4139 | ch = 'F'; /* magic value */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4140 | } |
| 4141 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4142 | case '{': |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4143 | if (parse_group(dest, ctx, input, ch) != 0) { |
| 4144 | debug_printf_parse("parse_stream return 1: parse_group returned non-0\n"); |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4145 | return 1; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4146 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4147 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4148 | case ')': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4149 | #if ENABLE_HUSH_CASE |
| 4150 | if (ctx->ctx_res_w == RES_MATCH) |
| 4151 | goto case_semi; |
| 4152 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4153 | case '}': |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4154 | /* proper use of this character is caught by end_trigger: |
| 4155 | * if we see {, we call parse_group(..., end_trigger='}') |
| 4156 | * and it will match } earlier (not here). */ |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4157 | syntax("unexpected } or )"); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4158 | debug_printf_parse("parse_stream return 1: unexpected '}'\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4159 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4160 | default: |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4161 | if (HUSH_DEBUG) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4162 | bb_error_msg_and_die("BUG: unexpected %c\n", ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4163 | } |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4164 | } /* while (1) */ |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 4165 | debug_printf_parse("parse_stream return %d\n", -(end_trigger != NULL)); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4166 | if (end_trigger) |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 4167 | return -1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4168 | return 0; |
| 4169 | } |
| 4170 | |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 4171 | static void set_in_charmap(const char *set, int code) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4172 | { |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 4173 | while (*set) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4174 | G.charmap[(unsigned char)*set++] = code; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4175 | } |
| 4176 | |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 4177 | static void update_charmap(void) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4178 | { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4179 | G.ifs = getenv("IFS"); |
| 4180 | if (G.ifs == NULL) |
| 4181 | G.ifs = " \t\n"; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4182 | /* Precompute a list of 'flow through' behavior so it can be treated |
| 4183 | * quickly up front. Computation is necessary because of IFS. |
| 4184 | * Special case handling of IFS == " \t\n" is not implemented. |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 4185 | * The charmap[] array only really needs two bits each, |
| 4186 | * and on most machines that would be faster (reduced L1 cache use). |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4187 | */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4188 | memset(G.charmap, CHAR_ORDINARY, sizeof(G.charmap)); |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4189 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 4190 | set_in_charmap("\\$\"`", CHAR_SPECIAL); |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4191 | #else |
| 4192 | set_in_charmap("\\$\"", CHAR_SPECIAL); |
| 4193 | #endif |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 4194 | set_in_charmap("<>;&|(){}#'", CHAR_ORDINARY_IF_QUOTED); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4195 | set_in_charmap(G.ifs, CHAR_IFS); /* are ordinary if quoted */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4196 | } |
| 4197 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4198 | /* Most recursion does not come through here, the exception is |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 4199 | * from builtin_source() and builtin_eval() */ |
| 4200 | static int parse_and_run_stream(struct in_str *inp, int parse_flag) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4201 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4202 | struct parse_context ctx; |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4203 | o_string temp = NULL_O_STRING; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4204 | int rcode; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4205 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4206 | do { |
| 4207 | initialize_context(&ctx); |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 4208 | update_charmap(); |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4209 | #if ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | 5a1437d | 2007-05-24 13:22:47 +0000 | [diff] [blame] | 4210 | inp->promptmode = 0; /* PS1 */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4211 | #endif |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 4212 | /* We will stop & execute after each ';' or '\n'. |
| 4213 | * Example: "sleep 9999; echo TEST" + ctrl-C: |
| 4214 | * TEST should be printed */ |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4215 | temp.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4216 | rcode = parse_stream(&temp, &ctx, inp, ";\n"); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4217 | #if HAS_KEYWORDS |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 4218 | if (rcode != 1 && ctx.old_flag != 0) { |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4219 | syntax(NULL); |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 4220 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4221 | #endif |
| 4222 | if (rcode != 1 IF_HAS_KEYWORDS(&& ctx.old_flag == 0)) { |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 4223 | done_word(&temp, &ctx); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4224 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 4225 | debug_print_tree(ctx.list_head, 0); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4226 | debug_printf_exec("parse_stream_outer: run_and_free_list\n"); |
| 4227 | run_and_free_list(ctx.list_head); |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 4228 | } else { |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4229 | /* We arrive here also if rcode == 1 (error in parse_stream) */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4230 | #if HAS_KEYWORDS |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 4231 | if (ctx.old_flag != 0) { |
| 4232 | free(ctx.stack); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4233 | o_reset(&temp); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 4234 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4235 | #endif |
Denis Vlasenko | c1c63b6 | 2008-06-18 09:20:35 +0000 | [diff] [blame] | 4236 | /*temp.nonnull = 0; - o_free does it below */ |
| 4237 | /*temp.o_quote = 0; - o_free does it below */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4238 | free_pipe_list(ctx.list_head, /* indent: */ 0); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4239 | /* Discard all unprocessed line input, force prompt on */ |
| 4240 | inp->p = NULL; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4241 | #if ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4242 | inp->promptme = 1; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4243 | #endif |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 4244 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4245 | o_free(&temp); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4246 | /* loop on syntax errors, return on EOF: */ |
| 4247 | } while (rcode != -1 && !(parse_flag & PARSEFLAG_EXIT_FROM_LOOP)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4248 | return 0; |
| 4249 | } |
| 4250 | |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 4251 | static int parse_and_run_string(const char *s, int parse_flag) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4252 | { |
| 4253 | struct in_str input; |
| 4254 | setup_string_in_str(&input, s); |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 4255 | return parse_and_run_stream(&input, parse_flag); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4256 | } |
| 4257 | |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 4258 | static int parse_and_run_file(FILE *f) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4259 | { |
| 4260 | int rcode; |
| 4261 | struct in_str input; |
| 4262 | setup_file_in_str(&input, f); |
Denis Vlasenko | 5703c22 | 2008-06-15 11:49:42 +0000 | [diff] [blame] | 4263 | rcode = parse_and_run_stream(&input, 0 /* parse_flag */); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4264 | return rcode; |
| 4265 | } |
| 4266 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4267 | #if ENABLE_HUSH_JOB |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 4268 | /* Make sure we have a controlling tty. If we get started under a job |
| 4269 | * aware app (like bash for example), make sure we are now in charge so |
| 4270 | * we don't fight over who gets the foreground */ |
Eric Andersen | eaecbf3 | 2001-10-31 10:41:31 +0000 | [diff] [blame] | 4271 | static void setup_job_control(void) |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 4272 | { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4273 | pid_t shell_pgrp; |
| 4274 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4275 | shell_pgrp = getpgrp(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4276 | close_on_exec_on(G.interactive_fd); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4277 | |
Denis Vlasenko | a6a1785 | 2007-04-28 16:42:11 +0000 | [diff] [blame] | 4278 | /* If we were ran as 'hush &', |
| 4279 | * sleep until we are in the foreground. */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4280 | while (tcgetpgrp(G.interactive_fd) != shell_pgrp) { |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 4281 | /* Send TTIN to ourself (should stop us) */ |
Denis Vlasenko | ff131b9 | 2007-04-10 15:42:06 +0000 | [diff] [blame] | 4282 | kill(- shell_pgrp, SIGTTIN); |
Denis Vlasenko | a6a1785 | 2007-04-28 16:42:11 +0000 | [diff] [blame] | 4283 | shell_pgrp = getpgrp(); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4284 | } |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 4285 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4286 | /* Ignore job-control and misc signals. */ |
| 4287 | set_jobctrl_sighandler(SIG_IGN); |
| 4288 | set_misc_sighandler(SIG_IGN); |
| 4289 | //huh? signal(SIGCHLD, SIG_IGN); |
| 4290 | |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 4291 | /* We _must_ restore tty pgrp on fatal signals */ |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4292 | set_fatal_sighandler(sigexit); |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 4293 | |
| 4294 | /* Put ourselves in our own process group. */ |
Bernhard Reutner-Fischer | 864329d | 2008-09-25 10:55:05 +0000 | [diff] [blame] | 4295 | bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */ |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 4296 | /* Grab control of the terminal. */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4297 | tcsetpgrp(G.interactive_fd, getpid()); |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 4298 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 4299 | #endif |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 4300 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4301 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 4302 | int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Matt Kraai | 2d91deb | 2001-08-01 17:21:35 +0000 | [diff] [blame] | 4303 | int hush_main(int argc, char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4304 | { |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 4305 | static const struct variable const_shell_ver = { |
| 4306 | .next = NULL, |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 4307 | .varstr = (char*)hush_version_str, |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 4308 | .max_len = 1, /* 0 can provoke free(name) */ |
| 4309 | .flg_export = 1, |
| 4310 | .flg_read_only = 1, |
| 4311 | }; |
| 4312 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4313 | int opt; |
| 4314 | FILE *input; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4315 | char **e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4316 | struct variable *cur_var; |
Eric Andersen | bc604a2 | 2001-05-16 05:24:03 +0000 | [diff] [blame] | 4317 | |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 4318 | INIT_G(); |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4319 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4320 | G.root_pid = getpid(); |
Denis Vlasenko | 16c2fea | 2008-06-17 12:28:44 +0000 | [diff] [blame] | 4321 | |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 4322 | /* Deal with HUSH_VERSION */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4323 | G.shell_ver = const_shell_ver; /* copying struct here */ |
| 4324 | G.top_var = &G.shell_ver; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 4325 | debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION"); |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 4326 | unsetenv("HUSH_VERSION"); /* in case it exists in initial env */ |
| 4327 | /* Initialize our shell local variables with the values |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4328 | * currently living in the environment */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4329 | cur_var = G.top_var; |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 4330 | e = environ; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4331 | if (e) while (*e) { |
| 4332 | char *value = strchr(*e, '='); |
| 4333 | if (value) { /* paranoia */ |
| 4334 | cur_var->next = xzalloc(sizeof(*cur_var)); |
| 4335 | cur_var = cur_var->next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 4336 | cur_var->varstr = *e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4337 | cur_var->max_len = strlen(*e); |
| 4338 | cur_var->flg_export = 1; |
| 4339 | } |
| 4340 | e++; |
| 4341 | } |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 4342 | debug_printf_env("putenv '%s'\n", hush_version_str); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 4343 | putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 4344 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 4345 | #if ENABLE_FEATURE_EDITING |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4346 | G.line_input_state = new_line_input_t(FOR_SHELL); |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 4347 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4348 | /* XXX what should these be while sourcing /etc/profile? */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4349 | G.global_argc = argc; |
| 4350 | G.global_argv = argv; |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 4351 | /* Initialize some more globals to non-zero values */ |
| 4352 | set_cwd(); |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4353 | #if ENABLE_HUSH_INTERACTIVE |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 4354 | if (ENABLE_FEATURE_EDITING) |
| 4355 | cmdedit_set_initial_prompt(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4356 | G.PS2 = "> "; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4357 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 4358 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4359 | if (EXIT_SUCCESS) /* otherwise is already done */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4360 | G.last_return_code = EXIT_SUCCESS; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4361 | |
| 4362 | if (argv[0] && argv[0][0] == '-') { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 4363 | debug_printf("sourcing /etc/profile\n"); |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 4364 | input = fopen_for_read("/etc/profile"); |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 4365 | if (input != NULL) { |
Denis Vlasenko | a089817 | 2007-10-01 09:59:01 +0000 | [diff] [blame] | 4366 | close_on_exec_on(fileno(input)); |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 4367 | parse_and_run_file(input); |
Eric Andersen | a90f20b | 2001-06-26 23:00:21 +0000 | [diff] [blame] | 4368 | fclose(input); |
| 4369 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4370 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4371 | input = stdin; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 4372 | |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 4373 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */ |
| 4374 | while ((opt = getopt(argc, argv, "c:xins")) > 0) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4375 | switch (opt) { |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4376 | case 'c': |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4377 | G.global_argv = argv + optind; |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 4378 | if (!argv[optind]) { |
| 4379 | /* -c 'script' (no params): prevent empty $0 */ |
| 4380 | *--G.global_argv = argv[0]; |
| 4381 | optind--; |
| 4382 | } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4383 | G.global_argc = argc - optind; |
Denis Vlasenko | 5703c22 | 2008-06-15 11:49:42 +0000 | [diff] [blame] | 4384 | opt = parse_and_run_string(optarg, 0 /* parse_flag */); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4385 | goto final_return; |
| 4386 | case 'i': |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 4387 | /* Well, we cannot just declare interactiveness, |
| 4388 | * we have to have some stuff (ctty, etc) */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4389 | /* G.interactive_fd++; */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4390 | break; |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 4391 | case 's': |
| 4392 | /* "-s" means "read from stdin", but this is how we always |
| 4393 | * operate, so simply do nothing here. */ |
| 4394 | break; |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 4395 | case 'n': |
| 4396 | case 'x': |
| 4397 | if (!builtin_set_mode('-', opt)) |
| 4398 | break; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4399 | default: |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 4400 | #ifndef BB_VER |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4401 | fprintf(stderr, "Usage: sh [FILE]...\n" |
| 4402 | " or: sh -c command [args]...\n\n"); |
| 4403 | exit(EXIT_FAILURE); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 4404 | #else |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4405 | bb_show_usage(); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 4406 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4407 | } |
| 4408 | } |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4409 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4410 | /* A shell is interactive if the '-i' flag was given, or if all of |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4411 | * the following conditions are met: |
Denis Vlasenko | 55b2de7 | 2007-04-18 17:21:28 +0000 | [diff] [blame] | 4412 | * no -c command |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4413 | * no arguments remaining or the -s flag given |
| 4414 | * standard input is a terminal |
| 4415 | * standard output is a terminal |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4416 | * Refer to Posix.2, the description of the 'sh' utility. */ |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4417 | if (argv[optind] == NULL && input == stdin |
| 4418 | && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO) |
| 4419 | ) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4420 | G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO); |
| 4421 | debug_printf("saved_tty_pgrp=%d\n", G.saved_tty_pgrp); |
| 4422 | if (G.saved_tty_pgrp >= 0) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4423 | /* try to dup to high fd#, >= 255 */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4424 | G.interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255); |
| 4425 | if (G.interactive_fd < 0) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4426 | /* try to dup to any fd */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4427 | G.interactive_fd = dup(STDIN_FILENO); |
| 4428 | if (G.interactive_fd < 0) |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4429 | /* give up */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4430 | G.interactive_fd = 0; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4431 | } |
Denis Vlasenko | 2f1bb36 | 2007-04-21 10:01:14 +0000 | [diff] [blame] | 4432 | // TODO: track & disallow any attempts of user |
| 4433 | // to (inadvertently) close/redirect it |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4434 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4435 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4436 | debug_printf("G.interactive_fd=%d\n", G.interactive_fd); |
| 4437 | if (G.interactive_fd) { |
| 4438 | fcntl(G.interactive_fd, F_SETFD, FD_CLOEXEC); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4439 | /* Looks like they want an interactive shell */ |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 4440 | setup_job_control(); |
Denis Vlasenko | 4ecfcdc | 2008-02-11 08:32:31 +0000 | [diff] [blame] | 4441 | /* -1 is special - makes xfuncs longjmp, not exit |
Denis Vlasenko | c04163a | 2008-02-11 08:30:53 +0000 | [diff] [blame] | 4442 | * (we reset die_sleep = 0 whereever we [v]fork) */ |
| 4443 | die_sleep = -1; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4444 | if (setjmp(die_jmp)) { |
| 4445 | /* xfunc has failed! die die die */ |
| 4446 | hush_exit(xfunc_error_retval); |
| 4447 | } |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 4448 | } |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4449 | #elif ENABLE_HUSH_INTERACTIVE |
| 4450 | /* no job control compiled, only prompt/line editing */ |
| 4451 | if (argv[optind] == NULL && input == stdin |
| 4452 | && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO) |
| 4453 | ) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4454 | G.interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255); |
| 4455 | if (G.interactive_fd < 0) { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4456 | /* try to dup to any fd */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4457 | G.interactive_fd = dup(STDIN_FILENO); |
| 4458 | if (G.interactive_fd < 0) |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4459 | /* give up */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4460 | G.interactive_fd = 0; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4461 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4462 | if (G.interactive_fd) { |
| 4463 | fcntl(G.interactive_fd, F_SETFD, FD_CLOEXEC); |
Denis Vlasenko | 4830fc5 | 2008-05-25 21:50:55 +0000 | [diff] [blame] | 4464 | set_misc_sighandler(SIG_IGN); |
| 4465 | } |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4466 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 4467 | #endif |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 4468 | |
Denis Vlasenko | 701ac18 | 2009-03-28 19:22:08 +0000 | [diff] [blame] | 4469 | #if ENABLE_HUSH_INTERACTIVE && !ENABLE_FEATURE_SH_EXTRA_QUIET |
| 4470 | if (G.interactive_fd) { |
Mike Frysinger | b2705e1 | 2009-03-23 08:44:02 +0000 | [diff] [blame] | 4471 | printf("\n\n%s hush - the humble shell v"HUSH_VER_STR"\n", bb_banner); |
| 4472 | printf("Enter 'help' for a list of built-in commands.\n\n"); |
| 4473 | } |
Denis Vlasenko | 701ac18 | 2009-03-28 19:22:08 +0000 | [diff] [blame] | 4474 | #endif |
Mike Frysinger | b2705e1 | 2009-03-23 08:44:02 +0000 | [diff] [blame] | 4475 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4476 | if (argv[optind] == NULL) { |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 4477 | opt = parse_and_run_file(stdin); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4478 | } else { |
| 4479 | debug_printf("\nrunning script '%s'\n", argv[optind]); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4480 | G.global_argv = argv + optind; |
| 4481 | G.global_argc = argc - optind; |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 4482 | input = xfopen_for_read(argv[optind]); |
Denis Vlasenko | 459a5ad | 2008-02-11 08:35:03 +0000 | [diff] [blame] | 4483 | fcntl(fileno(input), F_SETFD, FD_CLOEXEC); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4484 | opt = parse_and_run_file(input); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4485 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4486 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4487 | final_return: |
| 4488 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 4489 | #if ENABLE_FEATURE_CLEAN_UP |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 4490 | fclose(input); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4491 | if (G.cwd != bb_msg_unknown) |
| 4492 | free((char*)G.cwd); |
| 4493 | cur_var = G.top_var->next; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4494 | while (cur_var) { |
| 4495 | struct variable *tmp = cur_var; |
| 4496 | if (!cur_var->max_len) |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 4497 | free(cur_var->varstr); |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4498 | cur_var = cur_var->next; |
| 4499 | free(tmp); |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 4500 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4501 | #endif |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4502 | hush_exit(opt ? opt : G.last_return_code); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4503 | } |
Denis Vlasenko | 96702ca | 2007-11-23 23:28:55 +0000 | [diff] [blame] | 4504 | |
| 4505 | |
| 4506 | #if ENABLE_LASH |
| 4507 | int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 4508 | int lash_main(int argc, char **argv) |
| 4509 | { |
| 4510 | //bb_error_msg("lash is deprecated, please use hush instead"); |
| 4511 | return hush_main(argc, argv); |
| 4512 | } |
| 4513 | #endif |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4514 | |
| 4515 | |
| 4516 | /* |
| 4517 | * Built-ins |
| 4518 | */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 4519 | static int builtin_true(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4520 | { |
| 4521 | return 0; |
| 4522 | } |
| 4523 | |
| 4524 | static int builtin_test(char **argv) |
| 4525 | { |
| 4526 | int argc = 0; |
| 4527 | while (*argv) { |
| 4528 | argc++; |
| 4529 | argv++; |
| 4530 | } |
| 4531 | return test_main(argc, argv - argc); |
| 4532 | } |
| 4533 | |
| 4534 | static int builtin_echo(char **argv) |
| 4535 | { |
| 4536 | int argc = 0; |
| 4537 | while (*argv) { |
| 4538 | argc++; |
| 4539 | argv++; |
| 4540 | } |
| 4541 | return echo_main(argc, argv - argc); |
| 4542 | } |
| 4543 | |
| 4544 | static int builtin_eval(char **argv) |
| 4545 | { |
| 4546 | int rcode = EXIT_SUCCESS; |
| 4547 | |
| 4548 | if (argv[1]) { |
| 4549 | char *str = expand_strvec_to_string(argv + 1); |
| 4550 | parse_and_run_string(str, PARSEFLAG_EXIT_FROM_LOOP); |
| 4551 | free(str); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4552 | rcode = G.last_return_code; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4553 | } |
| 4554 | return rcode; |
| 4555 | } |
| 4556 | |
| 4557 | static int builtin_cd(char **argv) |
| 4558 | { |
| 4559 | const char *newdir; |
| 4560 | if (argv[1] == NULL) { |
| 4561 | // bash does nothing (exitcode 0) if HOME is ""; if it's unset, |
| 4562 | // bash says "bash: cd: HOME not set" and does nothing (exitcode 1) |
| 4563 | newdir = getenv("HOME") ? : "/"; |
| 4564 | } else |
| 4565 | newdir = argv[1]; |
| 4566 | if (chdir(newdir)) { |
| 4567 | printf("cd: %s: %s\n", newdir, strerror(errno)); |
| 4568 | return EXIT_FAILURE; |
| 4569 | } |
| 4570 | set_cwd(); |
| 4571 | return EXIT_SUCCESS; |
| 4572 | } |
| 4573 | |
| 4574 | static int builtin_exec(char **argv) |
| 4575 | { |
| 4576 | if (argv[1] == NULL) |
| 4577 | return EXIT_SUCCESS; /* bash does this */ |
| 4578 | { |
| 4579 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 4580 | nommu_save_t dummy; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4581 | #endif |
| 4582 | // FIXME: if exec fails, bash does NOT exit! We do... |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 4583 | pseudo_exec_argv(&dummy, argv + 1, 0, NULL); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4584 | /* never returns */ |
| 4585 | } |
| 4586 | } |
| 4587 | |
| 4588 | static int builtin_exit(char **argv) |
| 4589 | { |
| 4590 | // TODO: bash does it ONLY on top-level sh exit (+interacive only?) |
| 4591 | //puts("exit"); /* bash does it */ |
| 4592 | // TODO: warn if we have background jobs: "There are stopped jobs" |
| 4593 | // On second consecutive 'exit', exit anyway. |
| 4594 | if (argv[1] == NULL) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4595 | hush_exit(G.last_return_code); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4596 | /* mimic bash: exit 123abc == exit 255 + error msg */ |
| 4597 | xfunc_error_retval = 255; |
| 4598 | /* bash: exit -2 == exit 254, no error msg */ |
| 4599 | hush_exit(xatoi(argv[1]) & 0xff); |
| 4600 | } |
| 4601 | |
| 4602 | static int builtin_export(char **argv) |
| 4603 | { |
| 4604 | const char *value; |
| 4605 | char *name = argv[1]; |
| 4606 | |
| 4607 | if (name == NULL) { |
| 4608 | // TODO: |
| 4609 | // ash emits: export VAR='VAL' |
| 4610 | // bash: declare -x VAR="VAL" |
| 4611 | // (both also escape as needed (quotes, $, etc)) |
| 4612 | char **e = environ; |
| 4613 | if (e) |
| 4614 | while (*e) |
| 4615 | puts(*e++); |
| 4616 | return EXIT_SUCCESS; |
| 4617 | } |
| 4618 | |
| 4619 | value = strchr(name, '='); |
| 4620 | if (!value) { |
| 4621 | /* They are exporting something without a =VALUE */ |
| 4622 | struct variable *var; |
| 4623 | |
| 4624 | var = get_local_var(name); |
| 4625 | if (var) { |
| 4626 | var->flg_export = 1; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 4627 | debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4628 | putenv(var->varstr); |
| 4629 | } |
| 4630 | /* bash does not return an error when trying to export |
| 4631 | * an undefined variable. Do likewise. */ |
| 4632 | return EXIT_SUCCESS; |
| 4633 | } |
| 4634 | |
| 4635 | set_local_var(xstrdup(name), 1); |
| 4636 | return EXIT_SUCCESS; |
| 4637 | } |
| 4638 | |
| 4639 | #if ENABLE_HUSH_JOB |
| 4640 | /* built-in 'fg' and 'bg' handler */ |
| 4641 | static int builtin_fg_bg(char **argv) |
| 4642 | { |
| 4643 | int i, jobnum; |
| 4644 | struct pipe *pi; |
| 4645 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4646 | if (!G.interactive_fd) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4647 | return EXIT_FAILURE; |
| 4648 | /* If they gave us no args, assume they want the last backgrounded task */ |
| 4649 | if (!argv[1]) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4650 | for (pi = G.job_list; pi; pi = pi->next) { |
| 4651 | if (pi->jobid == G.last_jobid) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4652 | goto found; |
| 4653 | } |
| 4654 | } |
| 4655 | bb_error_msg("%s: no current job", argv[0]); |
| 4656 | return EXIT_FAILURE; |
| 4657 | } |
| 4658 | if (sscanf(argv[1], "%%%d", &jobnum) != 1) { |
| 4659 | bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]); |
| 4660 | return EXIT_FAILURE; |
| 4661 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4662 | for (pi = G.job_list; pi; pi = pi->next) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4663 | if (pi->jobid == jobnum) { |
| 4664 | goto found; |
| 4665 | } |
| 4666 | } |
| 4667 | bb_error_msg("%s: %d: no such job", argv[0], jobnum); |
| 4668 | return EXIT_FAILURE; |
| 4669 | found: |
| 4670 | // TODO: bash prints a string representation |
| 4671 | // of job being foregrounded (like "sleep 1 | cat") |
| 4672 | if (*argv[0] == 'f') { |
| 4673 | /* Put the job into the foreground. */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4674 | tcsetpgrp(G.interactive_fd, pi->pgrp); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4675 | } |
| 4676 | |
| 4677 | /* Restart the processes in the job */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4678 | debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp); |
| 4679 | for (i = 0; i < pi->num_cmds; i++) { |
| 4680 | debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid); |
| 4681 | pi->cmds[i].is_stopped = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4682 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4683 | pi->stopped_cmds = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4684 | |
| 4685 | i = kill(- pi->pgrp, SIGCONT); |
| 4686 | if (i < 0) { |
| 4687 | if (errno == ESRCH) { |
| 4688 | delete_finished_bg_job(pi); |
| 4689 | return EXIT_SUCCESS; |
| 4690 | } else { |
| 4691 | bb_perror_msg("kill (SIGCONT)"); |
| 4692 | } |
| 4693 | } |
| 4694 | |
| 4695 | if (*argv[0] == 'f') { |
| 4696 | remove_bg_job(pi); |
| 4697 | return checkjobs_and_fg_shell(pi); |
| 4698 | } |
| 4699 | return EXIT_SUCCESS; |
| 4700 | } |
| 4701 | #endif |
| 4702 | |
| 4703 | #if ENABLE_HUSH_HELP |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 4704 | static int builtin_help(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4705 | { |
| 4706 | const struct built_in_command *x; |
| 4707 | |
| 4708 | printf("\nBuilt-in commands:\n"); |
| 4709 | printf("-------------------\n"); |
| 4710 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
| 4711 | printf("%s\t%s\n", x->cmd, x->descr); |
| 4712 | } |
| 4713 | printf("\n\n"); |
| 4714 | return EXIT_SUCCESS; |
| 4715 | } |
| 4716 | #endif |
| 4717 | |
| 4718 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 4719 | static int builtin_jobs(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4720 | { |
| 4721 | struct pipe *job; |
| 4722 | const char *status_string; |
| 4723 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4724 | for (job = G.job_list; job; job = job->next) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4725 | if (job->alive_cmds == job->stopped_cmds) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4726 | status_string = "Stopped"; |
| 4727 | else |
| 4728 | status_string = "Running"; |
| 4729 | |
| 4730 | printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext); |
| 4731 | } |
| 4732 | return EXIT_SUCCESS; |
| 4733 | } |
| 4734 | #endif |
| 4735 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 4736 | static int builtin_pwd(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4737 | { |
| 4738 | puts(set_cwd()); |
| 4739 | return EXIT_SUCCESS; |
| 4740 | } |
| 4741 | |
| 4742 | static int builtin_read(char **argv) |
| 4743 | { |
| 4744 | char *string; |
| 4745 | const char *name = argv[1] ? argv[1] : "REPLY"; |
| 4746 | |
| 4747 | string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL); |
| 4748 | return set_local_var(string, 0); |
| 4749 | } |
| 4750 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 4751 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set |
| 4752 | * built-in 'set' handler |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 4753 | * SUSv3 says: |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 4754 | * set [-abCefhmnuvx] [-o option] [argument...] |
| 4755 | * set [+abCefhmnuvx] [+o option] [argument...] |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 4756 | * set -- [argument...] |
| 4757 | * set -o |
| 4758 | * set +o |
| 4759 | * Implementations shall support the options in both their hyphen and |
| 4760 | * plus-sign forms. These options can also be specified as options to sh. |
| 4761 | * Examples: |
| 4762 | * Write out all variables and their values: set |
| 4763 | * Set $1, $2, and $3 and set "$#" to 3: set c a b |
| 4764 | * Turn on the -x and -v options: set -xv |
| 4765 | * Unset all positional parameters: set -- |
| 4766 | * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x" |
| 4767 | * Set the positional parameters to the expansion of x, even if x expands |
| 4768 | * with a leading '-' or '+': set -- $x |
| 4769 | * |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 4770 | * So far, we only support "set -- [argument...]" and some of the short names. |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 4771 | */ |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 4772 | static int builtin_set_mode(const char cstate, const char mode) |
| 4773 | { |
| 4774 | int state = (cstate == '-' ? 1 : 0); |
| 4775 | switch (mode) { |
| 4776 | case 'n': G.fake_mode = state; break; |
| 4777 | case 'x': /*G.debug_mode = state;*/ break; |
| 4778 | default: return EXIT_FAILURE; |
| 4779 | } |
| 4780 | return EXIT_SUCCESS; |
| 4781 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4782 | static int builtin_set(char **argv) |
| 4783 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4784 | int n; |
| 4785 | char **pp, **g_argv; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 4786 | char *arg = *++argv; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4787 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 4788 | if (arg == NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4789 | struct variable *e; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4790 | for (e = G.top_var; e; e = e->next) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4791 | puts(e->varstr); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4792 | return EXIT_SUCCESS; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 4793 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4794 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 4795 | do { |
| 4796 | if (!strcmp(arg, "--")) { |
| 4797 | ++argv; |
| 4798 | goto set_argv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4799 | } |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 4800 | |
| 4801 | if (arg[0] == '+' || arg[0] == '-') { |
| 4802 | for (n = 1; arg[n]; ++n) |
| 4803 | if (builtin_set_mode(arg[0], arg[n])) |
| 4804 | goto error; |
| 4805 | continue; |
| 4806 | } |
| 4807 | |
| 4808 | break; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4809 | } while ((arg = *++argv) != NULL); |
| 4810 | /* Now argv[0] is 1st argument */ |
| 4811 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 4812 | /* Only reset global_argv if we didn't process anything */ |
| 4813 | if (arg == NULL) |
| 4814 | return EXIT_SUCCESS; |
| 4815 | set_argv: |
| 4816 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 4817 | /* NB: G.global_argv[0] ($0) is never freed/changed */ |
| 4818 | g_argv = G.global_argv; |
| 4819 | if (G.global_args_malloced) { |
| 4820 | pp = g_argv; |
| 4821 | while (*++pp) |
| 4822 | free(*pp); |
| 4823 | g_argv[1] = NULL; |
| 4824 | } else { |
| 4825 | G.global_args_malloced = 1; |
| 4826 | pp = xzalloc(sizeof(pp[0]) * 2); |
| 4827 | pp[0] = g_argv[0]; /* retain $0 */ |
| 4828 | g_argv = pp; |
| 4829 | } |
| 4830 | /* This realloc's G.global_argv */ |
| 4831 | G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1); |
| 4832 | |
| 4833 | n = 1; |
| 4834 | while (*++pp) |
| 4835 | n++; |
| 4836 | G.global_argc = n; |
| 4837 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4838 | return EXIT_SUCCESS; |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 4839 | |
| 4840 | /* Nothing known, so abort */ |
| 4841 | error: |
| 4842 | bb_error_msg("set: %s: invalid option", arg); |
| 4843 | return EXIT_FAILURE; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4844 | } |
| 4845 | |
| 4846 | static int builtin_shift(char **argv) |
| 4847 | { |
| 4848 | int n = 1; |
| 4849 | if (argv[1]) { |
| 4850 | n = atoi(argv[1]); |
| 4851 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4852 | if (n >= 0 && n < G.global_argc) { |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 4853 | if (G.global_args_malloced) { |
| 4854 | int m = 1; |
| 4855 | while (m <= n) |
| 4856 | free(G.global_argv[m++]); |
| 4857 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4858 | G.global_argc -= n; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 4859 | memmove(&G.global_argv[1], &G.global_argv[n+1], |
| 4860 | G.global_argc * sizeof(G.global_argv[0])); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4861 | return EXIT_SUCCESS; |
| 4862 | } |
| 4863 | return EXIT_FAILURE; |
| 4864 | } |
| 4865 | |
| 4866 | static int builtin_source(char **argv) |
| 4867 | { |
| 4868 | FILE *input; |
| 4869 | int status; |
| 4870 | |
| 4871 | if (argv[1] == NULL) |
| 4872 | return EXIT_FAILURE; |
| 4873 | |
| 4874 | /* XXX search through $PATH is missing */ |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 4875 | input = fopen_for_read(argv[1]); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4876 | if (!input) { |
Bernhard Reutner-Fischer | a53de7f | 2008-07-21 13:46:54 +0000 | [diff] [blame] | 4877 | bb_error_msg("can't open '%s'", argv[1]); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4878 | return EXIT_FAILURE; |
| 4879 | } |
| 4880 | close_on_exec_on(fileno(input)); |
| 4881 | |
| 4882 | /* Now run the file */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4883 | /* XXX argv and argc are broken; need to save old G.global_argv |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4884 | * (pointer only is OK!) on this stack frame, |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4885 | * set G.global_argv=argv+1, recurse, and restore. */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4886 | status = parse_and_run_file(input); |
| 4887 | fclose(input); |
| 4888 | return status; |
| 4889 | } |
| 4890 | |
| 4891 | static int builtin_umask(char **argv) |
| 4892 | { |
| 4893 | mode_t new_umask; |
| 4894 | const char *arg = argv[1]; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4895 | if (arg) { |
Mike Frysinger | 40b8dc4 | 2009-03-29 00:50:30 +0000 | [diff] [blame^] | 4896 | new_umask = bb_strtou(arg, NULL, 8); |
| 4897 | if (errno) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4898 | return EXIT_FAILURE; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4899 | } else { |
| 4900 | new_umask = umask(0); |
| 4901 | printf("%.3o\n", (unsigned) new_umask); |
| 4902 | } |
| 4903 | umask(new_umask); |
| 4904 | return EXIT_SUCCESS; |
| 4905 | } |
| 4906 | |
| 4907 | static int builtin_unset(char **argv) |
| 4908 | { |
| 4909 | /* bash always returns true */ |
| 4910 | unset_local_var(argv[1]); |
| 4911 | return EXIT_SUCCESS; |
| 4912 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4913 | |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 4914 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */ |
| 4915 | static int builtin_wait(char **argv) |
| 4916 | { |
| 4917 | int ret = EXIT_SUCCESS; |
| 4918 | int status; |
| 4919 | |
| 4920 | if (argv[1] == NULL) |
| 4921 | /* don't care about exit status */ |
| 4922 | wait(&status); |
| 4923 | |
| 4924 | while (argv[1]) { |
Mike Frysinger | 40b8dc4 | 2009-03-29 00:50:30 +0000 | [diff] [blame^] | 4925 | pid_t pid = bb_strtou(argv[1], NULL, 10); |
| 4926 | if (errno) { |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 4927 | bb_perror_msg("wait %s", argv[1]); |
| 4928 | return EXIT_FAILURE; |
| 4929 | } else if (waitpid(pid, &status, 0) == pid) { |
| 4930 | if (WIFSIGNALED(status)) |
| 4931 | ret = 128 + WTERMSIG(status); |
| 4932 | else if (WIFEXITED(status)) |
| 4933 | ret = WEXITSTATUS(status); |
| 4934 | else |
| 4935 | ret = EXIT_FAILURE; |
| 4936 | } else { |
| 4937 | bb_perror_msg("wait %s", argv[1]); |
| 4938 | ret = 127; |
| 4939 | } |
| 4940 | ++argv; |
| 4941 | } |
| 4942 | |
| 4943 | return ret; |
| 4944 | } |
| 4945 | |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 4946 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 4947 | static int builtin_break(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4948 | { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4949 | if (G.depth_of_loop == 0) { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 4950 | bb_error_msg("%s: only meaningful in a loop", argv[0]); |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 4951 | return EXIT_SUCCESS; /* bash compat */ |
| 4952 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4953 | G.flag_break_continue++; /* BC_BREAK = 1 */ |
| 4954 | G.depth_break_continue = 1; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 4955 | if (argv[1]) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4956 | G.depth_break_continue = bb_strtou(argv[1], NULL, 10); |
| 4957 | if (errno || !G.depth_break_continue || argv[2]) { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 4958 | bb_error_msg("%s: bad arguments", argv[0]); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4959 | G.flag_break_continue = BC_BREAK; |
| 4960 | G.depth_break_continue = UINT_MAX; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 4961 | } |
| 4962 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4963 | if (G.depth_of_loop < G.depth_break_continue) |
| 4964 | G.depth_break_continue = G.depth_of_loop; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4965 | return EXIT_SUCCESS; |
| 4966 | } |
| 4967 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 4968 | static int builtin_continue(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4969 | { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 4970 | G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */ |
| 4971 | return builtin_break(argv); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 4972 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 4973 | #endif |