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 | * <(list) and >(list) Process Substitution |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 42 | * Here Documents ( << word ) |
| 43 | * Functions |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 44 | * Tilde Expansion |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 45 | * Parameter Expansion for substring processing ${var#word} ${var%word} |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 46 | * |
| 47 | * Bash stuff maybe optional enable: |
| 48 | * &> and >& redirection of stdout+stderr |
| 49 | * Brace expansion |
| 50 | * reserved words: [[ ]] function select |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 51 | * substrings ${var:1:5} |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 52 | * |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 53 | * Major bugs: |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 54 | * job handling woefully incomplete and buggy (improved --vda) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 55 | * to-do: |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 56 | * port selected bugfixes from post-0.49 busybox lash - done? |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 57 | * change { and } from special chars to reserved words |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 58 | * builtins: return, trap, ulimit |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 59 | * test magic exec with redirection only |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 60 | * follow IFS rules more precisely, including update semantics |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 61 | * figure out what to do with backslash-newline |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 62 | * propagate syntax errors, die on resource errors? |
| 63 | * continuation lines, both explicit and implicit - done? |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 64 | * maybe change charmap[] to use 2-bit entries |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 65 | * |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 66 | * 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] | 67 | */ |
Bernhard Reutner-Fischer | e15d757 | 2006-06-02 20:56:16 +0000 | [diff] [blame] | 68 | |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 69 | #include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 70 | //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] | 71 | //#include "applet_tables.h" doesn't work |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 72 | #include <glob.h> |
| 73 | /* #include <dmalloc.h> */ |
| 74 | #if ENABLE_HUSH_CASE |
| 75 | #include <fnmatch.h> |
| 76 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 77 | |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 78 | #include "math.h" |
| 79 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 80 | #define HUSH_VER_STR "0.92" |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 81 | |
Denis Vlasenko | 61befda | 2008-11-25 01:36:03 +0000 | [diff] [blame] | 82 | #if defined SINGLE_APPLET_MAIN |
| 83 | /* STANDALONE does not make sense, and won't compile */ |
| 84 | #undef CONFIG_FEATURE_SH_STANDALONE |
| 85 | #undef ENABLE_FEATURE_SH_STANDALONE |
| 86 | #undef USE_FEATURE_SH_STANDALONE |
| 87 | #define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__ |
| 88 | #define ENABLE_FEATURE_SH_STANDALONE 0 |
| 89 | #define USE_FEATURE_SH_STANDALONE(...) |
| 90 | #define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__ |
| 91 | #endif |
| 92 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 93 | #if !BB_MMU && ENABLE_HUSH_TICK |
| 94 | //#undef ENABLE_HUSH_TICK |
| 95 | //#define ENABLE_HUSH_TICK 0 |
| 96 | #warning On NOMMU, hush command substitution is dangerous. |
| 97 | #warning Dont use it for commands which produce lots of output. |
| 98 | #warning For more info see shell/hush.c, generate_stream_from_list(). |
| 99 | #endif |
| 100 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 101 | #if !ENABLE_HUSH_INTERACTIVE |
| 102 | #undef ENABLE_FEATURE_EDITING |
| 103 | #define ENABLE_FEATURE_EDITING 0 |
| 104 | #undef ENABLE_FEATURE_EDITING_FANCY_PROMPT |
| 105 | #define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0 |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 106 | #endif |
| 107 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 108 | /* Do we support ANY keywords? */ |
| 109 | #if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
| 110 | #define HAS_KEYWORDS 1 |
| 111 | #define IF_HAS_KEYWORDS(...) __VA_ARGS__ |
| 112 | #define IF_HAS_NO_KEYWORDS(...) |
| 113 | #else |
| 114 | #define HAS_KEYWORDS 0 |
| 115 | #define IF_HAS_KEYWORDS(...) |
| 116 | #define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__ |
| 117 | #endif |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 118 | |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 119 | /* Keep unconditionally on for now */ |
| 120 | #define HUSH_DEBUG 1 |
| 121 | /* In progress... */ |
| 122 | #define ENABLE_HUSH_FUNCTIONS 0 |
| 123 | |
| 124 | |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 125 | /* If you comment out one of these below, it will be #defined later |
| 126 | * to perform debug printfs to stderr: */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 127 | #define debug_printf(...) do {} while (0) |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 128 | /* Finer-grained debug switches */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 129 | #define debug_printf_parse(...) do {} while (0) |
| 130 | #define debug_print_tree(a, b) do {} while (0) |
| 131 | #define debug_printf_exec(...) do {} while (0) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 132 | #define debug_printf_env(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 133 | #define debug_printf_jobs(...) do {} while (0) |
| 134 | #define debug_printf_expand(...) do {} while (0) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 135 | #define debug_printf_glob(...) do {} while (0) |
| 136 | #define debug_printf_list(...) do {} while (0) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 137 | #define debug_printf_subst(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 138 | #define debug_printf_clean(...) do {} while (0) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 139 | |
| 140 | #ifndef debug_printf |
| 141 | #define debug_printf(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 142 | #endif |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 143 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 144 | #ifndef debug_printf_parse |
| 145 | #define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 146 | #endif |
| 147 | |
| 148 | #ifndef debug_printf_exec |
| 149 | #define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__) |
| 150 | #endif |
| 151 | |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 152 | #ifndef debug_printf_env |
| 153 | #define debug_printf_env(...) fprintf(stderr, __VA_ARGS__) |
| 154 | #endif |
| 155 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 156 | #ifndef debug_printf_jobs |
| 157 | #define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 158 | #define DEBUG_JOBS 1 |
| 159 | #else |
| 160 | #define DEBUG_JOBS 0 |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 161 | #endif |
| 162 | |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 163 | #ifndef debug_printf_expand |
| 164 | #define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__) |
| 165 | #define DEBUG_EXPAND 1 |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 166 | #else |
| 167 | #define DEBUG_EXPAND 0 |
| 168 | #endif |
| 169 | |
| 170 | #ifndef debug_printf_glob |
| 171 | #define debug_printf_glob(...) fprintf(stderr, __VA_ARGS__) |
| 172 | #define DEBUG_GLOB 1 |
| 173 | #else |
| 174 | #define DEBUG_GLOB 0 |
| 175 | #endif |
| 176 | |
| 177 | #ifndef debug_printf_list |
| 178 | #define debug_printf_list(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 179 | #endif |
| 180 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 181 | #ifndef debug_printf_subst |
| 182 | #define debug_printf_subst(...) fprintf(stderr, __VA_ARGS__) |
| 183 | #endif |
| 184 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 185 | #ifndef debug_printf_clean |
| 186 | /* broken, of course, but OK for testing */ |
| 187 | static const char *indenter(int i) |
| 188 | { |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 189 | static const char blanks[] ALIGN1 = |
| 190 | " "; |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 191 | return &blanks[sizeof(blanks) - i - 1]; |
| 192 | } |
| 193 | #define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 194 | #define DEBUG_CLEAN 1 |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 195 | #endif |
| 196 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 197 | #if DEBUG_EXPAND |
| 198 | static void debug_print_strings(const char *prefix, char **vv) |
| 199 | { |
| 200 | fprintf(stderr, "%s:\n", prefix); |
| 201 | while (*vv) |
| 202 | fprintf(stderr, " '%s'\n", *vv++); |
| 203 | } |
| 204 | #else |
| 205 | #define debug_print_strings(prefix, vv) ((void)0) |
| 206 | #endif |
| 207 | |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 208 | /* |
| 209 | * Leak hunting. Use hush_leaktool.sh for post-processing. |
| 210 | */ |
| 211 | #ifdef FOR_HUSH_LEAKTOOL |
Denis Vlasenko | ccce59d | 2008-06-16 14:35:57 +0000 | [diff] [blame] | 212 | /* suppress "warning: no previous prototype..." */ |
| 213 | void *xxmalloc(int lineno, size_t size); |
| 214 | void *xxrealloc(int lineno, void *ptr, size_t size); |
| 215 | char *xxstrdup(int lineno, const char *str); |
| 216 | void xxfree(void *ptr); |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 217 | void *xxmalloc(int lineno, size_t size) |
| 218 | { |
| 219 | void *ptr = xmalloc((size + 0xff) & ~0xff); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 220 | fdprintf(2, "line %d: malloc %p\n", lineno, ptr); |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 221 | return ptr; |
| 222 | } |
| 223 | void *xxrealloc(int lineno, void *ptr, size_t size) |
| 224 | { |
| 225 | ptr = xrealloc(ptr, (size + 0xff) & ~0xff); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 226 | fdprintf(2, "line %d: realloc %p\n", lineno, ptr); |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 227 | return ptr; |
| 228 | } |
| 229 | char *xxstrdup(int lineno, const char *str) |
| 230 | { |
| 231 | char *ptr = xstrdup(str); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 232 | fdprintf(2, "line %d: strdup %p\n", lineno, ptr); |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 233 | return ptr; |
| 234 | } |
| 235 | void xxfree(void *ptr) |
| 236 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 237 | fdprintf(2, "free %p\n", ptr); |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 238 | free(ptr); |
| 239 | } |
| 240 | #define xmalloc(s) xxmalloc(__LINE__, s) |
| 241 | #define xrealloc(p, s) xxrealloc(__LINE__, p, s) |
| 242 | #define xstrdup(s) xxstrdup(__LINE__, s) |
| 243 | #define free(p) xxfree(p) |
| 244 | #endif |
| 245 | |
| 246 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 247 | #define ERR_PTR ((void*)(long)1) |
| 248 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 249 | static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="HUSH_VER_STR; |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 250 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 251 | #define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n" |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 252 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 253 | #define SPECIAL_VAR_SYMBOL 3 |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 254 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 255 | typedef enum redir_type { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 256 | REDIRECT_INPUT = 1, |
| 257 | REDIRECT_OVERWRITE = 2, |
| 258 | REDIRECT_APPEND = 3, |
| 259 | REDIRECT_HEREIS = 4, |
| 260 | REDIRECT_IO = 5 |
| 261 | } redir_type; |
| 262 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 263 | /* The descrip member of this structure is only used to make |
| 264 | * debugging output pretty */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 265 | static const struct { |
| 266 | int mode; |
Denis Vlasenko | ef36ead | 2007-05-02 15:34:47 +0000 | [diff] [blame] | 267 | signed char default_fd; |
| 268 | char descrip[3]; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 269 | } redir_table[] = { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 270 | { 0, 0, "()" }, |
| 271 | { O_RDONLY, 0, "<" }, |
| 272 | { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" }, |
| 273 | { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" }, |
| 274 | { O_RDONLY, -1, "<<" }, |
| 275 | { O_RDWR, 1, "<>" } |
| 276 | }; |
| 277 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 278 | typedef enum pipe_style { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 279 | PIPE_SEQ = 1, |
| 280 | PIPE_AND = 2, |
| 281 | PIPE_OR = 3, |
| 282 | PIPE_BG = 4, |
| 283 | } pipe_style; |
| 284 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 285 | typedef enum reserved_style { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 286 | RES_NONE = 0, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 287 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 288 | RES_IF , |
| 289 | RES_THEN , |
| 290 | RES_ELIF , |
| 291 | RES_ELSE , |
| 292 | RES_FI , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 293 | #endif |
| 294 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 295 | RES_FOR , |
| 296 | RES_WHILE , |
| 297 | RES_UNTIL , |
| 298 | RES_DO , |
| 299 | RES_DONE , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 300 | #endif |
| 301 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 302 | RES_IN , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 303 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 304 | #if ENABLE_HUSH_CASE |
| 305 | RES_CASE , |
| 306 | /* two pseudo-keywords support contrived "case" syntax: */ |
| 307 | RES_MATCH , /* "word)" */ |
| 308 | RES_CASEI , /* "this command is inside CASE" */ |
| 309 | RES_ESAC , |
| 310 | #endif |
| 311 | RES_XXXX , |
| 312 | RES_SNTX |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 313 | } reserved_style; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 314 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 315 | struct redir_struct { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 316 | struct redir_struct *next; |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 317 | char *rd_filename; /* filename */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 318 | int fd; /* file descriptor being redirected */ |
| 319 | int dup; /* -1, or file descriptor being duplicated */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 320 | smallint /*enum redir_type*/ rd_type; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 321 | }; |
| 322 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 323 | struct command { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 324 | pid_t pid; /* 0 if exited */ |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 325 | int assignment_cnt; /* how many argv[i] are assignments? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 326 | smallint is_stopped; /* is the command currently running? */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 327 | smallint grp_type; /* GRP_xxx */ |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 328 | struct pipe *group; /* if non-NULL, this "prog" is {} group, |
| 329 | * subshell, or a compound statement */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 330 | char **argv; /* command name and arguments */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 331 | struct redir_struct *redirects; /* I/O redirections */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 332 | }; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 333 | /* argv vector may contain variable references (^Cvar^C, ^C0^C etc) |
| 334 | * and on execution these are substituted with their values. |
| 335 | * Substitution can make _several_ words out of one argv[n]! |
| 336 | * Example: argv[0]=='.^C*^C.' here: echo .$*. |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 337 | * References of the form ^C`cmd arg^C are `cmd arg` substitutions. |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 338 | */ |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 339 | #define GRP_NORMAL 0 |
| 340 | #define GRP_SUBSHELL 1 |
| 341 | #if ENABLE_HUSH_FUNCTIONS |
| 342 | #define GRP_FUNCTION 2 |
| 343 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 344 | |
| 345 | struct pipe { |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 346 | struct pipe *next; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 347 | int num_cmds; /* total number of commands in job */ |
| 348 | int alive_cmds; /* number of commands running (not exited) */ |
| 349 | int stopped_cmds; /* number of commands alive, but stopped */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 350 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 351 | int jobid; /* job number */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 352 | pid_t pgrp; /* process group ID for the job */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 353 | char *cmdtext; /* name of job */ |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 354 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 355 | struct command *cmds; /* array of commands in pipe */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 356 | smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 357 | IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */ |
| 358 | IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 359 | }; |
| 360 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 361 | /* This holds pointers to the various results of parsing */ |
| 362 | struct parse_context { |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 363 | /* linked list of pipes */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 364 | struct pipe *list_head; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 365 | /* last pipe (being constructed right now) */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 366 | struct pipe *pipe; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 367 | /* last command in pipe (being constructed right now) */ |
| 368 | struct command *command; |
| 369 | /* last redirect in command->redirects list */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 370 | struct redir_struct *pending_redirect; |
| 371 | #if HAS_KEYWORDS |
| 372 | smallint ctx_res_w; |
| 373 | smallint ctx_inverted; /* "! cmd | cmd" */ |
| 374 | #if ENABLE_HUSH_CASE |
| 375 | smallint ctx_dsemicolon; /* ";;" seen */ |
| 376 | #endif |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 377 | /* bitmask of FLAG_xxx, for figuring out valid reserved words */ |
| 378 | int old_flag; |
| 379 | /* group we are enclosed in: |
| 380 | * example 1: "{ { false; ..." |
| 381 | * example 2: "if true; then { false; ..." |
| 382 | * example 3: "if true; then if false; ..." |
| 383 | * when we find closing "}" / "fi" / whatever, we move list_head |
| 384 | * into stack->command->group and delete ourself. |
| 385 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 386 | struct parse_context *stack; |
| 387 | #endif |
| 388 | }; |
| 389 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 390 | /* On program start, environ points to initial environment. |
| 391 | * putenv adds new pointers into it, unsetenv removes them. |
| 392 | * Neither of these (de)allocates the strings. |
| 393 | * setenv allocates new strings in malloc space and does putenv, |
| 394 | * and thus setenv is unusable (leaky) for shell's purposes */ |
| 395 | #define setenv(...) setenv_is_leaky_dont_use() |
| 396 | struct variable { |
| 397 | struct variable *next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 398 | char *varstr; /* points to "name=" portion */ |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 399 | int max_len; /* if > 0, name is part of initial env; else name is malloced */ |
| 400 | smallint flg_export; /* putenv should be done on this var */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 401 | smallint flg_read_only; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 402 | }; |
| 403 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 404 | typedef struct o_string { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 405 | char *data; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 406 | int length; /* position where data is appended */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 407 | int maxlen; |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 408 | /* Protect newly added chars against globbing |
| 409 | * (by prepending \ to *, ?, [, \) */ |
| 410 | smallint o_escape; |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 411 | smallint o_glob; |
Denis Vlasenko | ff09762 | 2007-10-01 10:00:45 +0000 | [diff] [blame] | 412 | smallint nonnull; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 413 | smallint has_empty_slot; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 414 | smallint o_assignment; /* 0:maybe, 1:yes, 2:no */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 415 | } o_string; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 416 | enum { |
| 417 | MAYBE_ASSIGNMENT = 0, |
| 418 | DEFINITELY_ASSIGNMENT = 1, |
| 419 | NOT_ASSIGNMENT = 2, |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 420 | 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] | 421 | }; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 422 | /* Used for initialization: o_string foo = NULL_O_STRING; */ |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 423 | #define NULL_O_STRING { NULL } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 424 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 425 | /* I can almost use ordinary FILE*. Is open_memstream() universally |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 426 | * available? Where is it documented? */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 427 | typedef struct in_str { |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 428 | const char *p; |
| 429 | /* eof_flag=1: last char in ->p is really an EOF */ |
| 430 | char eof_flag; /* meaningless if ->p == NULL */ |
| 431 | char peek_buf[2]; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 432 | #if ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | 5a1437d | 2007-05-24 13:22:47 +0000 | [diff] [blame] | 433 | smallint promptme; |
| 434 | smallint promptmode; /* 0: PS1, 1: PS2 */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 435 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 436 | FILE *file; |
| 437 | int (*get) (struct in_str *); |
| 438 | int (*peek) (struct in_str *); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 439 | } in_str; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 440 | #define i_getch(input) ((input)->get(input)) |
| 441 | #define i_peek(input) ((input)->peek(input)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 442 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 443 | enum { |
| 444 | CHAR_ORDINARY = 0, |
| 445 | CHAR_ORDINARY_IF_QUOTED = 1, /* example: *, # */ |
| 446 | CHAR_IFS = 2, /* treated as ordinary if quoted */ |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 447 | CHAR_SPECIAL = 3, /* \, $, ", maybe ` */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 448 | }; |
| 449 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 450 | enum { |
| 451 | BC_BREAK = 1, |
| 452 | BC_CONTINUE = 2, |
| 453 | }; |
| 454 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 455 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 456 | /* "Globals" within this file */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 457 | /* Sorted roughly by size (smaller offsets == smaller code) */ |
| 458 | struct globals { |
| 459 | #if ENABLE_HUSH_INTERACTIVE |
| 460 | /* 'interactive_fd' is a fd# open to ctty, if we have one |
| 461 | * _AND_ if we decided to act interactively */ |
| 462 | int interactive_fd; |
| 463 | const char *PS1; |
| 464 | const char *PS2; |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 465 | #define G_interactive_fd (G.interactive_fd) |
| 466 | #else |
| 467 | #define G_interactive_fd 0 |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 468 | #endif |
| 469 | #if ENABLE_FEATURE_EDITING |
| 470 | line_input_t *line_input_state; |
| 471 | #endif |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 472 | pid_t root_pid; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 473 | pid_t last_bg_pid; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 474 | #if ENABLE_HUSH_JOB |
| 475 | int run_list_level; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 476 | pid_t saved_tty_pgrp; |
| 477 | int last_jobid; |
| 478 | struct pipe *job_list; |
| 479 | struct pipe *toplevel_list; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 480 | //// smallint ctrl_z_flag; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 481 | #endif |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 482 | smallint flag_SIGINT; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 483 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 484 | smallint flag_break_continue; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 485 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 486 | smallint fake_mode; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 487 | /* These four support $?, $#, and $1 */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 488 | smalluint last_return_code; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 489 | /* is global_argv and global_argv[1..n] malloced? (note: not [0]) */ |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 490 | smalluint global_args_malloced; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 491 | /* how many non-NULL argv's we have. NB: $# + 1 */ |
| 492 | int global_argc; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 493 | char **global_argv; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 494 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 495 | unsigned depth_break_continue; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 496 | unsigned depth_of_loop; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 497 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 498 | const char *ifs; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 499 | const char *cwd; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 500 | struct variable *top_var; /* = &G.shell_ver (set in main()) */ |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 501 | struct variable shell_ver; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 502 | #if ENABLE_FEATURE_SH_STANDALONE |
| 503 | struct nofork_save_area nofork_save; |
| 504 | #endif |
| 505 | #if ENABLE_HUSH_JOB |
| 506 | sigjmp_buf toplevel_jb; |
| 507 | #endif |
| 508 | unsigned char charmap[256]; |
| 509 | char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2]; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 510 | /* Signal and trap handling */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 511 | // unsigned count_SIGCHLD; |
| 512 | // unsigned handled_SIGCHLD; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 513 | /* which signals have non-DFL handler (even with no traps set)? */ |
| 514 | unsigned non_DFL_mask; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 515 | char **traps; /* char *traps[NSIG] */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 516 | sigset_t blocked_set; |
| 517 | sigset_t inherited_set; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 518 | }; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 519 | #define G (*ptr_to_globals) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 520 | /* Not #defining name to G.name - this quickly gets unwieldy |
| 521 | * (too many defines). Also, I actually prefer to see when a variable |
| 522 | * is global, thus "G." prefix is a useful hint */ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 523 | #define INIT_G() do { \ |
| 524 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
| 525 | } while (0) |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 526 | |
| 527 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 528 | /* Function prototypes for builtins */ |
| 529 | static int builtin_cd(char **argv); |
| 530 | static int builtin_echo(char **argv); |
| 531 | static int builtin_eval(char **argv); |
| 532 | static int builtin_exec(char **argv); |
| 533 | static int builtin_exit(char **argv); |
| 534 | static int builtin_export(char **argv); |
| 535 | #if ENABLE_HUSH_JOB |
| 536 | static int builtin_fg_bg(char **argv); |
| 537 | static int builtin_jobs(char **argv); |
| 538 | #endif |
| 539 | #if ENABLE_HUSH_HELP |
| 540 | static int builtin_help(char **argv); |
| 541 | #endif |
| 542 | static int builtin_pwd(char **argv); |
| 543 | static int builtin_read(char **argv); |
| 544 | static int builtin_test(char **argv); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 545 | static int builtin_trap(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 546 | static int builtin_true(char **argv); |
| 547 | static int builtin_set(char **argv); |
| 548 | static int builtin_shift(char **argv); |
| 549 | static int builtin_source(char **argv); |
| 550 | static int builtin_umask(char **argv); |
| 551 | static int builtin_unset(char **argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 552 | static int builtin_wait(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 553 | #if ENABLE_HUSH_LOOPS |
| 554 | static int builtin_break(char **argv); |
| 555 | static int builtin_continue(char **argv); |
| 556 | #endif |
| 557 | //static int builtin_not_written(char **argv); |
| 558 | |
| 559 | /* Table of built-in functions. They can be forked or not, depending on |
| 560 | * context: within pipes, they fork. As simple commands, they do not. |
| 561 | * When used in non-forking context, they can change global variables |
| 562 | * in the parent shell process. If forked, of course they cannot. |
| 563 | * For example, 'unset foo | whatever' will parse and run, but foo will |
| 564 | * still be set at the end. */ |
| 565 | struct built_in_command { |
| 566 | const char *cmd; |
| 567 | int (*function)(char **argv); |
| 568 | #if ENABLE_HUSH_HELP |
| 569 | const char *descr; |
| 570 | #define BLTIN(cmd, func, help) { cmd, func, help } |
| 571 | #else |
| 572 | #define BLTIN(cmd, func, help) { cmd, func } |
| 573 | #endif |
| 574 | }; |
| 575 | |
| 576 | /* For now, echo and test are unconditionally enabled. |
| 577 | * Maybe make it configurable? */ |
| 578 | static const struct built_in_command bltins[] = { |
| 579 | BLTIN("." , builtin_source, "Run commands in a file"), |
| 580 | BLTIN(":" , builtin_true, "No-op"), |
| 581 | BLTIN("[" , builtin_test, "Test condition"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 582 | #if ENABLE_HUSH_JOB |
| 583 | BLTIN("bg" , builtin_fg_bg, "Resume a job in the background"), |
| 584 | #endif |
| 585 | #if ENABLE_HUSH_LOOPS |
| 586 | BLTIN("break" , builtin_break, "Exit from a loop"), |
| 587 | #endif |
| 588 | BLTIN("cd" , builtin_cd, "Change directory"), |
| 589 | #if ENABLE_HUSH_LOOPS |
| 590 | BLTIN("continue", builtin_continue, "Start new loop iteration"), |
| 591 | #endif |
| 592 | BLTIN("echo" , builtin_echo, "Write to stdout"), |
| 593 | BLTIN("eval" , builtin_eval, "Construct and run shell command"), |
| 594 | BLTIN("exec" , builtin_exec, "Execute command, don't return to shell"), |
| 595 | BLTIN("exit" , builtin_exit, "Exit"), |
| 596 | BLTIN("export", builtin_export, "Set environment variable"), |
| 597 | #if ENABLE_HUSH_JOB |
| 598 | BLTIN("fg" , builtin_fg_bg, "Bring job into the foreground"), |
| 599 | BLTIN("jobs" , builtin_jobs, "List active jobs"), |
| 600 | #endif |
| 601 | BLTIN("pwd" , builtin_pwd, "Print current directory"), |
| 602 | BLTIN("read" , builtin_read, "Input environment variable"), |
| 603 | // BLTIN("return", builtin_not_written, "Return from a function"), |
| 604 | BLTIN("set" , builtin_set, "Set/unset shell local variables"), |
| 605 | BLTIN("shift" , builtin_shift, "Shift positional parameters"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 606 | BLTIN("test" , builtin_test, "Test condition"), |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 607 | BLTIN("trap" , builtin_trap, "Trap signals"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 608 | // BLTIN("ulimit", builtin_not_written, "Control resource limits"), |
| 609 | BLTIN("umask" , builtin_umask, "Set file creation mask"), |
| 610 | BLTIN("unset" , builtin_unset, "Unset environment variable"), |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 611 | BLTIN("wait" , builtin_wait, "Wait for process"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 612 | #if ENABLE_HUSH_HELP |
| 613 | BLTIN("help" , builtin_help, "List shell built-in commands"), |
| 614 | #endif |
| 615 | }; |
| 616 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 617 | |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 618 | /* Normal */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 619 | static void maybe_die(const char *notice, const char *msg) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 620 | { |
Denis Vlasenko | 5a1437d | 2007-05-24 13:22:47 +0000 | [diff] [blame] | 621 | /* Was using fancy stuff: |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 622 | * (G_interactive_fd ? bb_error_msg : bb_error_msg_and_die)(...params...) |
Denis Vlasenko | 5a1437d | 2007-05-24 13:22:47 +0000 | [diff] [blame] | 623 | * but it SEGVs. ?! Oh well... explicit temp ptr works around that */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 624 | void FAST_FUNC (*fp)(const char *s, ...) = bb_error_msg_and_die; |
| 625 | #if ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 626 | fp = (G_interactive_fd ? bb_error_msg : bb_error_msg_and_die); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 627 | #endif |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 628 | fp(msg ? "%s: %s" : notice, notice, msg); |
| 629 | } |
Mike Frysinger | 5a82845 | 2009-03-28 19:09:04 +0000 | [diff] [blame] | 630 | #if 1 |
| 631 | #define syntax(msg) maybe_die("syntax error", msg); |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 632 | #else |
Mike Frysinger | 5a82845 | 2009-03-28 19:09:04 +0000 | [diff] [blame] | 633 | /* Debug -- trick gcc to expand __LINE__ and convert to string */ |
| 634 | #define __syntax(msg, line) maybe_die("syntax error hush.c:" # line, msg) |
| 635 | #define _syntax(msg, line) __syntax(msg, line) |
| 636 | #define syntax(msg) _syntax(msg, __LINE__) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 637 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 638 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 639 | static int glob_needed(const char *s) |
| 640 | { |
| 641 | while (*s) { |
| 642 | if (*s == '\\') |
| 643 | s++; |
| 644 | if (*s == '*' || *s == '[' || *s == '?') |
| 645 | return 1; |
| 646 | s++; |
| 647 | } |
| 648 | return 0; |
| 649 | } |
| 650 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 651 | static int is_assignment(const char *s) |
| 652 | { |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 653 | if (!s || !(isalpha(*s) || *s == '_')) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 654 | return 0; |
| 655 | s++; |
| 656 | while (isalnum(*s) || *s == '_') |
| 657 | s++; |
| 658 | return *s == '='; |
| 659 | } |
| 660 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 661 | /* Replace each \x with x in place, return ptr past NUL. */ |
| 662 | static char *unbackslash(char *src) |
| 663 | { |
| 664 | char *dst = src; |
| 665 | while (1) { |
| 666 | if (*src == '\\') |
| 667 | src++; |
| 668 | if ((*dst++ = *src++) == '\0') |
| 669 | break; |
| 670 | } |
| 671 | return dst; |
| 672 | } |
| 673 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 674 | 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] | 675 | { |
| 676 | int i; |
| 677 | unsigned count1; |
| 678 | unsigned count2; |
| 679 | char **v; |
| 680 | |
| 681 | v = strings; |
| 682 | count1 = 0; |
| 683 | if (v) { |
| 684 | while (*v) { |
| 685 | count1++; |
| 686 | v++; |
| 687 | } |
| 688 | } |
| 689 | count2 = 0; |
| 690 | v = add; |
| 691 | while (*v) { |
| 692 | count2++; |
| 693 | v++; |
| 694 | } |
| 695 | v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*)); |
| 696 | v[count1 + count2] = NULL; |
| 697 | i = count2; |
| 698 | while (--i >= 0) |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 699 | v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 700 | return v; |
| 701 | } |
| 702 | |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 703 | static char **add_string_to_strings(char **strings, char *add) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 704 | { |
| 705 | char *v[2]; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 706 | v[0] = add; |
| 707 | v[1] = NULL; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 708 | return add_strings_to_strings(strings, v, /*dup:*/ 0); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 709 | } |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 710 | |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 711 | static void putenv_all(char **strings) |
| 712 | { |
| 713 | if (!strings) |
| 714 | return; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 715 | while (*strings) { |
| 716 | debug_printf_env("putenv '%s'\n", *strings); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 717 | putenv(*strings++); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 718 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 719 | } |
| 720 | |
| 721 | static char **putenv_all_and_save_old(char **strings) |
| 722 | { |
| 723 | char **old = NULL; |
| 724 | char **s = strings; |
| 725 | |
| 726 | if (!strings) |
| 727 | return old; |
| 728 | while (*strings) { |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 729 | char *v, *eq; |
| 730 | |
| 731 | eq = strchr(*strings, '='); |
| 732 | if (eq) { |
| 733 | *eq = '\0'; |
| 734 | v = getenv(*strings); |
| 735 | *eq = '='; |
| 736 | if (v) { |
| 737 | /* v points to VAL in VAR=VAL, go back to VAR */ |
| 738 | v -= (eq - *strings) + 1; |
| 739 | old = add_string_to_strings(old, v); |
| 740 | } |
| 741 | } |
| 742 | strings++; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 743 | } |
| 744 | putenv_all(s); |
| 745 | return old; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 746 | } |
| 747 | |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 748 | static void free_strings_and_unsetenv(char **strings, int unset) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 749 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 750 | char **v; |
| 751 | |
| 752 | if (!strings) |
| 753 | return; |
| 754 | |
| 755 | v = strings; |
| 756 | while (*v) { |
| 757 | if (unset) { |
Denis Vlasenko | 76ddc2e | 2008-12-30 05:05:31 +0000 | [diff] [blame] | 758 | debug_printf_env("unsetenv '%s'\n", *v); |
| 759 | bb_unsetenv(*v); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 760 | } |
| 761 | free(*v++); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 762 | } |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 763 | free(strings); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 764 | } |
| 765 | |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 766 | static void free_strings(char **strings) |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 767 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 768 | free_strings_and_unsetenv(strings, 0); |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 769 | } |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 770 | |
| 771 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 772 | /* Basic theory of signal handling in shell |
| 773 | * ======================================== |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 774 | * This does not describe what hush does, rather, it is current understanding |
| 775 | * what it _should_ do. If it doesn't, it's a bug. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 776 | * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap |
| 777 | * |
| 778 | * Signals are handled only after each pipe ("cmd | cmd | cmd" thing) |
| 779 | * is finished or backgrounded. It is the same in interactive and |
| 780 | * non-interactive shells, and is the same regardless of whether |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 781 | * a user trap handler is installed or a shell special one is in effect. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 782 | * ^C or ^Z from keyboard seem to execute "at once" because it usually |
| 783 | * backgrounds (i.e. stops) or kills all members of currently running |
| 784 | * pipe. |
| 785 | * |
| 786 | * Wait builtin in interruptible by signals for which user trap is set |
| 787 | * or by SIGINT in interactive shell. |
| 788 | * |
| 789 | * Trap handlers will execute even within trap handlers. (right?) |
| 790 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 791 | * User trap handlers are forgotten when subshell ("(cmd)") is entered. [TODO] |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 792 | * |
| 793 | * If job control is off, backgrounded commands ("cmd &") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 794 | * have SIGINT, SIGQUIT set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 795 | * |
| 796 | * Commands run in command substitution ("`cmd`") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 797 | * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 798 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 799 | * Ordinary commands have signals set to SIG_IGN/DFL set as inherited |
| 800 | * by the shell from its parent. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 801 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 802 | * Siganls which differ from SIG_DFL action |
| 803 | * (note: child (i.e., [v]forked) shell is not an interactive shell): |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 804 | * |
| 805 | * SIGQUIT: ignore |
| 806 | * SIGTERM (interactive): ignore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 807 | * SIGHUP (interactive): |
| 808 | * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 809 | * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 810 | * (note that ^Z is handled not by trapping SIGTSTP, but by seeing |
| 811 | * that all pipe members are stopped) (right?) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 812 | * SIGINT (interactive): wait for last pipe, ignore the rest |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 813 | * of the command line, show prompt. NB: ^C does not send SIGINT |
| 814 | * to interactive shell while shell is waiting for a pipe, |
| 815 | * since shell is bg'ed (is not in foreground process group). |
| 816 | * (check/expand this) |
| 817 | * Example 1: this waits 5 sec, but does not execute ls: |
| 818 | * "echo $$; sleep 5; ls -l" + "kill -INT <pid>" |
| 819 | * Example 2: this does not wait and does not execute ls: |
| 820 | * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>" |
| 821 | * Example 3: this does not wait 5 sec, but executes ls: |
| 822 | * "sleep 5; ls -l" + press ^C |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 823 | * |
| 824 | * (What happens to signals which are IGN on shell start?) |
| 825 | * (What happens with signal mask on shell start?) |
| 826 | * |
| 827 | * Implementation in hush |
| 828 | * ====================== |
| 829 | * We use in-kernel pending signal mask to determine which signals were sent. |
| 830 | * We block all signals which we don't want to take action immediately, |
| 831 | * i.e. we block all signals which need to have special handling as described |
| 832 | * above, and all signals which have traps set. |
| 833 | * After each pipe execution, we extract any pending signals via sigtimedwait() |
| 834 | * and act on them. |
| 835 | * |
| 836 | * unsigned non_DFL_mask: a mask of such "special" signals |
| 837 | * sigset_t blocked_set: current blocked signal set |
| 838 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 839 | * "trap - SIGxxx": |
| 840 | * clear bit in blocked_set unless it is also in non_DFL |
| 841 | * "trap 'cmd' SIGxxx": |
| 842 | * set bit in blocked_set (even if 'cmd' is '') |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 843 | * after [v]fork, if we plan to be a shell: |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 844 | * nothing for {} child shell (say, "true | { true; true; } | true") |
| 845 | * unset all traps if () shell. [TODO] |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 846 | * after [v]fork, if we plan to exec: |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 847 | * POSIX says pending signal mask is cleared in child - no need to clear it. |
| 848 | * Restore blocked signal set to one inherited by shell just prior to exec. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 849 | * |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 850 | * Note: as a result, we do not use signal handlers much. The only uses |
| 851 | * are to count SIGCHLDs [disabled - bug somewhere, + bloat] |
| 852 | * and to restore tty pgrp on signal-induced exit. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 853 | * |
| 854 | * TODO: check/fix wait builtin to be interruptible. |
| 855 | */ |
| 856 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 857 | //static void SIGCHLD_handler(int sig UNUSED_PARAM) |
| 858 | //{ |
| 859 | // G.count_SIGCHLD++; |
| 860 | //} |
| 861 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 862 | /* called once at shell init */ |
| 863 | static void init_signal_mask(void) |
Denis Vlasenko | 4830fc5 | 2008-05-25 21:50:55 +0000 | [diff] [blame] | 864 | { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 865 | unsigned sig; |
| 866 | unsigned mask = (1 << SIGQUIT); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 867 | if (G_interactive_fd) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 868 | mask = 0 |
| 869 | | (1 << SIGQUIT) |
| 870 | | (1 << SIGTERM) |
| 871 | | (1 << SIGHUP) |
| 872 | #if ENABLE_HUSH_JOB |
| 873 | | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP) |
| 874 | #endif |
| 875 | | (1 << SIGINT) |
| 876 | ; |
| 877 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 878 | G.non_DFL_mask = mask; |
| 879 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 880 | sigprocmask(SIG_SETMASK, NULL, &G.blocked_set); |
| 881 | sig = 0; |
| 882 | while (mask) { |
| 883 | if (mask & 1) |
| 884 | sigaddset(&G.blocked_set, sig); |
| 885 | mask >>= 1; |
| 886 | sig++; |
| 887 | } |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 888 | sigdelset(&G.blocked_set, SIGCHLD); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 889 | sigprocmask(SIG_SETMASK, &G.blocked_set, &G.inherited_set); |
Denis Vlasenko | 4830fc5 | 2008-05-25 21:50:55 +0000 | [diff] [blame] | 890 | } |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 891 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 892 | static int check_and_run_traps(int sig) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 893 | { |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 894 | static const struct timespec zero_timespec = { 0, 0 }; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 895 | smalluint save_rcode; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 896 | int last_sig = 0; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 897 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 898 | if (sig) |
| 899 | goto jump_in; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 900 | while (1) { |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 901 | sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 902 | if (sig <= 0) |
| 903 | break; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 904 | jump_in: |
| 905 | last_sig = sig; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 906 | if (G.traps && G.traps[sig]) { |
| 907 | if (G.traps[sig][0]) { |
| 908 | /* We have user-defined handler */ |
| 909 | char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL }; |
| 910 | save_rcode = G.last_return_code; |
| 911 | builtin_eval(argv); |
| 912 | free(argv[1]); |
| 913 | G.last_return_code = save_rcode; |
| 914 | } /* else: "" trap, ignoring signal */ |
| 915 | continue; |
| 916 | } |
| 917 | /* not a trap: special action */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 918 | switch (sig) { |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 919 | // case SIGCHLD: |
| 920 | // G.count_SIGCHLD++; |
| 921 | // break; |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 922 | case SIGINT: |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 923 | bb_putchar('\n'); |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 924 | G.flag_SIGINT = 1; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 925 | break; |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 926 | //TODO |
| 927 | // case SIGHUP: ... |
| 928 | // break; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 929 | default: /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */ |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 930 | break; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 931 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 932 | } |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 933 | return last_sig; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 934 | } |
| 935 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 936 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 937 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 938 | /* Restores tty foreground process group, and exits. |
| 939 | * May be called as signal handler for fatal signal |
| 940 | * (will faithfully resend signal to itself, producing correct exit state) |
| 941 | * or called directly with -EXITCODE. |
| 942 | * We also call it if xfunc is exiting. */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 943 | static void sigexit(int sig) NORETURN; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 944 | static void sigexit(int sig) |
| 945 | { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 946 | /* Disable all signals: job control, SIGPIPE, etc. */ |
Denis Vlasenko | 3f165fa | 2008-03-17 08:29:08 +0000 | [diff] [blame] | 947 | sigprocmask_allsigs(SIG_BLOCK); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 948 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 949 | /* Careful: we can end up here after [v]fork. Do not restore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 950 | * tty pgrp then, only top-level shell process does that */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 951 | if (G_interactive_fd && getpid() == G.root_pid) |
| 952 | tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 953 | |
| 954 | /* Not a signal, just exit */ |
| 955 | if (sig <= 0) |
| 956 | _exit(- sig); |
| 957 | |
Denis Vlasenko | 400d8bb | 2008-02-24 13:36:01 +0000 | [diff] [blame] | 958 | kill_myself_with_sig(sig); /* does not return */ |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 959 | } |
| 960 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 961 | /* helper */ |
| 962 | static void maybe_set_sighandler(int sig) |
| 963 | { |
| 964 | void (*handler)(int); |
| 965 | /* non_DFL_mask'ed signals are, well, masked, |
| 966 | * no need to set handler for them. |
| 967 | */ |
| 968 | if (!((G.non_DFL_mask >> sig) & 1)) { |
| 969 | handler = signal(sig, sigexit); |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 970 | if (handler == SIG_IGN) /* oops... restore back to IGN! */ |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 971 | signal(sig, handler); |
| 972 | } |
| 973 | } |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 974 | /* Used only to set handler to restore pgrp on exit */ |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 975 | static void set_fatal_signals_to_sigexit(void) |
| 976 | { |
| 977 | if (HUSH_DEBUG) { |
| 978 | maybe_set_sighandler(SIGILL ); |
| 979 | maybe_set_sighandler(SIGFPE ); |
| 980 | maybe_set_sighandler(SIGBUS ); |
| 981 | maybe_set_sighandler(SIGSEGV); |
| 982 | maybe_set_sighandler(SIGTRAP); |
| 983 | } /* else: hush is perfect. what SEGV? */ |
| 984 | |
| 985 | maybe_set_sighandler(SIGABRT); |
| 986 | |
| 987 | /* bash 3.2 seems to handle these just like 'fatal' ones */ |
| 988 | maybe_set_sighandler(SIGPIPE); |
| 989 | maybe_set_sighandler(SIGALRM); |
| 990 | maybe_set_sighandler(SIGHUP ); |
| 991 | |
| 992 | /* if we aren't interactive... but in this case |
| 993 | * we never want to restore pgrp on exit, and this fn is not called */ |
| 994 | /*maybe_set_sighandler(SIGTERM);*/ |
| 995 | /*maybe_set_sighandler(SIGINT );*/ |
| 996 | } |
| 997 | /* Used only to suppress ^Z in `cmd` */ |
| 998 | static void set_jobctrl_signals_to_IGN(void) |
| 999 | { |
| 1000 | bb_signals(0 |
| 1001 | + (1 << SIGTSTP) |
| 1002 | + (1 << SIGTTIN) |
| 1003 | + (1 << SIGTTOU) |
| 1004 | , SIG_IGN); |
| 1005 | } |
| 1006 | |
Denis Vlasenko | ef36ead | 2007-05-02 15:34:47 +0000 | [diff] [blame] | 1007 | #else /* !JOB */ |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1008 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1009 | #define set_fatal_signals_to_sigexit(handler) ((void)0) |
| 1010 | #define set_jobctrl_signals_to_IGN(handler) ((void)0) |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1011 | |
Denis Vlasenko | ef36ead | 2007-05-02 15:34:47 +0000 | [diff] [blame] | 1012 | #endif /* JOB */ |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1013 | |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1014 | /* Restores tty foreground process group, and exits. */ |
| 1015 | static void hush_exit(int exitcode) NORETURN; |
| 1016 | static void hush_exit(int exitcode) |
| 1017 | { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1018 | if (G.traps && G.traps[0] && G.traps[0][0]) { |
| 1019 | char *argv[] = { NULL, xstrdup(G.traps[0]), NULL }; |
| 1020 | builtin_eval(argv); |
| 1021 | free(argv[1]); |
| 1022 | } |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1023 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1024 | #if ENABLE_HUSH_JOB |
| 1025 | fflush(NULL); /* flush all streams */ |
| 1026 | sigexit(- (exitcode & 0xff)); |
| 1027 | #else |
| 1028 | exit(exitcode); |
| 1029 | #endif |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1030 | } |
| 1031 | |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1032 | |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1033 | static const char *set_cwd(void) |
| 1034 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1035 | /* xrealloc_getcwd_or_warn(arg) calls free(arg), |
| 1036 | * we must not try to free(bb_msg_unknown) */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 1037 | if (G.cwd == bb_msg_unknown) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1038 | G.cwd = NULL; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 1039 | G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd); |
| 1040 | if (!G.cwd) |
| 1041 | G.cwd = bb_msg_unknown; |
| 1042 | return G.cwd; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1043 | } |
| 1044 | |
Denis Vlasenko | 8350686 | 2007-11-23 13:11:42 +0000 | [diff] [blame] | 1045 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1046 | /* Get/check local shell variables */ |
| 1047 | static struct variable *get_local_var(const char *name) |
| 1048 | { |
| 1049 | struct variable *cur; |
| 1050 | int len; |
| 1051 | |
| 1052 | if (!name) |
| 1053 | return NULL; |
| 1054 | len = strlen(name); |
| 1055 | for (cur = G.top_var; cur; cur = cur->next) { |
| 1056 | if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=') |
| 1057 | return cur; |
| 1058 | } |
| 1059 | return NULL; |
| 1060 | } |
| 1061 | |
| 1062 | /* Basically useful version until someone wants to get fancier, |
| 1063 | * see the bash man page under "Parameter Expansion" */ |
| 1064 | static const char *lookup_param(const char *src) |
| 1065 | { |
| 1066 | struct variable *var = get_local_var(src); |
| 1067 | if (var) |
| 1068 | return strchr(var->varstr, '=') + 1; |
| 1069 | return NULL; |
| 1070 | } |
| 1071 | |
| 1072 | /* str holds "NAME=VAL" and is expected to be malloced. |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1073 | * We take ownership of it. |
| 1074 | * flg_export is used by: |
| 1075 | * 0: do not export |
| 1076 | * 1: export |
| 1077 | * -1: if NAME is set, leave export status alone |
| 1078 | * if NAME is not set, do not export |
| 1079 | */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1080 | static int set_local_var(char *str, int flg_export) |
| 1081 | { |
| 1082 | struct variable *cur; |
| 1083 | char *value; |
| 1084 | int name_len; |
| 1085 | |
| 1086 | value = strchr(str, '='); |
| 1087 | if (!value) { /* not expected to ever happen? */ |
| 1088 | free(str); |
| 1089 | return -1; |
| 1090 | } |
| 1091 | |
| 1092 | name_len = value - str + 1; /* including '=' */ |
| 1093 | cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */ |
| 1094 | while (1) { |
| 1095 | if (strncmp(cur->varstr, str, name_len) != 0) { |
| 1096 | if (!cur->next) { |
| 1097 | /* Bail out. Note that now cur points |
| 1098 | * to last var in linked list */ |
| 1099 | break; |
| 1100 | } |
| 1101 | cur = cur->next; |
| 1102 | continue; |
| 1103 | } |
| 1104 | /* We found an existing var with this name */ |
| 1105 | *value = '\0'; |
| 1106 | if (cur->flg_read_only) { |
| 1107 | bb_error_msg("%s: readonly variable", str); |
| 1108 | free(str); |
| 1109 | return -1; |
| 1110 | } |
| 1111 | debug_printf_env("%s: unsetenv '%s'\n", __func__, str); |
| 1112 | unsetenv(str); /* just in case */ |
| 1113 | *value = '='; |
| 1114 | if (strcmp(cur->varstr, str) == 0) { |
| 1115 | free_and_exp: |
| 1116 | free(str); |
| 1117 | goto exp; |
| 1118 | } |
| 1119 | if (cur->max_len >= strlen(str)) { |
| 1120 | /* This one is from startup env, reuse space */ |
| 1121 | strcpy(cur->varstr, str); |
| 1122 | goto free_and_exp; |
| 1123 | } |
| 1124 | /* max_len == 0 signifies "malloced" var, which we can |
| 1125 | * (and has to) free */ |
| 1126 | if (!cur->max_len) |
| 1127 | free(cur->varstr); |
| 1128 | cur->max_len = 0; |
| 1129 | goto set_str_and_exp; |
| 1130 | } |
| 1131 | |
| 1132 | /* Not found - create next variable struct */ |
| 1133 | cur->next = xzalloc(sizeof(*cur)); |
| 1134 | cur = cur->next; |
| 1135 | |
| 1136 | set_str_and_exp: |
| 1137 | cur->varstr = str; |
| 1138 | exp: |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1139 | if (flg_export == 1) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1140 | cur->flg_export = 1; |
| 1141 | if (cur->flg_export) { |
| 1142 | debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr); |
| 1143 | return putenv(cur->varstr); |
| 1144 | } |
| 1145 | return 0; |
| 1146 | } |
| 1147 | |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1148 | static int unset_local_var(const char *name) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1149 | { |
| 1150 | struct variable *cur; |
| 1151 | struct variable *prev = prev; /* for gcc */ |
| 1152 | int name_len; |
| 1153 | |
| 1154 | if (!name) |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1155 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1156 | name_len = strlen(name); |
| 1157 | cur = G.top_var; |
| 1158 | while (cur) { |
| 1159 | if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') { |
| 1160 | if (cur->flg_read_only) { |
| 1161 | bb_error_msg("%s: readonly variable", name); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1162 | return EXIT_FAILURE; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1163 | } |
| 1164 | /* prev is ok to use here because 1st variable, HUSH_VERSION, |
| 1165 | * is ro, and we cannot reach this code on the 1st pass */ |
| 1166 | prev->next = cur->next; |
| 1167 | debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr); |
| 1168 | bb_unsetenv(cur->varstr); |
| 1169 | if (!cur->max_len) |
| 1170 | free(cur->varstr); |
| 1171 | free(cur); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1172 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1173 | } |
| 1174 | prev = cur; |
| 1175 | cur = cur->next; |
| 1176 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1177 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1178 | } |
| 1179 | |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1180 | #if ENABLE_SH_MATH_SUPPORT |
| 1181 | #define is_name(c) ((c) == '_' || isalpha((unsigned char)(c))) |
| 1182 | #define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c))) |
| 1183 | static char *endofname(const char *name) |
| 1184 | { |
| 1185 | char *p; |
| 1186 | |
| 1187 | p = (char *) name; |
| 1188 | if (!is_name(*p)) |
| 1189 | return p; |
| 1190 | while (*++p) { |
| 1191 | if (!is_in_name(*p)) |
| 1192 | break; |
| 1193 | } |
| 1194 | return p; |
| 1195 | } |
| 1196 | |
| 1197 | static void arith_set_local_var(const char *name, const char *val, int flags) |
| 1198 | { |
| 1199 | /* arith code doesnt malloc space, so do it for it */ |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1200 | char *var = xasprintf("%s=%s", name, val); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1201 | set_local_var(var, flags); |
| 1202 | } |
| 1203 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1204 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1205 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1206 | /* |
| 1207 | * in_str support |
| 1208 | */ |
| 1209 | static int static_get(struct in_str *i) |
| 1210 | { |
| 1211 | int ch = *i->p++; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 1212 | if (ch != '\0') |
| 1213 | return ch; |
| 1214 | i->p--; |
| 1215 | return EOF; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1216 | } |
| 1217 | |
| 1218 | static int static_peek(struct in_str *i) |
| 1219 | { |
| 1220 | return *i->p; |
| 1221 | } |
| 1222 | |
| 1223 | #if ENABLE_HUSH_INTERACTIVE |
| 1224 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1225 | static void cmdedit_set_initial_prompt(void) |
| 1226 | { |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1227 | if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 1228 | G.PS1 = getenv("PS1"); |
| 1229 | if (G.PS1 == NULL) |
| 1230 | G.PS1 = "\\w \\$ "; |
| 1231 | } else |
| 1232 | G.PS1 = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1233 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1234 | |
| 1235 | static const char* setup_prompt_string(int promptmode) |
| 1236 | { |
| 1237 | const char *prompt_str; |
| 1238 | debug_printf("setup_prompt_string %d ", promptmode); |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1239 | if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 1240 | /* Set up the prompt */ |
| 1241 | if (promptmode == 0) { /* PS1 */ |
| 1242 | free((char*)G.PS1); |
| 1243 | G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#'); |
| 1244 | prompt_str = G.PS1; |
| 1245 | } else |
| 1246 | prompt_str = G.PS2; |
| 1247 | } else |
| 1248 | prompt_str = (promptmode == 0) ? G.PS1 : G.PS2; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1249 | debug_printf("result '%s'\n", prompt_str); |
| 1250 | return prompt_str; |
| 1251 | } |
| 1252 | |
| 1253 | static void get_user_input(struct in_str *i) |
| 1254 | { |
| 1255 | int r; |
| 1256 | const char *prompt_str; |
| 1257 | |
| 1258 | prompt_str = setup_prompt_string(i->promptmode); |
| 1259 | #if ENABLE_FEATURE_EDITING |
| 1260 | /* Enable command line editing only while a command line |
| 1261 | * is actually being read */ |
| 1262 | do { |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1263 | G.flag_SIGINT = 0; |
| 1264 | /* buglet: SIGINT will not make new prompt to appear _at once_, |
| 1265 | * only after <Enter>. (^C will work) */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1266 | r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state); |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1267 | /* catch *SIGINT* etc (^C is handled by read_line_input) */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1268 | check_and_run_traps(0); |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1269 | } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1270 | i->eof_flag = (r < 0); |
| 1271 | if (i->eof_flag) { /* EOF/error detected */ |
| 1272 | G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */ |
| 1273 | G.user_input_buf[1] = '\0'; |
| 1274 | } |
| 1275 | #else |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1276 | do { |
| 1277 | G.flag_SIGINT = 0; |
| 1278 | fputs(prompt_str, stdout); |
| 1279 | fflush(stdout); |
| 1280 | G.user_input_buf[0] = r = fgetc(i->file); |
| 1281 | /*G.user_input_buf[1] = '\0'; - already is and never changed */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1282 | //do we need check_and_run_traps(0)? (maybe only if stdin) |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1283 | } while (G.flag_SIGINT); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1284 | i->eof_flag = (r == EOF); |
| 1285 | #endif |
| 1286 | i->p = G.user_input_buf; |
| 1287 | } |
| 1288 | |
| 1289 | #endif /* INTERACTIVE */ |
| 1290 | |
| 1291 | /* This is the magic location that prints prompts |
| 1292 | * and gets data back from the user */ |
| 1293 | static int file_get(struct in_str *i) |
| 1294 | { |
| 1295 | int ch; |
| 1296 | |
| 1297 | /* If there is data waiting, eat it up */ |
| 1298 | if (i->p && *i->p) { |
| 1299 | #if ENABLE_HUSH_INTERACTIVE |
| 1300 | take_cached: |
| 1301 | #endif |
| 1302 | ch = *i->p++; |
| 1303 | if (i->eof_flag && !*i->p) |
| 1304 | ch = EOF; |
| 1305 | } else { |
| 1306 | /* need to double check i->file because we might be doing something |
| 1307 | * more complicated by now, like sourcing or substituting. */ |
| 1308 | #if ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 1309 | if (G_interactive_fd && i->promptme && i->file == stdin) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1310 | do { |
| 1311 | get_user_input(i); |
| 1312 | } while (!*i->p); /* need non-empty line */ |
| 1313 | i->promptmode = 1; /* PS2 */ |
| 1314 | i->promptme = 0; |
| 1315 | goto take_cached; |
| 1316 | } |
| 1317 | #endif |
| 1318 | ch = fgetc(i->file); |
| 1319 | } |
| 1320 | debug_printf("file_get: got a '%c' %d\n", ch, ch); |
| 1321 | #if ENABLE_HUSH_INTERACTIVE |
| 1322 | if (ch == '\n') |
| 1323 | i->promptme = 1; |
| 1324 | #endif |
| 1325 | return ch; |
| 1326 | } |
| 1327 | |
| 1328 | /* All the callers guarantee this routine will never be |
| 1329 | * used right after a newline, so prompting is not needed. |
| 1330 | */ |
| 1331 | static int file_peek(struct in_str *i) |
| 1332 | { |
| 1333 | int ch; |
| 1334 | if (i->p && *i->p) { |
| 1335 | if (i->eof_flag && !i->p[1]) |
| 1336 | return EOF; |
| 1337 | return *i->p; |
| 1338 | } |
| 1339 | ch = fgetc(i->file); |
| 1340 | i->eof_flag = (ch == EOF); |
| 1341 | i->peek_buf[0] = ch; |
| 1342 | i->peek_buf[1] = '\0'; |
| 1343 | i->p = i->peek_buf; |
| 1344 | debug_printf("file_peek: got a '%c' %d\n", *i->p, *i->p); |
| 1345 | return ch; |
| 1346 | } |
| 1347 | |
| 1348 | static void setup_file_in_str(struct in_str *i, FILE *f) |
| 1349 | { |
| 1350 | i->peek = file_peek; |
| 1351 | i->get = file_get; |
| 1352 | #if ENABLE_HUSH_INTERACTIVE |
| 1353 | i->promptme = 1; |
| 1354 | i->promptmode = 0; /* PS1 */ |
| 1355 | #endif |
| 1356 | i->file = f; |
| 1357 | i->p = NULL; |
| 1358 | } |
| 1359 | |
| 1360 | static void setup_string_in_str(struct in_str *i, const char *s) |
| 1361 | { |
| 1362 | i->peek = static_peek; |
| 1363 | i->get = static_get; |
| 1364 | #if ENABLE_HUSH_INTERACTIVE |
| 1365 | i->promptme = 1; |
| 1366 | i->promptmode = 0; /* PS1 */ |
| 1367 | #endif |
| 1368 | i->p = s; |
| 1369 | i->eof_flag = 0; |
| 1370 | } |
| 1371 | |
| 1372 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1373 | /* |
| 1374 | * o_string support |
| 1375 | */ |
| 1376 | #define B_CHUNK (32 * sizeof(char*)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1377 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1378 | static void o_reset(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1379 | { |
| 1380 | o->length = 0; |
| 1381 | o->nonnull = 0; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1382 | if (o->data) |
| 1383 | o->data[0] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1384 | } |
| 1385 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1386 | static void o_free(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1387 | { |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 1388 | free(o->data); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1389 | memset(o, 0, sizeof(*o)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1390 | } |
| 1391 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1392 | static void o_grow_by(o_string *o, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1393 | { |
| 1394 | if (o->length + len > o->maxlen) { |
| 1395 | o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK); |
| 1396 | o->data = xrealloc(o->data, 1 + o->maxlen); |
| 1397 | } |
| 1398 | } |
| 1399 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1400 | static void o_addchr(o_string *o, int ch) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1401 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1402 | debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o); |
| 1403 | o_grow_by(o, 1); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1404 | o->data[o->length] = ch; |
| 1405 | o->length++; |
| 1406 | o->data[o->length] = '\0'; |
| 1407 | } |
| 1408 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1409 | static void o_addstr(o_string *o, const char *str, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1410 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1411 | o_grow_by(o, len); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1412 | memcpy(&o->data[o->length], str, len); |
| 1413 | o->length += len; |
| 1414 | o->data[o->length] = '\0'; |
| 1415 | } |
| 1416 | |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1417 | static void o_addstrauto(o_string *o, const char *str) |
| 1418 | { |
| 1419 | o_addstr(o, str, strlen(str) + 1); |
| 1420 | } |
| 1421 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1422 | static void o_addstr_duplicate_backslash(o_string *o, const char *str, int len) |
| 1423 | { |
| 1424 | while (len) { |
| 1425 | o_addchr(o, *str); |
| 1426 | if (*str++ == '\\' |
| 1427 | && (*str != '*' && *str != '?' && *str != '[') |
| 1428 | ) { |
| 1429 | o_addchr(o, '\\'); |
| 1430 | } |
| 1431 | len--; |
| 1432 | } |
| 1433 | } |
| 1434 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1435 | /* My analysis of quoting semantics tells me that state information |
| 1436 | * is associated with a destination, not a source. |
| 1437 | */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1438 | static void o_addqchr(o_string *o, int ch) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1439 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1440 | int sz = 1; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 1441 | char *found = strchr("*?[\\", ch); |
| 1442 | if (found) |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1443 | sz++; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 1444 | o_grow_by(o, sz); |
| 1445 | if (found) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1446 | o->data[o->length] = '\\'; |
| 1447 | o->length++; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1448 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1449 | o->data[o->length] = ch; |
| 1450 | o->length++; |
| 1451 | o->data[o->length] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1452 | } |
| 1453 | |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1454 | static void o_addQchr(o_string *o, int ch) |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1455 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1456 | int sz = 1; |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1457 | if (o->o_escape && strchr("*?[\\", ch)) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1458 | sz++; |
| 1459 | o->data[o->length] = '\\'; |
| 1460 | o->length++; |
| 1461 | } |
| 1462 | o_grow_by(o, sz); |
| 1463 | o->data[o->length] = ch; |
| 1464 | o->length++; |
| 1465 | o->data[o->length] = '\0'; |
| 1466 | } |
| 1467 | |
| 1468 | static void o_addQstr(o_string *o, const char *str, int len) |
| 1469 | { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1470 | if (!o->o_escape) { |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1471 | o_addstr(o, str, len); |
| 1472 | return; |
| 1473 | } |
| 1474 | while (len) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1475 | char ch; |
| 1476 | int sz; |
| 1477 | int ordinary_cnt = strcspn(str, "*?[\\"); |
| 1478 | if (ordinary_cnt > len) /* paranoia */ |
| 1479 | ordinary_cnt = len; |
| 1480 | o_addstr(o, str, ordinary_cnt); |
| 1481 | if (ordinary_cnt == len) |
| 1482 | return; |
| 1483 | str += ordinary_cnt; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1484 | len -= ordinary_cnt + 1; /* we are processing + 1 char below */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1485 | |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1486 | ch = *str++; |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1487 | sz = 1; |
| 1488 | if (ch) { /* it is necessarily one of "*?[\\" */ |
| 1489 | sz++; |
| 1490 | o->data[o->length] = '\\'; |
| 1491 | o->length++; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1492 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1493 | o_grow_by(o, sz); |
| 1494 | o->data[o->length] = ch; |
| 1495 | o->length++; |
| 1496 | o->data[o->length] = '\0'; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1497 | } |
| 1498 | } |
| 1499 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1500 | /* A special kind of o_string for $VAR and `cmd` expansion. |
| 1501 | * 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] | 1502 | * increments. Actual string data starts at the next multiple of 16 * (char*). |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1503 | * list[i] contains an INDEX (int!) into this string data. |
| 1504 | * It means that if list[] needs to grow, data needs to be moved higher up |
| 1505 | * but list[i]'s need not be modified. |
| 1506 | * NB: remembering how many list[i]'s you have there is crucial. |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1507 | * o_finalize_list() operation post-processes this structure - calculates |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1508 | * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well. |
| 1509 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1510 | #if DEBUG_EXPAND || DEBUG_GLOB |
| 1511 | static void debug_print_list(const char *prefix, o_string *o, int n) |
| 1512 | { |
| 1513 | char **list = (char**)o->data; |
| 1514 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1515 | int i = 0; |
| 1516 | fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n", |
| 1517 | prefix, list, n, string_start, o->length, o->maxlen); |
| 1518 | while (i < n) { |
| 1519 | fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i], |
| 1520 | o->data + (int)list[i] + string_start, |
| 1521 | o->data + (int)list[i] + string_start); |
| 1522 | i++; |
| 1523 | } |
| 1524 | if (n) { |
| 1525 | const char *p = o->data + (int)list[n - 1] + string_start; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1526 | fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data)); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1527 | } |
| 1528 | } |
| 1529 | #else |
| 1530 | #define debug_print_list(prefix, o, n) ((void)0) |
| 1531 | #endif |
| 1532 | |
| 1533 | /* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value |
| 1534 | * in list[n] so that it points past last stored byte so far. |
| 1535 | * It returns n+1. */ |
| 1536 | static int o_save_ptr_helper(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1537 | { |
| 1538 | char **list = (char**)o->data; |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1539 | int string_start; |
| 1540 | int string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1541 | |
| 1542 | if (!o->has_empty_slot) { |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1543 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1544 | string_len = o->length - string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1545 | if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */ |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1546 | 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] | 1547 | /* list[n] points to string_start, make space for 16 more pointers */ |
| 1548 | o->maxlen += 0x10 * sizeof(list[0]); |
| 1549 | o->data = xrealloc(o->data, o->maxlen + 1); |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 1550 | list = (char**)o->data; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1551 | memmove(list + n + 0x10, list + n, string_len); |
| 1552 | o->length += 0x10 * sizeof(list[0]); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1553 | } else |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1554 | 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] | 1555 | } else { |
| 1556 | /* We have empty slot at list[n], reuse without growth */ |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1557 | string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */ |
| 1558 | string_len = o->length - string_start; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1559 | 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] | 1560 | o->has_empty_slot = 0; |
| 1561 | } |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1562 | list[n] = (char*)(ptrdiff_t)string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1563 | return n + 1; |
| 1564 | } |
| 1565 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1566 | /* "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] | 1567 | static int o_get_last_ptr(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1568 | { |
| 1569 | char **list = (char**)o->data; |
| 1570 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1571 | |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1572 | return ((int)(ptrdiff_t)list[n-1]) + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1573 | } |
| 1574 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1575 | /* o_glob performs globbing on last list[], saving each result |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1576 | * as a new list[]. */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1577 | static int o_glob(o_string *o, int n) |
| 1578 | { |
| 1579 | glob_t globdata; |
| 1580 | int gr; |
| 1581 | char *pattern; |
| 1582 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1583 | 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] | 1584 | if (!o->data) |
| 1585 | return o_save_ptr_helper(o, n); |
| 1586 | pattern = o->data + o_get_last_ptr(o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1587 | debug_printf_glob("glob pattern '%s'\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1588 | if (!glob_needed(pattern)) { |
| 1589 | literal: |
| 1590 | o->length = unbackslash(pattern) - o->data; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1591 | debug_printf_glob("glob pattern '%s' is literal\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1592 | return o_save_ptr_helper(o, n); |
| 1593 | } |
| 1594 | |
| 1595 | memset(&globdata, 0, sizeof(globdata)); |
| 1596 | gr = glob(pattern, 0, NULL, &globdata); |
| 1597 | debug_printf_glob("glob('%s'):%d\n", pattern, gr); |
| 1598 | if (gr == GLOB_NOSPACE) |
| 1599 | bb_error_msg_and_die("out of memory during glob"); |
| 1600 | if (gr == GLOB_NOMATCH) { |
| 1601 | globfree(&globdata); |
| 1602 | goto literal; |
| 1603 | } |
| 1604 | if (gr != 0) { /* GLOB_ABORTED ? */ |
| 1605 | //TODO: testcase for bad glob pattern behavior |
| 1606 | bb_error_msg("glob(3) error %d on '%s'", gr, pattern); |
| 1607 | } |
| 1608 | if (globdata.gl_pathv && globdata.gl_pathv[0]) { |
| 1609 | char **argv = globdata.gl_pathv; |
| 1610 | o->length = pattern - o->data; /* "forget" pattern */ |
| 1611 | while (1) { |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1612 | o_addstrauto(o, *argv); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1613 | n = o_save_ptr_helper(o, n); |
| 1614 | argv++; |
| 1615 | if (!*argv) |
| 1616 | break; |
| 1617 | } |
| 1618 | } |
| 1619 | globfree(&globdata); |
| 1620 | if (DEBUG_GLOB) |
| 1621 | debug_print_list("o_glob returning", o, n); |
| 1622 | return n; |
| 1623 | } |
| 1624 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1625 | /* If o->o_glob == 1, glob the string so far remembered. |
| 1626 | * Otherwise, just finish current list[] and start new */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1627 | static int o_save_ptr(o_string *o, int n) |
| 1628 | { |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 1629 | if (o->o_glob) { /* if globbing is requested */ |
| 1630 | /* If o->has_empty_slot, list[n] was already globbed |
| 1631 | * (if it was requested back then when it was filled) |
| 1632 | * so don't do that again! */ |
| 1633 | if (!o->has_empty_slot) |
| 1634 | return o_glob(o, n); /* o_save_ptr_helper is inside */ |
| 1635 | } |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1636 | return o_save_ptr_helper(o, n); |
| 1637 | } |
| 1638 | |
| 1639 | /* "Please convert list[n] to real char* ptrs, and NULL terminate it." */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1640 | static char **o_finalize_list(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1641 | { |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1642 | char **list; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1643 | int string_start; |
| 1644 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1645 | n = o_save_ptr(o, n); /* force growth for list[n] if necessary */ |
| 1646 | if (DEBUG_EXPAND) |
| 1647 | debug_print_list("finalized", o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1648 | debug_printf_expand("finalized n:%d\n", n); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1649 | list = (char**)o->data; |
| 1650 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1651 | list[--n] = NULL; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1652 | while (n) { |
| 1653 | n--; |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1654 | list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1655 | } |
| 1656 | return list; |
| 1657 | } |
| 1658 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1659 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1660 | /* Expansion can recurse */ |
| 1661 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 1662 | static int process_command_subs(o_string *dest, struct in_str *input); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1663 | #endif |
| 1664 | static char *expand_string_to_string(const char *str); |
| 1665 | static int parse_stream_dquoted(o_string *dest, struct in_str *input, int dquote_end); |
| 1666 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1667 | /* expand_strvec_to_strvec() takes a list of strings, expands |
| 1668 | * all variable references within and returns a pointer to |
| 1669 | * a list of expanded strings, possibly with larger number |
| 1670 | * of strings. (Think VAR="a b"; echo $VAR). |
| 1671 | * This new list is allocated as a single malloc block. |
| 1672 | * NULL-terminated list of char* pointers is at the beginning of it, |
| 1673 | * followed by strings themself. |
| 1674 | * Caller can deallocate entire list by single free(list). */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1675 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1676 | /* Store given string, finalizing the word and starting new one whenever |
| 1677 | * we encounter IFS char(s). This is used for expanding variable values. |
| 1678 | * End-of-string does NOT finalize word: think about 'echo -$VAR-' */ |
| 1679 | 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] | 1680 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1681 | while (1) { |
| 1682 | int word_len = strcspn(str, G.ifs); |
| 1683 | if (word_len) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1684 | if (output->o_escape || !output->o_glob) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1685 | o_addQstr(output, str, word_len); |
| 1686 | else /* protect backslashes against globbing up :) */ |
| 1687 | o_addstr_duplicate_backslash(output, str, word_len); |
| 1688 | str += word_len; |
| 1689 | } |
| 1690 | if (!*str) /* EOL - do not finalize word */ |
| 1691 | break; |
| 1692 | o_addchr(output, '\0'); |
| 1693 | debug_print_list("expand_on_ifs", output, n); |
| 1694 | n = o_save_ptr(output, n); |
| 1695 | str += strspn(str, G.ifs); /* skip ifs chars */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1696 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1697 | debug_print_list("expand_on_ifs[1]", output, n); |
| 1698 | return n; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1699 | } |
| 1700 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1701 | /* Expand all variable references in given string, adding words to list[] |
| 1702 | * at n, n+1,... positions. Return updated n (so that list[n] is next one |
| 1703 | * to be filled). This routine is extremely tricky: has to deal with |
| 1704 | * variables/parameters with whitespace, $* and $@, and constructs like |
| 1705 | * 'echo -$*-'. If you play here, you must run testsuite afterwards! */ |
| 1706 | 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] | 1707 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1708 | /* or_mask is either 0 (normal case) or 0x80 |
| 1709 | * (expansion of right-hand side of assignment == 1-element expand. |
| 1710 | * 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] | 1711 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1712 | char first_ch, ored_ch; |
| 1713 | int i; |
| 1714 | const char *val; |
| 1715 | char *p; |
| 1716 | |
| 1717 | ored_ch = 0; |
| 1718 | |
| 1719 | debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg); |
| 1720 | debug_print_list("expand_vars_to_list", output, n); |
| 1721 | n = o_save_ptr(output, n); |
| 1722 | debug_print_list("expand_vars_to_list[0]", output, n); |
| 1723 | |
| 1724 | while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) { |
| 1725 | #if ENABLE_HUSH_TICK |
| 1726 | o_string subst_result = NULL_O_STRING; |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 1727 | #endif |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1728 | #if ENABLE_SH_MATH_SUPPORT |
| 1729 | char arith_buf[sizeof(arith_t)*3 + 2]; |
| 1730 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1731 | o_addstr(output, arg, p - arg); |
| 1732 | debug_print_list("expand_vars_to_list[1]", output, n); |
| 1733 | arg = ++p; |
| 1734 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 1735 | |
| 1736 | first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */ |
| 1737 | /* "$@" is special. Even if quoted, it can still |
| 1738 | * expand to nothing (not even an empty string) */ |
| 1739 | if ((first_ch & 0x7f) != '@') |
| 1740 | ored_ch |= first_ch; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1741 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1742 | val = NULL; |
| 1743 | switch (first_ch & 0x7f) { |
| 1744 | /* Highest bit in first_ch indicates that var is double-quoted */ |
| 1745 | case '$': /* pid */ |
| 1746 | val = utoa(G.root_pid); |
| 1747 | break; |
| 1748 | case '!': /* bg pid */ |
| 1749 | val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)""; |
| 1750 | break; |
| 1751 | case '?': /* exitcode */ |
| 1752 | val = utoa(G.last_return_code); |
| 1753 | break; |
| 1754 | case '#': /* argc */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1755 | if (arg[1] != SPECIAL_VAR_SYMBOL) |
| 1756 | /* actually, it's a ${#var} */ |
| 1757 | goto case_default; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1758 | val = utoa(G.global_argc ? G.global_argc-1 : 0); |
| 1759 | break; |
| 1760 | case '*': |
| 1761 | case '@': |
| 1762 | i = 1; |
| 1763 | if (!G.global_argv[i]) |
| 1764 | break; |
| 1765 | ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */ |
| 1766 | if (!(first_ch & 0x80)) { /* unquoted $* or $@ */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1767 | smallint sv = output->o_escape; |
| 1768 | /* unquoted var's contents should be globbed, so don't escape */ |
| 1769 | output->o_escape = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1770 | while (G.global_argv[i]) { |
| 1771 | n = expand_on_ifs(output, n, G.global_argv[i]); |
| 1772 | debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1); |
| 1773 | if (G.global_argv[i++][0] && G.global_argv[i]) { |
| 1774 | /* this argv[] is not empty and not last: |
| 1775 | * put terminating NUL, start new word */ |
| 1776 | o_addchr(output, '\0'); |
| 1777 | debug_print_list("expand_vars_to_list[2]", output, n); |
| 1778 | n = o_save_ptr(output, n); |
| 1779 | debug_print_list("expand_vars_to_list[3]", output, n); |
| 1780 | } |
| 1781 | } |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1782 | output->o_escape = sv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1783 | } else |
| 1784 | /* If or_mask is nonzero, we handle assignment 'a=....$@.....' |
| 1785 | * and in this case should treat it like '$*' - see 'else...' below */ |
| 1786 | if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */ |
| 1787 | while (1) { |
| 1788 | o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i])); |
| 1789 | if (++i >= G.global_argc) |
| 1790 | break; |
| 1791 | o_addchr(output, '\0'); |
| 1792 | debug_print_list("expand_vars_to_list[4]", output, n); |
| 1793 | n = o_save_ptr(output, n); |
| 1794 | } |
| 1795 | } else { /* quoted $*: add as one word */ |
| 1796 | while (1) { |
| 1797 | o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i])); |
| 1798 | if (!G.global_argv[++i]) |
| 1799 | break; |
| 1800 | if (G.ifs[0]) |
| 1801 | o_addchr(output, G.ifs[0]); |
| 1802 | } |
| 1803 | } |
| 1804 | break; |
| 1805 | case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */ |
| 1806 | /* "Empty variable", used to make "" etc to not disappear */ |
| 1807 | arg++; |
| 1808 | ored_ch = 0x80; |
| 1809 | break; |
| 1810 | #if ENABLE_HUSH_TICK |
| 1811 | case '`': { /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */ |
| 1812 | struct in_str input; |
| 1813 | *p = '\0'; |
| 1814 | arg++; |
| 1815 | //TODO: can we just stuff it into "output" directly? |
| 1816 | debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch); |
| 1817 | setup_string_in_str(&input, arg); |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 1818 | process_command_subs(&subst_result, &input); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1819 | debug_printf_subst("SUBST RES '%s'\n", subst_result.data); |
| 1820 | val = subst_result.data; |
| 1821 | goto store_val; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1822 | } |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 1823 | #endif |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1824 | #if ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1825 | case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */ |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1826 | arith_eval_hooks_t hooks; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1827 | arith_t res; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1828 | int errcode; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1829 | char *exp_str; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1830 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1831 | arg++; /* skip '+' */ |
| 1832 | *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */ |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1833 | debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1834 | |
| 1835 | /* Optional: skip expansion if expr is simple ("a + 3", "i++" etc) */ |
| 1836 | exp_str = arg; |
| 1837 | while (1) { |
| 1838 | unsigned char c = *exp_str++; |
| 1839 | if (c == '\0') { |
| 1840 | exp_str = NULL; |
| 1841 | goto skip_expand; |
| 1842 | } |
| 1843 | if (isdigit(c)) |
| 1844 | continue; |
| 1845 | if (strchr(" \t+-*/%_", c) != NULL) |
| 1846 | continue; |
| 1847 | c |= 0x20; /* tolower */ |
| 1848 | if (c >= 'a' && c <= 'z') |
| 1849 | continue; |
| 1850 | break; |
| 1851 | } |
| 1852 | /* We need to expand. Example: "echo $(($a + 1)) $((1 + $((2)) ))" */ |
| 1853 | { |
| 1854 | struct in_str input; |
| 1855 | o_string dest = NULL_O_STRING; |
| 1856 | |
| 1857 | setup_string_in_str(&input, arg); |
| 1858 | parse_stream_dquoted(&dest, &input, EOF); |
| 1859 | //bb_error_msg("'%s' -> '%s'", arg, dest.data); |
| 1860 | exp_str = expand_string_to_string(dest.data); |
| 1861 | //bb_error_msg("'%s' -> '%s'", dest.data, exp_str); |
| 1862 | o_free(&dest); |
| 1863 | } |
| 1864 | skip_expand: |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1865 | hooks.lookupvar = lookup_param; |
| 1866 | hooks.setvar = arith_set_local_var; |
| 1867 | hooks.endofname = endofname; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1868 | res = arith(exp_str ? exp_str : arg, &errcode, &hooks); |
| 1869 | free(exp_str); |
| 1870 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1871 | if (errcode < 0) { |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1872 | switch (errcode) { |
| 1873 | case -3: maybe_die("arith", "exponent less than 0"); break; |
| 1874 | case -2: maybe_die("arith", "divide by zero"); break; |
| 1875 | case -5: maybe_die("arith", "expression recursion loop detected"); break; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1876 | default: maybe_die("arith", "syntax error"); break; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1877 | } |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1878 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1879 | debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1880 | sprintf(arith_buf, arith_t_fmt, res); |
| 1881 | val = arith_buf; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1882 | break; |
| 1883 | } |
| 1884 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1885 | default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1886 | case_default: { |
| 1887 | bool exp_len = false, exp_null = false; |
| 1888 | char *var = arg, exp_save, exp_op, *exp_word; |
| 1889 | size_t exp_off = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1890 | *p = '\0'; |
| 1891 | arg[0] = first_ch & 0x7f; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1892 | |
| 1893 | /* prepare for expansions */ |
| 1894 | if (var[0] == '#') { |
| 1895 | /* handle length expansion ${#var} */ |
| 1896 | exp_len = true; |
| 1897 | ++var; |
| 1898 | } else { |
| 1899 | /* maybe handle parameter expansion */ |
| 1900 | exp_off = strcspn(var, ":-=+?"); |
| 1901 | if (!var[exp_off]) |
| 1902 | exp_off = 0; |
| 1903 | if (exp_off) { |
| 1904 | exp_save = var[exp_off]; |
| 1905 | exp_null = exp_save == ':'; |
| 1906 | exp_word = var + exp_off; |
| 1907 | if (exp_null) ++exp_word; |
| 1908 | exp_op = *exp_word++; |
| 1909 | var[exp_off] = '\0'; |
| 1910 | } |
| 1911 | } |
| 1912 | |
| 1913 | /* lookup the variable in question */ |
| 1914 | if (isdigit(var[0])) { |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 1915 | /* handle_dollar() should have vetted var for us */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1916 | i = xatoi_u(var); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1917 | if (i < G.global_argc) |
| 1918 | val = G.global_argv[i]; |
| 1919 | /* else val remains NULL: $N with too big N */ |
| 1920 | } else |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1921 | val = lookup_param(var); |
| 1922 | |
| 1923 | /* handle any expansions */ |
| 1924 | if (exp_len) { |
| 1925 | debug_printf_expand("expand: length of '%s' = ", val); |
| 1926 | val = utoa(val ? strlen(val) : 0); |
| 1927 | debug_printf_expand("%s\n", val); |
| 1928 | } else if (exp_off) { |
| 1929 | /* we need to do an expansion */ |
| 1930 | int exp_test = (!val || (exp_null && !val[0])); |
| 1931 | if (exp_op == '+') |
| 1932 | exp_test = !exp_test; |
| 1933 | debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op, |
| 1934 | exp_null ? "true" : "false", exp_test); |
| 1935 | if (exp_test) { |
| 1936 | if (exp_op == '?') |
| 1937 | maybe_die(var, *exp_word ? exp_word : "parameter null or not set"); |
| 1938 | else |
| 1939 | val = exp_word; |
| 1940 | |
| 1941 | if (exp_op == '=') { |
| 1942 | if (isdigit(var[0]) || var[0] == '#') { |
| 1943 | maybe_die(var, "special vars cannot assign in this way"); |
| 1944 | val = NULL; |
| 1945 | } else { |
| 1946 | char *new_var = xmalloc(strlen(var) + strlen(val) + 2); |
| 1947 | sprintf(new_var, "%s=%s", var, val); |
| 1948 | set_local_var(new_var, -1); |
| 1949 | } |
| 1950 | } |
| 1951 | } |
| 1952 | var[exp_off] = exp_save; |
| 1953 | } |
| 1954 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1955 | arg[0] = first_ch; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1956 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1957 | #if ENABLE_HUSH_TICK |
| 1958 | store_val: |
| 1959 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1960 | if (!(first_ch & 0x80)) { /* unquoted $VAR */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1961 | debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1962 | if (val) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1963 | /* unquoted var's contents should be globbed, so don't escape */ |
| 1964 | smallint sv = output->o_escape; |
| 1965 | output->o_escape = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1966 | n = expand_on_ifs(output, n, val); |
| 1967 | val = NULL; |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1968 | output->o_escape = sv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1969 | } |
| 1970 | } else { /* quoted $VAR, val will be appended below */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1971 | debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1972 | } |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1973 | } /* default: */ |
| 1974 | } /* switch (char after <SPECIAL_VAR_SYMBOL>) */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1975 | if (val) { |
| 1976 | o_addQstr(output, val, strlen(val)); |
| 1977 | } |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1978 | /* Do the check to avoid writing to a const string */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1979 | if (*p != SPECIAL_VAR_SYMBOL) |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1980 | *p = SPECIAL_VAR_SYMBOL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1981 | |
| 1982 | #if ENABLE_HUSH_TICK |
| 1983 | o_free(&subst_result); |
| 1984 | #endif |
| 1985 | arg = ++p; |
| 1986 | } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */ |
| 1987 | |
| 1988 | if (arg[0]) { |
| 1989 | debug_print_list("expand_vars_to_list[a]", output, n); |
| 1990 | /* this part is literal, and it was already pre-quoted |
| 1991 | * if needed (much earlier), do not use o_addQstr here! */ |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1992 | o_addstrauto(output, arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1993 | debug_print_list("expand_vars_to_list[b]", output, n); |
| 1994 | } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */ |
| 1995 | && !(ored_ch & 0x80) /* and all vars were not quoted. */ |
| 1996 | ) { |
| 1997 | n--; |
| 1998 | /* allow to reuse list[n] later without re-growth */ |
| 1999 | output->has_empty_slot = 1; |
| 2000 | } else { |
| 2001 | o_addchr(output, '\0'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2002 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2003 | return n; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2004 | } |
| 2005 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2006 | static char **expand_variables(char **argv, int or_mask) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2007 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2008 | int n; |
| 2009 | char **list; |
| 2010 | char **v; |
| 2011 | o_string output = NULL_O_STRING; |
| 2012 | |
| 2013 | if (or_mask & 0x100) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2014 | output.o_escape = 1; /* protect against globbing for "$var" */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2015 | /* (unquoted $var will temporarily switch it off) */ |
| 2016 | output.o_glob = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2017 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2018 | |
| 2019 | n = 0; |
| 2020 | v = argv; |
| 2021 | while (*v) { |
| 2022 | n = expand_vars_to_list(&output, n, *v, (char)or_mask); |
| 2023 | v++; |
| 2024 | } |
| 2025 | debug_print_list("expand_variables", &output, n); |
| 2026 | |
| 2027 | /* output.data (malloced in one block) gets returned in "list" */ |
| 2028 | list = o_finalize_list(&output, n); |
| 2029 | debug_print_strings("expand_variables[1]", list); |
| 2030 | return list; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2031 | } |
| 2032 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2033 | static char **expand_strvec_to_strvec(char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2034 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2035 | return expand_variables(argv, 0x100); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2036 | } |
| 2037 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2038 | /* Used for expansion of right hand of assignments */ |
| 2039 | /* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs |
| 2040 | * "v=/bin/c*" */ |
| 2041 | static char *expand_string_to_string(const char *str) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2042 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2043 | char *argv[2], **list; |
| 2044 | |
| 2045 | argv[0] = (char*)str; |
| 2046 | argv[1] = NULL; |
| 2047 | list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */ |
| 2048 | if (HUSH_DEBUG) |
| 2049 | if (!list[0] || list[1]) |
| 2050 | bb_error_msg_and_die("BUG in varexp2"); |
| 2051 | /* actually, just move string 2*sizeof(char*) bytes back */ |
| 2052 | overlapping_strcpy((char*)list, list[0]); |
| 2053 | debug_printf_expand("string_to_string='%s'\n", (char*)list); |
| 2054 | return (char*)list; |
| 2055 | } |
| 2056 | |
| 2057 | /* Used for "eval" builtin */ |
| 2058 | static char* expand_strvec_to_string(char **argv) |
| 2059 | { |
| 2060 | char **list; |
| 2061 | |
| 2062 | list = expand_variables(argv, 0x80); |
| 2063 | /* Convert all NULs to spaces */ |
| 2064 | if (list[0]) { |
| 2065 | int n = 1; |
| 2066 | while (list[n]) { |
| 2067 | if (HUSH_DEBUG) |
| 2068 | if (list[n-1] + strlen(list[n-1]) + 1 != list[n]) |
| 2069 | bb_error_msg_and_die("BUG in varexp3"); |
| 2070 | list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */ |
| 2071 | n++; |
| 2072 | } |
| 2073 | } |
| 2074 | overlapping_strcpy((char*)list, list[0]); |
| 2075 | debug_printf_expand("strvec_to_string='%s'\n", (char*)list); |
| 2076 | return (char*)list; |
| 2077 | } |
| 2078 | |
| 2079 | static char **expand_assignments(char **argv, int count) |
| 2080 | { |
| 2081 | int i; |
| 2082 | char **p = NULL; |
| 2083 | /* Expand assignments into one string each */ |
| 2084 | for (i = 0; i < count; i++) { |
| 2085 | p = add_string_to_strings(p, expand_string_to_string(argv[i])); |
| 2086 | } |
| 2087 | return p; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2088 | } |
| 2089 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 2090 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2091 | /* squirrel != NULL means we squirrel away copies of stdin, stdout, |
| 2092 | * and stderr if they are redirected. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2093 | static int setup_redirects(struct command *prog, int squirrel[]) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2094 | { |
| 2095 | int openfd, mode; |
| 2096 | struct redir_struct *redir; |
| 2097 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2098 | for (redir = prog->redirects; redir; redir = redir->next) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 2099 | if (redir->dup == -1 && redir->rd_filename == NULL) { |
Eric Andersen | 817e73c | 2001-06-06 17:56:09 +0000 | [diff] [blame] | 2100 | /* something went wrong in the parse. Pretend it didn't happen */ |
| 2101 | continue; |
| 2102 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2103 | if (redir->dup == -1) { |
Denis Vlasenko | cccdc4e | 2007-11-23 21:08:38 +0000 | [diff] [blame] | 2104 | char *p; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 2105 | mode = redir_table[redir->rd_type].mode; |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 2106 | //TODO: check redir for names like '\\' |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 2107 | p = expand_string_to_string(redir->rd_filename); |
Denis Vlasenko | cccdc4e | 2007-11-23 21:08:38 +0000 | [diff] [blame] | 2108 | openfd = open_or_warn(p, mode); |
| 2109 | free(p); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2110 | if (openfd < 0) { |
| 2111 | /* this could get lost if stderr has been redirected, but |
| 2112 | bash and ash both lose it as well (though zsh doesn't!) */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2113 | return 1; |
| 2114 | } |
| 2115 | } else { |
| 2116 | openfd = redir->dup; |
| 2117 | } |
| 2118 | |
| 2119 | if (openfd != redir->fd) { |
| 2120 | if (squirrel && redir->fd < 3) { |
| 2121 | squirrel[redir->fd] = dup(redir->fd); |
| 2122 | } |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2123 | if (openfd == -3) { |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2124 | //close(openfd); // close(-3) ??! |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2125 | } else { |
| 2126 | dup2(openfd, redir->fd); |
Matt Kraai | c616e53 | 2001-06-05 16:50:08 +0000 | [diff] [blame] | 2127 | if (redir->dup == -1) |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2128 | close(openfd); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2129 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2130 | } |
| 2131 | } |
| 2132 | return 0; |
| 2133 | } |
| 2134 | |
| 2135 | static void restore_redirects(int squirrel[]) |
| 2136 | { |
| 2137 | int i, fd; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2138 | for (i = 0; i < 3; i++) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2139 | fd = squirrel[i]; |
| 2140 | if (fd != -1) { |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 2141 | /* We simply die on error */ |
| 2142 | xmove_fd(fd, i); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2143 | } |
| 2144 | } |
| 2145 | } |
| 2146 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2147 | |
| 2148 | #if !defined(DEBUG_CLEAN) |
| 2149 | #define free_pipe_list(head, indent) free_pipe_list(head) |
| 2150 | #define free_pipe(pi, indent) free_pipe(pi) |
| 2151 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2152 | static void free_pipe_list(struct pipe *head, int indent); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2153 | |
| 2154 | /* return code is the exit status of the pipe */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2155 | static void free_pipe(struct pipe *pi, int indent) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2156 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2157 | char **p; |
| 2158 | struct command *command; |
| 2159 | struct redir_struct *r, *rnext; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2160 | int a, i; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2161 | |
| 2162 | if (pi->stopped_cmds > 0) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2163 | return; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2164 | debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid()); |
| 2165 | for (i = 0; i < pi->num_cmds; i++) { |
| 2166 | command = &pi->cmds[i]; |
| 2167 | debug_printf_clean("%s command %d:\n", indenter(indent), i); |
| 2168 | if (command->argv) { |
| 2169 | for (a = 0, p = command->argv; *p; a++, p++) { |
| 2170 | debug_printf_clean("%s argv[%d] = %s\n", indenter(indent), a, *p); |
| 2171 | } |
| 2172 | free_strings(command->argv); |
| 2173 | command->argv = NULL; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2174 | } |
| 2175 | /* not "else if": on syntax error, we may have both! */ |
| 2176 | if (command->group) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2177 | debug_printf_clean("%s begin group (grp_type:%d)\n", indenter(indent), command->grp_type); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2178 | free_pipe_list(command->group, indent+3); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2179 | debug_printf_clean("%s end group\n", indenter(indent)); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2180 | command->group = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2181 | } |
| 2182 | for (r = command->redirects; r; r = rnext) { |
| 2183 | debug_printf_clean("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->rd_type].descrip); |
| 2184 | if (r->dup == -1) { |
| 2185 | /* guard against the case >$FOO, where foo is unset or blank */ |
| 2186 | if (r->rd_filename) { |
| 2187 | debug_printf_clean(" %s\n", r->rd_filename); |
| 2188 | free(r->rd_filename); |
| 2189 | r->rd_filename = NULL; |
| 2190 | } |
| 2191 | } else { |
| 2192 | debug_printf_clean("&%d\n", r->dup); |
| 2193 | } |
| 2194 | rnext = r->next; |
| 2195 | free(r); |
| 2196 | } |
| 2197 | command->redirects = NULL; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2198 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2199 | free(pi->cmds); /* children are an array, they get freed all at once */ |
| 2200 | pi->cmds = NULL; |
| 2201 | #if ENABLE_HUSH_JOB |
| 2202 | free(pi->cmdtext); |
| 2203 | pi->cmdtext = NULL; |
| 2204 | #endif |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2205 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 2206 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2207 | static void free_pipe_list(struct pipe *head, int indent) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2208 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2209 | struct pipe *pi, *next; |
| 2210 | |
| 2211 | for (pi = head; pi; pi = next) { |
| 2212 | #if HAS_KEYWORDS |
| 2213 | debug_printf_clean("%s pipe reserved mode %d\n", indenter(indent), pi->res_word); |
| 2214 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2215 | free_pipe(pi, indent); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2216 | debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup); |
| 2217 | next = pi->next; |
| 2218 | /*pi->next = NULL;*/ |
| 2219 | free(pi); |
| 2220 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2221 | } |
| 2222 | |
| 2223 | |
| 2224 | #if !BB_MMU |
| 2225 | typedef struct nommu_save_t { |
| 2226 | char **new_env; |
| 2227 | char **old_env; |
| 2228 | char **argv; |
| 2229 | } nommu_save_t; |
| 2230 | #else |
| 2231 | #define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \ |
| 2232 | pseudo_exec_argv(argv, assignment_cnt, argv_expanded) |
| 2233 | #define pseudo_exec(nommu_save, command, argv_expanded) \ |
| 2234 | pseudo_exec(command, argv_expanded) |
| 2235 | #endif |
| 2236 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2237 | /* Called after [v]fork() in run_pipe(), or from builtin_exec(). |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2238 | * Never returns. |
| 2239 | * XXX no exit() here. If you don't exec, use _exit instead. |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2240 | * The at_exit handlers apparently confuse the calling process, |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2241 | * in particular stdin handling. Not sure why? -- because of vfork! (vda) */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2242 | 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] | 2243 | 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] | 2244 | { |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2245 | int rcode; |
| 2246 | char **new_env; |
"Vladimir N. Oleynik" | 485d7cb | 2005-10-17 09:48:57 +0000 | [diff] [blame] | 2247 | const struct built_in_command *x; |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2248 | |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2249 | /* If a variable is assigned in a forest, and nobody listens, |
| 2250 | * was it ever really set? |
| 2251 | */ |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2252 | if (!argv[assignment_cnt]) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2253 | _exit(EXIT_SUCCESS); |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2254 | |
Denis Vlasenko | 9504e44 | 2008-10-29 01:19:15 +0000 | [diff] [blame] | 2255 | new_env = expand_assignments(argv, assignment_cnt); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2256 | #if BB_MMU |
| 2257 | putenv_all(new_env); |
| 2258 | free(new_env); /* optional */ |
| 2259 | #else |
| 2260 | nommu_save->new_env = new_env; |
| 2261 | nommu_save->old_env = putenv_all_and_save_old(new_env); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2262 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2263 | if (argv_expanded) { |
| 2264 | argv = argv_expanded; |
| 2265 | } else { |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 2266 | argv = expand_strvec_to_strvec(argv + assignment_cnt); |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2267 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2268 | nommu_save->argv = argv; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2269 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2270 | } |
Denis Vlasenko | 764d59d | 2007-05-14 16:23:23 +0000 | [diff] [blame] | 2271 | |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2272 | /* |
| 2273 | * Check if the command matches any of the builtins. |
| 2274 | * Depending on context, this might be redundant. But it's |
| 2275 | * easier to waste a few CPU cycles than it is to figure out |
| 2276 | * if this is one of those cases. |
| 2277 | */ |
Denis Vlasenko | dd316dd | 2008-06-14 15:50:55 +0000 | [diff] [blame] | 2278 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2279 | if (strcmp(argv[0], x->cmd) == 0) { |
Denis Vlasenko | 764d59d | 2007-05-14 16:23:23 +0000 | [diff] [blame] | 2280 | debug_printf_exec("running builtin '%s'\n", argv[0]); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2281 | rcode = x->function(argv); |
| 2282 | fflush(stdout); |
| 2283 | _exit(rcode); |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2284 | } |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2285 | } |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 2286 | |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2287 | /* Check if the command matches any busybox applets */ |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 2288 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2289 | if (strchr(argv[0], '/') == NULL) { |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 2290 | int a = find_applet_by_name(argv[0]); |
| 2291 | if (a >= 0) { |
| 2292 | if (APPLET_IS_NOEXEC(a)) { |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2293 | debug_printf_exec("running applet '%s'\n", argv[0]); |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 2294 | // is it ok that run_applet_no_and_exit() does exit(), not _exit()? |
| 2295 | run_applet_no_and_exit(a, argv); |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2296 | } |
| 2297 | /* re-exec ourselves with the new arguments */ |
| 2298 | debug_printf_exec("re-execing applet '%s'\n", argv[0]); |
Denis Vlasenko | bdbbb7e | 2007-06-08 15:02:55 +0000 | [diff] [blame] | 2299 | execvp(bb_busybox_exec_path, argv); |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2300 | /* If they called chroot or otherwise made the binary no longer |
| 2301 | * executable, fall through */ |
| 2302 | } |
| 2303 | } |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 2304 | #endif |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2305 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 2306 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
| 2307 | |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2308 | debug_printf_exec("execing '%s'\n", argv[0]); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2309 | execvp(argv[0], argv); |
Bernhard Reutner-Fischer | a53de7f | 2008-07-21 13:46:54 +0000 | [diff] [blame] | 2310 | bb_perror_msg("can't exec '%s'", argv[0]); |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 2311 | _exit(EXIT_FAILURE); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2312 | } |
| 2313 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2314 | static int run_list(struct pipe *pi); |
| 2315 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2316 | /* Called after [v]fork() in run_pipe() |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2317 | */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2318 | 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] | 2319 | 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] | 2320 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2321 | if (command->argv) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2322 | pseudo_exec_argv(nommu_save, command->argv, command->assignment_cnt, argv_expanded); |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2323 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2324 | if (command->group) { |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2325 | #if !BB_MMU |
Denis Vlasenko | 3b49216 | 2007-12-24 14:26:57 +0000 | [diff] [blame] | 2326 | bb_error_msg_and_die("nested lists are not supported on NOMMU"); |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2327 | #else |
Denis Vlasenko | 3b49216 | 2007-12-24 14:26:57 +0000 | [diff] [blame] | 2328 | int rcode; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2329 | debug_printf_exec("pseudo_exec: run_list\n"); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2330 | rcode = run_list(command->group); |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 2331 | /* OK to leak memory by not calling free_pipe_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2332 | * since this process is about to exit */ |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2333 | _exit(rcode); |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2334 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2335 | } |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2336 | |
| 2337 | /* Can happen. See what bash does with ">foo" by itself. */ |
| 2338 | debug_printf("trying to pseudo_exec null command\n"); |
| 2339 | _exit(EXIT_SUCCESS); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2340 | } |
| 2341 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2342 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2343 | static const char *get_cmdtext(struct pipe *pi) |
| 2344 | { |
| 2345 | char **argv; |
| 2346 | char *p; |
| 2347 | int len; |
| 2348 | |
| 2349 | /* This is subtle. ->cmdtext is created only on first backgrounding. |
| 2350 | * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...) |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2351 | * On subsequent bg argv is trashed, but we won't use it */ |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2352 | if (pi->cmdtext) |
| 2353 | return pi->cmdtext; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2354 | argv = pi->cmds[0].argv; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 2355 | if (!argv || !argv[0]) { |
| 2356 | pi->cmdtext = xzalloc(1); |
| 2357 | return pi->cmdtext; |
| 2358 | } |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2359 | |
| 2360 | len = 0; |
| 2361 | do len += strlen(*argv) + 1; while (*++argv); |
| 2362 | pi->cmdtext = p = xmalloc(len); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2363 | argv = pi->cmds[0].argv; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2364 | do { |
| 2365 | len = strlen(*argv); |
| 2366 | memcpy(p, *argv, len); |
| 2367 | p += len; |
| 2368 | *p++ = ' '; |
| 2369 | } while (*++argv); |
| 2370 | p[-1] = '\0'; |
| 2371 | return pi->cmdtext; |
| 2372 | } |
| 2373 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2374 | static void insert_bg_job(struct pipe *pi) |
| 2375 | { |
| 2376 | struct pipe *thejob; |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2377 | int i; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2378 | |
| 2379 | /* Linear search for the ID of the job to use */ |
| 2380 | pi->jobid = 1; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2381 | for (thejob = G.job_list; thejob; thejob = thejob->next) |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2382 | if (thejob->jobid >= pi->jobid) |
| 2383 | pi->jobid = thejob->jobid + 1; |
| 2384 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2385 | /* Add thejob to the list of running jobs */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2386 | if (!G.job_list) { |
| 2387 | thejob = G.job_list = xmalloc(sizeof(*thejob)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2388 | } else { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2389 | for (thejob = G.job_list; thejob->next; thejob = thejob->next) |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2390 | continue; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2391 | thejob->next = xmalloc(sizeof(*thejob)); |
| 2392 | thejob = thejob->next; |
| 2393 | } |
| 2394 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2395 | /* Physically copy the struct job */ |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 2396 | memcpy(thejob, pi, sizeof(struct pipe)); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2397 | thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds); |
| 2398 | /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */ |
| 2399 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2400 | // TODO: do we really need to have so many fields which are just dead weight |
| 2401 | // at execution stage? |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2402 | thejob->cmds[i].pid = pi->cmds[i].pid; |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2403 | /* all other fields are not used and stay zero */ |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2404 | } |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2405 | thejob->next = NULL; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2406 | thejob->cmdtext = xstrdup(get_cmdtext(pi)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2407 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2408 | /* We don't wait for background thejobs to return -- append it |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2409 | to the list of backgrounded thejobs and leave it alone */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 2410 | if (G_interactive_fd) |
Mike Frysinger | 87824e0 | 2009-03-30 00:19:30 +0000 | [diff] [blame] | 2411 | printf("[%d] %d %s\n", thejob->jobid, thejob->cmds[0].pid, thejob->cmdtext); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2412 | G.last_bg_pid = thejob->cmds[0].pid; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2413 | G.last_jobid = thejob->jobid; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2414 | } |
| 2415 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2416 | static void remove_bg_job(struct pipe *pi) |
| 2417 | { |
| 2418 | struct pipe *prev_pipe; |
| 2419 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2420 | if (pi == G.job_list) { |
| 2421 | G.job_list = pi->next; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2422 | } else { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2423 | prev_pipe = G.job_list; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2424 | while (prev_pipe->next != pi) |
| 2425 | prev_pipe = prev_pipe->next; |
| 2426 | prev_pipe->next = pi->next; |
| 2427 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2428 | if (G.job_list) |
| 2429 | G.last_jobid = G.job_list->jobid; |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 2430 | else |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2431 | G.last_jobid = 0; |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2432 | } |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 2433 | |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2434 | /* Remove a backgrounded job */ |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2435 | static void delete_finished_bg_job(struct pipe *pi) |
| 2436 | { |
| 2437 | remove_bg_job(pi); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2438 | pi->stopped_cmds = 0; |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 2439 | free_pipe(pi, 0); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2440 | free(pi); |
| 2441 | } |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2442 | #endif /* JOB */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2443 | |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2444 | /* Check to see if any processes have exited -- if they |
| 2445 | * have, figure out why and see if a job has completed */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2446 | static int checkjobs(struct pipe* fg_pipe) |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2447 | { |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2448 | int attributes; |
| 2449 | int status; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2450 | #if ENABLE_HUSH_JOB |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2451 | struct pipe *pi; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2452 | #endif |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2453 | pid_t childpid; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2454 | int rcode = 0; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2455 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 2456 | debug_printf_jobs("checkjobs %p\n", fg_pipe); |
| 2457 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 2458 | errno = 0; |
| 2459 | // if (G.handled_SIGCHLD == G.count_SIGCHLD) |
| 2460 | // /* avoid doing syscall, nothing there anyway */ |
| 2461 | // return rcode; |
| 2462 | |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2463 | attributes = WUNTRACED; |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2464 | if (fg_pipe == NULL) |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2465 | attributes |= WNOHANG; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2466 | |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2467 | /* Do we do this right? |
| 2468 | * bash-3.00# sleep 20 | false |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2469 | * <ctrl-Z pressed> |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2470 | * [3]+ Stopped sleep 20 | false |
| 2471 | * bash-3.00# echo $? |
| 2472 | * 1 <========== bg pipe is not fully done, but exitcode is already known! |
| 2473 | */ |
| 2474 | |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2475 | //FIXME: non-interactive bash does not continue even if all processes in fg pipe |
| 2476 | //are stopped. Testcase: "cat | cat" in a script (not on command line) |
| 2477 | // + killall -STOP cat |
| 2478 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2479 | wait_more: |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 2480 | while (1) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2481 | int i; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 2482 | int dead; |
| 2483 | |
| 2484 | // i = G.count_SIGCHLD; |
| 2485 | childpid = waitpid(-1, &status, attributes); |
| 2486 | if (childpid <= 0) { |
| 2487 | if (childpid && errno != ECHILD) |
| 2488 | bb_perror_msg("waitpid"); |
| 2489 | // else /* Until next SIGCHLD, waitpid's are useless */ |
| 2490 | // G.handled_SIGCHLD = i; |
| 2491 | break; |
| 2492 | } |
| 2493 | dead = WIFEXITED(status) || WIFSIGNALED(status); |
| 2494 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2495 | #if DEBUG_JOBS |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2496 | if (WIFSTOPPED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 2497 | debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2498 | childpid, WSTOPSIG(status), WEXITSTATUS(status)); |
| 2499 | if (WIFSIGNALED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 2500 | debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2501 | childpid, WTERMSIG(status), WEXITSTATUS(status)); |
| 2502 | if (WIFEXITED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 2503 | debug_printf_jobs("pid %d exited, exitcode %d\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2504 | childpid, WEXITSTATUS(status)); |
| 2505 | #endif |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2506 | /* Were we asked to wait for fg pipe? */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2507 | if (fg_pipe) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2508 | for (i = 0; i < fg_pipe->num_cmds; i++) { |
| 2509 | debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid); |
| 2510 | if (fg_pipe->cmds[i].pid != childpid) |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2511 | continue; |
| 2512 | /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */ |
| 2513 | if (dead) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2514 | fg_pipe->cmds[i].pid = 0; |
| 2515 | fg_pipe->alive_cmds--; |
| 2516 | if (i == fg_pipe->num_cmds - 1) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2517 | /* last process gives overall exitstatus */ |
| 2518 | rcode = WEXITSTATUS(status); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 2519 | IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2520 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2521 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2522 | fg_pipe->cmds[i].is_stopped = 1; |
| 2523 | fg_pipe->stopped_cmds++; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2524 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2525 | debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n", |
| 2526 | fg_pipe->alive_cmds, fg_pipe->stopped_cmds); |
| 2527 | if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2528 | /* All processes in fg pipe have exited/stopped */ |
| 2529 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2530 | if (fg_pipe->alive_cmds) |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2531 | insert_bg_job(fg_pipe); |
| 2532 | #endif |
| 2533 | return rcode; |
| 2534 | } |
| 2535 | /* There are still running processes in the fg pipe */ |
| 2536 | goto wait_more; /* do waitpid again */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2537 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2538 | /* it wasnt fg_pipe, look for process in bg pipes */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2539 | } |
| 2540 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2541 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2542 | /* We asked to wait for bg or orphaned children */ |
| 2543 | /* No need to remember exitcode in this case */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2544 | for (pi = G.job_list; pi; pi = pi->next) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2545 | for (i = 0; i < pi->num_cmds; i++) { |
| 2546 | if (pi->cmds[i].pid == childpid) |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 2547 | goto found_pi_and_prognum; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 2548 | } |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2549 | } |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 2550 | /* Happens when shell is used as init process (init=/bin/sh) */ |
| 2551 | debug_printf("checkjobs: pid %d was not in our list!\n", childpid); |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2552 | continue; /* do waitpid again */ |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 2553 | |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 2554 | found_pi_and_prognum: |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2555 | if (dead) { |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2556 | /* child exited */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2557 | pi->cmds[i].pid = 0; |
| 2558 | pi->alive_cmds--; |
| 2559 | if (!pi->alive_cmds) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 2560 | if (G_interactive_fd) |
Mike Frysinger | 87824e0 | 2009-03-30 00:19:30 +0000 | [diff] [blame] | 2561 | printf(JOB_STATUS_FORMAT, pi->jobid, |
| 2562 | "Done", pi->cmdtext); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2563 | delete_finished_bg_job(pi); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2564 | } |
| 2565 | } else { |
| 2566 | /* child stopped */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2567 | pi->cmds[i].is_stopped = 1; |
| 2568 | pi->stopped_cmds++; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2569 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2570 | #endif |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2571 | } /* while (waitpid succeeds)... */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2572 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2573 | return rcode; |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 2574 | } |
| 2575 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2576 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 2577 | static int checkjobs_and_fg_shell(struct pipe* fg_pipe) |
| 2578 | { |
| 2579 | pid_t p; |
| 2580 | int rcode = checkjobs(fg_pipe); |
| 2581 | /* Job finished, move the shell to the foreground */ |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 2582 | p = getpgid(0); /* pgid of our process */ |
| 2583 | debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 2584 | tcsetpgrp(G_interactive_fd, p); |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 2585 | return rcode; |
| 2586 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2587 | #endif |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 2588 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2589 | /* run_pipe() starts all the jobs, but doesn't wait for anything |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2590 | * to finish. See checkjobs(). |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2591 | * |
| 2592 | * return code is normally -1, when the caller has to wait for children |
| 2593 | * to finish to determine the exit status of the pipe. If the pipe |
| 2594 | * is a simple builtin command, however, the action is done by the |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2595 | * time run_pipe returns, and the exit code is provided as the |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2596 | * return value. |
| 2597 | * |
| 2598 | * The input of the pipe is always stdin, the output is always |
| 2599 | * stdout. The outpipe[] mechanism in BusyBox-0.48 lash is bogus, |
| 2600 | * because it tries to avoid running the command substitution in |
| 2601 | * subshell, when that is in fact necessary. The subshell process |
| 2602 | * now has its stdout directed to the input of the appropriate pipe, |
| 2603 | * so this routine is noticeably simpler. |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 2604 | * |
| 2605 | * Returns -1 only if started some children. IOW: we have to |
| 2606 | * mask out retvals of builtins etc with 0xff! |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2607 | */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2608 | static int run_pipe(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2609 | { |
| 2610 | int i; |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2611 | int nextin; |
| 2612 | int pipefds[2]; /* pipefds[0] is for reading */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2613 | struct command *command; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2614 | char **argv_expanded; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2615 | char **argv; |
"Vladimir N. Oleynik" | 485d7cb | 2005-10-17 09:48:57 +0000 | [diff] [blame] | 2616 | const struct built_in_command *x; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2617 | char *p; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 2618 | /* it is not always needed, but we aim to smaller code */ |
| 2619 | int squirrel[] = { -1, -1, -1 }; |
| 2620 | int rcode; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2621 | 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] | 2622 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2623 | 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] | 2624 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2625 | #if ENABLE_HUSH_JOB |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 2626 | pi->pgrp = -1; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2627 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2628 | pi->alive_cmds = 1; |
| 2629 | pi->stopped_cmds = 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2630 | |
| 2631 | /* Check if this is a simple builtin (not part of a pipe). |
| 2632 | * Builtins within pipes have to fork anyway, and are handled in |
| 2633 | * pseudo_exec. "echo foo | read bar" doesn't work on bash, either. |
| 2634 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2635 | command = &(pi->cmds[0]); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2636 | |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2637 | #if ENABLE_HUSH_FUNCTIONS |
| 2638 | if (single_and_fg && command->group && command->grp_type == GRP_FUNCTION) { |
| 2639 | /* We "execute" function definition */ |
| 2640 | bb_error_msg("here we ought to remember function definition, and go on"); |
| 2641 | return EXIT_SUCCESS; |
| 2642 | } |
| 2643 | #endif |
| 2644 | |
| 2645 | if (single_and_fg && command->group && command->grp_type == GRP_NORMAL) { |
Eric Andersen | 04407e5 | 2001-06-07 16:42:05 +0000 | [diff] [blame] | 2646 | debug_printf("non-subshell grouping\n"); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2647 | setup_redirects(command, squirrel); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2648 | debug_printf_exec(": run_list\n"); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2649 | rcode = run_list(command->group) & 0xff; |
Eric Andersen | 04407e5 | 2001-06-07 16:42:05 +0000 | [diff] [blame] | 2650 | restore_redirects(squirrel); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2651 | debug_printf_exec("run_pipe return %d\n", rcode); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 2652 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2653 | return rcode; |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2654 | } |
| 2655 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2656 | argv = command->argv; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2657 | argv_expanded = NULL; |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2658 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2659 | if (single_and_fg && argv != NULL) { |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2660 | char **new_env = NULL; |
| 2661 | char **old_env = NULL; |
| 2662 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2663 | i = command->assignment_cnt; |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2664 | if (i != 0 && argv[i] == NULL) { |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2665 | /* assignments, but no command: set local environment */ |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2666 | for (i = 0; argv[i] != NULL; i++) { |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 2667 | debug_printf("local environment set: %s\n", argv[i]); |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 2668 | p = expand_string_to_string(argv[i]); |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 2669 | set_local_var(p, 0); |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 2670 | } |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2671 | 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] | 2672 | } |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2673 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2674 | /* Expand the rest into (possibly) many strings each */ |
| 2675 | argv_expanded = expand_strvec_to_strvec(argv + i); |
| 2676 | |
Denis Vlasenko | dd316dd | 2008-06-14 15:50:55 +0000 | [diff] [blame] | 2677 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2678 | if (strcmp(argv_expanded[0], x->cmd) != 0) |
| 2679 | continue; |
| 2680 | if (x->function == builtin_exec && argv_expanded[1] == NULL) { |
| 2681 | debug_printf("exec with redirects only\n"); |
| 2682 | setup_redirects(command, NULL); |
| 2683 | rcode = EXIT_SUCCESS; |
| 2684 | goto clean_up_and_ret1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2685 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2686 | debug_printf("builtin inline %s\n", argv_expanded[0]); |
| 2687 | /* XXX setup_redirects acts on file descriptors, not FILEs. |
| 2688 | * This is perfect for work that comes after exec(). |
| 2689 | * Is it really safe for inline use? Experimentally, |
| 2690 | * things seem to work with glibc. */ |
| 2691 | setup_redirects(command, squirrel); |
| 2692 | new_env = expand_assignments(argv, command->assignment_cnt); |
| 2693 | old_env = putenv_all_and_save_old(new_env); |
| 2694 | debug_printf_exec(": builtin '%s' '%s'...\n", x->cmd, argv_expanded[1]); |
| 2695 | rcode = x->function(argv_expanded) & 0xff; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2696 | #if ENABLE_FEATURE_SH_STANDALONE |
| 2697 | clean_up_and_ret: |
| 2698 | #endif |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2699 | restore_redirects(squirrel); |
| 2700 | free_strings_and_unsetenv(new_env, 1); |
| 2701 | putenv_all(old_env); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2702 | free(old_env); /* not free_strings()! */ |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2703 | clean_up_and_ret1: |
| 2704 | free(argv_expanded); |
| 2705 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 2706 | debug_printf_exec("run_pipe return %d\n", rcode); |
| 2707 | return rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2708 | } |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 2709 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2710 | i = find_applet_by_name(argv_expanded[0]); |
| 2711 | if (i >= 0 && APPLET_IS_NOFORK(i)) { |
| 2712 | setup_redirects(command, squirrel); |
| 2713 | save_nofork_data(&G.nofork_save); |
| 2714 | new_env = expand_assignments(argv, command->assignment_cnt); |
| 2715 | old_env = putenv_all_and_save_old(new_env); |
| 2716 | debug_printf_exec(": run_nofork_applet '%s' '%s'...\n", argv_expanded[0], argv_expanded[1]); |
| 2717 | rcode = run_nofork_applet_prime(&G.nofork_save, i, argv_expanded); |
| 2718 | goto clean_up_and_ret; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 2719 | } |
| 2720 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2721 | } |
| 2722 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2723 | /* NB: argv_expanded may already be created, and that |
| 2724 | * might include `cmd` runs! Do not rerun it! We *must* |
| 2725 | * use argv_expanded if it's non-NULL */ |
| 2726 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2727 | /* Going to fork a child per each pipe member */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2728 | pi->alive_cmds = 0; |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2729 | nextin = 0; |
| 2730 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2731 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2732 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2733 | volatile nommu_save_t nommu_save; |
| 2734 | nommu_save.new_env = NULL; |
| 2735 | nommu_save.old_env = NULL; |
| 2736 | nommu_save.argv = NULL; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2737 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2738 | command = &(pi->cmds[i]); |
| 2739 | if (command->argv) { |
| 2740 | 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] | 2741 | } else |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2742 | debug_printf_exec(": pipe member with no argv\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2743 | |
| 2744 | /* pipes are inserted between pairs of commands */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2745 | pipefds[0] = 0; |
| 2746 | pipefds[1] = 1; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2747 | if ((i + 1) < pi->num_cmds) |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2748 | xpipe(pipefds); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2749 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2750 | command->pid = BB_MMU ? fork() : vfork(); |
| 2751 | if (!command->pid) { /* child */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2752 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 2753 | die_sleep = 0; /* let nofork's xfuncs die */ |
| 2754 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2755 | /* Every child adds itself to new process group |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2756 | * with pgid == pid_of_first_child_in_pipe */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 2757 | if (G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2758 | pid_t pgrp; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2759 | pgrp = pi->pgrp; |
| 2760 | if (pgrp < 0) /* true for 1st process only */ |
| 2761 | pgrp = getpid(); |
| 2762 | if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2763 | /* We do it in *every* child, not just first, |
| 2764 | * to avoid races */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 2765 | tcsetpgrp(G_interactive_fd, pgrp); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2766 | } |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2767 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2768 | #endif |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2769 | xmove_fd(nextin, 0); |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2770 | xmove_fd(pipefds[1], 1); /* write end */ |
| 2771 | if (pipefds[0] > 1) |
| 2772 | close(pipefds[0]); /* read end */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2773 | /* Like bash, explicit redirects override pipes, |
| 2774 | * and the pipe fd is available for dup'ing. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2775 | setup_redirects(command, NULL); |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 2776 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2777 | /* Restore default handlers just prior to exec */ |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 2778 | /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */ |
| 2779 | |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2780 | /* Stores to nommu_save list of env vars putenv'ed |
| 2781 | * (NOMMU, on MMU we don't need that) */ |
| 2782 | /* cast away volatility... */ |
| 2783 | pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2784 | /* pseudo_exec() does not return */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2785 | } |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2786 | /* parent */ |
| 2787 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2788 | /* Clean up after vforked child */ |
| 2789 | free(nommu_save.argv); |
| 2790 | free_strings_and_unsetenv(nommu_save.new_env, 1); |
| 2791 | putenv_all(nommu_save.old_env); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2792 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2793 | free(argv_expanded); |
| 2794 | argv_expanded = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2795 | if (command->pid < 0) { /* [v]fork failed */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2796 | /* Clearly indicate, was it fork or vfork */ |
Denis Vlasenko | 82604e9 | 2008-07-01 15:59:42 +0000 | [diff] [blame] | 2797 | bb_perror_msg(BB_MMU ? "fork" : "vfork"); |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2798 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2799 | pi->alive_cmds++; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2800 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2801 | /* Second and next children need to know pid of first one */ |
| 2802 | if (pi->pgrp < 0) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2803 | pi->pgrp = command->pid; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2804 | #endif |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2805 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2806 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2807 | if (i) |
| 2808 | close(nextin); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2809 | if ((i + 1) < pi->num_cmds) |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2810 | close(pipefds[1]); /* write end */ |
| 2811 | /* Pass read (output) pipe end to next iteration */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2812 | nextin = pipefds[0]; |
| 2813 | } |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2814 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2815 | if (!pi->alive_cmds) { |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2816 | debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n"); |
| 2817 | return 1; |
| 2818 | } |
| 2819 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2820 | 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] | 2821 | return -1; |
| 2822 | } |
| 2823 | |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 2824 | #ifndef debug_print_tree |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2825 | static void debug_print_tree(struct pipe *pi, int lvl) |
| 2826 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2827 | static const char *const PIPE[] = { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2828 | [PIPE_SEQ] = "SEQ", |
| 2829 | [PIPE_AND] = "AND", |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2830 | [PIPE_OR ] = "OR" , |
| 2831 | [PIPE_BG ] = "BG" , |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2832 | }; |
| 2833 | static const char *RES[] = { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2834 | [RES_NONE ] = "NONE" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2835 | #if ENABLE_HUSH_IF |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2836 | [RES_IF ] = "IF" , |
| 2837 | [RES_THEN ] = "THEN" , |
| 2838 | [RES_ELIF ] = "ELIF" , |
| 2839 | [RES_ELSE ] = "ELSE" , |
| 2840 | [RES_FI ] = "FI" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2841 | #endif |
| 2842 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2843 | [RES_FOR ] = "FOR" , |
| 2844 | [RES_WHILE] = "WHILE", |
| 2845 | [RES_UNTIL] = "UNTIL", |
| 2846 | [RES_DO ] = "DO" , |
| 2847 | [RES_DONE ] = "DONE" , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 2848 | #endif |
| 2849 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2850 | [RES_IN ] = "IN" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2851 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2852 | #if ENABLE_HUSH_CASE |
| 2853 | [RES_CASE ] = "CASE" , |
| 2854 | [RES_MATCH] = "MATCH", |
| 2855 | [RES_CASEI] = "CASEI", |
| 2856 | [RES_ESAC ] = "ESAC" , |
| 2857 | #endif |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2858 | [RES_XXXX ] = "XXXX" , |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2859 | [RES_SNTX ] = "SNTX" , |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2860 | }; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2861 | static const char *const GRPTYPE[] = { |
| 2862 | "()", |
| 2863 | "{}", |
| 2864 | #if ENABLE_HUSH_FUNCTIONS |
| 2865 | "func()", |
| 2866 | #endif |
| 2867 | }; |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2868 | |
| 2869 | int pin, prn; |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 2870 | |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2871 | pin = 0; |
| 2872 | while (pi) { |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 2873 | fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "", |
| 2874 | pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2875 | prn = 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2876 | while (prn < pi->num_cmds) { |
| 2877 | struct command *command = &pi->cmds[prn]; |
| 2878 | char **argv = command->argv; |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 2879 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2880 | fprintf(stderr, "%*s prog %d assignment_cnt:%d", lvl*2, "", prn, command->assignment_cnt); |
| 2881 | if (command->group) { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2882 | fprintf(stderr, " group %s: (argv=%p)\n", |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2883 | GRPTYPE[command->grp_type], |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 2884 | argv); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2885 | debug_print_tree(command->group, lvl+1); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2886 | prn++; |
| 2887 | continue; |
| 2888 | } |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2889 | if (argv) while (*argv) { |
| 2890 | fprintf(stderr, " '%s'", *argv); |
| 2891 | argv++; |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 2892 | } |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2893 | fprintf(stderr, "\n"); |
| 2894 | prn++; |
| 2895 | } |
| 2896 | pi = pi->next; |
| 2897 | pin++; |
| 2898 | } |
| 2899 | } |
| 2900 | #endif |
| 2901 | |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2902 | /* NB: called by pseudo_exec, and therefore must not modify any |
| 2903 | * global data until exec/_exit (we can be a child after vfork!) */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2904 | static int run_list(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2905 | { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2906 | #if ENABLE_HUSH_CASE |
| 2907 | char *case_word = NULL; |
| 2908 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2909 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2910 | struct pipe *loop_top = NULL; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2911 | char *for_varname = NULL; |
| 2912 | char **for_lcur = NULL; |
| 2913 | char **for_list = NULL; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2914 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2915 | smallint flag_skip = 1; |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 2916 | smalluint rcode = 0; /* probably just for compiler */ |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 2917 | #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2918 | smalluint cond_code = 0; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2919 | #else |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2920 | enum { cond_code = 0, }; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 2921 | #endif |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2922 | /*enum reserved_style*/ smallint rword = RES_NONE; |
| 2923 | /*enum reserved_style*/ smallint skip_more_for_this_rword = RES_XXXX; |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 2924 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2925 | 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] | 2926 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2927 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 2928 | /* Check syntax for "for" */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 2929 | for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) { |
| 2930 | if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2931 | continue; |
| 2932 | /* current word is FOR or IN (BOLD in comments below) */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 2933 | if (cpipe->next == NULL) { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2934 | syntax("malformed for"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2935 | 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] | 2936 | return 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2937 | } |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2938 | /* "FOR v; do ..." and "for v IN a b; do..." are ok */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 2939 | if (cpipe->next->res_word == RES_DO) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2940 | continue; |
| 2941 | /* 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] | 2942 | if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */ |
| 2943 | || 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] | 2944 | ) { |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 2945 | syntax("malformed for"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2946 | 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] | 2947 | return 1; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2948 | } |
| 2949 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2950 | #endif |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2951 | |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 2952 | /* Past this point, all code paths should jump to ret: label |
Denis Vlasenko | 12acec5 | 2008-07-28 15:15:59 +0000 | [diff] [blame] | 2953 | * in order to return, no direct "return" statements please. |
| 2954 | * This helps to ensure that no memory is leaked. */ |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 2955 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 2956 | ////TODO: ctrl-Z handling needs re-thinking and re-testing |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 2957 | |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2958 | #if ENABLE_HUSH_JOB |
| 2959 | /* Example of nested list: "while true; do { sleep 1 | exit 2; } done". |
| 2960 | * We are saving state before entering outermost list ("while...done") |
| 2961 | * so that ctrl-Z will correctly background _entire_ outermost list, |
| 2962 | * not just a part of it (like "sleep 1 | exit 2") */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 2963 | if (++G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2964 | if (sigsetjmp(G.toplevel_jb, 1)) { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2965 | /* ctrl-Z forked and we are parent; or ctrl-C. |
| 2966 | * Sighandler has longjmped us here */ |
| 2967 | signal(SIGINT, SIG_IGN); |
| 2968 | signal(SIGTSTP, SIG_IGN); |
| 2969 | /* Restore level (we can be coming from deep inside |
| 2970 | * nested levels) */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2971 | G.run_list_level = 1; |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2972 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2973 | if (G.nofork_save.saved) { /* if save area is valid */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2974 | debug_printf_jobs("exiting nofork early\n"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2975 | restore_nofork_data(&G.nofork_save); |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2976 | } |
| 2977 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 2978 | //// if (G.ctrl_z_flag) { |
| 2979 | //// /* ctrl-Z has forked and stored pid of the child in pi->pid. |
| 2980 | //// * Remember this child as background job */ |
| 2981 | //// insert_bg_job(pi); |
| 2982 | //// } else { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2983 | /* ctrl-C. We just stop doing whatever we were doing */ |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 2984 | bb_putchar('\n'); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 2985 | //// } |
Denis Vlasenko | ff29b4f | 2008-07-29 13:57:59 +0000 | [diff] [blame] | 2986 | USE_HUSH_LOOPS(loop_top = NULL;) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2987 | USE_HUSH_LOOPS(G.depth_of_loop = 0;) |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2988 | rcode = 0; |
| 2989 | goto ret; |
| 2990 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 2991 | //// /* ctrl-Z handler will store pid etc in pi */ |
| 2992 | //// G.toplevel_list = pi; |
| 2993 | //// G.ctrl_z_flag = 0; |
| 2994 | ////#if ENABLE_FEATURE_SH_STANDALONE |
| 2995 | //// G.nofork_save.saved = 0; /* in case we will run a nofork later */ |
| 2996 | ////#endif |
| 2997 | //// signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z); |
| 2998 | //// signal(SIGINT, handler_ctrl_c); |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2999 | } |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3000 | #endif /* JOB */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3001 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3002 | /* Go through list of pipes, (maybe) executing them. */ |
| 3003 | for (; pi; pi = USE_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) { |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 3004 | if (G.flag_SIGINT) |
| 3005 | break; |
| 3006 | |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3007 | IF_HAS_KEYWORDS(rword = pi->res_word;) |
| 3008 | IF_HAS_NO_KEYWORDS(rword = RES_NONE;) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3009 | debug_printf_exec(": rword=%d cond_code=%d skip_more=%d\n", |
| 3010 | rword, cond_code, skip_more_for_this_rword); |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3011 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 4554b72 | 2008-07-29 13:36:09 +0000 | [diff] [blame] | 3012 | if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3013 | && loop_top == NULL /* avoid bumping G.depth_of_loop twice */ |
Denis Vlasenko | 4554b72 | 2008-07-29 13:36:09 +0000 | [diff] [blame] | 3014 | ) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3015 | /* start of a loop: remember where loop starts */ |
| 3016 | loop_top = pi; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3017 | G.depth_of_loop++; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3018 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3019 | #endif |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3020 | if (rword == skip_more_for_this_rword && flag_skip) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3021 | if (pi->followup == PIPE_SEQ) |
| 3022 | flag_skip = 0; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3023 | /* it is "<false> && CMD" or "<true> || CMD" |
| 3024 | * and we should not execute CMD */ |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3025 | continue; |
| 3026 | } |
| 3027 | flag_skip = 1; |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3028 | skip_more_for_this_rword = RES_XXXX; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3029 | #if ENABLE_HUSH_IF |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3030 | if (cond_code) { |
| 3031 | if (rword == RES_THEN) { |
| 3032 | /* "if <false> THEN cmd": skip cmd */ |
| 3033 | continue; |
| 3034 | } |
| 3035 | } else { |
| 3036 | if (rword == RES_ELSE || rword == RES_ELIF) { |
| 3037 | /* "if <true> then ... ELSE/ELIF cmd": |
| 3038 | * skip cmd and all following ones */ |
| 3039 | break; |
| 3040 | } |
| 3041 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3042 | #endif |
| 3043 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3044 | if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3045 | if (!for_lcur) { |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 3046 | /* first loop through for */ |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3047 | |
| 3048 | static const char encoded_dollar_at[] ALIGN1 = { |
| 3049 | SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0' |
| 3050 | }; /* encoded representation of "$@" */ |
| 3051 | static const char *const encoded_dollar_at_argv[] = { |
| 3052 | encoded_dollar_at, NULL |
| 3053 | }; /* argv list with one element: "$@" */ |
| 3054 | char **vals; |
| 3055 | |
| 3056 | vals = (char**)encoded_dollar_at_argv; |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3057 | if (pi->next->res_word == RES_IN) { |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3058 | /* if no variable values after "in" we skip "for" */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3059 | if (!pi->next->cmds[0].argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3060 | break; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3061 | vals = pi->next->cmds[0].argv; |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3062 | } /* else: "for var; do..." -> assume "$@" list */ |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3063 | /* create list of variable values */ |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3064 | debug_print_strings("for_list made from", vals); |
| 3065 | for_list = expand_strvec_to_strvec(vals); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3066 | for_lcur = for_list; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3067 | debug_print_strings("for_list", for_list); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3068 | for_varname = pi->cmds[0].argv[0]; |
| 3069 | pi->cmds[0].argv[0] = NULL; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3070 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3071 | free(pi->cmds[0].argv[0]); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3072 | if (!*for_lcur) { |
Denis Vlasenko | 12acec5 | 2008-07-28 15:15:59 +0000 | [diff] [blame] | 3073 | /* "for" loop is over, clean up */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3074 | free(for_list); |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3075 | for_list = NULL; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3076 | for_lcur = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3077 | pi->cmds[0].argv[0] = for_varname; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3078 | break; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3079 | } |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3080 | /* insert next value from for_lcur */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3081 | //TODO: does it need escaping? |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3082 | pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++); |
| 3083 | pi->cmds[0].assignment_cnt = 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3084 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3085 | 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] | 3086 | continue; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3087 | if (rword == RES_DONE) { |
| 3088 | continue; /* "done" has no cmds too */ |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3089 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3090 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3091 | #if ENABLE_HUSH_CASE |
| 3092 | if (rword == RES_CASE) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3093 | case_word = expand_strvec_to_string(pi->cmds->argv); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3094 | continue; |
| 3095 | } |
| 3096 | if (rword == RES_MATCH) { |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 3097 | char **argv; |
| 3098 | |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3099 | if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */ |
| 3100 | break; |
| 3101 | /* all prev words didn't match, does this one match? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3102 | argv = pi->cmds->argv; |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 3103 | while (*argv) { |
| 3104 | char *pattern = expand_string_to_string(*argv); |
| 3105 | /* TODO: which FNM_xxx flags to use? */ |
| 3106 | cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0); |
| 3107 | free(pattern); |
| 3108 | if (cond_code == 0) { /* match! we will execute this branch */ |
| 3109 | free(case_word); /* make future "word)" stop */ |
| 3110 | case_word = NULL; |
| 3111 | break; |
| 3112 | } |
| 3113 | argv++; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3114 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3115 | continue; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3116 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3117 | if (rword == RES_CASEI) { /* inside of a case branch */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3118 | if (cond_code != 0) |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3119 | continue; /* not matched yet, skip this pipe */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3120 | } |
| 3121 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3122 | /* Just pressing <enter> in shell should check for jobs. |
| 3123 | * OTOH, in non-interactive shell this is useless |
| 3124 | * and only leads to extra job checks */ |
| 3125 | if (pi->num_cmds == 0) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 3126 | if (G_interactive_fd) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3127 | goto check_jobs_and_continue; |
| 3128 | continue; |
| 3129 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3130 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3131 | /* After analyzing all keywords and conditions, we decided |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3132 | * to execute this pipe. NB: have to do checkjobs(NULL) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3133 | * after run_pipe() to collect any background children, |
| 3134 | * even if list execution is to be stopped. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3135 | debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3136 | { |
| 3137 | int r; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3138 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3139 | G.flag_break_continue = 0; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3140 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3141 | rcode = r = run_pipe(pi); /* NB: rcode is a smallint */ |
| 3142 | if (r != -1) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3143 | /* we only ran a builtin: rcode is already known |
| 3144 | * and we don't need to wait for anything. */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3145 | check_and_run_traps(0); |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3146 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3147 | /* was it "break" or "continue"? */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3148 | if (G.flag_break_continue) { |
| 3149 | smallint fbc = G.flag_break_continue; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3150 | /* we might fall into outer *loop*, |
| 3151 | * don't want to break it too */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3152 | if (loop_top) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3153 | G.depth_break_continue--; |
| 3154 | if (G.depth_break_continue == 0) |
| 3155 | G.flag_break_continue = 0; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3156 | /* else: e.g. "continue 2" should *break* once, *then* continue */ |
| 3157 | } /* 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] | 3158 | if (G.depth_break_continue != 0 || fbc == BC_BREAK) |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3159 | goto check_jobs_and_break; |
| 3160 | /* "continue": simulate end of loop */ |
| 3161 | rword = RES_DONE; |
| 3162 | continue; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3163 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3164 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3165 | } else if (pi->followup == PIPE_BG) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3166 | /* what does bash do with attempts to background builtins? */ |
| 3167 | /* even bash 3.2 doesn't do that well with nested bg: |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3168 | * try "{ { sleep 10; echo DEEP; } & echo HERE; } &". |
| 3169 | * I'm NOT treating inner &'s as jobs */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3170 | check_and_run_traps(0); |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3171 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3172 | if (G.run_list_level == 1) |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3173 | insert_bg_job(pi); |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3174 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3175 | rcode = 0; /* EXIT_SUCCESS */ |
| 3176 | } else { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3177 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 3178 | if (G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3179 | /* waits for completion, then fg's main shell */ |
| 3180 | rcode = checkjobs_and_fg_shell(pi); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3181 | check_and_run_traps(0); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3182 | debug_printf_exec(": checkjobs_and_fg_shell returned %d\n", rcode); |
| 3183 | } else |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3184 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3185 | { /* this one just waits for completion */ |
| 3186 | rcode = checkjobs(pi); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3187 | check_and_run_traps(0); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3188 | debug_printf_exec(": checkjobs returned %d\n", rcode); |
| 3189 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3190 | } |
| 3191 | } |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3192 | debug_printf_exec(": setting last_return_code=%d\n", rcode); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3193 | G.last_return_code = rcode; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3194 | |
| 3195 | /* Analyze how result affects subsequent commands */ |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3196 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3197 | if (rword == RES_IF || rword == RES_ELIF) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3198 | cond_code = rcode; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3199 | #endif |
| 3200 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3201 | if (rword == RES_WHILE) { |
Denis Vlasenko | 918a34b | 2008-07-28 23:17:31 +0000 | [diff] [blame] | 3202 | if (rcode) { |
| 3203 | rcode = 0; /* "while false; do...done" - exitcode 0 */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3204 | goto check_jobs_and_break; |
Denis Vlasenko | 918a34b | 2008-07-28 23:17:31 +0000 | [diff] [blame] | 3205 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3206 | } |
| 3207 | if (rword == RES_UNTIL) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3208 | if (!rcode) { |
| 3209 | check_jobs_and_break: |
| 3210 | checkjobs(NULL); |
| 3211 | break; |
| 3212 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3213 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3214 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3215 | if ((rcode == 0 && pi->followup == PIPE_OR) |
| 3216 | || (rcode != 0 && pi->followup == PIPE_AND) |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3217 | ) { |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3218 | skip_more_for_this_rword = rword; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3219 | } |
Mike Frysinger | 8ec1c9d | 2009-03-29 00:45:26 +0000 | [diff] [blame] | 3220 | |
| 3221 | check_jobs_and_continue: |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 3222 | checkjobs(NULL); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3223 | } /* for (pi) */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3224 | |
| 3225 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3226 | //// if (G.ctrl_z_flag) { |
| 3227 | //// /* ctrl-Z forked somewhere in the past, we are the child, |
| 3228 | //// * and now we completed running the list. Exit. */ |
| 3229 | //////TODO: _exit? |
| 3230 | //// exit(rcode); |
| 3231 | //// } |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3232 | ret: |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3233 | G.run_list_level--; |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 3234 | //// if (!G.run_list_level && G_interactive_fd) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3235 | //// signal(SIGTSTP, SIG_IGN); |
| 3236 | //// signal(SIGINT, SIG_IGN); |
| 3237 | //// } |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3238 | #endif |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3239 | 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] | 3240 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3241 | if (loop_top) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3242 | G.depth_of_loop--; |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3243 | free(for_list); |
| 3244 | #endif |
| 3245 | #if ENABLE_HUSH_CASE |
| 3246 | free(case_word); |
| 3247 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3248 | return rcode; |
| 3249 | } |
| 3250 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3251 | /* Select which version we will use */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3252 | static int run_and_free_list(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3253 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3254 | int rcode = 0; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3255 | debug_printf_exec("run_and_free_list entered\n"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3256 | if (!G.fake_mode) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3257 | debug_printf_exec(": run_list with %d members\n", pi->num_cmds); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3258 | rcode = run_list(pi); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3259 | } |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3260 | /* free_pipe_list has the side effect of clearing memory. |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3261 | * In the long run that function can be merged with run_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3262 | * but doing that now would hobble the debugging effort. */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3263 | free_pipe_list(pi, /* indent: */ 0); |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 3264 | debug_printf_exec("run_and_free_list return %d\n", rcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3265 | return rcode; |
| 3266 | } |
| 3267 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3268 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3269 | /* Peek ahead in the in_str to find out if we have a "&n" construct, |
| 3270 | * as in "2>&1", that represents duplicating a file descriptor. |
| 3271 | * Return either -2 (syntax error), -1 (no &), or the number found. |
| 3272 | */ |
| 3273 | static int redirect_dup_num(struct in_str *input) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3274 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3275 | int ch, d = 0, ok = 0; |
| 3276 | ch = i_peek(input); |
| 3277 | if (ch != '&') return -1; |
| 3278 | |
| 3279 | i_getch(input); /* get the & */ |
| 3280 | ch = i_peek(input); |
| 3281 | if (ch == '-') { |
| 3282 | i_getch(input); |
| 3283 | return -3; /* "-" represents "close me" */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3284 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3285 | while (isdigit(ch)) { |
| 3286 | d = d*10 + (ch-'0'); |
| 3287 | ok = 1; |
| 3288 | i_getch(input); |
| 3289 | ch = i_peek(input); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3290 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3291 | if (ok) return d; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3292 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3293 | bb_error_msg("ambiguous redirect"); |
| 3294 | return -2; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 3295 | } |
| 3296 | |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3297 | /* 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] | 3298 | * for file descriptor duplication, e.g., "2>&1". |
| 3299 | * Return code is 0 normally, 1 if a syntax error is detected in src. |
| 3300 | * Resource errors (in xmalloc) cause the process to exit */ |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 3301 | static int setup_redirect(struct parse_context *ctx, |
| 3302 | int fd, |
| 3303 | redir_type style, |
| 3304 | struct in_str *input) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3305 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3306 | struct command *command = ctx->command; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 3307 | struct redir_struct *redir; |
| 3308 | struct redir_struct **redirp; |
| 3309 | int dup_num; |
| 3310 | |
| 3311 | /* Check for a '2>&1' type redirect */ |
| 3312 | dup_num = redirect_dup_num(input); |
| 3313 | if (dup_num == -2) |
| 3314 | return 1; /* syntax error */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3315 | |
| 3316 | /* Create a new redir_struct and drop it onto the end of the linked list */ |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 3317 | redirp = &command->redirects; |
| 3318 | while ((redir = *redirp) != NULL) { |
| 3319 | redirp = &(redir->next); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3320 | } |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 3321 | *redirp = redir = xzalloc(sizeof(*redir)); |
Denis Vlasenko | ff09762 | 2007-10-01 10:00:45 +0000 | [diff] [blame] | 3322 | /* redir->next = NULL; */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3323 | /* redir->rd_filename = NULL; */ |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3324 | redir->rd_type = style; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3325 | redir->fd = (fd == -1) ? redir_table[style].default_fd : fd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3326 | |
| 3327 | debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip); |
| 3328 | |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 3329 | redir->dup = dup_num; |
| 3330 | if (dup_num != -1) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3331 | /* Erik had a check here that the file descriptor in question |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 3332 | * is legit; I postpone that to "run time" |
| 3333 | * A "-" representation of "close me" shows up as a -3 here */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3334 | debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup); |
| 3335 | } else { |
| 3336 | /* We do _not_ try to open the file that src points to, |
| 3337 | * since we need to return and let src be expanded first. |
| 3338 | * Set ctx->pending_redirect, so we know what to do at the |
Denis Vlasenko | 201c72a | 2007-05-25 10:00:36 +0000 | [diff] [blame] | 3339 | * end of the next parsed word. */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3340 | ctx->pending_redirect = redir; |
| 3341 | } |
| 3342 | return 0; |
| 3343 | } |
| 3344 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3345 | |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 3346 | static struct pipe *new_pipe(void) |
| 3347 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3348 | struct pipe *pi; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3349 | pi = xzalloc(sizeof(struct pipe)); |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3350 | /*pi->followup = 0; - deliberately invalid value */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3351 | /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3352 | return pi; |
| 3353 | } |
| 3354 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3355 | /* Command (member of a pipe) is complete. The only possible error here |
| 3356 | * is out of memory, in which case xmalloc exits. */ |
| 3357 | static int done_command(struct parse_context *ctx) |
| 3358 | { |
| 3359 | /* The command is really already in the pipe structure, so |
| 3360 | * advance the pipe counter and make a new, null command. */ |
| 3361 | struct pipe *pi = ctx->pipe; |
| 3362 | struct command *command = ctx->command; |
| 3363 | |
| 3364 | if (command) { |
| 3365 | if (command->group == NULL |
| 3366 | && command->argv == NULL |
| 3367 | && command->redirects == NULL |
| 3368 | ) { |
| 3369 | debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds); |
| 3370 | return pi->num_cmds; |
| 3371 | } |
| 3372 | pi->num_cmds++; |
| 3373 | debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds); |
| 3374 | } else { |
| 3375 | debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds); |
| 3376 | } |
| 3377 | |
| 3378 | /* Only real trickiness here is that the uncommitted |
| 3379 | * command structure is not counted in pi->num_cmds. */ |
| 3380 | pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1)); |
| 3381 | command = &pi->cmds[pi->num_cmds]; |
| 3382 | memset(command, 0, sizeof(*command)); |
| 3383 | |
| 3384 | ctx->command = command; |
| 3385 | /* but ctx->pipe and ctx->list_head remain unchanged */ |
| 3386 | |
| 3387 | return pi->num_cmds; /* used only for 0/nonzero check */ |
| 3388 | } |
| 3389 | |
| 3390 | static void done_pipe(struct parse_context *ctx, pipe_style type) |
| 3391 | { |
| 3392 | int not_null; |
| 3393 | |
| 3394 | debug_printf_parse("done_pipe entered, followup %d\n", type); |
| 3395 | /* Close previous command */ |
| 3396 | not_null = done_command(ctx); |
| 3397 | ctx->pipe->followup = type; |
| 3398 | IF_HAS_KEYWORDS(ctx->pipe->pi_inverted = ctx->ctx_inverted;) |
| 3399 | IF_HAS_KEYWORDS(ctx->ctx_inverted = 0;) |
| 3400 | IF_HAS_KEYWORDS(ctx->pipe->res_word = ctx->ctx_res_w;) |
| 3401 | |
| 3402 | /* Without this check, even just <enter> on command line generates |
| 3403 | * tree of three NOPs (!). Which is harmless but annoying. |
| 3404 | * IOW: it is safe to do it unconditionally. |
| 3405 | * RES_NONE case is for "for a in; do ..." (empty IN set) |
| 3406 | * to work, possibly other cases too. */ |
| 3407 | if (not_null IF_HAS_KEYWORDS(|| ctx->ctx_res_w != RES_NONE)) { |
| 3408 | struct pipe *new_p; |
| 3409 | debug_printf_parse("done_pipe: adding new pipe: " |
| 3410 | "not_null:%d ctx->ctx_res_w:%d\n", |
| 3411 | not_null, ctx->ctx_res_w); |
| 3412 | new_p = new_pipe(); |
| 3413 | ctx->pipe->next = new_p; |
| 3414 | ctx->pipe = new_p; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3415 | /* RES_THEN, RES_DO etc are "sticky" - |
| 3416 | * they remain set for commands inside if/while. |
| 3417 | * This is used to control execution. |
| 3418 | * RES_FOR and RES_IN are NOT sticky (needed to support |
| 3419 | * cases where variable or value happens to match a keyword): |
| 3420 | */ |
| 3421 | #if ENABLE_HUSH_LOOPS |
| 3422 | if (ctx->ctx_res_w == RES_FOR |
| 3423 | || ctx->ctx_res_w == RES_IN) |
| 3424 | ctx->ctx_res_w = RES_NONE; |
| 3425 | #endif |
| 3426 | #if ENABLE_HUSH_CASE |
| 3427 | if (ctx->ctx_res_w == RES_MATCH) |
| 3428 | ctx->ctx_res_w = RES_CASEI; |
| 3429 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3430 | ctx->command = NULL; /* trick done_command below */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3431 | /* Create the memory for command, roughly: |
| 3432 | * ctx->pipe->cmds = new struct command; |
| 3433 | * ctx->command = &ctx->pipe->cmds[0]; |
| 3434 | */ |
| 3435 | done_command(ctx); |
| 3436 | } |
| 3437 | debug_printf_parse("done_pipe return\n"); |
| 3438 | } |
| 3439 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3440 | static void initialize_context(struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3441 | { |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3442 | memset(ctx, 0, sizeof(*ctx)); |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3443 | ctx->pipe = ctx->list_head = new_pipe(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3444 | /* Create the memory for command, roughly: |
| 3445 | * ctx->pipe->cmds = new struct command; |
| 3446 | * ctx->command = &ctx->pipe->cmds[0]; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3447 | */ |
| 3448 | done_command(ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3449 | } |
| 3450 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3451 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3452 | /* If a reserved word is found and processed, parse context is modified |
| 3453 | * and 1 is returned. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3454 | */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3455 | #if HAS_KEYWORDS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3456 | struct reserved_combo { |
| 3457 | char literal[6]; |
| 3458 | unsigned char res; |
| 3459 | unsigned char assignment_flag; |
| 3460 | int flag; |
| 3461 | }; |
| 3462 | enum { |
| 3463 | FLAG_END = (1 << RES_NONE ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3464 | #if ENABLE_HUSH_IF |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3465 | FLAG_IF = (1 << RES_IF ), |
| 3466 | FLAG_THEN = (1 << RES_THEN ), |
| 3467 | FLAG_ELIF = (1 << RES_ELIF ), |
| 3468 | FLAG_ELSE = (1 << RES_ELSE ), |
| 3469 | FLAG_FI = (1 << RES_FI ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3470 | #endif |
| 3471 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3472 | FLAG_FOR = (1 << RES_FOR ), |
| 3473 | FLAG_WHILE = (1 << RES_WHILE), |
| 3474 | FLAG_UNTIL = (1 << RES_UNTIL), |
| 3475 | FLAG_DO = (1 << RES_DO ), |
| 3476 | FLAG_DONE = (1 << RES_DONE ), |
| 3477 | FLAG_IN = (1 << RES_IN ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3478 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3479 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3480 | FLAG_MATCH = (1 << RES_MATCH), |
| 3481 | FLAG_ESAC = (1 << RES_ESAC ), |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3482 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3483 | FLAG_START = (1 << RES_XXXX ), |
| 3484 | }; |
| 3485 | |
| 3486 | static const struct reserved_combo* match_reserved_word(o_string *word) |
| 3487 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3488 | /* Mostly a list of accepted follow-up reserved words. |
| 3489 | * FLAG_END means we are done with the sequence, and are ready |
| 3490 | * to turn the compound list into a command. |
| 3491 | * FLAG_START means the word must start a new compound list. |
| 3492 | */ |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3493 | static const struct reserved_combo reserved_list[] = { |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3494 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3495 | { "!", RES_NONE, NOT_ASSIGNMENT , 0 }, |
| 3496 | { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START }, |
| 3497 | { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI }, |
| 3498 | { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN }, |
| 3499 | { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI }, |
| 3500 | { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3501 | #endif |
| 3502 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3503 | { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START }, |
| 3504 | { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START }, |
| 3505 | { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START }, |
| 3506 | { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO }, |
| 3507 | { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE }, |
| 3508 | { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3509 | #endif |
| 3510 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3511 | { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START }, |
| 3512 | { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3513 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3514 | }; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3515 | const struct reserved_combo *r; |
| 3516 | |
| 3517 | for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) { |
| 3518 | if (strcmp(word->data, r->literal) == 0) |
| 3519 | return r; |
| 3520 | } |
| 3521 | return NULL; |
| 3522 | } |
| 3523 | static int reserved_word(o_string *word, struct parse_context *ctx) |
| 3524 | { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3525 | #if ENABLE_HUSH_CASE |
| 3526 | static const struct reserved_combo reserved_match = { |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3527 | "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3528 | }; |
| 3529 | #endif |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3530 | const struct reserved_combo *r; |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3531 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3532 | r = match_reserved_word(word); |
| 3533 | if (!r) |
| 3534 | return 0; |
| 3535 | |
| 3536 | 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] | 3537 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3538 | if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE) |
| 3539 | /* "case word IN ..." - IN part starts first match part */ |
| 3540 | r = &reserved_match; |
| 3541 | else |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3542 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3543 | if (r->flag == 0) { /* '!' */ |
| 3544 | if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3545 | syntax("! ! command"); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3546 | IF_HAS_KEYWORDS(ctx->ctx_res_w = RES_SNTX;) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3547 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3548 | ctx->ctx_inverted = 1; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3549 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3550 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3551 | if (r->flag & FLAG_START) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3552 | struct parse_context *old; |
| 3553 | old = xmalloc(sizeof(*old)); |
| 3554 | debug_printf_parse("push stack %p\n", old); |
| 3555 | *old = *ctx; /* physical copy */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3556 | initialize_context(ctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3557 | ctx->stack = old; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3558 | } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3559 | syntax(word->data); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3560 | ctx->ctx_res_w = RES_SNTX; |
| 3561 | return 1; |
| 3562 | } |
| 3563 | ctx->ctx_res_w = r->res; |
| 3564 | ctx->old_flag = r->flag; |
| 3565 | if (ctx->old_flag & FLAG_END) { |
| 3566 | struct parse_context *old; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3567 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3568 | debug_printf_parse("pop stack %p\n", ctx->stack); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3569 | old = ctx->stack; |
| 3570 | old->command->group = ctx->list_head; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3571 | old->command->grp_type = GRP_NORMAL; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3572 | *ctx = *old; /* physical copy */ |
| 3573 | free(old); |
| 3574 | } |
| 3575 | word->o_assignment = r->assignment_flag; |
| 3576 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3577 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3578 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3579 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3580 | /* Word is complete, look at it and update parsing context. |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3581 | * Normal return is 0. Syntax errors return 1. |
| 3582 | * Note: on return, word is reset, but not o_free'd! |
| 3583 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3584 | static int done_word(o_string *word, struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3585 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3586 | struct command *command = ctx->command; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3587 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3588 | debug_printf_parse("done_word entered: '%s' %p\n", word->data, command); |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3589 | if (word->length == 0 && word->nonnull == 0) { |
| 3590 | debug_printf_parse("done_word return 0: true null, ignored\n"); |
| 3591 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3592 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3593 | /* If this word wasn't an assignment, next ones definitely |
| 3594 | * can't be assignments. Even if they look like ones. */ |
| 3595 | if (word->o_assignment != DEFINITELY_ASSIGNMENT |
| 3596 | && word->o_assignment != WORD_IS_KEYWORD |
| 3597 | ) { |
| 3598 | word->o_assignment = NOT_ASSIGNMENT; |
| 3599 | } else { |
| 3600 | if (word->o_assignment == DEFINITELY_ASSIGNMENT) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3601 | command->assignment_cnt++; |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3602 | word->o_assignment = MAYBE_ASSIGNMENT; |
| 3603 | } |
| 3604 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3605 | if (ctx->pending_redirect) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3606 | /* We do not glob in e.g. >*.tmp case. bash seems to glob here |
| 3607 | * only if run as "bash", not "sh" */ |
| 3608 | ctx->pending_redirect->rd_filename = xstrdup(word->data); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3609 | word->o_assignment = NOT_ASSIGNMENT; |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3610 | debug_printf("word stored in rd_filename: '%s'\n", word->data); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3611 | } else { |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 3612 | /* "{ echo foo; } echo bar" - bad */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3613 | /* NB: bash allows e.g.: |
| 3614 | * if true; then { echo foo; } fi |
| 3615 | * while if false; then false; fi do break; done |
| 3616 | * TODO? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3617 | if (command->group) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3618 | syntax(word->data); |
| 3619 | debug_printf_parse("done_word return 1: syntax error, " |
| 3620 | "groups and arglists don't mix\n"); |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 3621 | return 1; |
| 3622 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3623 | #if HAS_KEYWORDS |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3624 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | 757361f | 2008-07-14 08:26:47 +0000 | [diff] [blame] | 3625 | if (ctx->ctx_dsemicolon |
| 3626 | && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */ |
| 3627 | ) { |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 3628 | /* already done when ctx_dsemicolon was set to 1: */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3629 | /* ctx->ctx_res_w = RES_MATCH; */ |
| 3630 | ctx->ctx_dsemicolon = 0; |
| 3631 | } else |
| 3632 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3633 | if (!command->argv /* if it's the first word... */ |
Denis Vlasenko | 6bdff08 | 2008-07-09 20:14:53 +0000 | [diff] [blame] | 3634 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3635 | && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */ |
| 3636 | && ctx->ctx_res_w != RES_IN |
Denis Vlasenko | 6bdff08 | 2008-07-09 20:14:53 +0000 | [diff] [blame] | 3637 | #endif |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3638 | ) { |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3639 | debug_printf_parse(": checking '%s' for reserved-ness\n", word->data); |
| 3640 | if (reserved_word(word, ctx)) { |
| 3641 | o_reset(word); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3642 | debug_printf_parse("done_word return %d\n", (ctx->ctx_res_w == RES_SNTX)); |
| 3643 | return (ctx->ctx_res_w == RES_SNTX); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3644 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3645 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3646 | #endif |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3647 | 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] | 3648 | /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */ |
| 3649 | && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL) |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3650 | /* (otherwise it's known to be not empty and is already safe) */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3651 | ) { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3652 | /* exclude "$@" - it can expand to no word despite "" */ |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 3653 | char *p = word->data; |
| 3654 | while (p[0] == SPECIAL_VAR_SYMBOL |
| 3655 | && (p[1] & 0x7f) == '@' |
| 3656 | && p[2] == SPECIAL_VAR_SYMBOL |
| 3657 | ) { |
| 3658 | p += 3; |
| 3659 | } |
| 3660 | if (p == word->data || p[0] != '\0') { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3661 | /* saw no "$@", or not only "$@" but some |
| 3662 | * real text is there too */ |
| 3663 | /* insert "empty variable" reference, this makes |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 3664 | * e.g. "", $empty"" etc to not disappear */ |
| 3665 | o_addchr(word, SPECIAL_VAR_SYMBOL); |
| 3666 | o_addchr(word, SPECIAL_VAR_SYMBOL); |
| 3667 | } |
Denis Vlasenko | c1c63b6 | 2008-06-18 09:20:35 +0000 | [diff] [blame] | 3668 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3669 | command->argv = add_string_to_strings(command->argv, xstrdup(word->data)); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3670 | debug_print_strings("word appended to argv", command->argv); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3671 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3672 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3673 | o_reset(word); |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3674 | ctx->pending_redirect = NULL; |
| 3675 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3676 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3677 | /* Force FOR to have just one word (variable name) */ |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3678 | /* NB: basically, this makes hush see "for v in ..." syntax as if |
| 3679 | * as it is "for v; in ...". FOR and IN become two pipe structs |
| 3680 | * in parse tree. */ |
| 3681 | if (ctx->ctx_res_w == RES_FOR) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3682 | //TODO: check that command->argv[0] is a valid variable name! |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 3683 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3684 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3685 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3686 | #if ENABLE_HUSH_CASE |
| 3687 | /* Force CASE to have just one word */ |
| 3688 | if (ctx->ctx_res_w == RES_CASE) { |
| 3689 | done_pipe(ctx, PIPE_SEQ); |
| 3690 | } |
| 3691 | #endif |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3692 | debug_printf_parse("done_word return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3693 | return 0; |
| 3694 | } |
| 3695 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3696 | /* If a redirect is immediately preceded by a number, that number is |
| 3697 | * supposed to tell which file descriptor to redirect. This routine |
| 3698 | * looks for such preceding numbers. In an ideal world this routine |
| 3699 | * needs to handle all the following classes of redirects... |
| 3700 | * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo |
| 3701 | * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo |
| 3702 | * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo |
| 3703 | * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo |
| 3704 | * A -1 output from this program means no valid number was found, so the |
| 3705 | * caller should use the appropriate default for this redirection. |
| 3706 | */ |
| 3707 | static int redirect_opt_num(o_string *o) |
| 3708 | { |
| 3709 | int num; |
| 3710 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3711 | if (o->length == 0) |
| 3712 | return -1; |
| 3713 | for (num = 0; num < o->length; num++) { |
Denis Vlasenko | c1c63b6 | 2008-06-18 09:20:35 +0000 | [diff] [blame] | 3714 | if (!isdigit(o->data[num])) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3715 | return -1; |
| 3716 | } |
| 3717 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3718 | num = atoi(o->data); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3719 | o_reset(o); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3720 | return num; |
| 3721 | } |
| 3722 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3723 | static struct pipe *parse_stream(struct in_str *input, int end_trigger); |
Mike Frysinger | ddbee97 | 2009-03-22 22:48:41 +0000 | [diff] [blame] | 3724 | |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 3725 | #if ENABLE_HUSH_TICK |
"Vladimir N. Oleynik" | 19c3701 | 2005-09-22 14:33:15 +0000 | [diff] [blame] | 3726 | static FILE *generate_stream_from_list(struct pipe *head) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3727 | { |
| 3728 | FILE *pf; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3729 | int pid, channel[2]; |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 3730 | |
Denis Vlasenko | 5a6aedd | 2007-05-26 16:44:20 +0000 | [diff] [blame] | 3731 | xpipe(channel); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3732 | /* *** NOMMU WARNING *** */ |
| 3733 | /* By using vfork here, we suspend parent till child exits or execs. |
| 3734 | * If child will not do it before it fills the pipe, it can block forever |
| 3735 | * in write(STDOUT_FILENO), and parent (shell) will be also stuck. |
Denis Vlasenko | 3fe4f98 | 2008-06-09 16:02:39 +0000 | [diff] [blame] | 3736 | * Try this script: |
| 3737 | * yes "0123456789012345678901234567890" | dd bs=32 count=64k >TESTFILE |
| 3738 | * huge=`cat TESTFILE` # will block here forever |
| 3739 | * echo OK |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3740 | */ |
Denis Vlasenko | 82604e9 | 2008-07-01 15:59:42 +0000 | [diff] [blame] | 3741 | pid = BB_MMU ? fork() : vfork(); |
| 3742 | if (pid < 0) |
| 3743 | bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork"); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3744 | if (pid == 0) { /* child */ |
Denis Vlasenko | 8317799 | 2008-02-11 08:44:36 +0000 | [diff] [blame] | 3745 | if (ENABLE_HUSH_JOB) |
| 3746 | die_sleep = 0; /* let nofork's xfuncs die */ |
Denis Vlasenko | 284d0fa | 2008-02-16 13:18:17 +0000 | [diff] [blame] | 3747 | close(channel[0]); /* NB: close _first_, then move fd! */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3748 | xmove_fd(channel[1], 1); |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 3749 | /* Prevent it from trying to handle ctrl-z etc */ |
Denis Vlasenko | 27f79ff | 2007-05-30 00:55:52 +0000 | [diff] [blame] | 3750 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3751 | G.run_list_level = 1; |
Denis Vlasenko | 27f79ff | 2007-05-30 00:55:52 +0000 | [diff] [blame] | 3752 | #endif |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 3753 | /* Process substitution is not considered to be usual |
| 3754 | * 'command execution'. |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 3755 | * SUSv3 says ctrl-Z should be ignored, ctrl-C should not. |
| 3756 | */ |
| 3757 | set_jobctrl_signals_to_IGN(); |
| 3758 | |
| 3759 | /* Note: freeing 'head' here would break NOMMU. */ |
Denis Vlasenko | c04163a | 2008-02-11 08:30:53 +0000 | [diff] [blame] | 3760 | _exit(run_list(head)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3761 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3762 | close(channel[1]); |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 3763 | pf = fdopen(channel[0], "r"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3764 | return pf; |
Denis Vlasenko | c04163a | 2008-02-11 08:30:53 +0000 | [diff] [blame] | 3765 | /* 'head' is freed by the caller */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3766 | } |
| 3767 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3768 | /* Return code is exit status of the process that is run. */ |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 3769 | static int process_command_subs(o_string *dest, |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 3770 | struct in_str *input) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3771 | { |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 3772 | int retcode, ch, eol_cnt; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3773 | struct pipe *pipe_list; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3774 | FILE *p; |
| 3775 | struct in_str pipe_str; |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 3776 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3777 | /* Recursion to generate command */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3778 | pipe_list = parse_stream(input, '\0'); |
| 3779 | if (pipe_list == NULL) |
| 3780 | return 0; /* EOF: empty `cmd`: ``, ` ` etc */ |
| 3781 | if (pipe_list == ERR_PTR) |
| 3782 | return 1; /* parse error. can this really happen? */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3783 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3784 | p = generate_stream_from_list(pipe_list); |
| 3785 | free_pipe_list(pipe_list, /* indent: */ 0); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3786 | if (p == NULL) |
| 3787 | return 1; |
Denis Vlasenko | a089817 | 2007-10-01 09:59:01 +0000 | [diff] [blame] | 3788 | close_on_exec_on(fileno(p)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3789 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3790 | /* Now send results of command back into original context */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3791 | setup_file_in_str(&pipe_str, p); |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 3792 | eol_cnt = 0; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3793 | while ((ch = i_getch(&pipe_str)) != EOF) { |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 3794 | if (ch == '\n') { |
| 3795 | eol_cnt++; |
| 3796 | continue; |
| 3797 | } |
| 3798 | while (eol_cnt) { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3799 | o_addchr(dest, '\n'); |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 3800 | eol_cnt--; |
| 3801 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 3802 | o_addQchr(dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3803 | } |
| 3804 | |
| 3805 | debug_printf("done reading from pipe, pclose()ing\n"); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 3806 | /* Note: we got EOF, and we just close the read end of the pipe. |
| 3807 | * We do not wait for the `cmd` child to terminate. bash and ash do. |
| 3808 | * Try this: |
| 3809 | * echo `echo Hi; exec 1>&-; sleep 2` |
| 3810 | */ |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 3811 | retcode = fclose(p); |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 3812 | debug_printf("closed FILE from child, retcode=%d\n", retcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3813 | return retcode; |
| 3814 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 3815 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3816 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3817 | static int parse_group(o_string *dest, struct parse_context *ctx, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3818 | struct in_str *input, int ch) |
| 3819 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3820 | /* dest contains characters seen prior to ( or {. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 3821 | * Typically it's empty, but for function defs, |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3822 | * it contains function name (without '()'). */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3823 | struct pipe *pipe_list; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 3824 | int endch; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3825 | struct command *command = ctx->command; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3826 | |
| 3827 | debug_printf_parse("parse_group entered\n"); |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3828 | #if ENABLE_HUSH_FUNCTIONS |
| 3829 | if (ch == 'F') { /* function definition? */ |
| 3830 | bb_error_msg("aha '%s' is a function, parsing it...", dest->data); |
| 3831 | //command->fname = dest->data; |
| 3832 | command->grp_type = GRP_FUNCTION; |
| 3833 | //TODO: review every o_reset() location... do they handle all o_string fields correctly? |
| 3834 | memset(dest, 0, sizeof(*dest)); |
| 3835 | } |
| 3836 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3837 | if (command->argv /* word [word](... */ |
| 3838 | || dest->length /* word(... */ |
| 3839 | || dest->nonnull /* ""(... */ |
| 3840 | ) { |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 3841 | syntax(NULL); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3842 | debug_printf_parse("parse_group return 1: syntax error, groups and arglists don't mix\n"); |
| 3843 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3844 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 3845 | endch = '}'; |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 3846 | if (ch == '(') { |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 3847 | endch = ')'; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3848 | command->grp_type = GRP_SUBSHELL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3849 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3850 | pipe_list = parse_stream(input, endch); |
| 3851 | /* empty ()/{} or parse error? */ |
| 3852 | if (!pipe_list || pipe_list == ERR_PTR) { |
| 3853 | syntax(NULL); |
| 3854 | debug_printf_parse("parse_group return 1: parse_stream returned %p\n", pipe_list); |
| 3855 | return 1; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 3856 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3857 | command->group = pipe_list; |
| 3858 | debug_printf_parse("parse_group return 0\n"); |
| 3859 | return 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3860 | /* command remains "open", available for possible redirects */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3861 | } |
| 3862 | |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 3863 | #if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3864 | /* Subroutines for copying $(...) and `...` things */ |
| 3865 | static void add_till_backquote(o_string *dest, struct in_str *input); |
| 3866 | /* '...' */ |
| 3867 | static void add_till_single_quote(o_string *dest, struct in_str *input) |
| 3868 | { |
| 3869 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3870 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3871 | if (ch == EOF) |
| 3872 | break; |
| 3873 | if (ch == '\'') |
| 3874 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3875 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3876 | } |
| 3877 | } |
| 3878 | /* "...\"...`..`...." - do we need to handle "...$(..)..." too? */ |
| 3879 | static void add_till_double_quote(o_string *dest, struct in_str *input) |
| 3880 | { |
| 3881 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3882 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3883 | if (ch == '"') |
| 3884 | break; |
| 3885 | if (ch == '\\') { /* \x. Copy both chars. */ |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3886 | o_addchr(dest, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3887 | ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3888 | } |
| 3889 | if (ch == EOF) |
| 3890 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3891 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3892 | if (ch == '`') { |
| 3893 | add_till_backquote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3894 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3895 | continue; |
| 3896 | } |
Denis Vlasenko | 5703c22 | 2008-06-15 11:49:42 +0000 | [diff] [blame] | 3897 | //if (ch == '$') ... |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3898 | } |
| 3899 | } |
| 3900 | /* Process `cmd` - copy contents until "`" is seen. Complicated by |
| 3901 | * \` quoting. |
| 3902 | * "Within the backquoted style of command substitution, backslash |
| 3903 | * shall retain its literal meaning, except when followed by: '$', '`', or '\'. |
| 3904 | * The search for the matching backquote shall be satisfied by the first |
| 3905 | * backquote found without a preceding backslash; during this search, |
| 3906 | * if a non-escaped backquote is encountered within a shell comment, |
| 3907 | * a here-document, an embedded command substitution of the $(command) |
| 3908 | * form, or a quoted string, undefined results occur. A single-quoted |
| 3909 | * or double-quoted string that begins, but does not end, within the |
| 3910 | * "`...`" sequence produces undefined results." |
| 3911 | * Example Output |
| 3912 | * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST |
| 3913 | */ |
| 3914 | static void add_till_backquote(o_string *dest, struct in_str *input) |
| 3915 | { |
| 3916 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3917 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3918 | if (ch == '`') |
| 3919 | break; |
| 3920 | if (ch == '\\') { /* \x. Copy both chars unless it is \` */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3921 | int ch2 = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3922 | if (ch2 != '`' && ch2 != '$' && ch2 != '\\') |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3923 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3924 | ch = ch2; |
| 3925 | } |
| 3926 | if (ch == EOF) |
| 3927 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3928 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3929 | } |
| 3930 | } |
| 3931 | /* Process $(cmd) - copy contents until ")" is seen. Complicated by |
| 3932 | * quoting and nested ()s. |
| 3933 | * "With the $(command) style of command substitution, all characters |
| 3934 | * following the open parenthesis to the matching closing parenthesis |
| 3935 | * constitute the command. Any valid shell script can be used for command, |
| 3936 | * except a script consisting solely of redirections which produces |
| 3937 | * unspecified results." |
| 3938 | * Example Output |
| 3939 | * echo $(echo '(TEST)' BEST) (TEST) BEST |
| 3940 | * echo $(echo 'TEST)' BEST) TEST) BEST |
| 3941 | * echo $(echo \(\(TEST\) BEST) ((TEST) BEST |
| 3942 | */ |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 3943 | static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3944 | { |
| 3945 | int count = 0; |
| 3946 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3947 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3948 | if (ch == EOF) |
| 3949 | break; |
| 3950 | if (ch == '(') |
| 3951 | count++; |
| 3952 | if (ch == ')') |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 3953 | if (--count < 0) { |
| 3954 | if (!dbl) |
| 3955 | break; |
| 3956 | if (i_peek(input) == ')') { |
| 3957 | i_getch(input); |
| 3958 | break; |
| 3959 | } |
| 3960 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3961 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3962 | if (ch == '\'') { |
| 3963 | add_till_single_quote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3964 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3965 | continue; |
| 3966 | } |
| 3967 | if (ch == '"') { |
| 3968 | add_till_double_quote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3969 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3970 | continue; |
| 3971 | } |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 3972 | if (ch == '\\') { /* \x. Copy verbatim. Important for \(, \) */ |
| 3973 | ch = i_getch(input); |
| 3974 | if (ch == EOF) |
| 3975 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 3976 | o_addchr(dest, ch); |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 3977 | continue; |
| 3978 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3979 | } |
| 3980 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 3981 | #endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */ |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 3982 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3983 | /* Return code: 0 for OK, 1 for syntax error */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3984 | static int handle_dollar(o_string *dest, struct in_str *input) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3985 | { |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 3986 | int expansion; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3987 | int ch = i_peek(input); /* first character after the $ */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 3988 | unsigned char quote_mask = dest->o_escape ? 0x80 : 0; |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 3989 | |
| 3990 | debug_printf_parse("handle_dollar entered: ch='%c'\n", ch); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 3991 | if (isalpha(ch)) { |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 3992 | i_getch(input); |
| 3993 | make_var: |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3994 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 3995 | while (1) { |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 3996 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3997 | o_addchr(dest, ch | quote_mask); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 3998 | quote_mask = 0; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3999 | ch = i_peek(input); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4000 | if (!isalnum(ch) && ch != '_') |
| 4001 | break; |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 4002 | i_getch(input); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4003 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4004 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4005 | } else if (isdigit(ch)) { |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4006 | make_one_char_var: |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 4007 | i_getch(input); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4008 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4009 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4010 | o_addchr(dest, ch | quote_mask); |
| 4011 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4012 | } else switch (ch) { |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4013 | case '$': /* pid */ |
| 4014 | case '!': /* last bg pid */ |
| 4015 | case '?': /* last exit code */ |
| 4016 | case '#': /* number of args */ |
| 4017 | case '*': /* args */ |
| 4018 | case '@': /* args */ |
| 4019 | goto make_one_char_var; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 4020 | case '{': { |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 4021 | bool first_char, all_digits; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 4022 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4023 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4024 | i_getch(input); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4025 | /* XXX maybe someone will try to escape the '}' */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 4026 | expansion = 0; |
| 4027 | first_char = true; |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 4028 | all_digits = false; |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4029 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4030 | ch = i_getch(input); |
Denis Vlasenko | b055001 | 2007-05-24 12:18:16 +0000 | [diff] [blame] | 4031 | if (ch == '}') |
| 4032 | break; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 4033 | |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 4034 | if (first_char) { |
| 4035 | if (ch == '#') |
| 4036 | /* ${#var}: length of var contents */ |
| 4037 | goto char_ok; |
| 4038 | else if (isdigit(ch)) { |
| 4039 | all_digits = true; |
| 4040 | goto char_ok; |
| 4041 | } |
| 4042 | } |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 4043 | |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 4044 | if (expansion < 2 && |
| 4045 | ((all_digits && !isdigit(ch)) || |
| 4046 | (!all_digits && !isalnum(ch) && ch != '_'))) |
| 4047 | { |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 4048 | /* handle parameter expansions |
| 4049 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02 |
| 4050 | */ |
| 4051 | if (first_char) |
| 4052 | goto case_default; |
| 4053 | switch (ch) { |
| 4054 | case ':': /* null modifier */ |
| 4055 | if (expansion == 0) { |
| 4056 | debug_printf_parse(": null modifier\n"); |
| 4057 | ++expansion; |
| 4058 | break; |
| 4059 | } |
| 4060 | goto case_default; |
| 4061 | |
| 4062 | #if 0 /* not implemented yet :( */ |
| 4063 | case '#': /* remove prefix */ |
| 4064 | case '%': /* remove suffix */ |
| 4065 | if (expansion == 0) { |
| 4066 | debug_printf_parse(": remove suffix/prefix\n"); |
| 4067 | expansion = 2; |
| 4068 | break; |
| 4069 | } |
| 4070 | goto case_default; |
| 4071 | #endif |
| 4072 | |
| 4073 | case '-': /* default value */ |
| 4074 | case '=': /* assign default */ |
| 4075 | case '+': /* alternative */ |
| 4076 | case '?': /* error indicate */ |
| 4077 | debug_printf_parse(": parameter expansion\n"); |
| 4078 | expansion = 2; |
| 4079 | break; |
| 4080 | |
| 4081 | default: |
| 4082 | case_default: |
| 4083 | syntax("unterminated ${name}"); |
| 4084 | debug_printf_parse("handle_dollar return 1: unterminated ${name}\n"); |
| 4085 | return 1; |
| 4086 | } |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4087 | } |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 4088 | |
| 4089 | char_ok: |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4090 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4091 | o_addchr(dest, ch | quote_mask); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 4092 | quote_mask = 0; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 4093 | first_char = false; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4094 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4095 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4096 | break; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 4097 | } |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4098 | case '(': { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4099 | i_getch(input); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4100 | |
| 4101 | #if ENABLE_SH_MATH_SUPPORT |
| 4102 | if (i_peek(input) == '(') { |
| 4103 | i_getch(input); |
| 4104 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4105 | o_addchr(dest, /*quote_mask |*/ '+'); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4106 | add_till_closing_paren(dest, input, true); |
| 4107 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4108 | break; |
| 4109 | } |
| 4110 | #endif |
| 4111 | |
| 4112 | #if ENABLE_HUSH_TICK |
| 4113 | //int pos = dest->length; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4114 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4115 | o_addchr(dest, quote_mask | '`'); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4116 | add_till_closing_paren(dest, input, false); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 4117 | //debug_printf_subst("SUBST RES2 '%s'\n", dest->data + pos); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4118 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4119 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4120 | break; |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4121 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4122 | case '_': |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 4123 | i_getch(input); |
| 4124 | ch = i_peek(input); |
| 4125 | if (isalnum(ch)) { /* it's $_name or $_123 */ |
| 4126 | ch = '_'; |
| 4127 | goto make_var; |
| 4128 | } |
| 4129 | /* else: it's $_ */ |
| 4130 | case '-': |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4131 | /* still unhandled, but should be eventually */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4132 | bb_error_msg("unhandled syntax: $%c", ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4133 | return 1; |
| 4134 | break; |
| 4135 | default: |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 4136 | o_addQchr(dest, '$'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4137 | } |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4138 | debug_printf_parse("handle_dollar return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4139 | return 0; |
| 4140 | } |
| 4141 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4142 | static int parse_stream_dquoted(o_string *dest, struct in_str *input, int dquote_end) |
| 4143 | { |
| 4144 | int ch, m; |
| 4145 | int next; |
| 4146 | |
| 4147 | again: |
| 4148 | ch = i_getch(input); |
| 4149 | if (ch == dquote_end) { /* may be only '"' or EOF */ |
| 4150 | dest->nonnull = 1; |
| 4151 | if (dest->o_assignment == NOT_ASSIGNMENT) |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 4152 | dest->o_escape ^= 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4153 | debug_printf_parse("parse_stream_dquoted return 0\n"); |
| 4154 | return 0; |
| 4155 | } |
| 4156 | if (ch == EOF) { |
| 4157 | syntax("unterminated \""); |
| 4158 | debug_printf_parse("parse_stream_dquoted return 1: unterminated \"\n"); |
| 4159 | return 1; |
| 4160 | } |
| 4161 | next = '\0'; |
| 4162 | m = G.charmap[ch]; |
| 4163 | if (ch != '\n') { |
| 4164 | next = i_peek(input); |
| 4165 | } |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 4166 | debug_printf_parse(": ch=%c (%d) m=%d escape=%d\n", |
| 4167 | ch, ch, m, dest->o_escape); |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 4168 | /* Basically, checking every CHAR_SPECIAL char except '"' */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4169 | if (ch == '\\') { |
| 4170 | if (next == EOF) { |
| 4171 | syntax("\\<eof>"); |
| 4172 | debug_printf_parse("parse_stream_dquoted return 1: \\<eof>\n"); |
| 4173 | return 1; |
| 4174 | } |
| 4175 | /* bash: |
| 4176 | * "The backslash retains its special meaning [in "..."] |
| 4177 | * only when followed by one of the following characters: |
| 4178 | * $, `, ", \, or <newline>. A double quote may be quoted |
| 4179 | * within double quotes by preceding it with a backslash. |
| 4180 | * If enabled, history expansion will be performed unless |
| 4181 | * an ! appearing in double quotes is escaped using |
| 4182 | * a backslash. The backslash preceding the ! is not removed." |
| 4183 | */ |
| 4184 | if (strchr("$`\"\\", next) != NULL) { |
| 4185 | o_addqchr(dest, i_getch(input)); |
| 4186 | } else { |
| 4187 | o_addqchr(dest, '\\'); |
| 4188 | } |
| 4189 | goto again; |
| 4190 | } |
| 4191 | if (ch == '$') { |
| 4192 | if (handle_dollar(dest, input) != 0) { |
| 4193 | debug_printf_parse("parse_stream_dquoted return 1: handle_dollar returned non-0\n"); |
| 4194 | return 1; |
| 4195 | } |
| 4196 | goto again; |
| 4197 | } |
| 4198 | #if ENABLE_HUSH_TICK |
| 4199 | if (ch == '`') { |
| 4200 | //int pos = dest->length; |
| 4201 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4202 | o_addchr(dest, 0x80 | '`'); |
| 4203 | add_till_backquote(dest, input); |
| 4204 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4205 | //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos); |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 4206 | goto again; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4207 | } |
| 4208 | #endif |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 4209 | o_addQchr(dest, ch); |
| 4210 | if (ch == '=' |
| 4211 | && (dest->o_assignment == MAYBE_ASSIGNMENT |
| 4212 | || dest->o_assignment == WORD_IS_KEYWORD) |
| 4213 | && is_assignment(dest->data) |
| 4214 | ) { |
| 4215 | dest->o_assignment = DEFINITELY_ASSIGNMENT; |
| 4216 | } |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4217 | goto again; |
| 4218 | } |
| 4219 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4220 | /* |
| 4221 | * Scan input until EOF or end_trigger char. |
| 4222 | * Return a list of pipes to execute, or NULL on EOF |
| 4223 | * or if end_trigger character is met. |
| 4224 | * On syntax error, exit is shell is not interactive, |
| 4225 | * reset parsing machinery and start parsing anew, |
| 4226 | * or return ERR_PTR. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4227 | */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4228 | static struct pipe *parse_stream(struct in_str *input, int end_trigger) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4229 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4230 | struct parse_context ctx; |
| 4231 | o_string dest = NULL_O_STRING; |
"Vladimir N. Oleynik" | 4ccd2b4 | 2006-01-31 09:27:48 +0000 | [diff] [blame] | 4232 | int ch, m; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4233 | int redir_fd; |
| 4234 | redir_type redir_style; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4235 | int is_in_dquote; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4236 | int next; |
| 4237 | |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 4238 | /* Double-quote state is handled in the state variable is_in_dquote. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4239 | * A single-quote triggers a bypass of the main loop until its mate is |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 4240 | * found. When recursing, quote state is passed in via dest->o_escape. */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4241 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4242 | debug_printf_parse("parse_stream entered, end_trigger='%c'\n", |
| 4243 | end_trigger ? : 'X'); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4244 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4245 | reset: |
| 4246 | #if ENABLE_HUSH_INTERACTIVE |
| 4247 | input->promptmode = 0; /* PS1 */ |
| 4248 | #endif |
| 4249 | /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */ |
| 4250 | initialize_context(&ctx); |
| 4251 | is_in_dquote = 0; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4252 | while (1) { |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4253 | if (is_in_dquote) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4254 | if (parse_stream_dquoted(&dest, input, '"')) { |
| 4255 | goto parse_error; |
| 4256 | } |
| 4257 | /* We reached closing '"' */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4258 | is_in_dquote = 0; |
| 4259 | } |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4260 | m = CHAR_IFS; |
| 4261 | next = '\0'; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4262 | ch = i_getch(input); |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4263 | if (ch != EOF) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4264 | m = G.charmap[ch]; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4265 | if (ch != '\n') { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4266 | next = i_peek(input); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4267 | } |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4268 | } |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 4269 | debug_printf_parse(": ch=%c (%d) m=%d escape=%d\n", |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4270 | ch, ch, m, dest.o_escape); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4271 | if (m == CHAR_ORDINARY) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4272 | o_addQchr(&dest, ch); |
| 4273 | if ((dest.o_assignment == MAYBE_ASSIGNMENT |
| 4274 | || dest.o_assignment == WORD_IS_KEYWORD) |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4275 | && ch == '=' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4276 | && is_assignment(dest.data) |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4277 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4278 | dest.o_assignment = DEFINITELY_ASSIGNMENT; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4279 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4280 | continue; |
| 4281 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4282 | |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 4283 | /* m is SPECIAL ($,`), IFS, or ORDINARY_IF_QUOTED (*,#) */ |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4284 | |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 4285 | if (m == CHAR_IFS) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4286 | if (ch == EOF) { |
| 4287 | struct pipe *pi; |
| 4288 | if (done_word(&dest, &ctx)) { |
| 4289 | goto parse_error; |
| 4290 | } |
| 4291 | o_free(&dest); |
| 4292 | done_pipe(&ctx, PIPE_SEQ); |
| 4293 | /* If we got nothing... */ |
| 4294 | pi = ctx.list_head; |
| 4295 | if (pi->num_cmds == 0 |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 4296 | IF_HAS_KEYWORDS( && pi->res_word == RES_NONE) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4297 | ) { |
| 4298 | free_pipe_list(pi, 0); |
| 4299 | pi = NULL; |
| 4300 | } |
| 4301 | debug_printf_parse("parse_stream return %p\n", pi); |
| 4302 | return pi; |
| 4303 | } |
| 4304 | if (done_word(&dest, &ctx)) { |
| 4305 | goto parse_error; |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 4306 | } |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 4307 | if (ch == '\n') { |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 4308 | #if ENABLE_HUSH_CASE |
| 4309 | /* "case ... in <newline> word) ..." - |
| 4310 | * newlines are ignored (but ';' wouldn't be) */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4311 | if (ctx.command->argv == NULL |
| 4312 | && ctx.ctx_res_w == RES_MATCH |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 4313 | ) { |
| 4314 | continue; |
| 4315 | } |
| 4316 | #endif |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4317 | /* Treat newline as a command separator. */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4318 | done_pipe(&ctx, PIPE_SEQ); |
| 4319 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4320 | ch = ';'; |
| 4321 | /* note: if (m == CHAR_IFS) continue; |
| 4322 | * will still trigger for us */ |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4323 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4324 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4325 | if (end_trigger && end_trigger == ch) { |
| 4326 | //TODO: disallow "{ cmd }" without semicolon |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4327 | if (done_word(&dest, &ctx)) { |
| 4328 | goto parse_error; |
| 4329 | } |
| 4330 | done_pipe(&ctx, PIPE_SEQ); |
| 4331 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4332 | /* Do we sit outside of any if's, loops or case's? */ |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 4333 | if (!HAS_KEYWORDS |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4334 | IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0)) |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 4335 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4336 | debug_printf_parse("parse_stream return %p: " |
| 4337 | "end_trigger char found\n", |
| 4338 | ctx.list_head); |
| 4339 | o_free(&dest); |
| 4340 | return ctx.list_head; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4341 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4342 | } |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 4343 | if (m == CHAR_IFS) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4344 | continue; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4345 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4346 | /* m is SPECIAL (e.g. $,`) or ORDINARY_IF_QUOTED (*,#) */ |
| 4347 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4348 | if (dest.o_assignment == MAYBE_ASSIGNMENT) { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4349 | /* ch is a special char and thus this word |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4350 | * cannot be an assignment */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4351 | dest.o_assignment = NOT_ASSIGNMENT; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4352 | } |
| 4353 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4354 | switch (ch) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4355 | case '#': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4356 | if (dest.length == 0) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4357 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4358 | ch = i_peek(input); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4359 | if (ch == EOF || ch == '\n') |
| 4360 | break; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4361 | i_getch(input); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4362 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4363 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4364 | o_addQchr(&dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4365 | } |
| 4366 | break; |
| 4367 | case '\\': |
| 4368 | if (next == EOF) { |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4369 | syntax("\\<eof>"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4370 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4371 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4372 | o_addchr(&dest, '\\'); |
| 4373 | o_addchr(&dest, i_getch(input)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4374 | break; |
| 4375 | case '$': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4376 | if (handle_dollar(&dest, input) != 0) { |
| 4377 | debug_printf_parse("parse_stream parse error: handle_dollar returned non-0\n"); |
| 4378 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4379 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4380 | break; |
| 4381 | case '\'': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4382 | dest.nonnull = 1; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4383 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4384 | ch = i_getch(input); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4385 | if (ch == EOF) { |
| 4386 | syntax("unterminated '"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4387 | goto parse_error; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4388 | } |
| 4389 | if (ch == '\'') |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4390 | break; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4391 | if (dest.o_assignment == NOT_ASSIGNMENT) |
| 4392 | o_addqchr(&dest, ch); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4393 | else |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4394 | o_addchr(&dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4395 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4396 | break; |
| 4397 | case '"': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4398 | dest.nonnull = 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4399 | is_in_dquote ^= 1; /* invert */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4400 | if (dest.o_assignment == NOT_ASSIGNMENT) |
| 4401 | dest.o_escape ^= 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4402 | break; |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4403 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4404 | case '`': { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4405 | //int pos = dest.length; |
| 4406 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 4407 | o_addchr(&dest, '`'); |
| 4408 | add_till_backquote(&dest, input); |
| 4409 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 4410 | //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4411 | break; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4412 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4413 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4414 | case '>': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4415 | redir_fd = redirect_opt_num(&dest); |
| 4416 | if (done_word(&dest, &ctx)) { |
| 4417 | goto parse_error; |
| 4418 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4419 | redir_style = REDIRECT_OVERWRITE; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4420 | if (next == '>') { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4421 | redir_style = REDIRECT_APPEND; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4422 | i_getch(input); |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4423 | } |
| 4424 | #if 0 |
| 4425 | else if (next == '(') { |
| 4426 | syntax(">(process) not supported"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4427 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4428 | } |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4429 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4430 | setup_redirect(&ctx, redir_fd, redir_style, input); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4431 | break; |
| 4432 | case '<': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4433 | redir_fd = redirect_opt_num(&dest); |
| 4434 | if (done_word(&dest, &ctx)) { |
| 4435 | goto parse_error; |
| 4436 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4437 | redir_style = REDIRECT_INPUT; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4438 | if (next == '<') { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4439 | redir_style = REDIRECT_HEREIS; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4440 | i_getch(input); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4441 | } else if (next == '>') { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4442 | redir_style = REDIRECT_IO; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4443 | i_getch(input); |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4444 | } |
| 4445 | #if 0 |
| 4446 | else if (next == '(') { |
| 4447 | syntax("<(process) not supported"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4448 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4449 | } |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4450 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4451 | setup_redirect(&ctx, redir_fd, redir_style, input); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4452 | break; |
| 4453 | case ';': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4454 | #if ENABLE_HUSH_CASE |
| 4455 | case_semi: |
| 4456 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4457 | if (done_word(&dest, &ctx)) { |
| 4458 | goto parse_error; |
| 4459 | } |
| 4460 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4461 | #if ENABLE_HUSH_CASE |
| 4462 | /* Eat multiple semicolons, detect |
| 4463 | * whether it means something special */ |
| 4464 | while (1) { |
| 4465 | ch = i_peek(input); |
| 4466 | if (ch != ';') |
| 4467 | break; |
| 4468 | i_getch(input); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4469 | if (ctx.ctx_res_w == RES_CASEI) { |
| 4470 | ctx.ctx_dsemicolon = 1; |
| 4471 | ctx.ctx_res_w = RES_MATCH; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4472 | break; |
| 4473 | } |
| 4474 | } |
| 4475 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4476 | new_cmd: |
| 4477 | /* We just finished a cmd. New one may start |
| 4478 | * with an assignment */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4479 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4480 | break; |
| 4481 | case '&': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4482 | if (done_word(&dest, &ctx)) { |
| 4483 | goto parse_error; |
| 4484 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4485 | if (next == '&') { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4486 | i_getch(input); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4487 | done_pipe(&ctx, PIPE_AND); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4488 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4489 | done_pipe(&ctx, PIPE_BG); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4490 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4491 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4492 | case '|': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4493 | if (done_word(&dest, &ctx)) { |
| 4494 | goto parse_error; |
| 4495 | } |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 4496 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4497 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 4498 | break; /* we are in case's "word | word)" */ |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 4499 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4500 | if (next == '|') { /* || */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4501 | i_getch(input); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4502 | done_pipe(&ctx, PIPE_OR); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4503 | } else { |
| 4504 | /* we could pick up a file descriptor choice here |
| 4505 | * with redirect_opt_num(), but bash doesn't do it. |
| 4506 | * "echo foo 2| cat" yields "foo 2". */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4507 | done_command(&ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4508 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4509 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4510 | case '(': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4511 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 4512 | /* "case... in [(]word)..." - skip '(' */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4513 | if (ctx.ctx_res_w == RES_MATCH |
| 4514 | && ctx.command->argv == NULL /* not (word|(... */ |
| 4515 | && dest.length == 0 /* not word(... */ |
| 4516 | && dest.nonnull == 0 /* not ""(... */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4517 | ) { |
| 4518 | continue; |
| 4519 | } |
| 4520 | #endif |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4521 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4522 | if (dest.length != 0 /* not just () but word() */ |
| 4523 | && dest.nonnull == 0 /* not a"b"c() */ |
| 4524 | && ctx.command->argv == NULL /* it's the first word */ |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4525 | //TODO: "func ( ) {...}" - note spaces - is valid format too in bash |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4526 | && i_peek(input) == ')' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4527 | && !match_reserved_word(&dest) |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4528 | ) { |
| 4529 | bb_error_msg("seems like a function definition"); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4530 | i_getch(input); |
| 4531 | do { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4532 | //TODO: do it properly. |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4533 | ch = i_getch(input); |
| 4534 | } while (ch == ' ' || ch == '\n'); |
| 4535 | if (ch != '{') { |
| 4536 | syntax("was expecting {"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4537 | goto parse_error; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4538 | } |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4539 | ch = 'F'; /* magic value */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4540 | } |
| 4541 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4542 | case '{': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4543 | if (parse_group(&dest, &ctx, input, ch) != 0) { |
| 4544 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4545 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4546 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4547 | case ')': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4548 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4549 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4550 | goto case_semi; |
| 4551 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4552 | case '}': |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4553 | /* proper use of this character is caught by end_trigger: |
| 4554 | * if we see {, we call parse_group(..., end_trigger='}') |
| 4555 | * and it will match } earlier (not here). */ |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4556 | syntax("unexpected } or )"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4557 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4558 | default: |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4559 | if (HUSH_DEBUG) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4560 | bb_error_msg_and_die("BUG: unexpected %c\n", ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4561 | } |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4562 | } /* while (1) */ |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4563 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4564 | parse_error: |
| 4565 | { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 4566 | struct parse_context *pctx; |
| 4567 | IF_HAS_KEYWORDS(struct parse_context *p2;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4568 | |
| 4569 | /* Clean up allocated tree. |
| 4570 | * Samples for finding leaks on syntax error recovery path. |
| 4571 | * Execute them from interactive shell and watch pmap `pidof hush`. |
| 4572 | * while if false; then false; fi do break; done (bash accepts it) |
| 4573 | * while if false; then false; fi; do break; fi |
| 4574 | */ |
| 4575 | pctx = &ctx; |
| 4576 | do { |
| 4577 | /* Update pipe/command counts, |
| 4578 | * otherwise freeing may miss some */ |
| 4579 | done_pipe(pctx, PIPE_SEQ); |
| 4580 | debug_printf_clean("freeing list %p from ctx %p\n", |
| 4581 | pctx->list_head, pctx); |
| 4582 | debug_print_tree(pctx->list_head, 0); |
| 4583 | free_pipe_list(pctx->list_head, 0); |
| 4584 | debug_printf_clean("freed list %p\n", pctx->list_head); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 4585 | IF_HAS_KEYWORDS(p2 = pctx->stack;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4586 | if (pctx != &ctx) { |
| 4587 | free(pctx); |
| 4588 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 4589 | IF_HAS_KEYWORDS(pctx = p2;) |
| 4590 | } while (HAS_KEYWORDS && pctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4591 | /* Free text, clear all dest fields */ |
| 4592 | o_free(&dest); |
| 4593 | /* If we are not in top-level parse, we return, |
| 4594 | * our caller will propagate error. |
| 4595 | */ |
| 4596 | if (end_trigger != ';') |
| 4597 | return ERR_PTR; |
| 4598 | /* Discard cached input, force prompt */ |
| 4599 | input->p = NULL; |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 4600 | USE_HUSH_INTERACTIVE(input->promptme = 1;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4601 | goto reset; |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4602 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4603 | } |
| 4604 | |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 4605 | static void set_in_charmap(const char *set, int code) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4606 | { |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 4607 | while (*set) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4608 | G.charmap[(unsigned char)*set++] = code; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4609 | } |
| 4610 | |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 4611 | static void update_charmap(void) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4612 | { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4613 | G.ifs = getenv("IFS"); |
| 4614 | if (G.ifs == NULL) |
| 4615 | G.ifs = " \t\n"; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4616 | /* Precompute a list of 'flow through' behavior so it can be treated |
| 4617 | * quickly up front. Computation is necessary because of IFS. |
| 4618 | * Special case handling of IFS == " \t\n" is not implemented. |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 4619 | * The charmap[] array only really needs two bits each, |
| 4620 | * and on most machines that would be faster (reduced L1 cache use). |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4621 | */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4622 | memset(G.charmap, CHAR_ORDINARY, sizeof(G.charmap)); |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4623 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 4624 | set_in_charmap("\\$\"`", CHAR_SPECIAL); |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4625 | #else |
| 4626 | set_in_charmap("\\$\"", CHAR_SPECIAL); |
| 4627 | #endif |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 4628 | set_in_charmap("<>;&|(){}#'", CHAR_ORDINARY_IF_QUOTED); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4629 | set_in_charmap(G.ifs, CHAR_IFS); /* are ordinary if quoted */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4630 | } |
| 4631 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4632 | /* Execiting from string: eval, sh -c '...' |
| 4633 | * or from file: /etc/profile, . file, sh <script>, sh (intereactive) |
| 4634 | * end_trigger controls how often we stop parsing |
| 4635 | * NUL: parse all, execute, return |
| 4636 | * ';': parse till ';' or newline, execute, repeat till EOF |
| 4637 | */ |
| 4638 | static void parse_and_run_stream(struct in_str *inp, int end_trigger) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4639 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4640 | while (1) { |
| 4641 | struct pipe *pipe_list; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4642 | |
Denis Vlasenko | 8f6bdb4 | 2007-05-16 09:36:55 +0000 | [diff] [blame] | 4643 | update_charmap(); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4644 | |
| 4645 | pipe_list = parse_stream(inp, end_trigger); |
| 4646 | if (!pipe_list) /* EOF */ |
| 4647 | break; |
| 4648 | debug_print_tree(pipe_list, 0); |
| 4649 | debug_printf_exec("parse_and_run_stream: run_and_free_list\n"); |
| 4650 | run_and_free_list(pipe_list); |
| 4651 | /* Loop on syntax errors, return on EOF: */ |
| 4652 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4653 | } |
| 4654 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4655 | static void parse_and_run_string(const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4656 | { |
| 4657 | struct in_str input; |
| 4658 | setup_string_in_str(&input, s); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4659 | parse_and_run_stream(&input, '\0'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4660 | } |
| 4661 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4662 | static void parse_and_run_file(FILE *f) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4663 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4664 | struct in_str input; |
| 4665 | setup_file_in_str(&input, f); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4666 | parse_and_run_stream(&input, ';'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4667 | } |
| 4668 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4669 | #if ENABLE_HUSH_JOB |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 4670 | /* Make sure we have a controlling tty. If we get started under a job |
| 4671 | * aware app (like bash for example), make sure we are now in charge so |
| 4672 | * we don't fight over who gets the foreground */ |
Eric Andersen | eaecbf3 | 2001-10-31 10:41:31 +0000 | [diff] [blame] | 4673 | static void setup_job_control(void) |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 4674 | { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4675 | pid_t shell_pgrp; |
| 4676 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4677 | shell_pgrp = getpgrp(); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4678 | |
Denis Vlasenko | a6a1785 | 2007-04-28 16:42:11 +0000 | [diff] [blame] | 4679 | /* If we were ran as 'hush &', |
| 4680 | * sleep until we are in the foreground. */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 4681 | while (tcgetpgrp(G_interactive_fd) != shell_pgrp) { |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 4682 | /* Send TTIN to ourself (should stop us) */ |
Denis Vlasenko | ff131b9 | 2007-04-10 15:42:06 +0000 | [diff] [blame] | 4683 | kill(- shell_pgrp, SIGTTIN); |
Denis Vlasenko | a6a1785 | 2007-04-28 16:42:11 +0000 | [diff] [blame] | 4684 | shell_pgrp = getpgrp(); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4685 | } |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 4686 | |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 4687 | /* We _must_ restore tty pgrp on fatal signals */ |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 4688 | set_fatal_signals_to_sigexit(); |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 4689 | |
| 4690 | /* Put ourselves in our own process group. */ |
Bernhard Reutner-Fischer | 864329d | 2008-09-25 10:55:05 +0000 | [diff] [blame] | 4691 | bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */ |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 4692 | /* Grab control of the terminal. */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 4693 | tcsetpgrp(G_interactive_fd, getpid()); |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 4694 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 4695 | #endif |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 4696 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4697 | static int set_mode(const char cstate, const char mode) |
| 4698 | { |
| 4699 | int state = (cstate == '-' ? 1 : 0); |
| 4700 | switch (mode) { |
| 4701 | case 'n': G.fake_mode = state; break; |
| 4702 | case 'x': /*G.debug_mode = state;*/ break; |
| 4703 | default: return EXIT_FAILURE; |
| 4704 | } |
| 4705 | return EXIT_SUCCESS; |
| 4706 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4707 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 4708 | int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Matt Kraai | 2d91deb | 2001-08-01 17:21:35 +0000 | [diff] [blame] | 4709 | int hush_main(int argc, char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4710 | { |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 4711 | static const struct variable const_shell_ver = { |
| 4712 | .next = NULL, |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 4713 | .varstr = (char*)hush_version_str, |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 4714 | .max_len = 1, /* 0 can provoke free(name) */ |
| 4715 | .flg_export = 1, |
| 4716 | .flg_read_only = 1, |
| 4717 | }; |
| 4718 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4719 | int opt; |
| 4720 | FILE *input; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4721 | char **e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4722 | struct variable *cur_var; |
Eric Andersen | bc604a2 | 2001-05-16 05:24:03 +0000 | [diff] [blame] | 4723 | |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 4724 | INIT_G(); |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4725 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4726 | G.root_pid = getpid(); |
Denis Vlasenko | 16c2fea | 2008-06-17 12:28:44 +0000 | [diff] [blame] | 4727 | |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 4728 | /* Deal with HUSH_VERSION */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4729 | G.shell_ver = const_shell_ver; /* copying struct here */ |
| 4730 | G.top_var = &G.shell_ver; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 4731 | debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION"); |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 4732 | unsetenv("HUSH_VERSION"); /* in case it exists in initial env */ |
| 4733 | /* Initialize our shell local variables with the values |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4734 | * currently living in the environment */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4735 | cur_var = G.top_var; |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 4736 | e = environ; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4737 | if (e) while (*e) { |
| 4738 | char *value = strchr(*e, '='); |
| 4739 | if (value) { /* paranoia */ |
| 4740 | cur_var->next = xzalloc(sizeof(*cur_var)); |
| 4741 | cur_var = cur_var->next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 4742 | cur_var->varstr = *e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4743 | cur_var->max_len = strlen(*e); |
| 4744 | cur_var->flg_export = 1; |
| 4745 | } |
| 4746 | e++; |
| 4747 | } |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 4748 | debug_printf_env("putenv '%s'\n", hush_version_str); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 4749 | putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 4750 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 4751 | #if ENABLE_FEATURE_EDITING |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4752 | G.line_input_state = new_line_input_t(FOR_SHELL); |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 4753 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4754 | /* XXX what should these be while sourcing /etc/profile? */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4755 | G.global_argc = argc; |
| 4756 | G.global_argv = argv; |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 4757 | /* Initialize some more globals to non-zero values */ |
| 4758 | set_cwd(); |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4759 | #if ENABLE_HUSH_INTERACTIVE |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 4760 | if (ENABLE_FEATURE_EDITING) |
| 4761 | cmdedit_set_initial_prompt(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4762 | G.PS2 = "> "; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4763 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 4764 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4765 | if (EXIT_SUCCESS) /* otherwise is already done */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4766 | G.last_return_code = EXIT_SUCCESS; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4767 | |
| 4768 | if (argv[0] && argv[0][0] == '-') { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 4769 | debug_printf("sourcing /etc/profile\n"); |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 4770 | input = fopen_for_read("/etc/profile"); |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 4771 | if (input != NULL) { |
Denis Vlasenko | a089817 | 2007-10-01 09:59:01 +0000 | [diff] [blame] | 4772 | close_on_exec_on(fileno(input)); |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 4773 | parse_and_run_file(input); |
Eric Andersen | a90f20b | 2001-06-26 23:00:21 +0000 | [diff] [blame] | 4774 | fclose(input); |
| 4775 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4776 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4777 | input = stdin; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 4778 | |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 4779 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */ |
| 4780 | while ((opt = getopt(argc, argv, "c:xins")) > 0) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4781 | switch (opt) { |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4782 | case 'c': |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4783 | G.global_argv = argv + optind; |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 4784 | if (!argv[optind]) { |
| 4785 | /* -c 'script' (no params): prevent empty $0 */ |
| 4786 | *--G.global_argv = argv[0]; |
| 4787 | optind--; |
| 4788 | } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4789 | G.global_argc = argc - optind; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4790 | parse_and_run_string(optarg); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4791 | goto final_return; |
| 4792 | case 'i': |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 4793 | /* Well, we cannot just declare interactiveness, |
| 4794 | * we have to have some stuff (ctty, etc) */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 4795 | /* G_interactive_fd++; */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4796 | break; |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 4797 | case 's': |
| 4798 | /* "-s" means "read from stdin", but this is how we always |
| 4799 | * operate, so simply do nothing here. */ |
| 4800 | break; |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 4801 | case 'n': |
| 4802 | case 'x': |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4803 | if (!set_mode('-', opt)) |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 4804 | break; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4805 | default: |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 4806 | #ifndef BB_VER |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4807 | fprintf(stderr, "Usage: sh [FILE]...\n" |
| 4808 | " or: sh -c command [args]...\n\n"); |
| 4809 | exit(EXIT_FAILURE); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 4810 | #else |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4811 | bb_show_usage(); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 4812 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4813 | } |
| 4814 | } |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4815 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4816 | /* 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] | 4817 | * the following conditions are met: |
Denis Vlasenko | 55b2de7 | 2007-04-18 17:21:28 +0000 | [diff] [blame] | 4818 | * no -c command |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4819 | * no arguments remaining or the -s flag given |
| 4820 | * standard input is a terminal |
| 4821 | * standard output is a terminal |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4822 | * Refer to Posix.2, the description of the 'sh' utility. */ |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4823 | if (argv[optind] == NULL && input == stdin |
| 4824 | && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO) |
| 4825 | ) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4826 | G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO); |
| 4827 | debug_printf("saved_tty_pgrp=%d\n", G.saved_tty_pgrp); |
| 4828 | if (G.saved_tty_pgrp >= 0) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4829 | /* try to dup to high fd#, >= 255 */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 4830 | G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255); |
| 4831 | if (G_interactive_fd < 0) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4832 | /* try to dup to any fd */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 4833 | G_interactive_fd = dup(STDIN_FILENO); |
| 4834 | if (G_interactive_fd < 0) |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4835 | /* give up */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 4836 | G_interactive_fd = 0; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4837 | } |
Denis Vlasenko | 2f1bb36 | 2007-04-21 10:01:14 +0000 | [diff] [blame] | 4838 | // TODO: track & disallow any attempts of user |
| 4839 | // to (inadvertently) close/redirect it |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4840 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4841 | } |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 4842 | init_signal_mask(); /* note: ensures SIGCHLD is not masked */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 4843 | debug_printf("interactive_fd=%d\n", G_interactive_fd); |
| 4844 | if (G_interactive_fd) { |
| 4845 | fcntl(G_interactive_fd, F_SETFD, FD_CLOEXEC); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4846 | /* Looks like they want an interactive shell */ |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 4847 | setup_job_control(); |
Denis Vlasenko | 4ecfcdc | 2008-02-11 08:32:31 +0000 | [diff] [blame] | 4848 | /* -1 is special - makes xfuncs longjmp, not exit |
Denis Vlasenko | c04163a | 2008-02-11 08:30:53 +0000 | [diff] [blame] | 4849 | * (we reset die_sleep = 0 whereever we [v]fork) */ |
| 4850 | die_sleep = -1; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4851 | if (setjmp(die_jmp)) { |
| 4852 | /* xfunc has failed! die die die */ |
| 4853 | hush_exit(xfunc_error_retval); |
| 4854 | } |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 4855 | } |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4856 | #elif ENABLE_HUSH_INTERACTIVE |
| 4857 | /* no job control compiled, only prompt/line editing */ |
| 4858 | if (argv[optind] == NULL && input == stdin |
| 4859 | && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO) |
| 4860 | ) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 4861 | G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255); |
| 4862 | if (G_interactive_fd < 0) { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4863 | /* try to dup to any fd */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 4864 | G_interactive_fd = dup(STDIN_FILENO); |
| 4865 | if (G_interactive_fd < 0) |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4866 | /* give up */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 4867 | G_interactive_fd = 0; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4868 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 4869 | if (G_interactive_fd) { |
| 4870 | fcntl(G_interactive_fd, F_SETFD, FD_CLOEXEC); |
Denis Vlasenko | 4830fc5 | 2008-05-25 21:50:55 +0000 | [diff] [blame] | 4871 | } |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4872 | } |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 4873 | init_signal_mask(); /* note: ensures SIGCHLD is not masked */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 4874 | #else |
| 4875 | init_signal_mask(); |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 4876 | #endif |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 4877 | /* POSIX allows shell to re-enable SIGCHLD |
| 4878 | * even if it was SIG_IGN on entry */ |
| 4879 | // G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */ |
| 4880 | signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 4881 | |
Denis Vlasenko | 701ac18 | 2009-03-28 19:22:08 +0000 | [diff] [blame] | 4882 | #if ENABLE_HUSH_INTERACTIVE && !ENABLE_FEATURE_SH_EXTRA_QUIET |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 4883 | if (G_interactive_fd) { |
Mike Frysinger | b2705e1 | 2009-03-23 08:44:02 +0000 | [diff] [blame] | 4884 | printf("\n\n%s hush - the humble shell v"HUSH_VER_STR"\n", bb_banner); |
| 4885 | printf("Enter 'help' for a list of built-in commands.\n\n"); |
| 4886 | } |
Denis Vlasenko | 701ac18 | 2009-03-28 19:22:08 +0000 | [diff] [blame] | 4887 | #endif |
Mike Frysinger | b2705e1 | 2009-03-23 08:44:02 +0000 | [diff] [blame] | 4888 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4889 | if (argv[optind] == NULL) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4890 | parse_and_run_file(stdin); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4891 | } else { |
| 4892 | debug_printf("\nrunning script '%s'\n", argv[optind]); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4893 | G.global_argv = argv + optind; |
| 4894 | G.global_argc = argc - optind; |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 4895 | input = xfopen_for_read(argv[optind]); |
Denis Vlasenko | 459a5ad | 2008-02-11 08:35:03 +0000 | [diff] [blame] | 4896 | fcntl(fileno(input), F_SETFD, FD_CLOEXEC); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4897 | parse_and_run_file(input); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4898 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4899 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4900 | final_return: |
| 4901 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 4902 | #if ENABLE_FEATURE_CLEAN_UP |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 4903 | fclose(input); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4904 | if (G.cwd != bb_msg_unknown) |
| 4905 | free((char*)G.cwd); |
| 4906 | cur_var = G.top_var->next; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4907 | while (cur_var) { |
| 4908 | struct variable *tmp = cur_var; |
| 4909 | if (!cur_var->max_len) |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 4910 | free(cur_var->varstr); |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4911 | cur_var = cur_var->next; |
| 4912 | free(tmp); |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 4913 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4914 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4915 | hush_exit(G.last_return_code); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4916 | } |
Denis Vlasenko | 96702ca | 2007-11-23 23:28:55 +0000 | [diff] [blame] | 4917 | |
| 4918 | |
| 4919 | #if ENABLE_LASH |
| 4920 | int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 4921 | int lash_main(int argc, char **argv) |
| 4922 | { |
| 4923 | //bb_error_msg("lash is deprecated, please use hush instead"); |
| 4924 | return hush_main(argc, argv); |
| 4925 | } |
| 4926 | #endif |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4927 | |
| 4928 | |
| 4929 | /* |
| 4930 | * Built-ins |
| 4931 | */ |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 4932 | static int builtin_trap(char **argv) |
| 4933 | { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4934 | int i; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 4935 | int sig; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4936 | char *new_cmd; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 4937 | |
| 4938 | if (!G.traps) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4939 | G.traps = xzalloc(sizeof(G.traps[0]) * NSIG); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 4940 | |
| 4941 | if (!argv[1]) { |
| 4942 | /* No args: print all trapped. This isn't 100% correct as we should |
| 4943 | * be escaping the cmd so that it can be pasted back in ... |
| 4944 | */ |
| 4945 | for (i = 0; i < NSIG; ++i) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4946 | if (G.traps[i]) |
| 4947 | printf("trap -- '%s' %s\n", G.traps[i], get_signame(i)); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 4948 | return EXIT_SUCCESS; |
| 4949 | } |
| 4950 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4951 | new_cmd = NULL; |
| 4952 | i = 0; |
| 4953 | /* if first arg is decimal: reset all specified */ |
| 4954 | sig = bb_strtou(*++argv, NULL, 10); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 4955 | if (errno == 0) { |
| 4956 | int ret; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 4957 | set_all: |
| 4958 | ret = EXIT_SUCCESS; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4959 | while (*argv) { |
| 4960 | sig = get_signum(*argv++); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 4961 | if (sig < 0 || sig >= NSIG) { |
| 4962 | ret = EXIT_FAILURE; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4963 | /* mimic bash message exactly */ |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 4964 | bb_perror_msg("trap: %s: invalid signal specification", argv[i]); |
| 4965 | continue; |
| 4966 | } |
| 4967 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4968 | free(G.traps[sig]); |
| 4969 | G.traps[sig] = xstrdup(new_cmd); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 4970 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4971 | debug_printf("trap: setting SIG%s (%i) to '%s'", |
| 4972 | get_signame(sig), sig, G.traps[sig]); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 4973 | |
| 4974 | /* There is no signal for 0 (EXIT) */ |
| 4975 | if (sig == 0) |
| 4976 | continue; |
| 4977 | |
| 4978 | if (new_cmd) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4979 | sigaddset(&G.blocked_set, sig); |
| 4980 | } else { |
| 4981 | /* there was a trap handler, we are removing it |
| 4982 | * (if sig has non-DFL handling, |
| 4983 | * we don't need to do anything) */ |
| 4984 | if (sig < 32 && (G.non_DFL_mask & (1 << sig))) |
| 4985 | continue; |
| 4986 | sigdelset(&G.blocked_set, sig); |
| 4987 | } |
| 4988 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 4989 | } |
| 4990 | return ret; |
| 4991 | } |
| 4992 | |
| 4993 | /* first arg is "-": reset all specified to default */ |
| 4994 | /* first arg is "": ignore all specified */ |
| 4995 | /* everything else: execute first arg upon signal */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4996 | if (!argv[1]) { |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 4997 | bb_error_msg("trap: invalid arguments"); |
| 4998 | return EXIT_FAILURE; |
| 4999 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5000 | if (LONE_DASH(*argv)) |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5001 | /* nothing! */; |
| 5002 | else |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5003 | new_cmd = *argv; |
| 5004 | argv++; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5005 | goto set_all; |
| 5006 | } |
| 5007 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 5008 | static int builtin_true(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5009 | { |
| 5010 | return 0; |
| 5011 | } |
| 5012 | |
| 5013 | static int builtin_test(char **argv) |
| 5014 | { |
| 5015 | int argc = 0; |
| 5016 | while (*argv) { |
| 5017 | argc++; |
| 5018 | argv++; |
| 5019 | } |
| 5020 | return test_main(argc, argv - argc); |
| 5021 | } |
| 5022 | |
| 5023 | static int builtin_echo(char **argv) |
| 5024 | { |
| 5025 | int argc = 0; |
| 5026 | while (*argv) { |
| 5027 | argc++; |
| 5028 | argv++; |
| 5029 | } |
| 5030 | return echo_main(argc, argv - argc); |
| 5031 | } |
| 5032 | |
| 5033 | static int builtin_eval(char **argv) |
| 5034 | { |
| 5035 | int rcode = EXIT_SUCCESS; |
| 5036 | |
| 5037 | if (argv[1]) { |
| 5038 | char *str = expand_strvec_to_string(argv + 1); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5039 | /* bash: |
| 5040 | * eval "echo Hi; done" ("done" is syntax error): |
| 5041 | * "echo Hi" will not execute too. |
| 5042 | */ |
| 5043 | parse_and_run_string(str); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5044 | free(str); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5045 | rcode = G.last_return_code; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5046 | } |
| 5047 | return rcode; |
| 5048 | } |
| 5049 | |
| 5050 | static int builtin_cd(char **argv) |
| 5051 | { |
| 5052 | const char *newdir; |
| 5053 | if (argv[1] == NULL) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5054 | /* bash does nothing (exitcode 0) if HOME is ""; if it's unset, |
| 5055 | * bash says "bash: cd: HOME not set" and does nothing (exitcode 1) |
| 5056 | */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5057 | newdir = getenv("HOME") ? : "/"; |
| 5058 | } else |
| 5059 | newdir = argv[1]; |
| 5060 | if (chdir(newdir)) { |
| 5061 | printf("cd: %s: %s\n", newdir, strerror(errno)); |
| 5062 | return EXIT_FAILURE; |
| 5063 | } |
| 5064 | set_cwd(); |
| 5065 | return EXIT_SUCCESS; |
| 5066 | } |
| 5067 | |
| 5068 | static int builtin_exec(char **argv) |
| 5069 | { |
| 5070 | if (argv[1] == NULL) |
| 5071 | return EXIT_SUCCESS; /* bash does this */ |
| 5072 | { |
| 5073 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 5074 | nommu_save_t dummy; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5075 | #endif |
| 5076 | // FIXME: if exec fails, bash does NOT exit! We do... |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 5077 | pseudo_exec_argv(&dummy, argv + 1, 0, NULL); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5078 | /* never returns */ |
| 5079 | } |
| 5080 | } |
| 5081 | |
| 5082 | static int builtin_exit(char **argv) |
| 5083 | { |
| 5084 | // TODO: bash does it ONLY on top-level sh exit (+interacive only?) |
| 5085 | //puts("exit"); /* bash does it */ |
| 5086 | // TODO: warn if we have background jobs: "There are stopped jobs" |
| 5087 | // On second consecutive 'exit', exit anyway. |
| 5088 | if (argv[1] == NULL) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5089 | hush_exit(G.last_return_code); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5090 | /* mimic bash: exit 123abc == exit 255 + error msg */ |
| 5091 | xfunc_error_retval = 255; |
| 5092 | /* bash: exit -2 == exit 254, no error msg */ |
| 5093 | hush_exit(xatoi(argv[1]) & 0xff); |
| 5094 | } |
| 5095 | |
| 5096 | static int builtin_export(char **argv) |
| 5097 | { |
| 5098 | const char *value; |
| 5099 | char *name = argv[1]; |
| 5100 | |
| 5101 | if (name == NULL) { |
| 5102 | // TODO: |
| 5103 | // ash emits: export VAR='VAL' |
| 5104 | // bash: declare -x VAR="VAL" |
| 5105 | // (both also escape as needed (quotes, $, etc)) |
| 5106 | char **e = environ; |
| 5107 | if (e) |
| 5108 | while (*e) |
| 5109 | puts(*e++); |
| 5110 | return EXIT_SUCCESS; |
| 5111 | } |
| 5112 | |
| 5113 | value = strchr(name, '='); |
| 5114 | if (!value) { |
| 5115 | /* They are exporting something without a =VALUE */ |
| 5116 | struct variable *var; |
| 5117 | |
| 5118 | var = get_local_var(name); |
| 5119 | if (var) { |
| 5120 | var->flg_export = 1; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 5121 | debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5122 | putenv(var->varstr); |
| 5123 | } |
| 5124 | /* bash does not return an error when trying to export |
| 5125 | * an undefined variable. Do likewise. */ |
| 5126 | return EXIT_SUCCESS; |
| 5127 | } |
| 5128 | |
| 5129 | set_local_var(xstrdup(name), 1); |
| 5130 | return EXIT_SUCCESS; |
| 5131 | } |
| 5132 | |
| 5133 | #if ENABLE_HUSH_JOB |
| 5134 | /* built-in 'fg' and 'bg' handler */ |
| 5135 | static int builtin_fg_bg(char **argv) |
| 5136 | { |
| 5137 | int i, jobnum; |
| 5138 | struct pipe *pi; |
| 5139 | |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 5140 | if (!G_interactive_fd) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5141 | return EXIT_FAILURE; |
| 5142 | /* If they gave us no args, assume they want the last backgrounded task */ |
| 5143 | if (!argv[1]) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5144 | for (pi = G.job_list; pi; pi = pi->next) { |
| 5145 | if (pi->jobid == G.last_jobid) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5146 | goto found; |
| 5147 | } |
| 5148 | } |
| 5149 | bb_error_msg("%s: no current job", argv[0]); |
| 5150 | return EXIT_FAILURE; |
| 5151 | } |
| 5152 | if (sscanf(argv[1], "%%%d", &jobnum) != 1) { |
| 5153 | bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]); |
| 5154 | return EXIT_FAILURE; |
| 5155 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5156 | for (pi = G.job_list; pi; pi = pi->next) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5157 | if (pi->jobid == jobnum) { |
| 5158 | goto found; |
| 5159 | } |
| 5160 | } |
| 5161 | bb_error_msg("%s: %d: no such job", argv[0], jobnum); |
| 5162 | return EXIT_FAILURE; |
| 5163 | found: |
| 5164 | // TODO: bash prints a string representation |
| 5165 | // of job being foregrounded (like "sleep 1 | cat") |
| 5166 | if (*argv[0] == 'f') { |
| 5167 | /* Put the job into the foreground. */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame^] | 5168 | tcsetpgrp(G_interactive_fd, pi->pgrp); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5169 | } |
| 5170 | |
| 5171 | /* Restart the processes in the job */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 5172 | debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp); |
| 5173 | for (i = 0; i < pi->num_cmds; i++) { |
| 5174 | debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid); |
| 5175 | pi->cmds[i].is_stopped = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5176 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 5177 | pi->stopped_cmds = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5178 | |
| 5179 | i = kill(- pi->pgrp, SIGCONT); |
| 5180 | if (i < 0) { |
| 5181 | if (errno == ESRCH) { |
| 5182 | delete_finished_bg_job(pi); |
| 5183 | return EXIT_SUCCESS; |
| 5184 | } else { |
| 5185 | bb_perror_msg("kill (SIGCONT)"); |
| 5186 | } |
| 5187 | } |
| 5188 | |
| 5189 | if (*argv[0] == 'f') { |
| 5190 | remove_bg_job(pi); |
| 5191 | return checkjobs_and_fg_shell(pi); |
| 5192 | } |
| 5193 | return EXIT_SUCCESS; |
| 5194 | } |
| 5195 | #endif |
| 5196 | |
| 5197 | #if ENABLE_HUSH_HELP |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 5198 | static int builtin_help(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5199 | { |
| 5200 | const struct built_in_command *x; |
| 5201 | |
| 5202 | printf("\nBuilt-in commands:\n"); |
| 5203 | printf("-------------------\n"); |
| 5204 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
| 5205 | printf("%s\t%s\n", x->cmd, x->descr); |
| 5206 | } |
| 5207 | printf("\n\n"); |
| 5208 | return EXIT_SUCCESS; |
| 5209 | } |
| 5210 | #endif |
| 5211 | |
| 5212 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 5213 | static int builtin_jobs(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5214 | { |
| 5215 | struct pipe *job; |
| 5216 | const char *status_string; |
| 5217 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5218 | for (job = G.job_list; job; job = job->next) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 5219 | if (job->alive_cmds == job->stopped_cmds) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5220 | status_string = "Stopped"; |
| 5221 | else |
| 5222 | status_string = "Running"; |
| 5223 | |
| 5224 | printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext); |
| 5225 | } |
| 5226 | return EXIT_SUCCESS; |
| 5227 | } |
| 5228 | #endif |
| 5229 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 5230 | static int builtin_pwd(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5231 | { |
| 5232 | puts(set_cwd()); |
| 5233 | return EXIT_SUCCESS; |
| 5234 | } |
| 5235 | |
| 5236 | static int builtin_read(char **argv) |
| 5237 | { |
| 5238 | char *string; |
| 5239 | const char *name = argv[1] ? argv[1] : "REPLY"; |
| 5240 | |
| 5241 | string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL); |
| 5242 | return set_local_var(string, 0); |
| 5243 | } |
| 5244 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5245 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set |
| 5246 | * built-in 'set' handler |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5247 | * SUSv3 says: |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5248 | * set [-abCefhmnuvx] [-o option] [argument...] |
| 5249 | * set [+abCefhmnuvx] [+o option] [argument...] |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5250 | * set -- [argument...] |
| 5251 | * set -o |
| 5252 | * set +o |
| 5253 | * Implementations shall support the options in both their hyphen and |
| 5254 | * plus-sign forms. These options can also be specified as options to sh. |
| 5255 | * Examples: |
| 5256 | * Write out all variables and their values: set |
| 5257 | * Set $1, $2, and $3 and set "$#" to 3: set c a b |
| 5258 | * Turn on the -x and -v options: set -xv |
| 5259 | * Unset all positional parameters: set -- |
| 5260 | * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x" |
| 5261 | * Set the positional parameters to the expansion of x, even if x expands |
| 5262 | * with a leading '-' or '+': set -- $x |
| 5263 | * |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5264 | * 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] | 5265 | */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5266 | static int builtin_set(char **argv) |
| 5267 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5268 | int n; |
| 5269 | char **pp, **g_argv; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5270 | char *arg = *++argv; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5271 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5272 | if (arg == NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5273 | struct variable *e; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5274 | for (e = G.top_var; e; e = e->next) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5275 | puts(e->varstr); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5276 | return EXIT_SUCCESS; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5277 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5278 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5279 | do { |
| 5280 | if (!strcmp(arg, "--")) { |
| 5281 | ++argv; |
| 5282 | goto set_argv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5283 | } |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5284 | |
| 5285 | if (arg[0] == '+' || arg[0] == '-') { |
| 5286 | for (n = 1; arg[n]; ++n) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5287 | if (set_mode(arg[0], arg[n])) |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5288 | goto error; |
| 5289 | continue; |
| 5290 | } |
| 5291 | |
| 5292 | break; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5293 | } while ((arg = *++argv) != NULL); |
| 5294 | /* Now argv[0] is 1st argument */ |
| 5295 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5296 | /* Only reset global_argv if we didn't process anything */ |
| 5297 | if (arg == NULL) |
| 5298 | return EXIT_SUCCESS; |
| 5299 | set_argv: |
| 5300 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5301 | /* NB: G.global_argv[0] ($0) is never freed/changed */ |
| 5302 | g_argv = G.global_argv; |
| 5303 | if (G.global_args_malloced) { |
| 5304 | pp = g_argv; |
| 5305 | while (*++pp) |
| 5306 | free(*pp); |
| 5307 | g_argv[1] = NULL; |
| 5308 | } else { |
| 5309 | G.global_args_malloced = 1; |
| 5310 | pp = xzalloc(sizeof(pp[0]) * 2); |
| 5311 | pp[0] = g_argv[0]; /* retain $0 */ |
| 5312 | g_argv = pp; |
| 5313 | } |
| 5314 | /* This realloc's G.global_argv */ |
| 5315 | G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1); |
| 5316 | |
| 5317 | n = 1; |
| 5318 | while (*++pp) |
| 5319 | n++; |
| 5320 | G.global_argc = n; |
| 5321 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5322 | return EXIT_SUCCESS; |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5323 | |
| 5324 | /* Nothing known, so abort */ |
| 5325 | error: |
| 5326 | bb_error_msg("set: %s: invalid option", arg); |
| 5327 | return EXIT_FAILURE; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5328 | } |
| 5329 | |
| 5330 | static int builtin_shift(char **argv) |
| 5331 | { |
| 5332 | int n = 1; |
| 5333 | if (argv[1]) { |
| 5334 | n = atoi(argv[1]); |
| 5335 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5336 | if (n >= 0 && n < G.global_argc) { |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 5337 | if (G.global_args_malloced) { |
| 5338 | int m = 1; |
| 5339 | while (m <= n) |
| 5340 | free(G.global_argv[m++]); |
| 5341 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5342 | G.global_argc -= n; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 5343 | memmove(&G.global_argv[1], &G.global_argv[n+1], |
| 5344 | G.global_argc * sizeof(G.global_argv[0])); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5345 | return EXIT_SUCCESS; |
| 5346 | } |
| 5347 | return EXIT_FAILURE; |
| 5348 | } |
| 5349 | |
| 5350 | static int builtin_source(char **argv) |
| 5351 | { |
| 5352 | FILE *input; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5353 | |
| 5354 | if (argv[1] == NULL) |
| 5355 | return EXIT_FAILURE; |
| 5356 | |
| 5357 | /* XXX search through $PATH is missing */ |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 5358 | input = fopen_for_read(argv[1]); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5359 | if (!input) { |
Bernhard Reutner-Fischer | a53de7f | 2008-07-21 13:46:54 +0000 | [diff] [blame] | 5360 | bb_error_msg("can't open '%s'", argv[1]); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5361 | return EXIT_FAILURE; |
| 5362 | } |
| 5363 | close_on_exec_on(fileno(input)); |
| 5364 | |
| 5365 | /* Now run the file */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5366 | /* 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] | 5367 | * (pointer only is OK!) on this stack frame, |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5368 | * set G.global_argv=argv+1, recurse, and restore. */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5369 | parse_and_run_file(input); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5370 | fclose(input); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5371 | return G.last_return_code; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5372 | } |
| 5373 | |
| 5374 | static int builtin_umask(char **argv) |
| 5375 | { |
| 5376 | mode_t new_umask; |
| 5377 | const char *arg = argv[1]; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5378 | if (arg) { |
Mike Frysinger | 40b8dc4 | 2009-03-29 00:50:30 +0000 | [diff] [blame] | 5379 | new_umask = bb_strtou(arg, NULL, 8); |
| 5380 | if (errno) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5381 | return EXIT_FAILURE; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5382 | } else { |
| 5383 | new_umask = umask(0); |
| 5384 | printf("%.3o\n", (unsigned) new_umask); |
| 5385 | } |
| 5386 | umask(new_umask); |
| 5387 | return EXIT_SUCCESS; |
| 5388 | } |
| 5389 | |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 5390 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5391 | static int builtin_unset(char **argv) |
| 5392 | { |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 5393 | size_t i; |
| 5394 | int ret; |
| 5395 | bool var = true; |
| 5396 | |
| 5397 | if (!argv[1]) |
| 5398 | return EXIT_SUCCESS; |
| 5399 | |
| 5400 | i = 0; |
| 5401 | if (argv[1][0] == '-') { |
| 5402 | switch (argv[1][1]) { |
| 5403 | case 'v': break; |
| 5404 | case 'f': if (ENABLE_HUSH_FUNCTIONS) { var = false; break; } |
| 5405 | default: |
| 5406 | bb_error_msg("unset: %s: invalid option", argv[1]); |
| 5407 | return EXIT_FAILURE; |
| 5408 | } |
| 5409 | ++i; |
| 5410 | } |
| 5411 | |
| 5412 | ret = EXIT_SUCCESS; |
| 5413 | while (argv[++i]) { |
| 5414 | if (var) { |
| 5415 | if (unset_local_var(argv[i])) |
| 5416 | ret = EXIT_FAILURE; |
| 5417 | } |
| 5418 | #if ENABLE_HUSH_FUNCTIONS |
| 5419 | else |
| 5420 | unset_local_func(argv[i]); |
| 5421 | #endif |
| 5422 | } |
| 5423 | return ret; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5424 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 5425 | |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5426 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */ |
| 5427 | static int builtin_wait(char **argv) |
| 5428 | { |
| 5429 | int ret = EXIT_SUCCESS; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 5430 | int status, sig; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5431 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 5432 | if (*++argv == NULL) { |
| 5433 | /* Don't care about wait results */ |
| 5434 | /* Note 1: must wait until there are no more children */ |
| 5435 | /* Note 2: must be interruptible */ |
| 5436 | /* Examples: |
| 5437 | * $ sleep 3 & sleep 6 & wait |
| 5438 | * [1] 30934 sleep 3 |
| 5439 | * [2] 30935 sleep 6 |
| 5440 | * [1] Done sleep 3 |
| 5441 | * [2] Done sleep 6 |
| 5442 | * $ sleep 3 & sleep 6 & wait |
| 5443 | * [1] 30936 sleep 3 |
| 5444 | * [2] 30937 sleep 6 |
| 5445 | * [1] Done sleep 3 |
| 5446 | * ^C <-- after ~4 sec from keyboard |
| 5447 | * $ |
| 5448 | */ |
| 5449 | sigaddset(&G.blocked_set, SIGCHLD); |
| 5450 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 5451 | while (1) { |
| 5452 | checkjobs(NULL); |
| 5453 | if (errno == ECHILD) |
| 5454 | break; |
| 5455 | /* Wait for SIGCHLD or any other signal of interest */ |
| 5456 | /* sigtimedwait with infinite timeout: */ |
| 5457 | sig = sigwaitinfo(&G.blocked_set, NULL); |
| 5458 | if (sig > 0) { |
| 5459 | sig = check_and_run_traps(sig); |
| 5460 | if (sig && sig != SIGCHLD) { /* see note 2 */ |
| 5461 | ret = 128 + sig; |
| 5462 | break; |
| 5463 | } |
| 5464 | } |
| 5465 | } |
| 5466 | sigdelset(&G.blocked_set, SIGCHLD); |
| 5467 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 5468 | return ret; |
| 5469 | } |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5470 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 5471 | /* This is probably buggy wrt interruptible-ness */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5472 | while (*argv) { |
| 5473 | pid_t pid = bb_strtou(*argv, NULL, 10); |
Mike Frysinger | 40b8dc4 | 2009-03-29 00:50:30 +0000 | [diff] [blame] | 5474 | if (errno) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5475 | /* mimic bash message */ |
| 5476 | bb_error_msg("wait: '%s': not a pid or valid job spec", *argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5477 | return EXIT_FAILURE; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5478 | } |
| 5479 | if (waitpid(pid, &status, 0) == pid) { |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5480 | if (WIFSIGNALED(status)) |
| 5481 | ret = 128 + WTERMSIG(status); |
| 5482 | else if (WIFEXITED(status)) |
| 5483 | ret = WEXITSTATUS(status); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5484 | else /* wtf? */ |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5485 | ret = EXIT_FAILURE; |
| 5486 | } else { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5487 | bb_perror_msg("wait %s", *argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5488 | ret = 127; |
| 5489 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5490 | argv++; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5491 | } |
| 5492 | |
| 5493 | return ret; |
| 5494 | } |
| 5495 | |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 5496 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 5497 | static int builtin_break(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 5498 | { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5499 | if (G.depth_of_loop == 0) { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 5500 | bb_error_msg("%s: only meaningful in a loop", argv[0]); |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 5501 | return EXIT_SUCCESS; /* bash compat */ |
| 5502 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5503 | G.flag_break_continue++; /* BC_BREAK = 1 */ |
| 5504 | G.depth_break_continue = 1; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 5505 | if (argv[1]) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5506 | G.depth_break_continue = bb_strtou(argv[1], NULL, 10); |
| 5507 | if (errno || !G.depth_break_continue || argv[2]) { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 5508 | bb_error_msg("%s: bad arguments", argv[0]); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5509 | G.flag_break_continue = BC_BREAK; |
| 5510 | G.depth_break_continue = UINT_MAX; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 5511 | } |
| 5512 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5513 | if (G.depth_of_loop < G.depth_break_continue) |
| 5514 | G.depth_break_continue = G.depth_of_loop; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 5515 | return EXIT_SUCCESS; |
| 5516 | } |
| 5517 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 5518 | static int builtin_continue(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 5519 | { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 5520 | G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */ |
| 5521 | return builtin_break(argv); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 5522 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 5523 | #endif |