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? |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 64 | * |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 65 | * 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] | 66 | */ |
Bernhard Reutner-Fischer | e15d757 | 2006-06-02 20:56:16 +0000 | [diff] [blame] | 67 | |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 68 | #include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 69 | //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] | 70 | //#include "applet_tables.h" doesn't work |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 71 | #include <glob.h> |
| 72 | /* #include <dmalloc.h> */ |
| 73 | #if ENABLE_HUSH_CASE |
| 74 | #include <fnmatch.h> |
| 75 | #endif |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 76 | #include "math.h" |
| 77 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 78 | #ifdef WANT_TO_TEST_NOMMU |
| 79 | # undef BB_MMU |
| 80 | # undef USE_FOR_NOMMU |
| 81 | # undef USE_FOR_MMU |
| 82 | # define BB_MMU 0 |
| 83 | # define USE_FOR_NOMMU(...) __VA_ARGS__ |
| 84 | # define USE_FOR_MMU(...) |
| 85 | #endif |
| 86 | |
| 87 | #define HUSH_VER_STR "0.93" |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 88 | |
Denis Vlasenko | 61befda | 2008-11-25 01:36:03 +0000 | [diff] [blame] | 89 | #if defined SINGLE_APPLET_MAIN |
| 90 | /* STANDALONE does not make sense, and won't compile */ |
| 91 | #undef CONFIG_FEATURE_SH_STANDALONE |
| 92 | #undef ENABLE_FEATURE_SH_STANDALONE |
| 93 | #undef USE_FEATURE_SH_STANDALONE |
| 94 | #define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__ |
| 95 | #define ENABLE_FEATURE_SH_STANDALONE 0 |
| 96 | #define USE_FEATURE_SH_STANDALONE(...) |
| 97 | #define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__ |
| 98 | #endif |
| 99 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 100 | #if !ENABLE_HUSH_INTERACTIVE |
| 101 | #undef ENABLE_FEATURE_EDITING |
| 102 | #define ENABLE_FEATURE_EDITING 0 |
| 103 | #undef ENABLE_FEATURE_EDITING_FANCY_PROMPT |
| 104 | #define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0 |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 105 | #endif |
| 106 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 107 | /* Do we support ANY keywords? */ |
| 108 | #if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
| 109 | #define HAS_KEYWORDS 1 |
| 110 | #define IF_HAS_KEYWORDS(...) __VA_ARGS__ |
| 111 | #define IF_HAS_NO_KEYWORDS(...) |
| 112 | #else |
| 113 | #define HAS_KEYWORDS 0 |
| 114 | #define IF_HAS_KEYWORDS(...) |
| 115 | #define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__ |
| 116 | #endif |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 117 | |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 118 | /* Keep unconditionally on for now */ |
| 119 | #define HUSH_DEBUG 1 |
| 120 | /* In progress... */ |
| 121 | #define ENABLE_HUSH_FUNCTIONS 0 |
| 122 | |
| 123 | |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 124 | /* If you comment out one of these below, it will be #defined later |
| 125 | * to perform debug printfs to stderr: */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 126 | #define debug_printf(...) do {} while (0) |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 127 | /* Finer-grained debug switches */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 128 | #define debug_printf_parse(...) do {} while (0) |
| 129 | #define debug_print_tree(a, b) do {} while (0) |
| 130 | #define debug_printf_exec(...) do {} while (0) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 131 | #define debug_printf_env(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 132 | #define debug_printf_jobs(...) do {} while (0) |
| 133 | #define debug_printf_expand(...) do {} while (0) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 134 | #define debug_printf_glob(...) do {} while (0) |
| 135 | #define debug_printf_list(...) do {} while (0) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 136 | #define debug_printf_subst(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 137 | #define debug_printf_clean(...) do {} while (0) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 138 | |
| 139 | #ifndef debug_printf |
| 140 | #define debug_printf(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 141 | #endif |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 142 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 143 | #ifndef debug_printf_parse |
| 144 | #define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 145 | #endif |
| 146 | |
| 147 | #ifndef debug_printf_exec |
| 148 | #define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__) |
| 149 | #endif |
| 150 | |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 151 | #ifndef debug_printf_env |
| 152 | #define debug_printf_env(...) fprintf(stderr, __VA_ARGS__) |
| 153 | #endif |
| 154 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 155 | #ifndef debug_printf_jobs |
| 156 | #define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 157 | #define DEBUG_JOBS 1 |
| 158 | #else |
| 159 | #define DEBUG_JOBS 0 |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 160 | #endif |
| 161 | |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 162 | #ifndef debug_printf_expand |
| 163 | #define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__) |
| 164 | #define DEBUG_EXPAND 1 |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 165 | #else |
| 166 | #define DEBUG_EXPAND 0 |
| 167 | #endif |
| 168 | |
| 169 | #ifndef debug_printf_glob |
| 170 | #define debug_printf_glob(...) fprintf(stderr, __VA_ARGS__) |
| 171 | #define DEBUG_GLOB 1 |
| 172 | #else |
| 173 | #define DEBUG_GLOB 0 |
| 174 | #endif |
| 175 | |
| 176 | #ifndef debug_printf_list |
| 177 | #define debug_printf_list(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 178 | #endif |
| 179 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 180 | #ifndef debug_printf_subst |
| 181 | #define debug_printf_subst(...) fprintf(stderr, __VA_ARGS__) |
| 182 | #endif |
| 183 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 184 | #ifndef debug_printf_clean |
| 185 | /* broken, of course, but OK for testing */ |
| 186 | static const char *indenter(int i) |
| 187 | { |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 188 | static const char blanks[] ALIGN1 = |
| 189 | " "; |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 190 | return &blanks[sizeof(blanks) - i - 1]; |
| 191 | } |
| 192 | #define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 193 | #define DEBUG_CLEAN 1 |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 194 | #endif |
| 195 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 196 | #if DEBUG_EXPAND |
| 197 | static void debug_print_strings(const char *prefix, char **vv) |
| 198 | { |
| 199 | fprintf(stderr, "%s:\n", prefix); |
| 200 | while (*vv) |
| 201 | fprintf(stderr, " '%s'\n", *vv++); |
| 202 | } |
| 203 | #else |
| 204 | #define debug_print_strings(prefix, vv) ((void)0) |
| 205 | #endif |
| 206 | |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 207 | /* |
| 208 | * Leak hunting. Use hush_leaktool.sh for post-processing. |
| 209 | */ |
| 210 | #ifdef FOR_HUSH_LEAKTOOL |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 211 | static void *xxmalloc(int lineno, size_t size) |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 212 | { |
| 213 | void *ptr = xmalloc((size + 0xff) & ~0xff); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 214 | fdprintf(2, "line %d: malloc %p\n", lineno, ptr); |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 215 | return ptr; |
| 216 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 217 | static void *xxrealloc(int lineno, void *ptr, size_t size) |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 218 | { |
| 219 | ptr = xrealloc(ptr, (size + 0xff) & ~0xff); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 220 | fdprintf(2, "line %d: realloc %p\n", lineno, ptr); |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 221 | return ptr; |
| 222 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 223 | static char *xxstrdup(int lineno, const char *str) |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 224 | { |
| 225 | char *ptr = xstrdup(str); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 226 | fdprintf(2, "line %d: strdup %p\n", lineno, ptr); |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 227 | return ptr; |
| 228 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 229 | static void xxfree(void *ptr) |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 230 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 231 | fdprintf(2, "free %p\n", ptr); |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 232 | free(ptr); |
| 233 | } |
| 234 | #define xmalloc(s) xxmalloc(__LINE__, s) |
| 235 | #define xrealloc(p, s) xxrealloc(__LINE__, p, s) |
| 236 | #define xstrdup(s) xxstrdup(__LINE__, s) |
| 237 | #define free(p) xxfree(p) |
| 238 | #endif |
| 239 | |
| 240 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 241 | #define ERR_PTR ((void*)(long)1) |
| 242 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 243 | static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="HUSH_VER_STR; |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 244 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 245 | #define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n" |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 246 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 247 | #define SPECIAL_VAR_SYMBOL 3 |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 248 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 249 | typedef enum redir_type { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 250 | REDIRECT_INPUT = 1, |
| 251 | REDIRECT_OVERWRITE = 2, |
| 252 | REDIRECT_APPEND = 3, |
| 253 | REDIRECT_HEREIS = 4, |
| 254 | REDIRECT_IO = 5 |
| 255 | } redir_type; |
| 256 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 257 | /* The descrip member of this structure is only used to make |
| 258 | * debugging output pretty */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 259 | static const struct { |
| 260 | int mode; |
Denis Vlasenko | ef36ead | 2007-05-02 15:34:47 +0000 | [diff] [blame] | 261 | signed char default_fd; |
| 262 | char descrip[3]; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 263 | } redir_table[] = { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 264 | { 0, 0, "()" }, |
| 265 | { O_RDONLY, 0, "<" }, |
| 266 | { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" }, |
| 267 | { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" }, |
| 268 | { O_RDONLY, -1, "<<" }, |
| 269 | { O_RDWR, 1, "<>" } |
| 270 | }; |
| 271 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 272 | typedef enum pipe_style { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 273 | PIPE_SEQ = 1, |
| 274 | PIPE_AND = 2, |
| 275 | PIPE_OR = 3, |
| 276 | PIPE_BG = 4, |
| 277 | } pipe_style; |
| 278 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 279 | typedef enum reserved_style { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 280 | RES_NONE = 0, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 281 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 282 | RES_IF , |
| 283 | RES_THEN , |
| 284 | RES_ELIF , |
| 285 | RES_ELSE , |
| 286 | RES_FI , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 287 | #endif |
| 288 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 289 | RES_FOR , |
| 290 | RES_WHILE , |
| 291 | RES_UNTIL , |
| 292 | RES_DO , |
| 293 | RES_DONE , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 294 | #endif |
| 295 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 296 | RES_IN , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 297 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 298 | #if ENABLE_HUSH_CASE |
| 299 | RES_CASE , |
| 300 | /* two pseudo-keywords support contrived "case" syntax: */ |
| 301 | RES_MATCH , /* "word)" */ |
| 302 | RES_CASEI , /* "this command is inside CASE" */ |
| 303 | RES_ESAC , |
| 304 | #endif |
| 305 | RES_XXXX , |
| 306 | RES_SNTX |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 307 | } reserved_style; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 308 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 309 | typedef struct o_string { |
| 310 | char *data; |
| 311 | int length; /* position where data is appended */ |
| 312 | int maxlen; |
| 313 | /* Protect newly added chars against globbing |
| 314 | * (by prepending \ to *, ?, [, \) */ |
| 315 | smallint o_escape; |
| 316 | smallint o_glob; |
| 317 | smallint nonnull; |
| 318 | smallint has_empty_slot; |
| 319 | smallint o_assignment; /* 0:maybe, 1:yes, 2:no */ |
| 320 | } o_string; |
| 321 | enum { |
| 322 | MAYBE_ASSIGNMENT = 0, |
| 323 | DEFINITELY_ASSIGNMENT = 1, |
| 324 | NOT_ASSIGNMENT = 2, |
| 325 | WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */ |
| 326 | }; |
| 327 | /* Used for initialization: o_string foo = NULL_O_STRING; */ |
| 328 | #define NULL_O_STRING { NULL } |
| 329 | |
| 330 | /* I can almost use ordinary FILE*. Is open_memstream() universally |
| 331 | * available? Where is it documented? */ |
| 332 | typedef struct in_str { |
| 333 | const char *p; |
| 334 | /* eof_flag=1: last char in ->p is really an EOF */ |
| 335 | char eof_flag; /* meaningless if ->p == NULL */ |
| 336 | char peek_buf[2]; |
| 337 | #if ENABLE_HUSH_INTERACTIVE |
| 338 | smallint promptme; |
| 339 | smallint promptmode; /* 0: PS1, 1: PS2 */ |
| 340 | #endif |
| 341 | FILE *file; |
| 342 | int (*get) (struct in_str *); |
| 343 | int (*peek) (struct in_str *); |
| 344 | } in_str; |
| 345 | #define i_getch(input) ((input)->get(input)) |
| 346 | #define i_peek(input) ((input)->peek(input)) |
| 347 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 348 | struct redir_struct { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 349 | struct redir_struct *next; |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 350 | char *rd_filename; /* filename */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 351 | int fd; /* file descriptor being redirected */ |
| 352 | int dup; /* -1, or file descriptor being duplicated */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 353 | smallint /*enum redir_type*/ rd_type; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 354 | }; |
| 355 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 356 | struct command { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 357 | pid_t pid; /* 0 if exited */ |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 358 | int assignment_cnt; /* how many argv[i] are assignments? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 359 | smallint is_stopped; /* is the command currently running? */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 360 | smallint grp_type; /* GRP_xxx */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 361 | struct pipe *group; /* if non-NULL, this "command" is { list }, |
| 362 | * ( list ), or a compound statement */ |
| 363 | #if !BB_MMU |
| 364 | char *group_as_string; |
| 365 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 366 | char **argv; /* command name and arguments */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 367 | struct redir_struct *redirects; /* I/O redirections */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 368 | }; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 369 | /* argv vector may contain variable references (^Cvar^C, ^C0^C etc) |
| 370 | * and on execution these are substituted with their values. |
| 371 | * Substitution can make _several_ words out of one argv[n]! |
| 372 | * Example: argv[0]=='.^C*^C.' here: echo .$*. |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 373 | * References of the form ^C`cmd arg^C are `cmd arg` substitutions. |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 374 | */ |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 375 | #define GRP_NORMAL 0 |
| 376 | #define GRP_SUBSHELL 1 |
| 377 | #if ENABLE_HUSH_FUNCTIONS |
| 378 | #define GRP_FUNCTION 2 |
| 379 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 380 | |
| 381 | struct pipe { |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 382 | struct pipe *next; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 383 | int num_cmds; /* total number of commands in job */ |
| 384 | int alive_cmds; /* number of commands running (not exited) */ |
| 385 | int stopped_cmds; /* number of commands alive, but stopped */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 386 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 387 | int jobid; /* job number */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 388 | pid_t pgrp; /* process group ID for the job */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 389 | char *cmdtext; /* name of job */ |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 390 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 391 | struct command *cmds; /* array of commands in pipe */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 392 | smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 393 | IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */ |
| 394 | IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 395 | }; |
| 396 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 397 | /* This holds pointers to the various results of parsing */ |
| 398 | struct parse_context { |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 399 | /* linked list of pipes */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 400 | struct pipe *list_head; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 401 | /* last pipe (being constructed right now) */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 402 | struct pipe *pipe; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 403 | /* last command in pipe (being constructed right now) */ |
| 404 | struct command *command; |
| 405 | /* last redirect in command->redirects list */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 406 | struct redir_struct *pending_redirect; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 407 | #if !BB_MMU |
| 408 | o_string as_string; |
| 409 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 410 | #if HAS_KEYWORDS |
| 411 | smallint ctx_res_w; |
| 412 | smallint ctx_inverted; /* "! cmd | cmd" */ |
| 413 | #if ENABLE_HUSH_CASE |
| 414 | smallint ctx_dsemicolon; /* ";;" seen */ |
| 415 | #endif |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 416 | /* bitmask of FLAG_xxx, for figuring out valid reserved words */ |
| 417 | int old_flag; |
| 418 | /* group we are enclosed in: |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 419 | * example: "if pipe1; pipe2; then pipe3; fi" |
| 420 | * when we see "if" or "then", we malloc and copy current context, |
| 421 | * and make ->stack point to it. then we parse pipeN. |
| 422 | * when closing "then" / fi" / whatever is found, |
| 423 | * we move list_head into ->stack->command->group, |
| 424 | * copy ->stack into current context, and delete ->stack. |
| 425 | * (parsing of { list } and ( list ) doesn't use this method) |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 426 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 427 | struct parse_context *stack; |
| 428 | #endif |
| 429 | }; |
| 430 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 431 | /* On program start, environ points to initial environment. |
| 432 | * putenv adds new pointers into it, unsetenv removes them. |
| 433 | * Neither of these (de)allocates the strings. |
| 434 | * setenv allocates new strings in malloc space and does putenv, |
| 435 | * and thus setenv is unusable (leaky) for shell's purposes */ |
| 436 | #define setenv(...) setenv_is_leaky_dont_use() |
| 437 | struct variable { |
| 438 | struct variable *next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 439 | char *varstr; /* points to "name=" portion */ |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 440 | int max_len; /* if > 0, name is part of initial env; else name is malloced */ |
| 441 | smallint flg_export; /* putenv should be done on this var */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 442 | smallint flg_read_only; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 443 | }; |
| 444 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 445 | enum { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 446 | BC_BREAK = 1, |
| 447 | BC_CONTINUE = 2, |
| 448 | }; |
| 449 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 450 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 451 | /* "Globals" within this file */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 452 | /* Sorted roughly by size (smaller offsets == smaller code) */ |
| 453 | struct globals { |
| 454 | #if ENABLE_HUSH_INTERACTIVE |
| 455 | /* 'interactive_fd' is a fd# open to ctty, if we have one |
| 456 | * _AND_ if we decided to act interactively */ |
| 457 | int interactive_fd; |
| 458 | const char *PS1; |
| 459 | const char *PS2; |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 460 | #define G_interactive_fd (G.interactive_fd) |
| 461 | #else |
| 462 | #define G_interactive_fd 0 |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 463 | #endif |
| 464 | #if ENABLE_FEATURE_EDITING |
| 465 | line_input_t *line_input_state; |
| 466 | #endif |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 467 | pid_t root_pid; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 468 | pid_t last_bg_pid; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 469 | #if ENABLE_HUSH_JOB |
| 470 | int run_list_level; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 471 | pid_t saved_tty_pgrp; |
| 472 | int last_jobid; |
| 473 | struct pipe *job_list; |
| 474 | struct pipe *toplevel_list; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 475 | //// smallint ctrl_z_flag; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 476 | #endif |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 477 | smallint flag_SIGINT; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 478 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 479 | smallint flag_break_continue; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 480 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 481 | smallint fake_mode; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 482 | /* These four support $?, $#, and $1 */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 483 | smalluint last_return_code; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 484 | /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */ |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 485 | smalluint global_args_malloced; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 486 | /* how many non-NULL argv's we have. NB: $# + 1 */ |
| 487 | int global_argc; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 488 | char **global_argv; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 489 | #if !BB_MMU |
| 490 | char **argv_for_re_execing; |
| 491 | #endif |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 492 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 493 | unsigned depth_break_continue; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 494 | unsigned depth_of_loop; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 495 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 496 | const char *ifs; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 497 | const char *cwd; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 498 | struct variable *top_var; /* = &G.shell_ver (set in main()) */ |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 499 | struct variable shell_ver; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 500 | /* Signal and trap handling */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 501 | // unsigned count_SIGCHLD; |
| 502 | // unsigned handled_SIGCHLD; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 503 | /* which signals have non-DFL handler (even with no traps set)? */ |
| 504 | unsigned non_DFL_mask; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 505 | char **traps; /* char *traps[NSIG] */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 506 | sigset_t blocked_set; |
| 507 | sigset_t inherited_set; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 508 | char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2]; |
| 509 | #if ENABLE_FEATURE_SH_STANDALONE |
| 510 | struct nofork_save_area nofork_save; |
| 511 | #endif |
| 512 | #if ENABLE_HUSH_JOB |
| 513 | sigjmp_buf toplevel_jb; |
| 514 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 515 | }; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 516 | #define G (*ptr_to_globals) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 517 | /* Not #defining name to G.name - this quickly gets unwieldy |
| 518 | * (too many defines). Also, I actually prefer to see when a variable |
| 519 | * is global, thus "G." prefix is a useful hint */ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 520 | #define INIT_G() do { \ |
| 521 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
| 522 | } while (0) |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 523 | |
| 524 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 525 | /* Function prototypes for builtins */ |
| 526 | static int builtin_cd(char **argv); |
| 527 | static int builtin_echo(char **argv); |
| 528 | static int builtin_eval(char **argv); |
| 529 | static int builtin_exec(char **argv); |
| 530 | static int builtin_exit(char **argv); |
| 531 | static int builtin_export(char **argv); |
| 532 | #if ENABLE_HUSH_JOB |
| 533 | static int builtin_fg_bg(char **argv); |
| 534 | static int builtin_jobs(char **argv); |
| 535 | #endif |
| 536 | #if ENABLE_HUSH_HELP |
| 537 | static int builtin_help(char **argv); |
| 538 | #endif |
| 539 | static int builtin_pwd(char **argv); |
| 540 | static int builtin_read(char **argv); |
| 541 | static int builtin_test(char **argv); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 542 | static int builtin_trap(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 543 | static int builtin_true(char **argv); |
| 544 | static int builtin_set(char **argv); |
| 545 | static int builtin_shift(char **argv); |
| 546 | static int builtin_source(char **argv); |
| 547 | static int builtin_umask(char **argv); |
| 548 | static int builtin_unset(char **argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 549 | static int builtin_wait(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 550 | #if ENABLE_HUSH_LOOPS |
| 551 | static int builtin_break(char **argv); |
| 552 | static int builtin_continue(char **argv); |
| 553 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 554 | |
| 555 | /* Table of built-in functions. They can be forked or not, depending on |
| 556 | * context: within pipes, they fork. As simple commands, they do not. |
| 557 | * When used in non-forking context, they can change global variables |
| 558 | * in the parent shell process. If forked, of course they cannot. |
| 559 | * For example, 'unset foo | whatever' will parse and run, but foo will |
| 560 | * still be set at the end. */ |
| 561 | struct built_in_command { |
| 562 | const char *cmd; |
| 563 | int (*function)(char **argv); |
| 564 | #if ENABLE_HUSH_HELP |
| 565 | const char *descr; |
| 566 | #define BLTIN(cmd, func, help) { cmd, func, help } |
| 567 | #else |
| 568 | #define BLTIN(cmd, func, help) { cmd, func } |
| 569 | #endif |
| 570 | }; |
| 571 | |
| 572 | /* For now, echo and test are unconditionally enabled. |
| 573 | * Maybe make it configurable? */ |
| 574 | static const struct built_in_command bltins[] = { |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 575 | BLTIN("." , builtin_source , "Run commands in a file"), |
| 576 | BLTIN(":" , builtin_true , "No-op"), |
| 577 | BLTIN("[" , builtin_test , "Test condition"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 578 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 579 | BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 580 | #endif |
| 581 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 582 | BLTIN("break" , builtin_break , "Exit from a loop"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 583 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 584 | BLTIN("cd" , builtin_cd , "Change directory"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 585 | #if ENABLE_HUSH_LOOPS |
| 586 | BLTIN("continue", builtin_continue, "Start new loop iteration"), |
| 587 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 588 | BLTIN("echo" , builtin_echo , "Write to stdout"), |
| 589 | BLTIN("eval" , builtin_eval , "Construct and run shell command"), |
| 590 | BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"), |
| 591 | BLTIN("exit" , builtin_exit , "Exit"), |
| 592 | BLTIN("export" , builtin_export , "Set environment variable"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 593 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 594 | BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 595 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 596 | #if ENABLE_HUSH_HELP |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 597 | BLTIN("help" , builtin_help , "List shell built-in commands"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 598 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 599 | #if ENABLE_HUSH_JOB |
| 600 | BLTIN("jobs" , builtin_jobs , "List active jobs"), |
| 601 | #endif |
| 602 | BLTIN("pwd" , builtin_pwd , "Print current directory"), |
| 603 | BLTIN("read" , builtin_read , "Input environment variable"), |
| 604 | // BLTIN("return" , builtin_return , "Return from a function"), |
| 605 | BLTIN("set" , builtin_set , "Set/unset shell local variables"), |
| 606 | BLTIN("shift" , builtin_shift , "Shift positional parameters"), |
| 607 | BLTIN("test" , builtin_test , "Test condition"), |
| 608 | BLTIN("trap" , builtin_trap , "Trap signals"), |
| 609 | // BLTIN("ulimit" , builtin_return , "Control resource limits"), |
| 610 | BLTIN("umask" , builtin_umask , "Set file creation mask"), |
| 611 | BLTIN("unset" , builtin_unset , "Unset environment variable"), |
| 612 | BLTIN("wait" , builtin_wait , "Wait for process"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 613 | }; |
| 614 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 615 | |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 616 | static void maybe_die(const char *notice, const char *msg) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 617 | { |
Denis Vlasenko | 5a1437d | 2007-05-24 13:22:47 +0000 | [diff] [blame] | 618 | /* Was using fancy stuff: |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 619 | * (G_interactive_fd ? bb_error_msg : bb_error_msg_and_die)(...params...) |
Denis Vlasenko | 5a1437d | 2007-05-24 13:22:47 +0000 | [diff] [blame] | 620 | * but it SEGVs. ?! Oh well... explicit temp ptr works around that */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 621 | void FAST_FUNC (*fp)(const char *s, ...) = bb_error_msg_and_die; |
| 622 | #if ENABLE_HUSH_INTERACTIVE |
Mike Frysinger | dfa9de7 | 2009-04-03 22:48:10 +0000 | [diff] [blame] | 623 | if (G_interactive_fd) |
| 624 | fp = bb_error_msg; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 625 | #endif |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 626 | fp(msg ? "%s: %s" : notice, notice, msg); |
| 627 | } |
Mike Frysinger | 5a82845 | 2009-03-28 19:09:04 +0000 | [diff] [blame] | 628 | #if 1 |
| 629 | #define syntax(msg) maybe_die("syntax error", msg); |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 630 | #else |
Mike Frysinger | 5a82845 | 2009-03-28 19:09:04 +0000 | [diff] [blame] | 631 | /* Debug -- trick gcc to expand __LINE__ and convert to string */ |
| 632 | #define __syntax(msg, line) maybe_die("syntax error hush.c:" # line, msg) |
| 633 | #define _syntax(msg, line) __syntax(msg, line) |
| 634 | #define syntax(msg) _syntax(msg, __LINE__) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 635 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 636 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 637 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 638 | static int glob_needed(const char *s) |
| 639 | { |
| 640 | while (*s) { |
| 641 | if (*s == '\\') |
| 642 | s++; |
| 643 | if (*s == '*' || *s == '[' || *s == '?') |
| 644 | return 1; |
| 645 | s++; |
| 646 | } |
| 647 | return 0; |
| 648 | } |
| 649 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 650 | static int is_assignment(const char *s) |
| 651 | { |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 652 | if (!s || !(isalpha(*s) || *s == '_')) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 653 | return 0; |
| 654 | s++; |
| 655 | while (isalnum(*s) || *s == '_') |
| 656 | s++; |
| 657 | return *s == '='; |
| 658 | } |
| 659 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 660 | /* Replace each \x with x in place, return ptr past NUL. */ |
| 661 | static char *unbackslash(char *src) |
| 662 | { |
| 663 | char *dst = src; |
| 664 | while (1) { |
| 665 | if (*src == '\\') |
| 666 | src++; |
| 667 | if ((*dst++ = *src++) == '\0') |
| 668 | break; |
| 669 | } |
| 670 | return dst; |
| 671 | } |
| 672 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 673 | 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] | 674 | { |
| 675 | int i; |
| 676 | unsigned count1; |
| 677 | unsigned count2; |
| 678 | char **v; |
| 679 | |
| 680 | v = strings; |
| 681 | count1 = 0; |
| 682 | if (v) { |
| 683 | while (*v) { |
| 684 | count1++; |
| 685 | v++; |
| 686 | } |
| 687 | } |
| 688 | count2 = 0; |
| 689 | v = add; |
| 690 | while (*v) { |
| 691 | count2++; |
| 692 | v++; |
| 693 | } |
| 694 | v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*)); |
| 695 | v[count1 + count2] = NULL; |
| 696 | i = count2; |
| 697 | while (--i >= 0) |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 698 | v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 699 | return v; |
| 700 | } |
| 701 | |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 702 | static char **add_string_to_strings(char **strings, char *add) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 703 | { |
| 704 | char *v[2]; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 705 | v[0] = add; |
| 706 | v[1] = NULL; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 707 | return add_strings_to_strings(strings, v, /*dup:*/ 0); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 708 | } |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 709 | |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 710 | static void putenv_all(char **strings) |
| 711 | { |
| 712 | if (!strings) |
| 713 | return; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 714 | while (*strings) { |
| 715 | debug_printf_env("putenv '%s'\n", *strings); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 716 | putenv(*strings++); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 717 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 718 | } |
| 719 | |
| 720 | static char **putenv_all_and_save_old(char **strings) |
| 721 | { |
| 722 | char **old = NULL; |
| 723 | char **s = strings; |
| 724 | |
| 725 | if (!strings) |
| 726 | return old; |
| 727 | while (*strings) { |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 728 | char *v, *eq; |
| 729 | |
| 730 | eq = strchr(*strings, '='); |
| 731 | if (eq) { |
| 732 | *eq = '\0'; |
| 733 | v = getenv(*strings); |
| 734 | *eq = '='; |
| 735 | if (v) { |
| 736 | /* v points to VAL in VAR=VAL, go back to VAR */ |
| 737 | v -= (eq - *strings) + 1; |
| 738 | old = add_string_to_strings(old, v); |
| 739 | } |
| 740 | } |
| 741 | strings++; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 742 | } |
| 743 | putenv_all(s); |
| 744 | return old; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 745 | } |
| 746 | |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 747 | static void free_strings_and_unsetenv(char **strings, int unset) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 748 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 749 | char **v; |
| 750 | |
| 751 | if (!strings) |
| 752 | return; |
| 753 | |
| 754 | v = strings; |
| 755 | while (*v) { |
| 756 | if (unset) { |
Denis Vlasenko | 76ddc2e | 2008-12-30 05:05:31 +0000 | [diff] [blame] | 757 | debug_printf_env("unsetenv '%s'\n", *v); |
| 758 | bb_unsetenv(*v); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 759 | } |
| 760 | free(*v++); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 761 | } |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 762 | free(strings); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 763 | } |
| 764 | |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 765 | static void free_strings(char **strings) |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 766 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 767 | free_strings_and_unsetenv(strings, 0); |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 768 | } |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 769 | |
| 770 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 771 | /* Basic theory of signal handling in shell |
| 772 | * ======================================== |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 773 | * This does not describe what hush does, rather, it is current understanding |
| 774 | * what it _should_ do. If it doesn't, it's a bug. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 775 | * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap |
| 776 | * |
| 777 | * Signals are handled only after each pipe ("cmd | cmd | cmd" thing) |
| 778 | * is finished or backgrounded. It is the same in interactive and |
| 779 | * non-interactive shells, and is the same regardless of whether |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 780 | * 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] | 781 | * ^C or ^Z from keyboard seem to execute "at once" because it usually |
| 782 | * backgrounds (i.e. stops) or kills all members of currently running |
| 783 | * pipe. |
| 784 | * |
| 785 | * Wait builtin in interruptible by signals for which user trap is set |
| 786 | * or by SIGINT in interactive shell. |
| 787 | * |
| 788 | * Trap handlers will execute even within trap handlers. (right?) |
| 789 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 790 | * User trap handlers are forgotten when subshell ("(cmd)") is entered. [TODO] |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 791 | * |
| 792 | * If job control is off, backgrounded commands ("cmd &") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 793 | * have SIGINT, SIGQUIT set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 794 | * |
| 795 | * Commands run in command substitution ("`cmd`") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 796 | * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 797 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 798 | * Ordinary commands have signals set to SIG_IGN/DFL set as inherited |
| 799 | * by the shell from its parent. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 800 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 801 | * Siganls which differ from SIG_DFL action |
| 802 | * (note: child (i.e., [v]forked) shell is not an interactive shell): |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 803 | * |
| 804 | * SIGQUIT: ignore |
| 805 | * SIGTERM (interactive): ignore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 806 | * SIGHUP (interactive): |
| 807 | * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 808 | * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 809 | * (note that ^Z is handled not by trapping SIGTSTP, but by seeing |
| 810 | * that all pipe members are stopped) (right?) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 811 | * SIGINT (interactive): wait for last pipe, ignore the rest |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 812 | * of the command line, show prompt. NB: ^C does not send SIGINT |
| 813 | * to interactive shell while shell is waiting for a pipe, |
| 814 | * since shell is bg'ed (is not in foreground process group). |
| 815 | * (check/expand this) |
| 816 | * Example 1: this waits 5 sec, but does not execute ls: |
| 817 | * "echo $$; sleep 5; ls -l" + "kill -INT <pid>" |
| 818 | * Example 2: this does not wait and does not execute ls: |
| 819 | * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>" |
| 820 | * Example 3: this does not wait 5 sec, but executes ls: |
| 821 | * "sleep 5; ls -l" + press ^C |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 822 | * |
| 823 | * (What happens to signals which are IGN on shell start?) |
| 824 | * (What happens with signal mask on shell start?) |
| 825 | * |
| 826 | * Implementation in hush |
| 827 | * ====================== |
| 828 | * We use in-kernel pending signal mask to determine which signals were sent. |
| 829 | * We block all signals which we don't want to take action immediately, |
| 830 | * i.e. we block all signals which need to have special handling as described |
| 831 | * above, and all signals which have traps set. |
| 832 | * After each pipe execution, we extract any pending signals via sigtimedwait() |
| 833 | * and act on them. |
| 834 | * |
| 835 | * unsigned non_DFL_mask: a mask of such "special" signals |
| 836 | * sigset_t blocked_set: current blocked signal set |
| 837 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 838 | * "trap - SIGxxx": |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 839 | * clear bit in blocked_set unless it is also in non_DFL_mask |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 840 | * "trap 'cmd' SIGxxx": |
| 841 | * set bit in blocked_set (even if 'cmd' is '') |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 842 | * after [v]fork, if we plan to be a shell: |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 843 | * nothing for {} child shell (say, "true | { true; true; } | true") |
| 844 | * unset all traps if () shell. [TODO] |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 845 | * after [v]fork, if we plan to exec: |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 846 | * POSIX says pending signal mask is cleared in child - no need to clear it. |
| 847 | * 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] | 848 | * |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 849 | * Note: as a result, we do not use signal handlers much. The only uses |
| 850 | * are to count SIGCHLDs [disabled - bug somewhere, + bloat] |
| 851 | * and to restore tty pgrp on signal-induced exit. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 852 | * |
| 853 | * TODO: check/fix wait builtin to be interruptible. |
| 854 | */ |
| 855 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 856 | //static void SIGCHLD_handler(int sig UNUSED_PARAM) |
| 857 | //{ |
| 858 | // G.count_SIGCHLD++; |
| 859 | //} |
| 860 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 861 | /* called once at shell init */ |
| 862 | static void init_signal_mask(void) |
Denis Vlasenko | 4830fc5 | 2008-05-25 21:50:55 +0000 | [diff] [blame] | 863 | { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 864 | unsigned sig; |
| 865 | unsigned mask = (1 << SIGQUIT); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 866 | if (G_interactive_fd) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 867 | mask = 0 |
| 868 | | (1 << SIGQUIT) |
| 869 | | (1 << SIGTERM) |
| 870 | | (1 << SIGHUP) |
| 871 | #if ENABLE_HUSH_JOB |
| 872 | | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP) |
| 873 | #endif |
| 874 | | (1 << SIGINT) |
| 875 | ; |
| 876 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 877 | G.non_DFL_mask = mask; |
| 878 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 879 | sigprocmask(SIG_SETMASK, NULL, &G.blocked_set); |
| 880 | sig = 0; |
| 881 | while (mask) { |
| 882 | if (mask & 1) |
| 883 | sigaddset(&G.blocked_set, sig); |
| 884 | mask >>= 1; |
| 885 | sig++; |
| 886 | } |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 887 | sigdelset(&G.blocked_set, SIGCHLD); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 888 | sigprocmask(SIG_SETMASK, &G.blocked_set, &G.inherited_set); |
Denis Vlasenko | 4830fc5 | 2008-05-25 21:50:55 +0000 | [diff] [blame] | 889 | } |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 890 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 891 | static int check_and_run_traps(int sig) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 892 | { |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 893 | static const struct timespec zero_timespec = { 0, 0 }; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 894 | smalluint save_rcode; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 895 | int last_sig = 0; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 896 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 897 | if (sig) |
| 898 | goto jump_in; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 899 | while (1) { |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 900 | sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 901 | if (sig <= 0) |
| 902 | break; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 903 | jump_in: |
| 904 | last_sig = sig; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 905 | if (G.traps && G.traps[sig]) { |
| 906 | if (G.traps[sig][0]) { |
| 907 | /* We have user-defined handler */ |
| 908 | char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL }; |
| 909 | save_rcode = G.last_return_code; |
| 910 | builtin_eval(argv); |
| 911 | free(argv[1]); |
| 912 | G.last_return_code = save_rcode; |
| 913 | } /* else: "" trap, ignoring signal */ |
| 914 | continue; |
| 915 | } |
| 916 | /* not a trap: special action */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 917 | switch (sig) { |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 918 | // case SIGCHLD: |
| 919 | // G.count_SIGCHLD++; |
| 920 | // break; |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 921 | case SIGINT: |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 922 | bb_putchar('\n'); |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 923 | G.flag_SIGINT = 1; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 924 | break; |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 925 | //TODO |
| 926 | // case SIGHUP: ... |
| 927 | // break; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 928 | default: /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */ |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 929 | break; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 930 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 931 | } |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 932 | return last_sig; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 933 | } |
| 934 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 935 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 936 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 937 | /* Restores tty foreground process group, and exits. |
| 938 | * May be called as signal handler for fatal signal |
| 939 | * (will faithfully resend signal to itself, producing correct exit state) |
| 940 | * or called directly with -EXITCODE. |
| 941 | * We also call it if xfunc is exiting. */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 942 | static void sigexit(int sig) NORETURN; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 943 | static void sigexit(int sig) |
| 944 | { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 945 | /* Disable all signals: job control, SIGPIPE, etc. */ |
Denis Vlasenko | 3f165fa | 2008-03-17 08:29:08 +0000 | [diff] [blame] | 946 | sigprocmask_allsigs(SIG_BLOCK); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 947 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 948 | /* Careful: we can end up here after [v]fork. Do not restore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 949 | * tty pgrp then, only top-level shell process does that */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 950 | if (G_interactive_fd && getpid() == G.root_pid) |
| 951 | tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 952 | |
| 953 | /* Not a signal, just exit */ |
| 954 | if (sig <= 0) |
| 955 | _exit(- sig); |
| 956 | |
Denis Vlasenko | 400d8bb | 2008-02-24 13:36:01 +0000 | [diff] [blame] | 957 | kill_myself_with_sig(sig); /* does not return */ |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 958 | } |
| 959 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 960 | /* helper */ |
| 961 | static void maybe_set_sighandler(int sig) |
| 962 | { |
| 963 | void (*handler)(int); |
| 964 | /* non_DFL_mask'ed signals are, well, masked, |
| 965 | * no need to set handler for them. |
| 966 | */ |
| 967 | if (!((G.non_DFL_mask >> sig) & 1)) { |
| 968 | handler = signal(sig, sigexit); |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 969 | if (handler == SIG_IGN) /* oops... restore back to IGN! */ |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 970 | signal(sig, handler); |
| 971 | } |
| 972 | } |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 973 | /* Used only to set handler to restore pgrp on exit */ |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 974 | static void set_fatal_signals_to_sigexit(void) |
| 975 | { |
| 976 | if (HUSH_DEBUG) { |
| 977 | maybe_set_sighandler(SIGILL ); |
| 978 | maybe_set_sighandler(SIGFPE ); |
| 979 | maybe_set_sighandler(SIGBUS ); |
| 980 | maybe_set_sighandler(SIGSEGV); |
| 981 | maybe_set_sighandler(SIGTRAP); |
| 982 | } /* else: hush is perfect. what SEGV? */ |
| 983 | |
| 984 | maybe_set_sighandler(SIGABRT); |
| 985 | |
| 986 | /* bash 3.2 seems to handle these just like 'fatal' ones */ |
| 987 | maybe_set_sighandler(SIGPIPE); |
| 988 | maybe_set_sighandler(SIGALRM); |
| 989 | maybe_set_sighandler(SIGHUP ); |
| 990 | |
| 991 | /* if we aren't interactive... but in this case |
| 992 | * we never want to restore pgrp on exit, and this fn is not called */ |
| 993 | /*maybe_set_sighandler(SIGTERM);*/ |
| 994 | /*maybe_set_sighandler(SIGINT );*/ |
| 995 | } |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 996 | |
Denis Vlasenko | ef36ead | 2007-05-02 15:34:47 +0000 | [diff] [blame] | 997 | #else /* !JOB */ |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 998 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 999 | #define set_fatal_signals_to_sigexit(handler) ((void)0) |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1000 | |
Denis Vlasenko | e0755e5 | 2009-04-03 21:16:45 +0000 | [diff] [blame] | 1001 | #endif |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1002 | |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1003 | /* Restores tty foreground process group, and exits. */ |
| 1004 | static void hush_exit(int exitcode) NORETURN; |
| 1005 | static void hush_exit(int exitcode) |
| 1006 | { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 1007 | if (G.traps && G.traps[0] && G.traps[0][0]) { |
| 1008 | char *argv[] = { NULL, xstrdup(G.traps[0]), NULL }; |
| 1009 | builtin_eval(argv); |
| 1010 | free(argv[1]); |
| 1011 | } |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1012 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 1013 | #if ENABLE_HUSH_JOB |
| 1014 | fflush(NULL); /* flush all streams */ |
| 1015 | sigexit(- (exitcode & 0xff)); |
| 1016 | #else |
| 1017 | exit(exitcode); |
| 1018 | #endif |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 1019 | } |
| 1020 | |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 1021 | |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1022 | static const char *set_cwd(void) |
| 1023 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1024 | /* xrealloc_getcwd_or_warn(arg) calls free(arg), |
| 1025 | * we must not try to free(bb_msg_unknown) */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 1026 | if (G.cwd == bb_msg_unknown) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1027 | G.cwd = NULL; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 1028 | G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd); |
| 1029 | if (!G.cwd) |
| 1030 | G.cwd = bb_msg_unknown; |
| 1031 | return G.cwd; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 1032 | } |
| 1033 | |
Denis Vlasenko | 8350686 | 2007-11-23 13:11:42 +0000 | [diff] [blame] | 1034 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1035 | /* Get/check local shell variables */ |
| 1036 | static struct variable *get_local_var(const char *name) |
| 1037 | { |
| 1038 | struct variable *cur; |
| 1039 | int len; |
| 1040 | |
| 1041 | if (!name) |
| 1042 | return NULL; |
| 1043 | len = strlen(name); |
| 1044 | for (cur = G.top_var; cur; cur = cur->next) { |
| 1045 | if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=') |
| 1046 | return cur; |
| 1047 | } |
| 1048 | return NULL; |
| 1049 | } |
| 1050 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 1051 | static const char *get_local_var_value(const char *src) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1052 | { |
| 1053 | struct variable *var = get_local_var(src); |
| 1054 | if (var) |
| 1055 | return strchr(var->varstr, '=') + 1; |
| 1056 | return NULL; |
| 1057 | } |
| 1058 | |
| 1059 | /* str holds "NAME=VAL" and is expected to be malloced. |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1060 | * We take ownership of it. |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1061 | * flg_export: |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1062 | * 0: do not export |
| 1063 | * 1: export |
| 1064 | * -1: if NAME is set, leave export status alone |
| 1065 | * if NAME is not set, do not export |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1066 | * flg_read_only is set only when we handle -R var=val |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1067 | */ |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1068 | #if BB_MMU |
| 1069 | #define set_local_var(str, flg_export, flg_read_only) \ |
| 1070 | set_local_var(str, flg_export) |
| 1071 | #endif |
| 1072 | static int set_local_var(char *str, int flg_export, int flg_read_only) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1073 | { |
| 1074 | struct variable *cur; |
| 1075 | char *value; |
| 1076 | int name_len; |
| 1077 | |
| 1078 | value = strchr(str, '='); |
| 1079 | if (!value) { /* not expected to ever happen? */ |
| 1080 | free(str); |
| 1081 | return -1; |
| 1082 | } |
| 1083 | |
| 1084 | name_len = value - str + 1; /* including '=' */ |
| 1085 | cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */ |
| 1086 | while (1) { |
| 1087 | if (strncmp(cur->varstr, str, name_len) != 0) { |
| 1088 | if (!cur->next) { |
| 1089 | /* Bail out. Note that now cur points |
| 1090 | * to last var in linked list */ |
| 1091 | break; |
| 1092 | } |
| 1093 | cur = cur->next; |
| 1094 | continue; |
| 1095 | } |
| 1096 | /* We found an existing var with this name */ |
| 1097 | *value = '\0'; |
| 1098 | if (cur->flg_read_only) { |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1099 | #if !BB_MMU |
| 1100 | if (!flg_read_only) |
| 1101 | #endif |
| 1102 | bb_error_msg("%s: readonly variable", str); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1103 | free(str); |
| 1104 | return -1; |
| 1105 | } |
| 1106 | debug_printf_env("%s: unsetenv '%s'\n", __func__, str); |
| 1107 | unsetenv(str); /* just in case */ |
| 1108 | *value = '='; |
| 1109 | if (strcmp(cur->varstr, str) == 0) { |
| 1110 | free_and_exp: |
| 1111 | free(str); |
| 1112 | goto exp; |
| 1113 | } |
| 1114 | if (cur->max_len >= strlen(str)) { |
| 1115 | /* This one is from startup env, reuse space */ |
| 1116 | strcpy(cur->varstr, str); |
| 1117 | goto free_and_exp; |
| 1118 | } |
| 1119 | /* max_len == 0 signifies "malloced" var, which we can |
| 1120 | * (and has to) free */ |
| 1121 | if (!cur->max_len) |
| 1122 | free(cur->varstr); |
| 1123 | cur->max_len = 0; |
| 1124 | goto set_str_and_exp; |
| 1125 | } |
| 1126 | |
| 1127 | /* Not found - create next variable struct */ |
| 1128 | cur->next = xzalloc(sizeof(*cur)); |
| 1129 | cur = cur->next; |
| 1130 | |
| 1131 | set_str_and_exp: |
| 1132 | cur->varstr = str; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 1133 | #if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1134 | cur->flg_read_only = flg_read_only; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 1135 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1136 | exp: |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1137 | if (flg_export == 1) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1138 | cur->flg_export = 1; |
| 1139 | if (cur->flg_export) { |
| 1140 | debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr); |
| 1141 | return putenv(cur->varstr); |
| 1142 | } |
| 1143 | return 0; |
| 1144 | } |
| 1145 | |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1146 | static int unset_local_var(const char *name) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1147 | { |
| 1148 | struct variable *cur; |
| 1149 | struct variable *prev = prev; /* for gcc */ |
| 1150 | int name_len; |
| 1151 | |
| 1152 | if (!name) |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1153 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1154 | name_len = strlen(name); |
| 1155 | cur = G.top_var; |
| 1156 | while (cur) { |
| 1157 | if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') { |
| 1158 | if (cur->flg_read_only) { |
| 1159 | bb_error_msg("%s: readonly variable", name); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1160 | return EXIT_FAILURE; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1161 | } |
| 1162 | /* prev is ok to use here because 1st variable, HUSH_VERSION, |
| 1163 | * is ro, and we cannot reach this code on the 1st pass */ |
| 1164 | prev->next = cur->next; |
| 1165 | debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr); |
| 1166 | bb_unsetenv(cur->varstr); |
| 1167 | if (!cur->max_len) |
| 1168 | free(cur->varstr); |
| 1169 | free(cur); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1170 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1171 | } |
| 1172 | prev = cur; |
| 1173 | cur = cur->next; |
| 1174 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1175 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1176 | } |
| 1177 | |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1178 | #if ENABLE_SH_MATH_SUPPORT |
| 1179 | #define is_name(c) ((c) == '_' || isalpha((unsigned char)(c))) |
| 1180 | #define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c))) |
| 1181 | static char *endofname(const char *name) |
| 1182 | { |
| 1183 | char *p; |
| 1184 | |
| 1185 | p = (char *) name; |
| 1186 | if (!is_name(*p)) |
| 1187 | return p; |
| 1188 | while (*++p) { |
| 1189 | if (!is_in_name(*p)) |
| 1190 | break; |
| 1191 | } |
| 1192 | return p; |
| 1193 | } |
| 1194 | |
| 1195 | static void arith_set_local_var(const char *name, const char *val, int flags) |
| 1196 | { |
| 1197 | /* arith code doesnt malloc space, so do it for it */ |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1198 | char *var = xasprintf("%s=%s", name, val); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1199 | set_local_var(var, flags, 0); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1200 | } |
| 1201 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1202 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1203 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1204 | /* |
| 1205 | * in_str support |
| 1206 | */ |
| 1207 | static int static_get(struct in_str *i) |
| 1208 | { |
| 1209 | int ch = *i->p++; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 1210 | if (ch != '\0') |
| 1211 | return ch; |
| 1212 | i->p--; |
| 1213 | return EOF; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1214 | } |
| 1215 | |
| 1216 | static int static_peek(struct in_str *i) |
| 1217 | { |
| 1218 | return *i->p; |
| 1219 | } |
| 1220 | |
| 1221 | #if ENABLE_HUSH_INTERACTIVE |
| 1222 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1223 | static void cmdedit_set_initial_prompt(void) |
| 1224 | { |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1225 | if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 1226 | G.PS1 = getenv("PS1"); |
| 1227 | if (G.PS1 == NULL) |
| 1228 | G.PS1 = "\\w \\$ "; |
| 1229 | } else |
| 1230 | G.PS1 = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1231 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1232 | |
| 1233 | static const char* setup_prompt_string(int promptmode) |
| 1234 | { |
| 1235 | const char *prompt_str; |
| 1236 | debug_printf("setup_prompt_string %d ", promptmode); |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1237 | if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 1238 | /* Set up the prompt */ |
| 1239 | if (promptmode == 0) { /* PS1 */ |
| 1240 | free((char*)G.PS1); |
| 1241 | G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#'); |
| 1242 | prompt_str = G.PS1; |
| 1243 | } else |
| 1244 | prompt_str = G.PS2; |
| 1245 | } else |
| 1246 | prompt_str = (promptmode == 0) ? G.PS1 : G.PS2; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1247 | debug_printf("result '%s'\n", prompt_str); |
| 1248 | return prompt_str; |
| 1249 | } |
| 1250 | |
| 1251 | static void get_user_input(struct in_str *i) |
| 1252 | { |
| 1253 | int r; |
| 1254 | const char *prompt_str; |
| 1255 | |
| 1256 | prompt_str = setup_prompt_string(i->promptmode); |
| 1257 | #if ENABLE_FEATURE_EDITING |
| 1258 | /* Enable command line editing only while a command line |
| 1259 | * is actually being read */ |
| 1260 | do { |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1261 | G.flag_SIGINT = 0; |
| 1262 | /* buglet: SIGINT will not make new prompt to appear _at once_, |
| 1263 | * only after <Enter>. (^C will work) */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1264 | 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] | 1265 | /* catch *SIGINT* etc (^C is handled by read_line_input) */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1266 | check_and_run_traps(0); |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1267 | } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1268 | i->eof_flag = (r < 0); |
| 1269 | if (i->eof_flag) { /* EOF/error detected */ |
| 1270 | G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */ |
| 1271 | G.user_input_buf[1] = '\0'; |
| 1272 | } |
| 1273 | #else |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1274 | do { |
| 1275 | G.flag_SIGINT = 0; |
| 1276 | fputs(prompt_str, stdout); |
| 1277 | fflush(stdout); |
| 1278 | G.user_input_buf[0] = r = fgetc(i->file); |
| 1279 | /*G.user_input_buf[1] = '\0'; - already is and never changed */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1280 | //do we need check_and_run_traps(0)? (maybe only if stdin) |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1281 | } while (G.flag_SIGINT); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1282 | i->eof_flag = (r == EOF); |
| 1283 | #endif |
| 1284 | i->p = G.user_input_buf; |
| 1285 | } |
| 1286 | |
| 1287 | #endif /* INTERACTIVE */ |
| 1288 | |
| 1289 | /* This is the magic location that prints prompts |
| 1290 | * and gets data back from the user */ |
| 1291 | static int file_get(struct in_str *i) |
| 1292 | { |
| 1293 | int ch; |
| 1294 | |
| 1295 | /* If there is data waiting, eat it up */ |
| 1296 | if (i->p && *i->p) { |
| 1297 | #if ENABLE_HUSH_INTERACTIVE |
| 1298 | take_cached: |
| 1299 | #endif |
| 1300 | ch = *i->p++; |
| 1301 | if (i->eof_flag && !*i->p) |
| 1302 | ch = EOF; |
| 1303 | } else { |
| 1304 | /* need to double check i->file because we might be doing something |
| 1305 | * more complicated by now, like sourcing or substituting. */ |
| 1306 | #if ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 1307 | if (G_interactive_fd && i->promptme && i->file == stdin) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1308 | do { |
| 1309 | get_user_input(i); |
| 1310 | } while (!*i->p); /* need non-empty line */ |
| 1311 | i->promptmode = 1; /* PS2 */ |
| 1312 | i->promptme = 0; |
| 1313 | goto take_cached; |
| 1314 | } |
| 1315 | #endif |
| 1316 | ch = fgetc(i->file); |
| 1317 | } |
| 1318 | debug_printf("file_get: got a '%c' %d\n", ch, ch); |
| 1319 | #if ENABLE_HUSH_INTERACTIVE |
| 1320 | if (ch == '\n') |
| 1321 | i->promptme = 1; |
| 1322 | #endif |
| 1323 | return ch; |
| 1324 | } |
| 1325 | |
| 1326 | /* All the callers guarantee this routine will never be |
| 1327 | * used right after a newline, so prompting is not needed. |
| 1328 | */ |
| 1329 | static int file_peek(struct in_str *i) |
| 1330 | { |
| 1331 | int ch; |
| 1332 | if (i->p && *i->p) { |
| 1333 | if (i->eof_flag && !i->p[1]) |
| 1334 | return EOF; |
| 1335 | return *i->p; |
| 1336 | } |
| 1337 | ch = fgetc(i->file); |
| 1338 | i->eof_flag = (ch == EOF); |
| 1339 | i->peek_buf[0] = ch; |
| 1340 | i->peek_buf[1] = '\0'; |
| 1341 | i->p = i->peek_buf; |
| 1342 | debug_printf("file_peek: got a '%c' %d\n", *i->p, *i->p); |
| 1343 | return ch; |
| 1344 | } |
| 1345 | |
| 1346 | static void setup_file_in_str(struct in_str *i, FILE *f) |
| 1347 | { |
| 1348 | i->peek = file_peek; |
| 1349 | i->get = file_get; |
| 1350 | #if ENABLE_HUSH_INTERACTIVE |
| 1351 | i->promptme = 1; |
| 1352 | i->promptmode = 0; /* PS1 */ |
| 1353 | #endif |
| 1354 | i->file = f; |
| 1355 | i->p = NULL; |
| 1356 | } |
| 1357 | |
| 1358 | static void setup_string_in_str(struct in_str *i, const char *s) |
| 1359 | { |
| 1360 | i->peek = static_peek; |
| 1361 | i->get = static_get; |
| 1362 | #if ENABLE_HUSH_INTERACTIVE |
| 1363 | i->promptme = 1; |
| 1364 | i->promptmode = 0; /* PS1 */ |
| 1365 | #endif |
| 1366 | i->p = s; |
| 1367 | i->eof_flag = 0; |
| 1368 | } |
| 1369 | |
| 1370 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1371 | /* |
| 1372 | * o_string support |
| 1373 | */ |
| 1374 | #define B_CHUNK (32 * sizeof(char*)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1375 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1376 | static void o_reset(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1377 | { |
| 1378 | o->length = 0; |
| 1379 | o->nonnull = 0; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1380 | if (o->data) |
| 1381 | o->data[0] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1382 | } |
| 1383 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1384 | static void o_free(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1385 | { |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 1386 | free(o->data); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1387 | memset(o, 0, sizeof(*o)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1388 | } |
| 1389 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1390 | static ALWAYS_INLINE void o_free_unsafe(o_string *o) |
| 1391 | { |
| 1392 | free(o->data); |
| 1393 | } |
| 1394 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1395 | static void o_grow_by(o_string *o, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1396 | { |
| 1397 | if (o->length + len > o->maxlen) { |
| 1398 | o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK); |
| 1399 | o->data = xrealloc(o->data, 1 + o->maxlen); |
| 1400 | } |
| 1401 | } |
| 1402 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1403 | static void o_addchr(o_string *o, int ch) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1404 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1405 | debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o); |
| 1406 | o_grow_by(o, 1); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1407 | o->data[o->length] = ch; |
| 1408 | o->length++; |
| 1409 | o->data[o->length] = '\0'; |
| 1410 | } |
| 1411 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1412 | static void o_addblock(o_string *o, const char *str, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1413 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1414 | o_grow_by(o, len); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1415 | memcpy(&o->data[o->length], str, len); |
| 1416 | o->length += len; |
| 1417 | o->data[o->length] = '\0'; |
| 1418 | } |
| 1419 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1420 | #if !BB_MMU |
| 1421 | static void o_addstr(o_string *o, const char *str) |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1422 | { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1423 | o_addblock(o, str, strlen(str)); |
| 1424 | } |
| 1425 | #endif |
| 1426 | |
| 1427 | static void o_addstr_with_NUL(o_string *o, const char *str) |
| 1428 | { |
| 1429 | o_addblock(o, str, strlen(str) + 1); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1430 | } |
| 1431 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1432 | static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len) |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1433 | { |
| 1434 | while (len) { |
| 1435 | o_addchr(o, *str); |
| 1436 | if (*str++ == '\\' |
| 1437 | && (*str != '*' && *str != '?' && *str != '[') |
| 1438 | ) { |
| 1439 | o_addchr(o, '\\'); |
| 1440 | } |
| 1441 | len--; |
| 1442 | } |
| 1443 | } |
| 1444 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1445 | /* My analysis of quoting semantics tells me that state information |
| 1446 | * is associated with a destination, not a source. |
| 1447 | */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1448 | static void o_addqchr(o_string *o, int ch) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1449 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1450 | int sz = 1; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 1451 | char *found = strchr("*?[\\", ch); |
| 1452 | if (found) |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1453 | sz++; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 1454 | o_grow_by(o, sz); |
| 1455 | if (found) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1456 | o->data[o->length] = '\\'; |
| 1457 | o->length++; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1458 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1459 | o->data[o->length] = ch; |
| 1460 | o->length++; |
| 1461 | o->data[o->length] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1462 | } |
| 1463 | |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1464 | static void o_addQchr(o_string *o, int ch) |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1465 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1466 | int sz = 1; |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1467 | if (o->o_escape && strchr("*?[\\", ch)) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1468 | sz++; |
| 1469 | o->data[o->length] = '\\'; |
| 1470 | o->length++; |
| 1471 | } |
| 1472 | o_grow_by(o, sz); |
| 1473 | o->data[o->length] = ch; |
| 1474 | o->length++; |
| 1475 | o->data[o->length] = '\0'; |
| 1476 | } |
| 1477 | |
| 1478 | static void o_addQstr(o_string *o, const char *str, int len) |
| 1479 | { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1480 | if (!o->o_escape) { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1481 | o_addblock(o, str, len); |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1482 | return; |
| 1483 | } |
| 1484 | while (len) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1485 | char ch; |
| 1486 | int sz; |
| 1487 | int ordinary_cnt = strcspn(str, "*?[\\"); |
| 1488 | if (ordinary_cnt > len) /* paranoia */ |
| 1489 | ordinary_cnt = len; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1490 | o_addblock(o, str, ordinary_cnt); |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1491 | if (ordinary_cnt == len) |
| 1492 | return; |
| 1493 | str += ordinary_cnt; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1494 | len -= ordinary_cnt + 1; /* we are processing + 1 char below */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1495 | |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1496 | ch = *str++; |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1497 | sz = 1; |
| 1498 | if (ch) { /* it is necessarily one of "*?[\\" */ |
| 1499 | sz++; |
| 1500 | o->data[o->length] = '\\'; |
| 1501 | o->length++; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1502 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1503 | o_grow_by(o, sz); |
| 1504 | o->data[o->length] = ch; |
| 1505 | o->length++; |
| 1506 | o->data[o->length] = '\0'; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1507 | } |
| 1508 | } |
| 1509 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1510 | /* A special kind of o_string for $VAR and `cmd` expansion. |
| 1511 | * 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] | 1512 | * increments. Actual string data starts at the next multiple of 16 * (char*). |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1513 | * list[i] contains an INDEX (int!) into this string data. |
| 1514 | * It means that if list[] needs to grow, data needs to be moved higher up |
| 1515 | * but list[i]'s need not be modified. |
| 1516 | * NB: remembering how many list[i]'s you have there is crucial. |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1517 | * o_finalize_list() operation post-processes this structure - calculates |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1518 | * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well. |
| 1519 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1520 | #if DEBUG_EXPAND || DEBUG_GLOB |
| 1521 | static void debug_print_list(const char *prefix, o_string *o, int n) |
| 1522 | { |
| 1523 | char **list = (char**)o->data; |
| 1524 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1525 | int i = 0; |
| 1526 | fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n", |
| 1527 | prefix, list, n, string_start, o->length, o->maxlen); |
| 1528 | while (i < n) { |
| 1529 | fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i], |
| 1530 | o->data + (int)list[i] + string_start, |
| 1531 | o->data + (int)list[i] + string_start); |
| 1532 | i++; |
| 1533 | } |
| 1534 | if (n) { |
| 1535 | const char *p = o->data + (int)list[n - 1] + string_start; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1536 | 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] | 1537 | } |
| 1538 | } |
| 1539 | #else |
| 1540 | #define debug_print_list(prefix, o, n) ((void)0) |
| 1541 | #endif |
| 1542 | |
| 1543 | /* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value |
| 1544 | * in list[n] so that it points past last stored byte so far. |
| 1545 | * It returns n+1. */ |
| 1546 | static int o_save_ptr_helper(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1547 | { |
| 1548 | char **list = (char**)o->data; |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1549 | int string_start; |
| 1550 | int string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1551 | |
| 1552 | if (!o->has_empty_slot) { |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1553 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1554 | string_len = o->length - string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1555 | if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */ |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1556 | 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] | 1557 | /* list[n] points to string_start, make space for 16 more pointers */ |
| 1558 | o->maxlen += 0x10 * sizeof(list[0]); |
| 1559 | o->data = xrealloc(o->data, o->maxlen + 1); |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 1560 | list = (char**)o->data; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1561 | memmove(list + n + 0x10, list + n, string_len); |
| 1562 | o->length += 0x10 * sizeof(list[0]); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 1563 | } else { |
| 1564 | debug_printf_list("list[%d]=%d string_start=%d\n", |
| 1565 | n, string_len, string_start); |
| 1566 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1567 | } else { |
| 1568 | /* We have empty slot at list[n], reuse without growth */ |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1569 | string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */ |
| 1570 | string_len = o->length - string_start; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 1571 | debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n", |
| 1572 | n, string_len, string_start); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1573 | o->has_empty_slot = 0; |
| 1574 | } |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1575 | list[n] = (char*)(ptrdiff_t)string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1576 | return n + 1; |
| 1577 | } |
| 1578 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1579 | /* "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] | 1580 | static int o_get_last_ptr(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1581 | { |
| 1582 | char **list = (char**)o->data; |
| 1583 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1584 | |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1585 | return ((int)(ptrdiff_t)list[n-1]) + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1586 | } |
| 1587 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1588 | /* o_glob performs globbing on last list[], saving each result |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1589 | * as a new list[]. */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1590 | static int o_glob(o_string *o, int n) |
| 1591 | { |
| 1592 | glob_t globdata; |
| 1593 | int gr; |
| 1594 | char *pattern; |
| 1595 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1596 | 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] | 1597 | if (!o->data) |
| 1598 | return o_save_ptr_helper(o, n); |
| 1599 | pattern = o->data + o_get_last_ptr(o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1600 | debug_printf_glob("glob pattern '%s'\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1601 | if (!glob_needed(pattern)) { |
| 1602 | literal: |
| 1603 | o->length = unbackslash(pattern) - o->data; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1604 | debug_printf_glob("glob pattern '%s' is literal\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1605 | return o_save_ptr_helper(o, n); |
| 1606 | } |
| 1607 | |
| 1608 | memset(&globdata, 0, sizeof(globdata)); |
| 1609 | gr = glob(pattern, 0, NULL, &globdata); |
| 1610 | debug_printf_glob("glob('%s'):%d\n", pattern, gr); |
| 1611 | if (gr == GLOB_NOSPACE) |
| 1612 | bb_error_msg_and_die("out of memory during glob"); |
| 1613 | if (gr == GLOB_NOMATCH) { |
| 1614 | globfree(&globdata); |
| 1615 | goto literal; |
| 1616 | } |
| 1617 | if (gr != 0) { /* GLOB_ABORTED ? */ |
| 1618 | //TODO: testcase for bad glob pattern behavior |
| 1619 | bb_error_msg("glob(3) error %d on '%s'", gr, pattern); |
| 1620 | } |
| 1621 | if (globdata.gl_pathv && globdata.gl_pathv[0]) { |
| 1622 | char **argv = globdata.gl_pathv; |
| 1623 | o->length = pattern - o->data; /* "forget" pattern */ |
| 1624 | while (1) { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1625 | o_addstr_with_NUL(o, *argv); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1626 | n = o_save_ptr_helper(o, n); |
| 1627 | argv++; |
| 1628 | if (!*argv) |
| 1629 | break; |
| 1630 | } |
| 1631 | } |
| 1632 | globfree(&globdata); |
| 1633 | if (DEBUG_GLOB) |
| 1634 | debug_print_list("o_glob returning", o, n); |
| 1635 | return n; |
| 1636 | } |
| 1637 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1638 | /* If o->o_glob == 1, glob the string so far remembered. |
| 1639 | * Otherwise, just finish current list[] and start new */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1640 | static int o_save_ptr(o_string *o, int n) |
| 1641 | { |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 1642 | if (o->o_glob) { /* if globbing is requested */ |
| 1643 | /* If o->has_empty_slot, list[n] was already globbed |
| 1644 | * (if it was requested back then when it was filled) |
| 1645 | * so don't do that again! */ |
| 1646 | if (!o->has_empty_slot) |
| 1647 | return o_glob(o, n); /* o_save_ptr_helper is inside */ |
| 1648 | } |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1649 | return o_save_ptr_helper(o, n); |
| 1650 | } |
| 1651 | |
| 1652 | /* "Please convert list[n] to real char* ptrs, and NULL terminate it." */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1653 | static char **o_finalize_list(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1654 | { |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1655 | char **list; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1656 | int string_start; |
| 1657 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1658 | n = o_save_ptr(o, n); /* force growth for list[n] if necessary */ |
| 1659 | if (DEBUG_EXPAND) |
| 1660 | debug_print_list("finalized", o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1661 | debug_printf_expand("finalized n:%d\n", n); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1662 | list = (char**)o->data; |
| 1663 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1664 | list[--n] = NULL; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1665 | while (n) { |
| 1666 | n--; |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1667 | list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1668 | } |
| 1669 | return list; |
| 1670 | } |
| 1671 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1672 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1673 | /* Expansion can recurse */ |
| 1674 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 1675 | static int process_command_subs(o_string *dest, const char *s); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1676 | #endif |
| 1677 | static char *expand_string_to_string(const char *str); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1678 | #if BB_MMU |
| 1679 | #define parse_stream_dquoted(ctx, dest, input, dquote_end) \ |
| 1680 | parse_stream_dquoted(dest, input, dquote_end) |
| 1681 | #endif |
| 1682 | static int parse_stream_dquoted(struct parse_context *ctx, |
| 1683 | o_string *dest, |
| 1684 | struct in_str *input, |
| 1685 | int dquote_end); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1686 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1687 | /* expand_strvec_to_strvec() takes a list of strings, expands |
| 1688 | * all variable references within and returns a pointer to |
| 1689 | * a list of expanded strings, possibly with larger number |
| 1690 | * of strings. (Think VAR="a b"; echo $VAR). |
| 1691 | * This new list is allocated as a single malloc block. |
| 1692 | * NULL-terminated list of char* pointers is at the beginning of it, |
| 1693 | * followed by strings themself. |
| 1694 | * Caller can deallocate entire list by single free(list). */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1695 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1696 | /* Store given string, finalizing the word and starting new one whenever |
| 1697 | * we encounter IFS char(s). This is used for expanding variable values. |
| 1698 | * End-of-string does NOT finalize word: think about 'echo -$VAR-' */ |
| 1699 | 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] | 1700 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1701 | while (1) { |
| 1702 | int word_len = strcspn(str, G.ifs); |
| 1703 | if (word_len) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1704 | if (output->o_escape || !output->o_glob) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1705 | o_addQstr(output, str, word_len); |
| 1706 | else /* protect backslashes against globbing up :) */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1707 | o_addblock_duplicate_backslash(output, str, word_len); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1708 | str += word_len; |
| 1709 | } |
| 1710 | if (!*str) /* EOL - do not finalize word */ |
| 1711 | break; |
| 1712 | o_addchr(output, '\0'); |
| 1713 | debug_print_list("expand_on_ifs", output, n); |
| 1714 | n = o_save_ptr(output, n); |
| 1715 | str += strspn(str, G.ifs); /* skip ifs chars */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1716 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1717 | debug_print_list("expand_on_ifs[1]", output, n); |
| 1718 | return n; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1719 | } |
| 1720 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1721 | /* Expand all variable references in given string, adding words to list[] |
| 1722 | * at n, n+1,... positions. Return updated n (so that list[n] is next one |
| 1723 | * to be filled). This routine is extremely tricky: has to deal with |
| 1724 | * variables/parameters with whitespace, $* and $@, and constructs like |
| 1725 | * 'echo -$*-'. If you play here, you must run testsuite afterwards! */ |
| 1726 | 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] | 1727 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1728 | /* or_mask is either 0 (normal case) or 0x80 |
| 1729 | * (expansion of right-hand side of assignment == 1-element expand. |
| 1730 | * 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] | 1731 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1732 | char first_ch, ored_ch; |
| 1733 | int i; |
| 1734 | const char *val; |
| 1735 | char *p; |
| 1736 | |
| 1737 | ored_ch = 0; |
| 1738 | |
| 1739 | debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg); |
| 1740 | debug_print_list("expand_vars_to_list", output, n); |
| 1741 | n = o_save_ptr(output, n); |
| 1742 | debug_print_list("expand_vars_to_list[0]", output, n); |
| 1743 | |
| 1744 | while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) { |
| 1745 | #if ENABLE_HUSH_TICK |
| 1746 | o_string subst_result = NULL_O_STRING; |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 1747 | #endif |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1748 | #if ENABLE_SH_MATH_SUPPORT |
| 1749 | char arith_buf[sizeof(arith_t)*3 + 2]; |
| 1750 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1751 | o_addblock(output, arg, p - arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1752 | debug_print_list("expand_vars_to_list[1]", output, n); |
| 1753 | arg = ++p; |
| 1754 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 1755 | |
| 1756 | first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */ |
| 1757 | /* "$@" is special. Even if quoted, it can still |
| 1758 | * expand to nothing (not even an empty string) */ |
| 1759 | if ((first_ch & 0x7f) != '@') |
| 1760 | ored_ch |= first_ch; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1761 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1762 | val = NULL; |
| 1763 | switch (first_ch & 0x7f) { |
| 1764 | /* Highest bit in first_ch indicates that var is double-quoted */ |
| 1765 | case '$': /* pid */ |
| 1766 | val = utoa(G.root_pid); |
| 1767 | break; |
| 1768 | case '!': /* bg pid */ |
| 1769 | val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)""; |
| 1770 | break; |
| 1771 | case '?': /* exitcode */ |
| 1772 | val = utoa(G.last_return_code); |
| 1773 | break; |
| 1774 | case '#': /* argc */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1775 | if (arg[1] != SPECIAL_VAR_SYMBOL) |
| 1776 | /* actually, it's a ${#var} */ |
| 1777 | goto case_default; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1778 | val = utoa(G.global_argc ? G.global_argc-1 : 0); |
| 1779 | break; |
| 1780 | case '*': |
| 1781 | case '@': |
| 1782 | i = 1; |
| 1783 | if (!G.global_argv[i]) |
| 1784 | break; |
| 1785 | ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */ |
| 1786 | if (!(first_ch & 0x80)) { /* unquoted $* or $@ */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1787 | smallint sv = output->o_escape; |
| 1788 | /* unquoted var's contents should be globbed, so don't escape */ |
| 1789 | output->o_escape = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1790 | while (G.global_argv[i]) { |
| 1791 | n = expand_on_ifs(output, n, G.global_argv[i]); |
| 1792 | debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1); |
| 1793 | if (G.global_argv[i++][0] && G.global_argv[i]) { |
| 1794 | /* this argv[] is not empty and not last: |
| 1795 | * put terminating NUL, start new word */ |
| 1796 | o_addchr(output, '\0'); |
| 1797 | debug_print_list("expand_vars_to_list[2]", output, n); |
| 1798 | n = o_save_ptr(output, n); |
| 1799 | debug_print_list("expand_vars_to_list[3]", output, n); |
| 1800 | } |
| 1801 | } |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1802 | output->o_escape = sv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1803 | } else |
| 1804 | /* If or_mask is nonzero, we handle assignment 'a=....$@.....' |
| 1805 | * and in this case should treat it like '$*' - see 'else...' below */ |
| 1806 | if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */ |
| 1807 | while (1) { |
| 1808 | o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i])); |
| 1809 | if (++i >= G.global_argc) |
| 1810 | break; |
| 1811 | o_addchr(output, '\0'); |
| 1812 | debug_print_list("expand_vars_to_list[4]", output, n); |
| 1813 | n = o_save_ptr(output, n); |
| 1814 | } |
| 1815 | } else { /* quoted $*: add as one word */ |
| 1816 | while (1) { |
| 1817 | o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i])); |
| 1818 | if (!G.global_argv[++i]) |
| 1819 | break; |
| 1820 | if (G.ifs[0]) |
| 1821 | o_addchr(output, G.ifs[0]); |
| 1822 | } |
| 1823 | } |
| 1824 | break; |
| 1825 | case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */ |
| 1826 | /* "Empty variable", used to make "" etc to not disappear */ |
| 1827 | arg++; |
| 1828 | ored_ch = 0x80; |
| 1829 | break; |
| 1830 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 1831 | case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1832 | *p = '\0'; |
| 1833 | arg++; |
| 1834 | //TODO: can we just stuff it into "output" directly? |
| 1835 | debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 1836 | process_command_subs(&subst_result, arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1837 | debug_printf_subst("SUBST RES '%s'\n", subst_result.data); |
| 1838 | val = subst_result.data; |
| 1839 | goto store_val; |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 1840 | #endif |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1841 | #if ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1842 | case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */ |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1843 | arith_eval_hooks_t hooks; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1844 | arith_t res; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1845 | int errcode; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1846 | char *exp_str; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1847 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1848 | arg++; /* skip '+' */ |
| 1849 | *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */ |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1850 | debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1851 | |
| 1852 | /* Optional: skip expansion if expr is simple ("a + 3", "i++" etc) */ |
| 1853 | exp_str = arg; |
| 1854 | while (1) { |
| 1855 | unsigned char c = *exp_str++; |
| 1856 | if (c == '\0') { |
| 1857 | exp_str = NULL; |
| 1858 | goto skip_expand; |
| 1859 | } |
| 1860 | if (isdigit(c)) |
| 1861 | continue; |
| 1862 | if (strchr(" \t+-*/%_", c) != NULL) |
| 1863 | continue; |
| 1864 | c |= 0x20; /* tolower */ |
| 1865 | if (c >= 'a' && c <= 'z') |
| 1866 | continue; |
| 1867 | break; |
| 1868 | } |
| 1869 | /* We need to expand. Example: "echo $(($a + 1)) $((1 + $((2)) ))" */ |
| 1870 | { |
| 1871 | struct in_str input; |
| 1872 | o_string dest = NULL_O_STRING; |
| 1873 | |
| 1874 | setup_string_in_str(&input, arg); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1875 | parse_stream_dquoted(NULL, &dest, &input, EOF); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1876 | //bb_error_msg("'%s' -> '%s'", arg, dest.data); |
| 1877 | exp_str = expand_string_to_string(dest.data); |
| 1878 | //bb_error_msg("'%s' -> '%s'", dest.data, exp_str); |
| 1879 | o_free(&dest); |
| 1880 | } |
| 1881 | skip_expand: |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 1882 | hooks.lookupvar = get_local_var_value; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1883 | hooks.setvar = arith_set_local_var; |
| 1884 | hooks.endofname = endofname; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1885 | res = arith(exp_str ? exp_str : arg, &errcode, &hooks); |
| 1886 | free(exp_str); |
| 1887 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1888 | if (errcode < 0) { |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1889 | switch (errcode) { |
| 1890 | case -3: maybe_die("arith", "exponent less than 0"); break; |
| 1891 | case -2: maybe_die("arith", "divide by zero"); break; |
| 1892 | case -5: maybe_die("arith", "expression recursion loop detected"); break; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1893 | default: maybe_die("arith", "syntax error"); break; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1894 | } |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1895 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1896 | debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1897 | sprintf(arith_buf, arith_t_fmt, res); |
| 1898 | val = arith_buf; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1899 | break; |
| 1900 | } |
| 1901 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1902 | default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1903 | case_default: { |
| 1904 | bool exp_len = false, exp_null = false; |
| 1905 | char *var = arg, exp_save, exp_op, *exp_word; |
| 1906 | size_t exp_off = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1907 | *p = '\0'; |
| 1908 | arg[0] = first_ch & 0x7f; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1909 | |
| 1910 | /* prepare for expansions */ |
| 1911 | if (var[0] == '#') { |
| 1912 | /* handle length expansion ${#var} */ |
| 1913 | exp_len = true; |
| 1914 | ++var; |
| 1915 | } else { |
| 1916 | /* maybe handle parameter expansion */ |
| 1917 | exp_off = strcspn(var, ":-=+?"); |
| 1918 | if (!var[exp_off]) |
| 1919 | exp_off = 0; |
| 1920 | if (exp_off) { |
| 1921 | exp_save = var[exp_off]; |
| 1922 | exp_null = exp_save == ':'; |
| 1923 | exp_word = var + exp_off; |
| 1924 | if (exp_null) ++exp_word; |
| 1925 | exp_op = *exp_word++; |
| 1926 | var[exp_off] = '\0'; |
| 1927 | } |
| 1928 | } |
| 1929 | |
| 1930 | /* lookup the variable in question */ |
| 1931 | if (isdigit(var[0])) { |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 1932 | /* handle_dollar() should have vetted var for us */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1933 | i = xatoi_u(var); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1934 | if (i < G.global_argc) |
| 1935 | val = G.global_argv[i]; |
| 1936 | /* else val remains NULL: $N with too big N */ |
| 1937 | } else |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 1938 | val = get_local_var_value(var); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1939 | |
| 1940 | /* handle any expansions */ |
| 1941 | if (exp_len) { |
| 1942 | debug_printf_expand("expand: length of '%s' = ", val); |
| 1943 | val = utoa(val ? strlen(val) : 0); |
| 1944 | debug_printf_expand("%s\n", val); |
| 1945 | } else if (exp_off) { |
| 1946 | /* we need to do an expansion */ |
| 1947 | int exp_test = (!val || (exp_null && !val[0])); |
| 1948 | if (exp_op == '+') |
| 1949 | exp_test = !exp_test; |
| 1950 | debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op, |
| 1951 | exp_null ? "true" : "false", exp_test); |
| 1952 | if (exp_test) { |
| 1953 | if (exp_op == '?') |
| 1954 | maybe_die(var, *exp_word ? exp_word : "parameter null or not set"); |
| 1955 | else |
| 1956 | val = exp_word; |
| 1957 | |
| 1958 | if (exp_op == '=') { |
| 1959 | if (isdigit(var[0]) || var[0] == '#') { |
| 1960 | maybe_die(var, "special vars cannot assign in this way"); |
| 1961 | val = NULL; |
| 1962 | } else { |
| 1963 | char *new_var = xmalloc(strlen(var) + strlen(val) + 2); |
| 1964 | sprintf(new_var, "%s=%s", var, val); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1965 | set_local_var(new_var, -1, 0); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1966 | } |
| 1967 | } |
| 1968 | } |
| 1969 | var[exp_off] = exp_save; |
| 1970 | } |
| 1971 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1972 | arg[0] = first_ch; |
| 1973 | #if ENABLE_HUSH_TICK |
| 1974 | store_val: |
| 1975 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1976 | if (!(first_ch & 0x80)) { /* unquoted $VAR */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1977 | 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] | 1978 | if (val) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1979 | /* unquoted var's contents should be globbed, so don't escape */ |
| 1980 | smallint sv = output->o_escape; |
| 1981 | output->o_escape = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1982 | n = expand_on_ifs(output, n, val); |
| 1983 | val = NULL; |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1984 | output->o_escape = sv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1985 | } |
| 1986 | } else { /* quoted $VAR, val will be appended below */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1987 | 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] | 1988 | } |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1989 | } /* default: */ |
| 1990 | } /* switch (char after <SPECIAL_VAR_SYMBOL>) */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1991 | if (val) { |
| 1992 | o_addQstr(output, val, strlen(val)); |
| 1993 | } |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1994 | /* Do the check to avoid writing to a const string */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1995 | if (*p != SPECIAL_VAR_SYMBOL) |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1996 | *p = SPECIAL_VAR_SYMBOL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1997 | |
| 1998 | #if ENABLE_HUSH_TICK |
| 1999 | o_free(&subst_result); |
| 2000 | #endif |
| 2001 | arg = ++p; |
| 2002 | } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */ |
| 2003 | |
| 2004 | if (arg[0]) { |
| 2005 | debug_print_list("expand_vars_to_list[a]", output, n); |
| 2006 | /* this part is literal, and it was already pre-quoted |
| 2007 | * if needed (much earlier), do not use o_addQstr here! */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2008 | o_addstr_with_NUL(output, arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2009 | debug_print_list("expand_vars_to_list[b]", output, n); |
| 2010 | } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */ |
| 2011 | && !(ored_ch & 0x80) /* and all vars were not quoted. */ |
| 2012 | ) { |
| 2013 | n--; |
| 2014 | /* allow to reuse list[n] later without re-growth */ |
| 2015 | output->has_empty_slot = 1; |
| 2016 | } else { |
| 2017 | o_addchr(output, '\0'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2018 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2019 | return n; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2020 | } |
| 2021 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2022 | static char **expand_variables(char **argv, int or_mask) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2023 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2024 | int n; |
| 2025 | char **list; |
| 2026 | char **v; |
| 2027 | o_string output = NULL_O_STRING; |
| 2028 | |
| 2029 | if (or_mask & 0x100) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2030 | output.o_escape = 1; /* protect against globbing for "$var" */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2031 | /* (unquoted $var will temporarily switch it off) */ |
| 2032 | output.o_glob = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2033 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2034 | |
| 2035 | n = 0; |
| 2036 | v = argv; |
| 2037 | while (*v) { |
| 2038 | n = expand_vars_to_list(&output, n, *v, (char)or_mask); |
| 2039 | v++; |
| 2040 | } |
| 2041 | debug_print_list("expand_variables", &output, n); |
| 2042 | |
| 2043 | /* output.data (malloced in one block) gets returned in "list" */ |
| 2044 | list = o_finalize_list(&output, n); |
| 2045 | debug_print_strings("expand_variables[1]", list); |
| 2046 | return list; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2047 | } |
| 2048 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2049 | static char **expand_strvec_to_strvec(char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2050 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2051 | return expand_variables(argv, 0x100); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2052 | } |
| 2053 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2054 | /* Used for expansion of right hand of assignments */ |
| 2055 | /* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs |
| 2056 | * "v=/bin/c*" */ |
| 2057 | static char *expand_string_to_string(const char *str) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2058 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2059 | char *argv[2], **list; |
| 2060 | |
| 2061 | argv[0] = (char*)str; |
| 2062 | argv[1] = NULL; |
| 2063 | list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */ |
| 2064 | if (HUSH_DEBUG) |
| 2065 | if (!list[0] || list[1]) |
| 2066 | bb_error_msg_and_die("BUG in varexp2"); |
| 2067 | /* actually, just move string 2*sizeof(char*) bytes back */ |
| 2068 | overlapping_strcpy((char*)list, list[0]); |
| 2069 | debug_printf_expand("string_to_string='%s'\n", (char*)list); |
| 2070 | return (char*)list; |
| 2071 | } |
| 2072 | |
| 2073 | /* Used for "eval" builtin */ |
| 2074 | static char* expand_strvec_to_string(char **argv) |
| 2075 | { |
| 2076 | char **list; |
| 2077 | |
| 2078 | list = expand_variables(argv, 0x80); |
| 2079 | /* Convert all NULs to spaces */ |
| 2080 | if (list[0]) { |
| 2081 | int n = 1; |
| 2082 | while (list[n]) { |
| 2083 | if (HUSH_DEBUG) |
| 2084 | if (list[n-1] + strlen(list[n-1]) + 1 != list[n]) |
| 2085 | bb_error_msg_and_die("BUG in varexp3"); |
| 2086 | list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */ |
| 2087 | n++; |
| 2088 | } |
| 2089 | } |
| 2090 | overlapping_strcpy((char*)list, list[0]); |
| 2091 | debug_printf_expand("strvec_to_string='%s'\n", (char*)list); |
| 2092 | return (char*)list; |
| 2093 | } |
| 2094 | |
| 2095 | static char **expand_assignments(char **argv, int count) |
| 2096 | { |
| 2097 | int i; |
| 2098 | char **p = NULL; |
| 2099 | /* Expand assignments into one string each */ |
| 2100 | for (i = 0; i < count; i++) { |
| 2101 | p = add_string_to_strings(p, expand_string_to_string(argv[i])); |
| 2102 | } |
| 2103 | return p; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2104 | } |
| 2105 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 2106 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2107 | /* squirrel != NULL means we squirrel away copies of stdin, stdout, |
| 2108 | * and stderr if they are redirected. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2109 | static int setup_redirects(struct command *prog, int squirrel[]) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2110 | { |
| 2111 | int openfd, mode; |
| 2112 | struct redir_struct *redir; |
| 2113 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2114 | for (redir = prog->redirects; redir; redir = redir->next) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 2115 | if (redir->dup == -1 && redir->rd_filename == NULL) { |
Eric Andersen | 817e73c | 2001-06-06 17:56:09 +0000 | [diff] [blame] | 2116 | /* something went wrong in the parse. Pretend it didn't happen */ |
| 2117 | continue; |
| 2118 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2119 | if (redir->dup == -1) { |
Denis Vlasenko | cccdc4e | 2007-11-23 21:08:38 +0000 | [diff] [blame] | 2120 | char *p; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 2121 | mode = redir_table[redir->rd_type].mode; |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 2122 | //TODO: check redir for names like '\\' |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 2123 | p = expand_string_to_string(redir->rd_filename); |
Denis Vlasenko | cccdc4e | 2007-11-23 21:08:38 +0000 | [diff] [blame] | 2124 | openfd = open_or_warn(p, mode); |
| 2125 | free(p); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2126 | if (openfd < 0) { |
| 2127 | /* this could get lost if stderr has been redirected, but |
| 2128 | bash and ash both lose it as well (though zsh doesn't!) */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2129 | return 1; |
| 2130 | } |
| 2131 | } else { |
| 2132 | openfd = redir->dup; |
| 2133 | } |
| 2134 | |
| 2135 | if (openfd != redir->fd) { |
| 2136 | if (squirrel && redir->fd < 3) { |
| 2137 | squirrel[redir->fd] = dup(redir->fd); |
| 2138 | } |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2139 | if (openfd == -3) { |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2140 | //close(openfd); // close(-3) ??! |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2141 | } else { |
| 2142 | dup2(openfd, redir->fd); |
Matt Kraai | c616e53 | 2001-06-05 16:50:08 +0000 | [diff] [blame] | 2143 | if (redir->dup == -1) |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2144 | close(openfd); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2145 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2146 | } |
| 2147 | } |
| 2148 | return 0; |
| 2149 | } |
| 2150 | |
| 2151 | static void restore_redirects(int squirrel[]) |
| 2152 | { |
| 2153 | int i, fd; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2154 | for (i = 0; i < 3; i++) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2155 | fd = squirrel[i]; |
| 2156 | if (fd != -1) { |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 2157 | /* We simply die on error */ |
| 2158 | xmove_fd(fd, i); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2159 | } |
| 2160 | } |
| 2161 | } |
| 2162 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2163 | |
| 2164 | #if !defined(DEBUG_CLEAN) |
| 2165 | #define free_pipe_list(head, indent) free_pipe_list(head) |
| 2166 | #define free_pipe(pi, indent) free_pipe(pi) |
| 2167 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2168 | static void free_pipe_list(struct pipe *head, int indent); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2169 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2170 | /* Return code is the exit status of the pipe */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2171 | static void free_pipe(struct pipe *pi, int indent) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2172 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2173 | char **p; |
| 2174 | struct command *command; |
| 2175 | struct redir_struct *r, *rnext; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2176 | int a, i; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2177 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2178 | if (pi->stopped_cmds > 0) /* why? */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2179 | return; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2180 | debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid()); |
| 2181 | for (i = 0; i < pi->num_cmds; i++) { |
| 2182 | command = &pi->cmds[i]; |
| 2183 | debug_printf_clean("%s command %d:\n", indenter(indent), i); |
| 2184 | if (command->argv) { |
| 2185 | for (a = 0, p = command->argv; *p; a++, p++) { |
| 2186 | debug_printf_clean("%s argv[%d] = %s\n", indenter(indent), a, *p); |
| 2187 | } |
| 2188 | free_strings(command->argv); |
| 2189 | command->argv = NULL; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2190 | } |
| 2191 | /* not "else if": on syntax error, we may have both! */ |
| 2192 | if (command->group) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2193 | 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] | 2194 | free_pipe_list(command->group, indent+3); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2195 | debug_printf_clean("%s end group\n", indenter(indent)); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2196 | command->group = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2197 | } |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2198 | #if !BB_MMU |
| 2199 | free(command->group_as_string); |
| 2200 | command->group_as_string = NULL; |
| 2201 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2202 | for (r = command->redirects; r; r = rnext) { |
| 2203 | debug_printf_clean("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->rd_type].descrip); |
| 2204 | if (r->dup == -1) { |
| 2205 | /* guard against the case >$FOO, where foo is unset or blank */ |
| 2206 | if (r->rd_filename) { |
| 2207 | debug_printf_clean(" %s\n", r->rd_filename); |
| 2208 | free(r->rd_filename); |
| 2209 | r->rd_filename = NULL; |
| 2210 | } |
| 2211 | } else { |
| 2212 | debug_printf_clean("&%d\n", r->dup); |
| 2213 | } |
| 2214 | rnext = r->next; |
| 2215 | free(r); |
| 2216 | } |
| 2217 | command->redirects = NULL; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2218 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2219 | free(pi->cmds); /* children are an array, they get freed all at once */ |
| 2220 | pi->cmds = NULL; |
| 2221 | #if ENABLE_HUSH_JOB |
| 2222 | free(pi->cmdtext); |
| 2223 | pi->cmdtext = NULL; |
| 2224 | #endif |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2225 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 2226 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2227 | static void free_pipe_list(struct pipe *head, int indent) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2228 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2229 | struct pipe *pi, *next; |
| 2230 | |
| 2231 | for (pi = head; pi; pi = next) { |
| 2232 | #if HAS_KEYWORDS |
| 2233 | debug_printf_clean("%s pipe reserved mode %d\n", indenter(indent), pi->res_word); |
| 2234 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2235 | free_pipe(pi, indent); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2236 | debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup); |
| 2237 | next = pi->next; |
| 2238 | /*pi->next = NULL;*/ |
| 2239 | free(pi); |
| 2240 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2241 | } |
| 2242 | |
| 2243 | |
| 2244 | #if !BB_MMU |
| 2245 | typedef struct nommu_save_t { |
| 2246 | char **new_env; |
| 2247 | char **old_env; |
| 2248 | char **argv; |
| 2249 | } nommu_save_t; |
| 2250 | #else |
| 2251 | #define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \ |
| 2252 | pseudo_exec_argv(argv, assignment_cnt, argv_expanded) |
| 2253 | #define pseudo_exec(nommu_save, command, argv_expanded) \ |
| 2254 | pseudo_exec(command, argv_expanded) |
| 2255 | #endif |
| 2256 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2257 | /* Called after [v]fork() in run_pipe(), or from builtin_exec(). |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2258 | * Never returns. |
| 2259 | * XXX no exit() here. If you don't exec, use _exit instead. |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2260 | * The at_exit handlers apparently confuse the calling process, |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2261 | * in particular stdin handling. Not sure why? -- because of vfork! (vda) */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2262 | static void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 2263 | char **argv, int assignment_cnt, |
| 2264 | char **argv_expanded) NORETURN; |
| 2265 | static void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 2266 | char **argv, int assignment_cnt, |
| 2267 | char **argv_expanded) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2268 | { |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2269 | char **new_env; |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2270 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2271 | /* Case when we are here: ... | var=val | ... */ |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2272 | if (!argv[assignment_cnt]) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2273 | _exit(EXIT_SUCCESS); |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2274 | |
Denis Vlasenko | 9504e44 | 2008-10-29 01:19:15 +0000 | [diff] [blame] | 2275 | new_env = expand_assignments(argv, assignment_cnt); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2276 | #if BB_MMU |
| 2277 | putenv_all(new_env); |
| 2278 | free(new_env); /* optional */ |
| 2279 | #else |
| 2280 | nommu_save->new_env = new_env; |
| 2281 | nommu_save->old_env = putenv_all_and_save_old(new_env); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2282 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2283 | if (argv_expanded) { |
| 2284 | argv = argv_expanded; |
| 2285 | } else { |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 2286 | argv = expand_strvec_to_strvec(argv + assignment_cnt); |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2287 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2288 | nommu_save->argv = argv; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2289 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2290 | } |
Denis Vlasenko | 764d59d | 2007-05-14 16:23:23 +0000 | [diff] [blame] | 2291 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2292 | /* On NOMMU, we must never block! |
| 2293 | * Example: { sleep 99999 | read line } & echo Ok |
| 2294 | * read builtin will block on read syscall, leaving parent blocked |
| 2295 | * in vfork. Therefore we can't do this: |
| 2296 | */ |
| 2297 | #if BB_MMU |
| 2298 | /* Check if the command matches any of the builtins. |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2299 | * Depending on context, this might be redundant. But it's |
| 2300 | * easier to waste a few CPU cycles than it is to figure out |
| 2301 | * if this is one of those cases. |
| 2302 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2303 | { |
| 2304 | int rcode; |
| 2305 | const struct built_in_command *x; |
| 2306 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
| 2307 | if (strcmp(argv[0], x->cmd) == 0) { |
| 2308 | debug_printf_exec("running builtin '%s'\n", |
| 2309 | argv[0]); |
| 2310 | rcode = x->function(argv); |
| 2311 | fflush(NULL); |
| 2312 | _exit(rcode); |
| 2313 | } |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2314 | } |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2315 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2316 | #endif |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 2317 | |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 2318 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2319 | /* Check if the command matches any busybox applets */ |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2320 | if (strchr(argv[0], '/') == NULL) { |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 2321 | int a = find_applet_by_name(argv[0]); |
| 2322 | if (a >= 0) { |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2323 | #if BB_MMU /* see above why on NOMMU it is not allowed */ |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 2324 | if (APPLET_IS_NOEXEC(a)) { |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2325 | debug_printf_exec("running applet '%s'\n", argv[0]); |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 2326 | run_applet_no_and_exit(a, argv); |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2327 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2328 | #endif |
| 2329 | /* Re-exec ourselves */ |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2330 | debug_printf_exec("re-execing applet '%s'\n", argv[0]); |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2331 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
| 2332 | execv(bb_busybox_exec_path, argv); |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2333 | /* If they called chroot or otherwise made the binary no longer |
| 2334 | * executable, fall through */ |
| 2335 | } |
| 2336 | } |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 2337 | #endif |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2338 | |
| 2339 | debug_printf_exec("execing '%s'\n", argv[0]); |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2340 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2341 | execvp(argv[0], argv); |
Bernhard Reutner-Fischer | a53de7f | 2008-07-21 13:46:54 +0000 | [diff] [blame] | 2342 | bb_perror_msg("can't exec '%s'", argv[0]); |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 2343 | _exit(EXIT_FAILURE); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2344 | } |
| 2345 | |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 2346 | #if !BB_MMU |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 2347 | static void re_execute_shell(const char *s) NORETURN; |
| 2348 | static void re_execute_shell(const char *s) |
| 2349 | { |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 2350 | struct variable *cur; |
Denis Vlasenko | 30db43b | 2009-04-05 02:10:39 +0000 | [diff] [blame] | 2351 | char **argv, **pp, **pp2; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 2352 | unsigned cnt; |
| 2353 | |
Denis Vlasenko | 30db43b | 2009-04-05 02:10:39 +0000 | [diff] [blame] | 2354 | /* 1:hush 2:-$<pid> 3:-?<exitcode> 4:-D<depth> <vars...> |
| 2355 | * 5:-c 6:<cmd> <argN...> 7:NULL |
| 2356 | */ |
| 2357 | cnt = 7 + G.global_argc; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 2358 | for (cur = G.top_var; cur; cur = cur->next) { |
| 2359 | if (!cur->flg_export || cur->flg_read_only) |
| 2360 | cnt += 2; |
| 2361 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 2362 | G.argv_for_re_execing = pp = xzalloc(sizeof(argv[0]) * cnt); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 2363 | *pp++ = (char *) applet_name; |
| 2364 | *pp++ = xasprintf("-$%u", G.root_pid); |
| 2365 | *pp++ = xasprintf("-?%u", G.last_return_code); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 2366 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 16a0c74 | 2009-04-05 01:46:59 +0000 | [diff] [blame] | 2367 | *pp++ = xasprintf("-D%u", G.depth_of_loop); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 2368 | #endif |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 2369 | for (cur = G.top_var; cur; cur = cur->next) { |
| 2370 | if (cur->varstr == hush_version_str) |
| 2371 | continue; |
| 2372 | if (cur->flg_read_only) { |
| 2373 | *pp++ = (char *) "-R"; |
| 2374 | *pp++ = cur->varstr; |
| 2375 | } else if (!cur->flg_export) { |
| 2376 | *pp++ = (char *) "-V"; |
| 2377 | *pp++ = cur->varstr; |
| 2378 | } |
| 2379 | } |
| 2380 | *pp++ = (char *) "-c"; |
| 2381 | *pp++ = (char *) s; |
Denis Vlasenko | 30db43b | 2009-04-05 02:10:39 +0000 | [diff] [blame] | 2382 | pp2 = G.global_argv; |
| 2383 | while (*pp2) |
| 2384 | *pp++ = *pp2++; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 2385 | /* *pp = NULL; - is already there */ |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 2386 | //TODO: pass traps and functions |
| 2387 | |
| 2388 | debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s); |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 2389 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
| 2390 | execv(bb_busybox_exec_path, G.argv_for_re_execing); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 2391 | //TODO: fallback for init=/bin/hush? |
| 2392 | _exit(127); |
| 2393 | } |
| 2394 | |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 2395 | static void clean_up_after_re_execute(void) |
| 2396 | { |
| 2397 | char **pp = G.argv_for_re_execing; |
| 2398 | if (pp) { |
| 2399 | /* Must match re_execute_shell's allocations */ |
| 2400 | free(pp[1]); |
| 2401 | free(pp[2]); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 2402 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 2403 | free(pp[3]); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 2404 | #endif |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 2405 | free(pp); |
| 2406 | G.argv_for_re_execing = NULL; |
| 2407 | } |
| 2408 | } |
| 2409 | #else |
| 2410 | #define clean_up_after_re_execute() ((void)0) |
| 2411 | #endif |
| 2412 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2413 | static int run_list(struct pipe *pi); |
| 2414 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2415 | /* Called after [v]fork() in run_pipe() |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2416 | */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2417 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 2418 | struct command *command, |
| 2419 | char **argv_expanded) NORETURN; |
| 2420 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 2421 | struct command *command, |
| 2422 | char **argv_expanded) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2423 | { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2424 | if (command->argv) { |
| 2425 | pseudo_exec_argv(nommu_save, command->argv, |
| 2426 | command->assignment_cnt, argv_expanded); |
| 2427 | } |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2428 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2429 | if (command->group) { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2430 | /* Cases when we are here: |
| 2431 | * ( list ) |
| 2432 | * { list } & |
| 2433 | * ... | ( list ) | ... |
| 2434 | * ... | { list } | ... |
| 2435 | */ |
| 2436 | #if BB_MMU |
Denis Vlasenko | 3b49216 | 2007-12-24 14:26:57 +0000 | [diff] [blame] | 2437 | int rcode; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2438 | debug_printf_exec("pseudo_exec: run_list\n"); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2439 | rcode = run_list(command->group); |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 2440 | /* OK to leak memory by not calling free_pipe_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2441 | * since this process is about to exit */ |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2442 | _exit(rcode); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2443 | #else |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 2444 | re_execute_shell(command->group_as_string); |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2445 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2446 | } |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2447 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2448 | /* Case when we are here: ... | >file */ |
| 2449 | debug_printf_exec("pseudo_exec'ed null command\n"); |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2450 | _exit(EXIT_SUCCESS); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2451 | } |
| 2452 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2453 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2454 | static const char *get_cmdtext(struct pipe *pi) |
| 2455 | { |
| 2456 | char **argv; |
| 2457 | char *p; |
| 2458 | int len; |
| 2459 | |
| 2460 | /* This is subtle. ->cmdtext is created only on first backgrounding. |
| 2461 | * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...) |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2462 | * On subsequent bg argv is trashed, but we won't use it */ |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2463 | if (pi->cmdtext) |
| 2464 | return pi->cmdtext; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2465 | argv = pi->cmds[0].argv; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 2466 | if (!argv || !argv[0]) { |
| 2467 | pi->cmdtext = xzalloc(1); |
| 2468 | return pi->cmdtext; |
| 2469 | } |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2470 | |
| 2471 | len = 0; |
| 2472 | do len += strlen(*argv) + 1; while (*++argv); |
| 2473 | pi->cmdtext = p = xmalloc(len); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2474 | argv = pi->cmds[0].argv; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2475 | do { |
| 2476 | len = strlen(*argv); |
| 2477 | memcpy(p, *argv, len); |
| 2478 | p += len; |
| 2479 | *p++ = ' '; |
| 2480 | } while (*++argv); |
| 2481 | p[-1] = '\0'; |
| 2482 | return pi->cmdtext; |
| 2483 | } |
| 2484 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2485 | static void insert_bg_job(struct pipe *pi) |
| 2486 | { |
| 2487 | struct pipe *thejob; |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2488 | int i; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2489 | |
| 2490 | /* Linear search for the ID of the job to use */ |
| 2491 | pi->jobid = 1; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2492 | for (thejob = G.job_list; thejob; thejob = thejob->next) |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2493 | if (thejob->jobid >= pi->jobid) |
| 2494 | pi->jobid = thejob->jobid + 1; |
| 2495 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2496 | /* Add thejob to the list of running jobs */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2497 | if (!G.job_list) { |
| 2498 | thejob = G.job_list = xmalloc(sizeof(*thejob)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2499 | } else { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2500 | for (thejob = G.job_list; thejob->next; thejob = thejob->next) |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2501 | continue; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2502 | thejob->next = xmalloc(sizeof(*thejob)); |
| 2503 | thejob = thejob->next; |
| 2504 | } |
| 2505 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2506 | /* Physically copy the struct job */ |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 2507 | memcpy(thejob, pi, sizeof(struct pipe)); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2508 | thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds); |
| 2509 | /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */ |
| 2510 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2511 | // TODO: do we really need to have so many fields which are just dead weight |
| 2512 | // at execution stage? |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2513 | thejob->cmds[i].pid = pi->cmds[i].pid; |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2514 | /* all other fields are not used and stay zero */ |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2515 | } |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2516 | thejob->next = NULL; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2517 | thejob->cmdtext = xstrdup(get_cmdtext(pi)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2518 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2519 | /* We don't wait for background thejobs to return -- append it |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2520 | to the list of backgrounded thejobs and leave it alone */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 2521 | if (G_interactive_fd) |
Mike Frysinger | 87824e0 | 2009-03-30 00:19:30 +0000 | [diff] [blame] | 2522 | 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] | 2523 | G.last_bg_pid = thejob->cmds[0].pid; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2524 | G.last_jobid = thejob->jobid; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2525 | } |
| 2526 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2527 | static void remove_bg_job(struct pipe *pi) |
| 2528 | { |
| 2529 | struct pipe *prev_pipe; |
| 2530 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2531 | if (pi == G.job_list) { |
| 2532 | G.job_list = pi->next; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2533 | } else { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2534 | prev_pipe = G.job_list; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2535 | while (prev_pipe->next != pi) |
| 2536 | prev_pipe = prev_pipe->next; |
| 2537 | prev_pipe->next = pi->next; |
| 2538 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2539 | if (G.job_list) |
| 2540 | G.last_jobid = G.job_list->jobid; |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 2541 | else |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2542 | G.last_jobid = 0; |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2543 | } |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 2544 | |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2545 | /* Remove a backgrounded job */ |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2546 | static void delete_finished_bg_job(struct pipe *pi) |
| 2547 | { |
| 2548 | remove_bg_job(pi); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2549 | pi->stopped_cmds = 0; |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 2550 | free_pipe(pi, 0); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2551 | free(pi); |
| 2552 | } |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2553 | #endif /* JOB */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2554 | |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2555 | /* Check to see if any processes have exited -- if they |
| 2556 | * have, figure out why and see if a job has completed */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2557 | static int checkjobs(struct pipe* fg_pipe) |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2558 | { |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2559 | int attributes; |
| 2560 | int status; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2561 | #if ENABLE_HUSH_JOB |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2562 | struct pipe *pi; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2563 | #endif |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2564 | pid_t childpid; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2565 | int rcode = 0; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2566 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 2567 | debug_printf_jobs("checkjobs %p\n", fg_pipe); |
| 2568 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 2569 | errno = 0; |
| 2570 | // if (G.handled_SIGCHLD == G.count_SIGCHLD) |
| 2571 | // /* avoid doing syscall, nothing there anyway */ |
| 2572 | // return rcode; |
| 2573 | |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2574 | attributes = WUNTRACED; |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2575 | if (fg_pipe == NULL) |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2576 | attributes |= WNOHANG; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2577 | |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2578 | /* Do we do this right? |
| 2579 | * bash-3.00# sleep 20 | false |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2580 | * <ctrl-Z pressed> |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2581 | * [3]+ Stopped sleep 20 | false |
| 2582 | * bash-3.00# echo $? |
| 2583 | * 1 <========== bg pipe is not fully done, but exitcode is already known! |
| 2584 | */ |
| 2585 | |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2586 | //FIXME: non-interactive bash does not continue even if all processes in fg pipe |
| 2587 | //are stopped. Testcase: "cat | cat" in a script (not on command line) |
| 2588 | // + killall -STOP cat |
| 2589 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2590 | wait_more: |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 2591 | while (1) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2592 | int i; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 2593 | int dead; |
| 2594 | |
| 2595 | // i = G.count_SIGCHLD; |
| 2596 | childpid = waitpid(-1, &status, attributes); |
| 2597 | if (childpid <= 0) { |
| 2598 | if (childpid && errno != ECHILD) |
| 2599 | bb_perror_msg("waitpid"); |
| 2600 | // else /* Until next SIGCHLD, waitpid's are useless */ |
| 2601 | // G.handled_SIGCHLD = i; |
| 2602 | break; |
| 2603 | } |
| 2604 | dead = WIFEXITED(status) || WIFSIGNALED(status); |
| 2605 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2606 | #if DEBUG_JOBS |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2607 | if (WIFSTOPPED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 2608 | debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2609 | childpid, WSTOPSIG(status), WEXITSTATUS(status)); |
| 2610 | if (WIFSIGNALED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 2611 | debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2612 | childpid, WTERMSIG(status), WEXITSTATUS(status)); |
| 2613 | if (WIFEXITED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 2614 | debug_printf_jobs("pid %d exited, exitcode %d\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2615 | childpid, WEXITSTATUS(status)); |
| 2616 | #endif |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2617 | /* Were we asked to wait for fg pipe? */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2618 | if (fg_pipe) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2619 | for (i = 0; i < fg_pipe->num_cmds; i++) { |
| 2620 | debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid); |
| 2621 | if (fg_pipe->cmds[i].pid != childpid) |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2622 | continue; |
| 2623 | /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */ |
| 2624 | if (dead) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2625 | fg_pipe->cmds[i].pid = 0; |
| 2626 | fg_pipe->alive_cmds--; |
| 2627 | if (i == fg_pipe->num_cmds - 1) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2628 | /* last process gives overall exitstatus */ |
| 2629 | rcode = WEXITSTATUS(status); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 2630 | IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2631 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2632 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2633 | fg_pipe->cmds[i].is_stopped = 1; |
| 2634 | fg_pipe->stopped_cmds++; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2635 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2636 | debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n", |
| 2637 | fg_pipe->alive_cmds, fg_pipe->stopped_cmds); |
| 2638 | if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2639 | /* All processes in fg pipe have exited/stopped */ |
| 2640 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2641 | if (fg_pipe->alive_cmds) |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2642 | insert_bg_job(fg_pipe); |
| 2643 | #endif |
| 2644 | return rcode; |
| 2645 | } |
| 2646 | /* There are still running processes in the fg pipe */ |
| 2647 | goto wait_more; /* do waitpid again */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2648 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2649 | /* it wasnt fg_pipe, look for process in bg pipes */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2650 | } |
| 2651 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2652 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2653 | /* We asked to wait for bg or orphaned children */ |
| 2654 | /* No need to remember exitcode in this case */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2655 | for (pi = G.job_list; pi; pi = pi->next) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2656 | for (i = 0; i < pi->num_cmds; i++) { |
| 2657 | if (pi->cmds[i].pid == childpid) |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 2658 | goto found_pi_and_prognum; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 2659 | } |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2660 | } |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 2661 | /* Happens when shell is used as init process (init=/bin/sh) */ |
| 2662 | debug_printf("checkjobs: pid %d was not in our list!\n", childpid); |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2663 | continue; /* do waitpid again */ |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 2664 | |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 2665 | found_pi_and_prognum: |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2666 | if (dead) { |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2667 | /* child exited */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2668 | pi->cmds[i].pid = 0; |
| 2669 | pi->alive_cmds--; |
| 2670 | if (!pi->alive_cmds) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 2671 | if (G_interactive_fd) |
Mike Frysinger | 87824e0 | 2009-03-30 00:19:30 +0000 | [diff] [blame] | 2672 | printf(JOB_STATUS_FORMAT, pi->jobid, |
| 2673 | "Done", pi->cmdtext); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2674 | delete_finished_bg_job(pi); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2675 | } |
| 2676 | } else { |
| 2677 | /* child stopped */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2678 | pi->cmds[i].is_stopped = 1; |
| 2679 | pi->stopped_cmds++; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2680 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2681 | #endif |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2682 | } /* while (waitpid succeeds)... */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2683 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2684 | return rcode; |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 2685 | } |
| 2686 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2687 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 2688 | static int checkjobs_and_fg_shell(struct pipe* fg_pipe) |
| 2689 | { |
| 2690 | pid_t p; |
| 2691 | int rcode = checkjobs(fg_pipe); |
| 2692 | /* Job finished, move the shell to the foreground */ |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 2693 | p = getpgid(0); /* pgid of our process */ |
| 2694 | debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 2695 | tcsetpgrp(G_interactive_fd, p); |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 2696 | return rcode; |
| 2697 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2698 | #endif |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 2699 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2700 | /* Start all the jobs, but don't wait for anything to finish. |
| 2701 | * See checkjobs(). |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2702 | * |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2703 | * Return code is normally -1, when the caller has to wait for children |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2704 | * to finish to determine the exit status of the pipe. If the pipe |
| 2705 | * is a simple builtin command, however, the action is done by the |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2706 | * time run_pipe returns, and the exit code is provided as the |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2707 | * return value. |
| 2708 | * |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 2709 | * Returns -1 only if started some children. IOW: we have to |
| 2710 | * mask out retvals of builtins etc with 0xff! |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2711 | * |
| 2712 | * The only case when we do not need to [v]fork is when the pipe |
| 2713 | * is single, non-backgrounded, non-subshell command. Examples: |
| 2714 | * cmd ; ... { list } ; ... |
| 2715 | * cmd && ... { list } && ... |
| 2716 | * cmd || ... { list } || ... |
| 2717 | * If it is, then we can run cmd as a builtin, NOFORK [do we do this?], |
| 2718 | * or (if SH_STANDALONE) an applet, and we can run the { list } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2719 | * with run_list(). If it isn't one of these, we fork and exec cmd. |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2720 | * |
| 2721 | * Cases when we must fork: |
| 2722 | * non-single: cmd | cmd |
| 2723 | * backgrounded: cmd & { list } & |
| 2724 | * subshell: ( list ) [&] |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2725 | */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2726 | static int run_pipe(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2727 | { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2728 | static const char *const null_ptr = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2729 | int i; |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2730 | int nextin; |
| 2731 | int pipefds[2]; /* pipefds[0] is for reading */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2732 | struct command *command; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2733 | char **argv_expanded; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2734 | char **argv; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2735 | char *p; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 2736 | /* it is not always needed, but we aim to smaller code */ |
| 2737 | int squirrel[] = { -1, -1, -1 }; |
| 2738 | int rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2739 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2740 | debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds); |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 2741 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2742 | USE_HUSH_JOB(pi->pgrp = -1;) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2743 | pi->stopped_cmds = 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2744 | command = &(pi->cmds[0]); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2745 | argv_expanded = NULL; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2746 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2747 | if (pi->num_cmds != 1 |
| 2748 | || pi->followup == PIPE_BG |
| 2749 | || command->grp_type == GRP_SUBSHELL |
| 2750 | ) { |
| 2751 | goto must_fork; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2752 | } |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2753 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2754 | pi->alive_cmds = 1; |
| 2755 | |
| 2756 | debug_printf_exec(": group:%p argv:'%s'\n", |
| 2757 | command->group, command->argv ? command->argv[0] : "NONE"); |
| 2758 | |
| 2759 | if (command->group) { |
| 2760 | #if ENABLE_HUSH_FUNCTIONS |
| 2761 | if (command->grp_type == GRP_FUNCTION) { |
| 2762 | /* func () { list } */ |
| 2763 | bb_error_msg("here we ought to remember function definition, and go on"); |
| 2764 | return EXIT_SUCCESS; |
| 2765 | } |
| 2766 | #endif |
| 2767 | /* { list } */ |
| 2768 | debug_printf("non-subshell group\n"); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2769 | setup_redirects(command, squirrel); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2770 | debug_printf_exec(": run_list\n"); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2771 | rcode = run_list(command->group) & 0xff; |
Eric Andersen | 04407e5 | 2001-06-07 16:42:05 +0000 | [diff] [blame] | 2772 | restore_redirects(squirrel); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2773 | debug_printf_exec("run_pipe return %d\n", rcode); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 2774 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2775 | return rcode; |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2776 | } |
| 2777 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2778 | argv = command->argv ? command->argv : (char **) &null_ptr; |
| 2779 | { |
| 2780 | const struct built_in_command *x; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2781 | char **new_env = NULL; |
| 2782 | char **old_env = NULL; |
| 2783 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2784 | if (argv[command->assignment_cnt] == NULL) { |
| 2785 | /* Assignments, but no command */ |
| 2786 | /* Ensure redirects take effect. Try "a=t >file" */ |
| 2787 | setup_redirects(command, squirrel); |
| 2788 | restore_redirects(squirrel); |
| 2789 | /* Set shell variables */ |
| 2790 | while (*argv) { |
| 2791 | p = expand_string_to_string(*argv); |
| 2792 | debug_printf_exec("set shell var:'%s'->'%s'\n", |
| 2793 | *argv, p); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 2794 | set_local_var(p, 0, 0); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2795 | argv++; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 2796 | } |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2797 | /* Do we need to flag set_local_var() errors? |
| 2798 | * "assignment to readonly var" and "putenv error" |
| 2799 | */ |
| 2800 | return EXIT_SUCCESS; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 2801 | } |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2802 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2803 | /* Expand the rest into (possibly) many strings each */ |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2804 | argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt); |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2805 | |
Denis Vlasenko | dd316dd | 2008-06-14 15:50:55 +0000 | [diff] [blame] | 2806 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2807 | if (strcmp(argv_expanded[0], x->cmd) != 0) |
| 2808 | continue; |
| 2809 | if (x->function == builtin_exec && argv_expanded[1] == NULL) { |
| 2810 | debug_printf("exec with redirects only\n"); |
| 2811 | setup_redirects(command, NULL); |
| 2812 | rcode = EXIT_SUCCESS; |
| 2813 | goto clean_up_and_ret1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2814 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2815 | debug_printf("builtin inline %s\n", argv_expanded[0]); |
| 2816 | /* XXX setup_redirects acts on file descriptors, not FILEs. |
| 2817 | * This is perfect for work that comes after exec(). |
| 2818 | * Is it really safe for inline use? Experimentally, |
| 2819 | * things seem to work with glibc. */ |
| 2820 | setup_redirects(command, squirrel); |
| 2821 | new_env = expand_assignments(argv, command->assignment_cnt); |
| 2822 | old_env = putenv_all_and_save_old(new_env); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2823 | debug_printf_exec(": builtin '%s' '%s'...\n", |
| 2824 | x->cmd, argv_expanded[1]); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2825 | rcode = x->function(argv_expanded) & 0xff; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2826 | #if ENABLE_FEATURE_SH_STANDALONE |
| 2827 | clean_up_and_ret: |
| 2828 | #endif |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2829 | restore_redirects(squirrel); |
| 2830 | free_strings_and_unsetenv(new_env, 1); |
| 2831 | putenv_all(old_env); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2832 | free(old_env); /* not free_strings()! */ |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2833 | clean_up_and_ret1: |
| 2834 | free(argv_expanded); |
| 2835 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 2836 | debug_printf_exec("run_pipe return %d\n", rcode); |
| 2837 | return rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2838 | } |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 2839 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2840 | i = find_applet_by_name(argv_expanded[0]); |
| 2841 | if (i >= 0 && APPLET_IS_NOFORK(i)) { |
| 2842 | setup_redirects(command, squirrel); |
| 2843 | save_nofork_data(&G.nofork_save); |
| 2844 | new_env = expand_assignments(argv, command->assignment_cnt); |
| 2845 | old_env = putenv_all_and_save_old(new_env); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2846 | debug_printf_exec(": run_nofork_applet '%s' '%s'...\n", |
| 2847 | argv_expanded[0], argv_expanded[1]); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2848 | rcode = run_nofork_applet_prime(&G.nofork_save, i, argv_expanded); |
| 2849 | goto clean_up_and_ret; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 2850 | } |
| 2851 | #endif |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2852 | /* It is neither builtin nor applet. We must fork. */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2853 | } |
| 2854 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2855 | must_fork: |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2856 | /* NB: argv_expanded may already be created, and that |
| 2857 | * might include `cmd` runs! Do not rerun it! We *must* |
| 2858 | * use argv_expanded if it's non-NULL */ |
| 2859 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2860 | /* Going to fork a child per each pipe member */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2861 | pi->alive_cmds = 0; |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2862 | nextin = 0; |
| 2863 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2864 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2865 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2866 | volatile nommu_save_t nommu_save; |
| 2867 | nommu_save.new_env = NULL; |
| 2868 | nommu_save.old_env = NULL; |
| 2869 | nommu_save.argv = NULL; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2870 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2871 | command = &(pi->cmds[i]); |
| 2872 | if (command->argv) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2873 | debug_printf_exec(": pipe member '%s' '%s'...\n", |
| 2874 | command->argv[0], command->argv[1]); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2875 | } else { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2876 | debug_printf_exec(": pipe member with no argv\n"); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2877 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2878 | |
| 2879 | /* pipes are inserted between pairs of commands */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2880 | pipefds[0] = 0; |
| 2881 | pipefds[1] = 1; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2882 | if ((i + 1) < pi->num_cmds) |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2883 | xpipe(pipefds); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2884 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2885 | command->pid = BB_MMU ? fork() : vfork(); |
| 2886 | if (!command->pid) { /* child */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2887 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 2888 | die_sleep = 0; /* let nofork's xfuncs die */ |
| 2889 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2890 | /* Every child adds itself to new process group |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2891 | * with pgid == pid_of_first_child_in_pipe */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 2892 | if (G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2893 | pid_t pgrp; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2894 | pgrp = pi->pgrp; |
| 2895 | if (pgrp < 0) /* true for 1st process only */ |
| 2896 | pgrp = getpid(); |
| 2897 | if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2898 | /* We do it in *every* child, not just first, |
| 2899 | * to avoid races */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 2900 | tcsetpgrp(G_interactive_fd, pgrp); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2901 | } |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2902 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2903 | #endif |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2904 | xmove_fd(nextin, 0); |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2905 | xmove_fd(pipefds[1], 1); /* write end */ |
| 2906 | if (pipefds[0] > 1) |
| 2907 | close(pipefds[0]); /* read end */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2908 | /* Like bash, explicit redirects override pipes, |
| 2909 | * and the pipe fd is available for dup'ing. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2910 | setup_redirects(command, NULL); |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 2911 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2912 | /* Restore default handlers just prior to exec */ |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 2913 | /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */ |
| 2914 | |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2915 | /* Stores to nommu_save list of env vars putenv'ed |
| 2916 | * (NOMMU, on MMU we don't need that) */ |
| 2917 | /* cast away volatility... */ |
| 2918 | pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2919 | /* pseudo_exec() does not return */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2920 | } |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 2921 | |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2922 | /* parent */ |
| 2923 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2924 | /* Clean up after vforked child */ |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 2925 | clean_up_after_re_execute(); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2926 | free(nommu_save.argv); |
| 2927 | free_strings_and_unsetenv(nommu_save.new_env, 1); |
| 2928 | putenv_all(nommu_save.old_env); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2929 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2930 | free(argv_expanded); |
| 2931 | argv_expanded = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2932 | if (command->pid < 0) { /* [v]fork failed */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2933 | /* Clearly indicate, was it fork or vfork */ |
Denis Vlasenko | 82604e9 | 2008-07-01 15:59:42 +0000 | [diff] [blame] | 2934 | bb_perror_msg(BB_MMU ? "fork" : "vfork"); |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2935 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2936 | pi->alive_cmds++; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2937 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2938 | /* Second and next children need to know pid of first one */ |
| 2939 | if (pi->pgrp < 0) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2940 | pi->pgrp = command->pid; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2941 | #endif |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2942 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2943 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2944 | if (i) |
| 2945 | close(nextin); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2946 | if ((i + 1) < pi->num_cmds) |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2947 | close(pipefds[1]); /* write end */ |
| 2948 | /* Pass read (output) pipe end to next iteration */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2949 | nextin = pipefds[0]; |
| 2950 | } |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2951 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2952 | if (!pi->alive_cmds) { |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2953 | debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n"); |
| 2954 | return 1; |
| 2955 | } |
| 2956 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2957 | 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] | 2958 | return -1; |
| 2959 | } |
| 2960 | |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 2961 | #ifndef debug_print_tree |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2962 | static void debug_print_tree(struct pipe *pi, int lvl) |
| 2963 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2964 | static const char *const PIPE[] = { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2965 | [PIPE_SEQ] = "SEQ", |
| 2966 | [PIPE_AND] = "AND", |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2967 | [PIPE_OR ] = "OR" , |
| 2968 | [PIPE_BG ] = "BG" , |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2969 | }; |
| 2970 | static const char *RES[] = { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2971 | [RES_NONE ] = "NONE" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2972 | #if ENABLE_HUSH_IF |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2973 | [RES_IF ] = "IF" , |
| 2974 | [RES_THEN ] = "THEN" , |
| 2975 | [RES_ELIF ] = "ELIF" , |
| 2976 | [RES_ELSE ] = "ELSE" , |
| 2977 | [RES_FI ] = "FI" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2978 | #endif |
| 2979 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2980 | [RES_FOR ] = "FOR" , |
| 2981 | [RES_WHILE] = "WHILE", |
| 2982 | [RES_UNTIL] = "UNTIL", |
| 2983 | [RES_DO ] = "DO" , |
| 2984 | [RES_DONE ] = "DONE" , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 2985 | #endif |
| 2986 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2987 | [RES_IN ] = "IN" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2988 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2989 | #if ENABLE_HUSH_CASE |
| 2990 | [RES_CASE ] = "CASE" , |
| 2991 | [RES_MATCH] = "MATCH", |
| 2992 | [RES_CASEI] = "CASEI", |
| 2993 | [RES_ESAC ] = "ESAC" , |
| 2994 | #endif |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2995 | [RES_XXXX ] = "XXXX" , |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2996 | [RES_SNTX ] = "SNTX" , |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2997 | }; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2998 | static const char *const GRPTYPE[] = { |
| 2999 | "()", |
| 3000 | "{}", |
| 3001 | #if ENABLE_HUSH_FUNCTIONS |
| 3002 | "func()", |
| 3003 | #endif |
| 3004 | }; |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3005 | |
| 3006 | int pin, prn; |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3007 | |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3008 | pin = 0; |
| 3009 | while (pi) { |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3010 | fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "", |
| 3011 | pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3012 | prn = 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3013 | while (prn < pi->num_cmds) { |
| 3014 | struct command *command = &pi->cmds[prn]; |
| 3015 | char **argv = command->argv; |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 3016 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3017 | fprintf(stderr, "%*s prog %d assignment_cnt:%d", |
| 3018 | lvl*2, "", prn, |
| 3019 | command->assignment_cnt); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3020 | if (command->group) { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3021 | fprintf(stderr, " group %s: (argv=%p)\n", |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3022 | GRPTYPE[command->grp_type], |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 3023 | argv); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3024 | debug_print_tree(command->group, lvl+1); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3025 | prn++; |
| 3026 | continue; |
| 3027 | } |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3028 | if (argv) while (*argv) { |
| 3029 | fprintf(stderr, " '%s'", *argv); |
| 3030 | argv++; |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 3031 | } |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3032 | fprintf(stderr, "\n"); |
| 3033 | prn++; |
| 3034 | } |
| 3035 | pi = pi->next; |
| 3036 | pin++; |
| 3037 | } |
| 3038 | } |
| 3039 | #endif |
| 3040 | |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3041 | /* NB: called by pseudo_exec, and therefore must not modify any |
| 3042 | * global data until exec/_exit (we can be a child after vfork!) */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3043 | static int run_list(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3044 | { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3045 | #if ENABLE_HUSH_CASE |
| 3046 | char *case_word = NULL; |
| 3047 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3048 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3049 | struct pipe *loop_top = NULL; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3050 | char *for_varname = NULL; |
| 3051 | char **for_lcur = NULL; |
| 3052 | char **for_list = NULL; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3053 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3054 | smallint flag_skip = 1; |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3055 | smalluint rcode = 0; /* probably just for compiler */ |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 3056 | #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3057 | smalluint cond_code = 0; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3058 | #else |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3059 | enum { cond_code = 0, }; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3060 | #endif |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3061 | /*enum reserved_style*/ smallint rword = RES_NONE; |
| 3062 | /*enum reserved_style*/ smallint skip_more_for_this_rword = RES_XXXX; |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 3063 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3064 | 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] | 3065 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3066 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3067 | /* Check syntax for "for" */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3068 | for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) { |
| 3069 | if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3070 | continue; |
| 3071 | /* current word is FOR or IN (BOLD in comments below) */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3072 | if (cpipe->next == NULL) { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3073 | syntax("malformed for"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3074 | 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] | 3075 | return 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3076 | } |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3077 | /* "FOR v; do ..." and "for v IN a b; do..." are ok */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3078 | if (cpipe->next->res_word == RES_DO) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3079 | continue; |
| 3080 | /* 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] | 3081 | if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */ |
| 3082 | || 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] | 3083 | ) { |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3084 | syntax("malformed for"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3085 | 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] | 3086 | return 1; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3087 | } |
| 3088 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3089 | #endif |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3090 | |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3091 | /* Past this point, all code paths should jump to ret: label |
Denis Vlasenko | 12acec5 | 2008-07-28 15:15:59 +0000 | [diff] [blame] | 3092 | * in order to return, no direct "return" statements please. |
| 3093 | * This helps to ensure that no memory is leaked. */ |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3094 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 3095 | ////TODO: ctrl-Z handling needs re-thinking and re-testing |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3096 | |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3097 | #if ENABLE_HUSH_JOB |
| 3098 | /* Example of nested list: "while true; do { sleep 1 | exit 2; } done". |
| 3099 | * We are saving state before entering outermost list ("while...done") |
| 3100 | * so that ctrl-Z will correctly background _entire_ outermost list, |
| 3101 | * not just a part of it (like "sleep 1 | exit 2") */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3102 | if (++G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3103 | if (sigsetjmp(G.toplevel_jb, 1)) { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3104 | /* ctrl-Z forked and we are parent; or ctrl-C. |
| 3105 | * Sighandler has longjmped us here */ |
| 3106 | signal(SIGINT, SIG_IGN); |
| 3107 | signal(SIGTSTP, SIG_IGN); |
| 3108 | /* Restore level (we can be coming from deep inside |
| 3109 | * nested levels) */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3110 | G.run_list_level = 1; |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3111 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3112 | if (G.nofork_save.saved) { /* if save area is valid */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3113 | debug_printf_jobs("exiting nofork early\n"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3114 | restore_nofork_data(&G.nofork_save); |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3115 | } |
| 3116 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3117 | //// if (G.ctrl_z_flag) { |
| 3118 | //// /* ctrl-Z has forked and stored pid of the child in pi->pid. |
| 3119 | //// * Remember this child as background job */ |
| 3120 | //// insert_bg_job(pi); |
| 3121 | //// } else { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3122 | /* ctrl-C. We just stop doing whatever we were doing */ |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 3123 | bb_putchar('\n'); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3124 | //// } |
Denis Vlasenko | ff29b4f | 2008-07-29 13:57:59 +0000 | [diff] [blame] | 3125 | USE_HUSH_LOOPS(loop_top = NULL;) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3126 | USE_HUSH_LOOPS(G.depth_of_loop = 0;) |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3127 | rcode = 0; |
| 3128 | goto ret; |
| 3129 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3130 | //// /* ctrl-Z handler will store pid etc in pi */ |
| 3131 | //// G.toplevel_list = pi; |
| 3132 | //// G.ctrl_z_flag = 0; |
| 3133 | ////#if ENABLE_FEATURE_SH_STANDALONE |
| 3134 | //// G.nofork_save.saved = 0; /* in case we will run a nofork later */ |
| 3135 | ////#endif |
| 3136 | //// signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z); |
| 3137 | //// signal(SIGINT, handler_ctrl_c); |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3138 | } |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3139 | #endif /* JOB */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3140 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3141 | /* Go through list of pipes, (maybe) executing them. */ |
| 3142 | 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] | 3143 | if (G.flag_SIGINT) |
| 3144 | break; |
| 3145 | |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3146 | IF_HAS_KEYWORDS(rword = pi->res_word;) |
| 3147 | IF_HAS_NO_KEYWORDS(rword = RES_NONE;) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3148 | debug_printf_exec(": rword=%d cond_code=%d skip_more=%d\n", |
| 3149 | rword, cond_code, skip_more_for_this_rword); |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3150 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 4554b72 | 2008-07-29 13:36:09 +0000 | [diff] [blame] | 3151 | if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3152 | && loop_top == NULL /* avoid bumping G.depth_of_loop twice */ |
Denis Vlasenko | 4554b72 | 2008-07-29 13:36:09 +0000 | [diff] [blame] | 3153 | ) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3154 | /* start of a loop: remember where loop starts */ |
| 3155 | loop_top = pi; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3156 | G.depth_of_loop++; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3157 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3158 | #endif |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3159 | if (rword == skip_more_for_this_rword && flag_skip) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3160 | if (pi->followup == PIPE_SEQ) |
| 3161 | flag_skip = 0; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3162 | /* it is "<false> && CMD" or "<true> || CMD" |
| 3163 | * and we should not execute CMD */ |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3164 | continue; |
| 3165 | } |
| 3166 | flag_skip = 1; |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3167 | skip_more_for_this_rword = RES_XXXX; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3168 | #if ENABLE_HUSH_IF |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3169 | if (cond_code) { |
| 3170 | if (rword == RES_THEN) { |
| 3171 | /* "if <false> THEN cmd": skip cmd */ |
| 3172 | continue; |
| 3173 | } |
| 3174 | } else { |
| 3175 | if (rword == RES_ELSE || rword == RES_ELIF) { |
| 3176 | /* "if <true> then ... ELSE/ELIF cmd": |
| 3177 | * skip cmd and all following ones */ |
| 3178 | break; |
| 3179 | } |
| 3180 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3181 | #endif |
| 3182 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3183 | if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3184 | if (!for_lcur) { |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 3185 | /* first loop through for */ |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3186 | |
| 3187 | static const char encoded_dollar_at[] ALIGN1 = { |
| 3188 | SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0' |
| 3189 | }; /* encoded representation of "$@" */ |
| 3190 | static const char *const encoded_dollar_at_argv[] = { |
| 3191 | encoded_dollar_at, NULL |
| 3192 | }; /* argv list with one element: "$@" */ |
| 3193 | char **vals; |
| 3194 | |
| 3195 | vals = (char**)encoded_dollar_at_argv; |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3196 | if (pi->next->res_word == RES_IN) { |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3197 | /* if no variable values after "in" we skip "for" */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3198 | if (!pi->next->cmds[0].argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3199 | break; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3200 | vals = pi->next->cmds[0].argv; |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3201 | } /* else: "for var; do..." -> assume "$@" list */ |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3202 | /* create list of variable values */ |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3203 | debug_print_strings("for_list made from", vals); |
| 3204 | for_list = expand_strvec_to_strvec(vals); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3205 | for_lcur = for_list; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3206 | debug_print_strings("for_list", for_list); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3207 | for_varname = pi->cmds[0].argv[0]; |
| 3208 | pi->cmds[0].argv[0] = NULL; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3209 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3210 | free(pi->cmds[0].argv[0]); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3211 | if (!*for_lcur) { |
Denis Vlasenko | 12acec5 | 2008-07-28 15:15:59 +0000 | [diff] [blame] | 3212 | /* "for" loop is over, clean up */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3213 | free(for_list); |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3214 | for_list = NULL; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3215 | for_lcur = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3216 | pi->cmds[0].argv[0] = for_varname; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3217 | break; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3218 | } |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3219 | /* insert next value from for_lcur */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3220 | //TODO: does it need escaping? |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3221 | pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++); |
| 3222 | pi->cmds[0].assignment_cnt = 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3223 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3224 | if (rword == RES_IN) { |
| 3225 | continue; /* "for v IN list;..." - "in" has no cmds anyway */ |
| 3226 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3227 | if (rword == RES_DONE) { |
| 3228 | continue; /* "done" has no cmds too */ |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3229 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3230 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3231 | #if ENABLE_HUSH_CASE |
| 3232 | if (rword == RES_CASE) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3233 | case_word = expand_strvec_to_string(pi->cmds->argv); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3234 | continue; |
| 3235 | } |
| 3236 | if (rword == RES_MATCH) { |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 3237 | char **argv; |
| 3238 | |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3239 | if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */ |
| 3240 | break; |
| 3241 | /* all prev words didn't match, does this one match? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3242 | argv = pi->cmds->argv; |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 3243 | while (*argv) { |
| 3244 | char *pattern = expand_string_to_string(*argv); |
| 3245 | /* TODO: which FNM_xxx flags to use? */ |
| 3246 | cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0); |
| 3247 | free(pattern); |
| 3248 | if (cond_code == 0) { /* match! we will execute this branch */ |
| 3249 | free(case_word); /* make future "word)" stop */ |
| 3250 | case_word = NULL; |
| 3251 | break; |
| 3252 | } |
| 3253 | argv++; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3254 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3255 | continue; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3256 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3257 | if (rword == RES_CASEI) { /* inside of a case branch */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3258 | if (cond_code != 0) |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3259 | continue; /* not matched yet, skip this pipe */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3260 | } |
| 3261 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3262 | /* Just pressing <enter> in shell should check for jobs. |
| 3263 | * OTOH, in non-interactive shell this is useless |
| 3264 | * and only leads to extra job checks */ |
| 3265 | if (pi->num_cmds == 0) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3266 | if (G_interactive_fd) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3267 | goto check_jobs_and_continue; |
| 3268 | continue; |
| 3269 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3270 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3271 | /* After analyzing all keywords and conditions, we decided |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3272 | * to execute this pipe. NB: have to do checkjobs(NULL) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3273 | * after run_pipe() to collect any background children, |
| 3274 | * even if list execution is to be stopped. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3275 | debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3276 | { |
| 3277 | int r; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3278 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3279 | G.flag_break_continue = 0; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3280 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3281 | rcode = r = run_pipe(pi); /* NB: rcode is a smallint */ |
| 3282 | if (r != -1) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3283 | /* we only ran a builtin: rcode is already known |
| 3284 | * and we don't need to wait for anything. */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3285 | check_and_run_traps(0); |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3286 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3287 | /* was it "break" or "continue"? */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3288 | if (G.flag_break_continue) { |
| 3289 | smallint fbc = G.flag_break_continue; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3290 | /* we might fall into outer *loop*, |
| 3291 | * don't want to break it too */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3292 | if (loop_top) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3293 | G.depth_break_continue--; |
| 3294 | if (G.depth_break_continue == 0) |
| 3295 | G.flag_break_continue = 0; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3296 | /* else: e.g. "continue 2" should *break* once, *then* continue */ |
| 3297 | } /* 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] | 3298 | if (G.depth_break_continue != 0 || fbc == BC_BREAK) |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3299 | goto check_jobs_and_break; |
| 3300 | /* "continue": simulate end of loop */ |
| 3301 | rword = RES_DONE; |
| 3302 | continue; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3303 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3304 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3305 | } else if (pi->followup == PIPE_BG) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3306 | /* what does bash do with attempts to background builtins? */ |
| 3307 | /* even bash 3.2 doesn't do that well with nested bg: |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3308 | * try "{ { sleep 10; echo DEEP; } & echo HERE; } &". |
| 3309 | * I'm NOT treating inner &'s as jobs */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3310 | check_and_run_traps(0); |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3311 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3312 | if (G.run_list_level == 1) |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3313 | insert_bg_job(pi); |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3314 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3315 | rcode = 0; /* EXIT_SUCCESS */ |
| 3316 | } else { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3317 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3318 | if (G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3319 | /* waits for completion, then fg's main shell */ |
| 3320 | rcode = checkjobs_and_fg_shell(pi); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3321 | check_and_run_traps(0); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3322 | debug_printf_exec(": checkjobs_and_fg_shell returned %d\n", rcode); |
| 3323 | } else |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3324 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3325 | { /* this one just waits for completion */ |
| 3326 | rcode = checkjobs(pi); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3327 | check_and_run_traps(0); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3328 | debug_printf_exec(": checkjobs returned %d\n", rcode); |
| 3329 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3330 | } |
| 3331 | } |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3332 | debug_printf_exec(": setting last_return_code=%d\n", rcode); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3333 | G.last_return_code = rcode; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3334 | |
| 3335 | /* Analyze how result affects subsequent commands */ |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3336 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3337 | if (rword == RES_IF || rword == RES_ELIF) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3338 | cond_code = rcode; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3339 | #endif |
| 3340 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3341 | if (rword == RES_WHILE) { |
Denis Vlasenko | 918a34b | 2008-07-28 23:17:31 +0000 | [diff] [blame] | 3342 | if (rcode) { |
| 3343 | rcode = 0; /* "while false; do...done" - exitcode 0 */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3344 | goto check_jobs_and_break; |
Denis Vlasenko | 918a34b | 2008-07-28 23:17:31 +0000 | [diff] [blame] | 3345 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3346 | } |
| 3347 | if (rword == RES_UNTIL) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3348 | if (!rcode) { |
| 3349 | check_jobs_and_break: |
| 3350 | checkjobs(NULL); |
| 3351 | break; |
| 3352 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3353 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3354 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3355 | if ((rcode == 0 && pi->followup == PIPE_OR) |
| 3356 | || (rcode != 0 && pi->followup == PIPE_AND) |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3357 | ) { |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3358 | skip_more_for_this_rword = rword; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3359 | } |
Mike Frysinger | 8ec1c9d | 2009-03-29 00:45:26 +0000 | [diff] [blame] | 3360 | |
| 3361 | check_jobs_and_continue: |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 3362 | checkjobs(NULL); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3363 | } /* for (pi) */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3364 | |
| 3365 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3366 | //// if (G.ctrl_z_flag) { |
| 3367 | //// /* ctrl-Z forked somewhere in the past, we are the child, |
| 3368 | //// * and now we completed running the list. Exit. */ |
| 3369 | //////TODO: _exit? |
| 3370 | //// exit(rcode); |
| 3371 | //// } |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3372 | ret: |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3373 | G.run_list_level--; |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3374 | //// if (!G.run_list_level && G_interactive_fd) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3375 | //// signal(SIGTSTP, SIG_IGN); |
| 3376 | //// signal(SIGINT, SIG_IGN); |
| 3377 | //// } |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3378 | #endif |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3379 | 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] | 3380 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3381 | if (loop_top) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3382 | G.depth_of_loop--; |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3383 | free(for_list); |
| 3384 | #endif |
| 3385 | #if ENABLE_HUSH_CASE |
| 3386 | free(case_word); |
| 3387 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3388 | return rcode; |
| 3389 | } |
| 3390 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3391 | /* Select which version we will use */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3392 | static int run_and_free_list(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3393 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3394 | int rcode = 0; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3395 | debug_printf_exec("run_and_free_list entered\n"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3396 | if (!G.fake_mode) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3397 | debug_printf_exec(": run_list with %d members\n", pi->num_cmds); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3398 | rcode = run_list(pi); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3399 | } |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3400 | /* free_pipe_list has the side effect of clearing memory. |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3401 | * In the long run that function can be merged with run_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3402 | * but doing that now would hobble the debugging effort. */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3403 | free_pipe_list(pi, /* indent: */ 0); |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 3404 | debug_printf_exec("run_and_free_list return %d\n", rcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3405 | return rcode; |
| 3406 | } |
| 3407 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3408 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3409 | /* Peek ahead in the in_str to find out if we have a "&n" construct, |
| 3410 | * as in "2>&1", that represents duplicating a file descriptor. |
| 3411 | * Return either -2 (syntax error), -1 (no &), or the number found. |
| 3412 | */ |
| 3413 | static int redirect_dup_num(struct in_str *input) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3414 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3415 | int ch, d = 0, ok = 0; |
| 3416 | ch = i_peek(input); |
| 3417 | if (ch != '&') return -1; |
| 3418 | |
| 3419 | i_getch(input); /* get the & */ |
| 3420 | ch = i_peek(input); |
| 3421 | if (ch == '-') { |
| 3422 | i_getch(input); |
| 3423 | return -3; /* "-" represents "close me" */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3424 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3425 | while (isdigit(ch)) { |
| 3426 | d = d*10 + (ch-'0'); |
| 3427 | ok = 1; |
| 3428 | i_getch(input); |
| 3429 | ch = i_peek(input); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3430 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3431 | if (ok) return d; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3432 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3433 | bb_error_msg("ambiguous redirect"); |
| 3434 | return -2; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 3435 | } |
| 3436 | |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3437 | /* 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] | 3438 | * for file descriptor duplication, e.g., "2>&1". |
| 3439 | * Return code is 0 normally, 1 if a syntax error is detected in src. |
| 3440 | * Resource errors (in xmalloc) cause the process to exit */ |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 3441 | static int setup_redirect(struct parse_context *ctx, |
| 3442 | int fd, |
| 3443 | redir_type style, |
| 3444 | struct in_str *input) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3445 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3446 | struct command *command = ctx->command; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 3447 | struct redir_struct *redir; |
| 3448 | struct redir_struct **redirp; |
| 3449 | int dup_num; |
| 3450 | |
| 3451 | /* Check for a '2>&1' type redirect */ |
| 3452 | dup_num = redirect_dup_num(input); |
| 3453 | if (dup_num == -2) |
| 3454 | return 1; /* syntax error */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3455 | |
| 3456 | /* 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] | 3457 | redirp = &command->redirects; |
| 3458 | while ((redir = *redirp) != NULL) { |
| 3459 | redirp = &(redir->next); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3460 | } |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 3461 | *redirp = redir = xzalloc(sizeof(*redir)); |
Denis Vlasenko | ff09762 | 2007-10-01 10:00:45 +0000 | [diff] [blame] | 3462 | /* redir->next = NULL; */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3463 | /* redir->rd_filename = NULL; */ |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3464 | redir->rd_type = style; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3465 | redir->fd = (fd == -1) ? redir_table[style].default_fd : fd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3466 | |
| 3467 | debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip); |
| 3468 | |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 3469 | redir->dup = dup_num; |
| 3470 | if (dup_num != -1) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3471 | /* Erik had a check here that the file descriptor in question |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 3472 | * is legit; I postpone that to "run time" |
| 3473 | * A "-" representation of "close me" shows up as a -3 here */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3474 | debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup); |
| 3475 | } else { |
| 3476 | /* We do _not_ try to open the file that src points to, |
| 3477 | * since we need to return and let src be expanded first. |
| 3478 | * Set ctx->pending_redirect, so we know what to do at the |
Denis Vlasenko | 201c72a | 2007-05-25 10:00:36 +0000 | [diff] [blame] | 3479 | * end of the next parsed word. */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3480 | ctx->pending_redirect = redir; |
| 3481 | } |
| 3482 | return 0; |
| 3483 | } |
| 3484 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3485 | |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 3486 | static struct pipe *new_pipe(void) |
| 3487 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3488 | struct pipe *pi; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3489 | pi = xzalloc(sizeof(struct pipe)); |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3490 | /*pi->followup = 0; - deliberately invalid value */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3491 | /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3492 | return pi; |
| 3493 | } |
| 3494 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3495 | /* Command (member of a pipe) is complete. The only possible error here |
| 3496 | * is out of memory, in which case xmalloc exits. */ |
| 3497 | static int done_command(struct parse_context *ctx) |
| 3498 | { |
| 3499 | /* The command is really already in the pipe structure, so |
| 3500 | * advance the pipe counter and make a new, null command. */ |
| 3501 | struct pipe *pi = ctx->pipe; |
| 3502 | struct command *command = ctx->command; |
| 3503 | |
| 3504 | if (command) { |
| 3505 | if (command->group == NULL |
| 3506 | && command->argv == NULL |
| 3507 | && command->redirects == NULL |
| 3508 | ) { |
| 3509 | debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds); |
| 3510 | return pi->num_cmds; |
| 3511 | } |
| 3512 | pi->num_cmds++; |
| 3513 | debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds); |
| 3514 | } else { |
| 3515 | debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds); |
| 3516 | } |
| 3517 | |
| 3518 | /* Only real trickiness here is that the uncommitted |
| 3519 | * command structure is not counted in pi->num_cmds. */ |
| 3520 | pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1)); |
| 3521 | command = &pi->cmds[pi->num_cmds]; |
| 3522 | memset(command, 0, sizeof(*command)); |
| 3523 | |
| 3524 | ctx->command = command; |
| 3525 | /* but ctx->pipe and ctx->list_head remain unchanged */ |
| 3526 | |
| 3527 | return pi->num_cmds; /* used only for 0/nonzero check */ |
| 3528 | } |
| 3529 | |
| 3530 | static void done_pipe(struct parse_context *ctx, pipe_style type) |
| 3531 | { |
| 3532 | int not_null; |
| 3533 | |
| 3534 | debug_printf_parse("done_pipe entered, followup %d\n", type); |
| 3535 | /* Close previous command */ |
| 3536 | not_null = done_command(ctx); |
| 3537 | ctx->pipe->followup = type; |
| 3538 | IF_HAS_KEYWORDS(ctx->pipe->pi_inverted = ctx->ctx_inverted;) |
| 3539 | IF_HAS_KEYWORDS(ctx->ctx_inverted = 0;) |
| 3540 | IF_HAS_KEYWORDS(ctx->pipe->res_word = ctx->ctx_res_w;) |
| 3541 | |
| 3542 | /* Without this check, even just <enter> on command line generates |
| 3543 | * tree of three NOPs (!). Which is harmless but annoying. |
| 3544 | * IOW: it is safe to do it unconditionally. |
| 3545 | * RES_NONE case is for "for a in; do ..." (empty IN set) |
| 3546 | * to work, possibly other cases too. */ |
| 3547 | if (not_null IF_HAS_KEYWORDS(|| ctx->ctx_res_w != RES_NONE)) { |
| 3548 | struct pipe *new_p; |
| 3549 | debug_printf_parse("done_pipe: adding new pipe: " |
| 3550 | "not_null:%d ctx->ctx_res_w:%d\n", |
| 3551 | not_null, ctx->ctx_res_w); |
| 3552 | new_p = new_pipe(); |
| 3553 | ctx->pipe->next = new_p; |
| 3554 | ctx->pipe = new_p; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3555 | /* RES_THEN, RES_DO etc are "sticky" - |
| 3556 | * they remain set for commands inside if/while. |
| 3557 | * This is used to control execution. |
| 3558 | * RES_FOR and RES_IN are NOT sticky (needed to support |
| 3559 | * cases where variable or value happens to match a keyword): |
| 3560 | */ |
| 3561 | #if ENABLE_HUSH_LOOPS |
| 3562 | if (ctx->ctx_res_w == RES_FOR |
| 3563 | || ctx->ctx_res_w == RES_IN) |
| 3564 | ctx->ctx_res_w = RES_NONE; |
| 3565 | #endif |
| 3566 | #if ENABLE_HUSH_CASE |
| 3567 | if (ctx->ctx_res_w == RES_MATCH) |
| 3568 | ctx->ctx_res_w = RES_CASEI; |
| 3569 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3570 | ctx->command = NULL; /* trick done_command below */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3571 | /* Create the memory for command, roughly: |
| 3572 | * ctx->pipe->cmds = new struct command; |
| 3573 | * ctx->command = &ctx->pipe->cmds[0]; |
| 3574 | */ |
| 3575 | done_command(ctx); |
| 3576 | } |
| 3577 | debug_printf_parse("done_pipe return\n"); |
| 3578 | } |
| 3579 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3580 | static void initialize_context(struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3581 | { |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3582 | memset(ctx, 0, sizeof(*ctx)); |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3583 | ctx->pipe = ctx->list_head = new_pipe(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3584 | /* Create the memory for command, roughly: |
| 3585 | * ctx->pipe->cmds = new struct command; |
| 3586 | * ctx->command = &ctx->pipe->cmds[0]; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3587 | */ |
| 3588 | done_command(ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3589 | } |
| 3590 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3591 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3592 | /* If a reserved word is found and processed, parse context is modified |
| 3593 | * and 1 is returned. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3594 | */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3595 | #if HAS_KEYWORDS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3596 | struct reserved_combo { |
| 3597 | char literal[6]; |
| 3598 | unsigned char res; |
| 3599 | unsigned char assignment_flag; |
| 3600 | int flag; |
| 3601 | }; |
| 3602 | enum { |
| 3603 | FLAG_END = (1 << RES_NONE ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3604 | #if ENABLE_HUSH_IF |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3605 | FLAG_IF = (1 << RES_IF ), |
| 3606 | FLAG_THEN = (1 << RES_THEN ), |
| 3607 | FLAG_ELIF = (1 << RES_ELIF ), |
| 3608 | FLAG_ELSE = (1 << RES_ELSE ), |
| 3609 | FLAG_FI = (1 << RES_FI ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3610 | #endif |
| 3611 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3612 | FLAG_FOR = (1 << RES_FOR ), |
| 3613 | FLAG_WHILE = (1 << RES_WHILE), |
| 3614 | FLAG_UNTIL = (1 << RES_UNTIL), |
| 3615 | FLAG_DO = (1 << RES_DO ), |
| 3616 | FLAG_DONE = (1 << RES_DONE ), |
| 3617 | FLAG_IN = (1 << RES_IN ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3618 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3619 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3620 | FLAG_MATCH = (1 << RES_MATCH), |
| 3621 | FLAG_ESAC = (1 << RES_ESAC ), |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3622 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3623 | FLAG_START = (1 << RES_XXXX ), |
| 3624 | }; |
| 3625 | |
| 3626 | static const struct reserved_combo* match_reserved_word(o_string *word) |
| 3627 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3628 | /* Mostly a list of accepted follow-up reserved words. |
| 3629 | * FLAG_END means we are done with the sequence, and are ready |
| 3630 | * to turn the compound list into a command. |
| 3631 | * FLAG_START means the word must start a new compound list. |
| 3632 | */ |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3633 | static const struct reserved_combo reserved_list[] = { |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3634 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3635 | { "!", RES_NONE, NOT_ASSIGNMENT , 0 }, |
| 3636 | { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START }, |
| 3637 | { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI }, |
| 3638 | { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN }, |
| 3639 | { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI }, |
| 3640 | { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3641 | #endif |
| 3642 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3643 | { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START }, |
| 3644 | { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START }, |
| 3645 | { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START }, |
| 3646 | { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO }, |
| 3647 | { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE }, |
| 3648 | { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3649 | #endif |
| 3650 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3651 | { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START }, |
| 3652 | { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3653 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3654 | }; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3655 | const struct reserved_combo *r; |
| 3656 | |
| 3657 | for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) { |
| 3658 | if (strcmp(word->data, r->literal) == 0) |
| 3659 | return r; |
| 3660 | } |
| 3661 | return NULL; |
| 3662 | } |
| 3663 | static int reserved_word(o_string *word, struct parse_context *ctx) |
| 3664 | { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3665 | #if ENABLE_HUSH_CASE |
| 3666 | static const struct reserved_combo reserved_match = { |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3667 | "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3668 | }; |
| 3669 | #endif |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3670 | const struct reserved_combo *r; |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3671 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3672 | r = match_reserved_word(word); |
| 3673 | if (!r) |
| 3674 | return 0; |
| 3675 | |
| 3676 | 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] | 3677 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3678 | if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE) |
| 3679 | /* "case word IN ..." - IN part starts first match part */ |
| 3680 | r = &reserved_match; |
| 3681 | else |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3682 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3683 | if (r->flag == 0) { /* '!' */ |
| 3684 | if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3685 | syntax("! ! command"); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3686 | IF_HAS_KEYWORDS(ctx->ctx_res_w = RES_SNTX;) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3687 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3688 | ctx->ctx_inverted = 1; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3689 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3690 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3691 | if (r->flag & FLAG_START) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3692 | struct parse_context *old; |
| 3693 | old = xmalloc(sizeof(*old)); |
| 3694 | debug_printf_parse("push stack %p\n", old); |
| 3695 | *old = *ctx; /* physical copy */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3696 | initialize_context(ctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3697 | ctx->stack = old; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3698 | } 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] | 3699 | syntax(word->data); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3700 | ctx->ctx_res_w = RES_SNTX; |
| 3701 | return 1; |
| 3702 | } |
| 3703 | ctx->ctx_res_w = r->res; |
| 3704 | ctx->old_flag = r->flag; |
| 3705 | if (ctx->old_flag & FLAG_END) { |
| 3706 | struct parse_context *old; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3707 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3708 | debug_printf_parse("pop stack %p\n", ctx->stack); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3709 | old = ctx->stack; |
| 3710 | old->command->group = ctx->list_head; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3711 | old->command->grp_type = GRP_NORMAL; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3712 | #if !BB_MMU |
| 3713 | o_addstr(&old->as_string, ctx->as_string.data); |
| 3714 | o_free_unsafe(&ctx->as_string); |
| 3715 | old->command->group_as_string = xstrdup(old->as_string.data); |
| 3716 | debug_printf_parse("pop, remembering as:'%s'\n", |
| 3717 | old->command->group_as_string); |
| 3718 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3719 | *ctx = *old; /* physical copy */ |
| 3720 | free(old); |
| 3721 | } |
| 3722 | word->o_assignment = r->assignment_flag; |
| 3723 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3724 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3725 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3726 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3727 | /* Word is complete, look at it and update parsing context. |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3728 | * Normal return is 0. Syntax errors return 1. |
| 3729 | * Note: on return, word is reset, but not o_free'd! |
| 3730 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3731 | static int done_word(o_string *word, struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3732 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3733 | struct command *command = ctx->command; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3734 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3735 | debug_printf_parse("done_word entered: '%s' %p\n", word->data, command); |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3736 | if (word->length == 0 && word->nonnull == 0) { |
| 3737 | debug_printf_parse("done_word return 0: true null, ignored\n"); |
| 3738 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3739 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3740 | /* If this word wasn't an assignment, next ones definitely |
| 3741 | * can't be assignments. Even if they look like ones. */ |
| 3742 | if (word->o_assignment != DEFINITELY_ASSIGNMENT |
| 3743 | && word->o_assignment != WORD_IS_KEYWORD |
| 3744 | ) { |
| 3745 | word->o_assignment = NOT_ASSIGNMENT; |
| 3746 | } else { |
| 3747 | if (word->o_assignment == DEFINITELY_ASSIGNMENT) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3748 | command->assignment_cnt++; |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3749 | word->o_assignment = MAYBE_ASSIGNMENT; |
| 3750 | } |
| 3751 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3752 | if (ctx->pending_redirect) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3753 | /* We do not glob in e.g. >*.tmp case. bash seems to glob here |
| 3754 | * only if run as "bash", not "sh" */ |
| 3755 | ctx->pending_redirect->rd_filename = xstrdup(word->data); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3756 | word->o_assignment = NOT_ASSIGNMENT; |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3757 | debug_printf("word stored in rd_filename: '%s'\n", word->data); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3758 | } else { |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 3759 | /* "{ echo foo; } echo bar" - bad */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3760 | /* NB: bash allows e.g.: |
| 3761 | * if true; then { echo foo; } fi |
| 3762 | * while if false; then false; fi do break; done |
| 3763 | * TODO? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3764 | if (command->group) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3765 | syntax(word->data); |
| 3766 | debug_printf_parse("done_word return 1: syntax error, " |
| 3767 | "groups and arglists don't mix\n"); |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 3768 | return 1; |
| 3769 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3770 | #if HAS_KEYWORDS |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3771 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | 757361f | 2008-07-14 08:26:47 +0000 | [diff] [blame] | 3772 | if (ctx->ctx_dsemicolon |
| 3773 | && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */ |
| 3774 | ) { |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 3775 | /* already done when ctx_dsemicolon was set to 1: */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3776 | /* ctx->ctx_res_w = RES_MATCH; */ |
| 3777 | ctx->ctx_dsemicolon = 0; |
| 3778 | } else |
| 3779 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3780 | if (!command->argv /* if it's the first word... */ |
Denis Vlasenko | 6bdff08 | 2008-07-09 20:14:53 +0000 | [diff] [blame] | 3781 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3782 | && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */ |
| 3783 | && ctx->ctx_res_w != RES_IN |
Denis Vlasenko | 6bdff08 | 2008-07-09 20:14:53 +0000 | [diff] [blame] | 3784 | #endif |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3785 | ) { |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3786 | debug_printf_parse(": checking '%s' for reserved-ness\n", word->data); |
| 3787 | if (reserved_word(word, ctx)) { |
| 3788 | o_reset(word); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3789 | debug_printf_parse("done_word return %d\n", |
| 3790 | (ctx->ctx_res_w == RES_SNTX)); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3791 | return (ctx->ctx_res_w == RES_SNTX); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3792 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3793 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3794 | #endif |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3795 | 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] | 3796 | /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */ |
| 3797 | && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL) |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3798 | /* (otherwise it's known to be not empty and is already safe) */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3799 | ) { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3800 | /* exclude "$@" - it can expand to no word despite "" */ |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 3801 | char *p = word->data; |
| 3802 | while (p[0] == SPECIAL_VAR_SYMBOL |
| 3803 | && (p[1] & 0x7f) == '@' |
| 3804 | && p[2] == SPECIAL_VAR_SYMBOL |
| 3805 | ) { |
| 3806 | p += 3; |
| 3807 | } |
| 3808 | if (p == word->data || p[0] != '\0') { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3809 | /* saw no "$@", or not only "$@" but some |
| 3810 | * real text is there too */ |
| 3811 | /* insert "empty variable" reference, this makes |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 3812 | * e.g. "", $empty"" etc to not disappear */ |
| 3813 | o_addchr(word, SPECIAL_VAR_SYMBOL); |
| 3814 | o_addchr(word, SPECIAL_VAR_SYMBOL); |
| 3815 | } |
Denis Vlasenko | c1c63b6 | 2008-06-18 09:20:35 +0000 | [diff] [blame] | 3816 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3817 | command->argv = add_string_to_strings(command->argv, xstrdup(word->data)); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3818 | debug_print_strings("word appended to argv", command->argv); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3819 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3820 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3821 | o_reset(word); |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3822 | ctx->pending_redirect = NULL; |
| 3823 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3824 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3825 | /* Force FOR to have just one word (variable name) */ |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3826 | /* NB: basically, this makes hush see "for v in ..." syntax as if |
| 3827 | * as it is "for v; in ...". FOR and IN become two pipe structs |
| 3828 | * in parse tree. */ |
| 3829 | if (ctx->ctx_res_w == RES_FOR) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3830 | //TODO: check that command->argv[0] is a valid variable name! |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 3831 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3832 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3833 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3834 | #if ENABLE_HUSH_CASE |
| 3835 | /* Force CASE to have just one word */ |
| 3836 | if (ctx->ctx_res_w == RES_CASE) { |
| 3837 | done_pipe(ctx, PIPE_SEQ); |
| 3838 | } |
| 3839 | #endif |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3840 | debug_printf_parse("done_word return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3841 | return 0; |
| 3842 | } |
| 3843 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3844 | /* If a redirect is immediately preceded by a number, that number is |
| 3845 | * supposed to tell which file descriptor to redirect. This routine |
| 3846 | * looks for such preceding numbers. In an ideal world this routine |
| 3847 | * needs to handle all the following classes of redirects... |
| 3848 | * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo |
| 3849 | * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo |
| 3850 | * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo |
| 3851 | * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo |
| 3852 | * A -1 output from this program means no valid number was found, so the |
| 3853 | * caller should use the appropriate default for this redirection. |
| 3854 | */ |
| 3855 | static int redirect_opt_num(o_string *o) |
| 3856 | { |
| 3857 | int num; |
| 3858 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3859 | if (o->length == 0) |
| 3860 | return -1; |
| 3861 | for (num = 0; num < o->length; num++) { |
Denis Vlasenko | c1c63b6 | 2008-06-18 09:20:35 +0000 | [diff] [blame] | 3862 | if (!isdigit(o->data[num])) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3863 | return -1; |
| 3864 | } |
| 3865 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3866 | num = atoi(o->data); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3867 | o_reset(o); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3868 | return num; |
| 3869 | } |
| 3870 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3871 | #if BB_MMU |
| 3872 | #define parse_stream(pstring, input, end_trigger) \ |
| 3873 | parse_stream(input, end_trigger) |
| 3874 | #endif |
| 3875 | static struct pipe *parse_stream(char **pstring, |
| 3876 | struct in_str *input, |
| 3877 | int end_trigger); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3878 | static void parse_and_run_string(const char *s); |
Mike Frysinger | ddbee97 | 2009-03-22 22:48:41 +0000 | [diff] [blame] | 3879 | |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 3880 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3881 | static FILE *generate_stream_from_string(const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3882 | { |
| 3883 | FILE *pf; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3884 | int pid, channel[2]; |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 3885 | |
Denis Vlasenko | 5a6aedd | 2007-05-26 16:44:20 +0000 | [diff] [blame] | 3886 | xpipe(channel); |
Denis Vlasenko | 82604e9 | 2008-07-01 15:59:42 +0000 | [diff] [blame] | 3887 | pid = BB_MMU ? fork() : vfork(); |
| 3888 | if (pid < 0) |
| 3889 | bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork"); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3890 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3891 | if (pid == 0) { /* child */ |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 3892 | /* Process substitution is not considered to be usual |
| 3893 | * 'command execution'. |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 3894 | * SUSv3 says ctrl-Z should be ignored, ctrl-C should not. |
| 3895 | */ |
Denis Vlasenko | e0755e5 | 2009-04-03 21:16:45 +0000 | [diff] [blame] | 3896 | bb_signals(0 |
| 3897 | + (1 << SIGTSTP) |
| 3898 | + (1 << SIGTTIN) |
| 3899 | + (1 << SIGTTOU) |
| 3900 | , SIG_IGN); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3901 | if (ENABLE_HUSH_JOB) |
| 3902 | die_sleep = 0; /* let nofork's xfuncs die */ |
| 3903 | close(channel[0]); /* NB: close _first_, then move fd! */ |
| 3904 | xmove_fd(channel[1], 1); |
| 3905 | /* Prevent it from trying to handle ctrl-z etc */ |
| 3906 | USE_HUSH_JOB(G.run_list_level = 1;) |
| 3907 | #if BB_MMU |
| 3908 | parse_and_run_string(s); |
| 3909 | _exit(G.last_return_code); |
| 3910 | #else |
| 3911 | /* We re-execute after vfork on NOMMU. This makes this script safe: |
| 3912 | * yes "0123456789012345678901234567890" | dd bs=32 count=64k >TESTFILE |
| 3913 | * huge=`cat TESTFILE` # was blocking here forever |
| 3914 | * echo OK |
| 3915 | */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 3916 | re_execute_shell(s); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3917 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3918 | } |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3919 | |
| 3920 | /* parent */ |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 3921 | clean_up_after_re_execute(); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3922 | close(channel[1]); |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 3923 | pf = fdopen(channel[0], "r"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3924 | return pf; |
| 3925 | } |
| 3926 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3927 | /* Return code is exit status of the process that is run. */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3928 | static int process_command_subs(o_string *dest, const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3929 | { |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3930 | FILE *pf; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3931 | struct in_str pipe_str; |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3932 | int ch, eol_cnt; |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 3933 | |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3934 | pf = generate_stream_from_string(s); |
| 3935 | if (pf == NULL) |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3936 | return 1; |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3937 | close_on_exec_on(fileno(pf)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3938 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3939 | /* Now send results of command back into original context */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3940 | setup_file_in_str(&pipe_str, pf); |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 3941 | eol_cnt = 0; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3942 | while ((ch = i_getch(&pipe_str)) != EOF) { |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 3943 | if (ch == '\n') { |
| 3944 | eol_cnt++; |
| 3945 | continue; |
| 3946 | } |
| 3947 | while (eol_cnt) { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3948 | o_addchr(dest, '\n'); |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 3949 | eol_cnt--; |
| 3950 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 3951 | o_addQchr(dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3952 | } |
| 3953 | |
| 3954 | debug_printf("done reading from pipe, pclose()ing\n"); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 3955 | /* Note: we got EOF, and we just close the read end of the pipe. |
| 3956 | * We do not wait for the `cmd` child to terminate. bash and ash do. |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3957 | * Try these: |
| 3958 | * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec |
| 3959 | * `false`; echo $? - bash outputs "1" |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 3960 | */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3961 | fclose(pf); |
| 3962 | debug_printf("closed FILE from child. return 0\n"); |
| 3963 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3964 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 3965 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3966 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3967 | static int parse_group(o_string *dest, struct parse_context *ctx, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3968 | struct in_str *input, int ch) |
| 3969 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3970 | /* dest contains characters seen prior to ( or {. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 3971 | * Typically it's empty, but for function defs, |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3972 | * it contains function name (without '()'). */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3973 | struct pipe *pipe_list; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 3974 | int endch; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3975 | struct command *command = ctx->command; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3976 | |
| 3977 | debug_printf_parse("parse_group entered\n"); |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3978 | #if ENABLE_HUSH_FUNCTIONS |
| 3979 | if (ch == 'F') { /* function definition? */ |
| 3980 | bb_error_msg("aha '%s' is a function, parsing it...", dest->data); |
| 3981 | //command->fname = dest->data; |
| 3982 | command->grp_type = GRP_FUNCTION; |
| 3983 | //TODO: review every o_reset() location... do they handle all o_string fields correctly? |
| 3984 | memset(dest, 0, sizeof(*dest)); |
| 3985 | } |
| 3986 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3987 | if (command->argv /* word [word](... */ |
| 3988 | || dest->length /* word(... */ |
| 3989 | || dest->nonnull /* ""(... */ |
| 3990 | ) { |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 3991 | syntax(NULL); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3992 | debug_printf_parse("parse_group return 1: " |
| 3993 | "syntax error, groups and arglists don't mix\n"); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3994 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3995 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 3996 | endch = '}'; |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 3997 | if (ch == '(') { |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 3998 | endch = ')'; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3999 | command->grp_type = GRP_SUBSHELL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4000 | } |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4001 | { |
| 4002 | #if !BB_MMU |
| 4003 | char *as_string = NULL; |
| 4004 | #endif |
| 4005 | pipe_list = parse_stream(&as_string, input, endch); |
| 4006 | #if !BB_MMU |
| 4007 | if (as_string) |
| 4008 | o_addstr(&ctx->as_string, as_string); |
| 4009 | #endif |
| 4010 | /* empty ()/{} or parse error? */ |
| 4011 | if (!pipe_list || pipe_list == ERR_PTR) { |
| 4012 | #if !BB_MMU |
| 4013 | free(as_string); |
| 4014 | #endif |
| 4015 | syntax(NULL); |
| 4016 | debug_printf_parse("parse_group return 1: " |
| 4017 | "parse_stream returned %p\n", pipe_list); |
| 4018 | return 1; |
| 4019 | } |
| 4020 | command->group = pipe_list; |
| 4021 | #if !BB_MMU |
| 4022 | as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */ |
| 4023 | command->group_as_string = as_string; |
| 4024 | debug_printf_parse("end of group, remembering as:'%s'\n", |
| 4025 | command->group_as_string); |
| 4026 | #endif |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4027 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4028 | debug_printf_parse("parse_group return 0\n"); |
| 4029 | return 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4030 | /* command remains "open", available for possible redirects */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4031 | } |
| 4032 | |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4033 | #if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4034 | /* Subroutines for copying $(...) and `...` things */ |
| 4035 | static void add_till_backquote(o_string *dest, struct in_str *input); |
| 4036 | /* '...' */ |
| 4037 | static void add_till_single_quote(o_string *dest, struct in_str *input) |
| 4038 | { |
| 4039 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4040 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4041 | if (ch == EOF) |
| 4042 | break; |
| 4043 | if (ch == '\'') |
| 4044 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4045 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4046 | } |
| 4047 | } |
| 4048 | /* "...\"...`..`...." - do we need to handle "...$(..)..." too? */ |
| 4049 | static void add_till_double_quote(o_string *dest, struct in_str *input) |
| 4050 | { |
| 4051 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4052 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4053 | if (ch == '"') |
| 4054 | break; |
| 4055 | if (ch == '\\') { /* \x. Copy both chars. */ |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4056 | o_addchr(dest, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4057 | ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4058 | } |
| 4059 | if (ch == EOF) |
| 4060 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4061 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4062 | if (ch == '`') { |
| 4063 | add_till_backquote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4064 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4065 | continue; |
| 4066 | } |
Denis Vlasenko | 5703c22 | 2008-06-15 11:49:42 +0000 | [diff] [blame] | 4067 | //if (ch == '$') ... |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4068 | } |
| 4069 | } |
| 4070 | /* Process `cmd` - copy contents until "`" is seen. Complicated by |
| 4071 | * \` quoting. |
| 4072 | * "Within the backquoted style of command substitution, backslash |
| 4073 | * shall retain its literal meaning, except when followed by: '$', '`', or '\'. |
| 4074 | * The search for the matching backquote shall be satisfied by the first |
| 4075 | * backquote found without a preceding backslash; during this search, |
| 4076 | * if a non-escaped backquote is encountered within a shell comment, |
| 4077 | * a here-document, an embedded command substitution of the $(command) |
| 4078 | * form, or a quoted string, undefined results occur. A single-quoted |
| 4079 | * or double-quoted string that begins, but does not end, within the |
| 4080 | * "`...`" sequence produces undefined results." |
| 4081 | * Example Output |
| 4082 | * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST |
| 4083 | */ |
| 4084 | static void add_till_backquote(o_string *dest, struct in_str *input) |
| 4085 | { |
| 4086 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4087 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4088 | if (ch == '`') |
| 4089 | break; |
| 4090 | if (ch == '\\') { /* \x. Copy both chars unless it is \` */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4091 | int ch2 = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4092 | if (ch2 != '`' && ch2 != '$' && ch2 != '\\') |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4093 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4094 | ch = ch2; |
| 4095 | } |
| 4096 | if (ch == EOF) |
| 4097 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4098 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4099 | } |
| 4100 | } |
| 4101 | /* Process $(cmd) - copy contents until ")" is seen. Complicated by |
| 4102 | * quoting and nested ()s. |
| 4103 | * "With the $(command) style of command substitution, all characters |
| 4104 | * following the open parenthesis to the matching closing parenthesis |
| 4105 | * constitute the command. Any valid shell script can be used for command, |
| 4106 | * except a script consisting solely of redirections which produces |
| 4107 | * unspecified results." |
| 4108 | * Example Output |
| 4109 | * echo $(echo '(TEST)' BEST) (TEST) BEST |
| 4110 | * echo $(echo 'TEST)' BEST) TEST) BEST |
| 4111 | * echo $(echo \(\(TEST\) BEST) ((TEST) BEST |
| 4112 | */ |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4113 | 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] | 4114 | { |
| 4115 | int count = 0; |
| 4116 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4117 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4118 | if (ch == EOF) |
| 4119 | break; |
| 4120 | if (ch == '(') |
| 4121 | count++; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4122 | if (ch == ')') { |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4123 | if (--count < 0) { |
| 4124 | if (!dbl) |
| 4125 | break; |
| 4126 | if (i_peek(input) == ')') { |
| 4127 | i_getch(input); |
| 4128 | break; |
| 4129 | } |
| 4130 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4131 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4132 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4133 | if (ch == '\'') { |
| 4134 | add_till_single_quote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4135 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4136 | continue; |
| 4137 | } |
| 4138 | if (ch == '"') { |
| 4139 | add_till_double_quote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4140 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4141 | continue; |
| 4142 | } |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4143 | if (ch == '\\') { /* \x. Copy verbatim. Important for \(, \) */ |
| 4144 | ch = i_getch(input); |
| 4145 | if (ch == EOF) |
| 4146 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4147 | o_addchr(dest, ch); |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4148 | continue; |
| 4149 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4150 | } |
| 4151 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4152 | #endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */ |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4153 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4154 | /* Return code: 0 for OK, 1 for syntax error */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4155 | #if BB_MMU |
| 4156 | #define handle_dollar(ctx, dest, input) \ |
| 4157 | handle_dollar(dest, input) |
| 4158 | #endif |
| 4159 | static int handle_dollar(struct parse_context *ctx, |
| 4160 | o_string *dest, |
| 4161 | struct in_str *input) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4162 | { |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 4163 | int expansion; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4164 | int ch = i_peek(input); /* first character after the $ */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 4165 | unsigned char quote_mask = dest->o_escape ? 0x80 : 0; |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4166 | |
| 4167 | debug_printf_parse("handle_dollar entered: ch='%c'\n", ch); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 4168 | if (isalpha(ch)) { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4169 | ch = i_getch(input); |
| 4170 | #if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4171 | if (ctx) o_addchr(&ctx->as_string, ch); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4172 | #endif |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 4173 | make_var: |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4174 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4175 | while (1) { |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4176 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4177 | o_addchr(dest, ch | quote_mask); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 4178 | quote_mask = 0; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4179 | ch = i_peek(input); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4180 | if (!isalnum(ch) && ch != '_') |
| 4181 | break; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4182 | ch = i_getch(input); |
| 4183 | #if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4184 | if (ctx) o_addchr(&ctx->as_string, ch); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4185 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4186 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4187 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4188 | } else if (isdigit(ch)) { |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4189 | make_one_char_var: |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4190 | ch = i_getch(input); |
| 4191 | #if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4192 | if (ctx) o_addchr(&ctx->as_string, ch); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4193 | #endif |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4194 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4195 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4196 | o_addchr(dest, ch | quote_mask); |
| 4197 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4198 | } else switch (ch) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4199 | case '$': /* pid */ |
| 4200 | case '!': /* last bg pid */ |
| 4201 | case '?': /* last exit code */ |
| 4202 | case '#': /* number of args */ |
| 4203 | case '*': /* args */ |
| 4204 | case '@': /* args */ |
| 4205 | goto make_one_char_var; |
| 4206 | case '{': { |
| 4207 | bool first_char, all_digits; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 4208 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4209 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4210 | ch = i_getch(input); |
| 4211 | #if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4212 | if (ctx) o_addchr(&ctx->as_string, ch); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4213 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4214 | /* XXX maybe someone will try to escape the '}' */ |
| 4215 | expansion = 0; |
| 4216 | first_char = true; |
| 4217 | all_digits = false; |
| 4218 | while (1) { |
| 4219 | ch = i_getch(input); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4220 | #if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4221 | if (ctx) o_addchr(&ctx->as_string, ch); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4222 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4223 | if (ch == '}') |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4224 | break; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4225 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4226 | if (first_char) { |
| 4227 | if (ch == '#') |
| 4228 | /* ${#var}: length of var contents */ |
| 4229 | goto char_ok; |
| 4230 | else if (isdigit(ch)) { |
| 4231 | all_digits = true; |
| 4232 | goto char_ok; |
| 4233 | } |
| 4234 | } |
| 4235 | |
| 4236 | if (expansion < 2 |
| 4237 | && ( (all_digits && !isdigit(ch)) |
| 4238 | || (!all_digits && !isalnum(ch) && ch != '_') |
| 4239 | ) |
| 4240 | ) { |
| 4241 | /* handle parameter expansions |
| 4242 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02 |
| 4243 | */ |
| 4244 | if (first_char) |
| 4245 | goto case_default; |
| 4246 | switch (ch) { |
| 4247 | case ':': /* null modifier */ |
| 4248 | if (expansion == 0) { |
| 4249 | debug_printf_parse(": null modifier\n"); |
| 4250 | ++expansion; |
| 4251 | break; |
| 4252 | } |
| 4253 | goto case_default; |
| 4254 | #if 0 /* not implemented yet :( */ |
| 4255 | case '#': /* remove prefix */ |
| 4256 | case '%': /* remove suffix */ |
| 4257 | if (expansion == 0) { |
| 4258 | debug_printf_parse(": remove suffix/prefix\n"); |
| 4259 | expansion = 2; |
| 4260 | break; |
| 4261 | } |
| 4262 | goto case_default; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4263 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4264 | case '-': /* default value */ |
| 4265 | case '=': /* assign default */ |
| 4266 | case '+': /* alternative */ |
| 4267 | case '?': /* error indicate */ |
| 4268 | debug_printf_parse(": parameter expansion\n"); |
| 4269 | expansion = 2; |
| 4270 | break; |
| 4271 | default: |
| 4272 | case_default: |
| 4273 | syntax("unterminated ${name}"); |
| 4274 | debug_printf_parse("handle_dollar return 1: unterminated ${name}\n"); |
| 4275 | return 1; |
| 4276 | } |
| 4277 | } |
| 4278 | char_ok: |
| 4279 | debug_printf_parse(": '%c'\n", ch); |
| 4280 | o_addchr(dest, ch | quote_mask); |
| 4281 | quote_mask = 0; |
| 4282 | first_char = false; |
| 4283 | } |
| 4284 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4285 | break; |
| 4286 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 4287 | #if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK) |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4288 | case '(': { |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 4289 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4290 | int pos; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 4291 | # endif |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4292 | ch = i_getch(input); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 4293 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4294 | if (ctx) o_addchr(&ctx->as_string, ch); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 4295 | # endif |
| 4296 | # if ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4297 | if (i_peek(input) == '(') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4298 | ch = i_getch(input); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 4299 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4300 | if (ctx) o_addchr(&ctx->as_string, ch); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 4301 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4302 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4303 | o_addchr(dest, /*quote_mask |*/ '+'); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 4304 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4305 | pos = dest->length; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 4306 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4307 | add_till_closing_paren(dest, input, true); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 4308 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4309 | if (ctx) { |
| 4310 | o_addstr(&ctx->as_string, dest->data + pos); |
| 4311 | o_addchr(&ctx->as_string, ')'); |
| 4312 | o_addchr(&ctx->as_string, ')'); |
| 4313 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 4314 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4315 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4316 | break; |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4317 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 4318 | # endif |
| 4319 | # if ENABLE_HUSH_TICK |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4320 | //int pos = dest->length; |
| 4321 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4322 | o_addchr(dest, quote_mask | '`'); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 4323 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4324 | pos = dest->length; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 4325 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4326 | add_till_closing_paren(dest, input, false); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 4327 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4328 | if (ctx) { |
| 4329 | o_addstr(&ctx->as_string, dest->data + pos); |
| 4330 | o_addchr(&ctx->as_string, '`'); |
| 4331 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 4332 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4333 | //debug_printf_subst("SUBST RES2 '%s'\n", dest->data + pos); |
| 4334 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 4335 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4336 | break; |
| 4337 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 4338 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4339 | case '_': |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4340 | ch = i_getch(input); |
| 4341 | #if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4342 | if (ctx) o_addchr(&ctx->as_string, ch); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4343 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4344 | ch = i_peek(input); |
| 4345 | if (isalnum(ch)) { /* it's $_name or $_123 */ |
| 4346 | ch = '_'; |
| 4347 | goto make_var; |
| 4348 | } |
| 4349 | /* else: it's $_ */ |
| 4350 | /* TODO: */ |
| 4351 | /* $_ Shell or shell script name; or last cmd name */ |
| 4352 | /* $- Option flags set by set builtin or shell options (-i etc) */ |
| 4353 | default: |
| 4354 | o_addQchr(dest, '$'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4355 | } |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4356 | debug_printf_parse("handle_dollar return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4357 | return 0; |
| 4358 | } |
| 4359 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4360 | #if BB_MMU |
| 4361 | #define parse_stream_dquoted(ctx, dest, input, dquote_end) \ |
| 4362 | parse_stream_dquoted(dest, input, dquote_end) |
| 4363 | #endif |
| 4364 | static int parse_stream_dquoted(struct parse_context *ctx, |
| 4365 | o_string *dest, |
| 4366 | struct in_str *input, |
| 4367 | int dquote_end) |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4368 | { |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4369 | int ch; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4370 | int next; |
| 4371 | |
| 4372 | again: |
| 4373 | ch = i_getch(input); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4374 | #if !BB_MMU |
| 4375 | if (ctx && ch != EOF) |
| 4376 | o_addchr(&ctx->as_string, ch); |
| 4377 | #endif |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4378 | if (ch == dquote_end) { /* may be only '"' or EOF */ |
| 4379 | dest->nonnull = 1; |
| 4380 | if (dest->o_assignment == NOT_ASSIGNMENT) |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 4381 | dest->o_escape ^= 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4382 | debug_printf_parse("parse_stream_dquoted return 0\n"); |
| 4383 | return 0; |
| 4384 | } |
| 4385 | if (ch == EOF) { |
| 4386 | syntax("unterminated \""); |
| 4387 | debug_printf_parse("parse_stream_dquoted return 1: unterminated \"\n"); |
| 4388 | return 1; |
| 4389 | } |
| 4390 | next = '\0'; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4391 | if (ch != '\n') { |
| 4392 | next = i_peek(input); |
| 4393 | } |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4394 | debug_printf_parse(": ch=%c (%d) escape=%d\n", |
| 4395 | ch, ch, dest->o_escape); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4396 | if (ch == '\\') { |
| 4397 | if (next == EOF) { |
| 4398 | syntax("\\<eof>"); |
| 4399 | debug_printf_parse("parse_stream_dquoted return 1: \\<eof>\n"); |
| 4400 | return 1; |
| 4401 | } |
| 4402 | /* bash: |
| 4403 | * "The backslash retains its special meaning [in "..."] |
| 4404 | * only when followed by one of the following characters: |
| 4405 | * $, `, ", \, or <newline>. A double quote may be quoted |
| 4406 | * within double quotes by preceding it with a backslash. |
| 4407 | * If enabled, history expansion will be performed unless |
| 4408 | * an ! appearing in double quotes is escaped using |
| 4409 | * a backslash. The backslash preceding the ! is not removed." |
| 4410 | */ |
| 4411 | if (strchr("$`\"\\", next) != NULL) { |
| 4412 | o_addqchr(dest, i_getch(input)); |
| 4413 | } else { |
| 4414 | o_addqchr(dest, '\\'); |
| 4415 | } |
| 4416 | goto again; |
| 4417 | } |
| 4418 | if (ch == '$') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4419 | if (handle_dollar(ctx, dest, input) != 0) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4420 | debug_printf_parse("parse_stream_dquoted return 1: " |
| 4421 | "handle_dollar returned non-0\n"); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4422 | return 1; |
| 4423 | } |
| 4424 | goto again; |
| 4425 | } |
| 4426 | #if ENABLE_HUSH_TICK |
| 4427 | if (ch == '`') { |
| 4428 | //int pos = dest->length; |
| 4429 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4430 | o_addchr(dest, 0x80 | '`'); |
| 4431 | add_till_backquote(dest, input); |
| 4432 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4433 | //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos); |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 4434 | goto again; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4435 | } |
| 4436 | #endif |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 4437 | o_addQchr(dest, ch); |
| 4438 | if (ch == '=' |
| 4439 | && (dest->o_assignment == MAYBE_ASSIGNMENT |
| 4440 | || dest->o_assignment == WORD_IS_KEYWORD) |
| 4441 | && is_assignment(dest->data) |
| 4442 | ) { |
| 4443 | dest->o_assignment = DEFINITELY_ASSIGNMENT; |
| 4444 | } |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4445 | goto again; |
| 4446 | } |
| 4447 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4448 | /* |
| 4449 | * Scan input until EOF or end_trigger char. |
| 4450 | * Return a list of pipes to execute, or NULL on EOF |
| 4451 | * or if end_trigger character is met. |
| 4452 | * On syntax error, exit is shell is not interactive, |
| 4453 | * reset parsing machinery and start parsing anew, |
| 4454 | * or return ERR_PTR. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4455 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4456 | static struct pipe *parse_stream(char **pstring, |
| 4457 | struct in_str *input, |
| 4458 | int end_trigger) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4459 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4460 | struct parse_context ctx; |
| 4461 | o_string dest = NULL_O_STRING; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4462 | int is_in_dquote; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4463 | |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 4464 | /* Double-quote state is handled in the state variable is_in_dquote. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4465 | * A single-quote triggers a bypass of the main loop until its mate is |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4466 | * found. When recursing, quote state is passed in via dest->o_escape. |
| 4467 | */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4468 | debug_printf_parse("parse_stream entered, end_trigger='%c'\n", |
| 4469 | end_trigger ? : 'X'); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4470 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4471 | G.ifs = get_local_var_value("IFS"); |
| 4472 | if (G.ifs == NULL) |
| 4473 | G.ifs = " \t\n"; |
| 4474 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4475 | reset: |
| 4476 | #if ENABLE_HUSH_INTERACTIVE |
| 4477 | input->promptmode = 0; /* PS1 */ |
| 4478 | #endif |
| 4479 | /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */ |
| 4480 | initialize_context(&ctx); |
| 4481 | is_in_dquote = 0; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4482 | while (1) { |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4483 | const char *is_ifs; |
| 4484 | const char *is_special; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4485 | int ch; |
| 4486 | int next; |
| 4487 | int redir_fd; |
| 4488 | redir_type redir_style; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4489 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4490 | if (is_in_dquote) { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4491 | if (parse_stream_dquoted(&ctx, &dest, input, '"')) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4492 | goto parse_error; |
| 4493 | } |
| 4494 | /* We reached closing '"' */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4495 | is_in_dquote = 0; |
| 4496 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4497 | ch = i_getch(input); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4498 | debug_printf_parse(": ch=%c (%d) escape=%d\n", |
| 4499 | ch, ch, dest.o_escape); |
| 4500 | if (ch == EOF) { |
| 4501 | struct pipe *pi; |
| 4502 | if (done_word(&dest, &ctx)) { |
| 4503 | goto parse_error; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4504 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4505 | o_free(&dest); |
| 4506 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4507 | pi = ctx.list_head; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4508 | /* If we got nothing... */ |
| 4509 | // TODO: test script consisting of just "&" |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4510 | if (pi->num_cmds == 0 |
| 4511 | IF_HAS_KEYWORDS( && pi->res_word == RES_NONE) |
| 4512 | ) { |
| 4513 | free_pipe_list(pi, 0); |
| 4514 | pi = NULL; |
| 4515 | } |
| 4516 | debug_printf_parse("parse_stream return %p\n", pi); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4517 | #if !BB_MMU |
| 4518 | debug_printf_parse("as_string '%s'\n", ctx.as_string.data); |
| 4519 | if (pstring) |
| 4520 | *pstring = ctx.as_string.data; |
| 4521 | else |
| 4522 | o_free_unsafe(&ctx.as_string); |
| 4523 | #endif |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4524 | return pi; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4525 | } |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4526 | #if !BB_MMU |
| 4527 | o_addchr(&ctx.as_string, ch); |
| 4528 | #endif |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4529 | is_ifs = strchr(G.ifs, ch); |
| 4530 | is_special = strchr("<>;&|(){}#'" /* special outside of "str" */ |
| 4531 | "\\$\"" USE_HUSH_TICK("`") /* always special */ |
| 4532 | , ch); |
| 4533 | |
| 4534 | if (!is_special && !is_ifs) { /* ordinary char */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4535 | o_addQchr(&dest, ch); |
| 4536 | if ((dest.o_assignment == MAYBE_ASSIGNMENT |
| 4537 | || dest.o_assignment == WORD_IS_KEYWORD) |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4538 | && ch == '=' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4539 | && is_assignment(dest.data) |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4540 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4541 | dest.o_assignment = DEFINITELY_ASSIGNMENT; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4542 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4543 | continue; |
| 4544 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4545 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4546 | if (is_ifs) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4547 | if (done_word(&dest, &ctx)) { |
| 4548 | goto parse_error; |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 4549 | } |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 4550 | if (ch == '\n') { |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 4551 | #if ENABLE_HUSH_CASE |
| 4552 | /* "case ... in <newline> word) ..." - |
| 4553 | * newlines are ignored (but ';' wouldn't be) */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4554 | if (ctx.command->argv == NULL |
| 4555 | && ctx.ctx_res_w == RES_MATCH |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 4556 | ) { |
| 4557 | continue; |
| 4558 | } |
| 4559 | #endif |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4560 | /* Treat newline as a command separator. */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4561 | done_pipe(&ctx, PIPE_SEQ); |
| 4562 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4563 | ch = ';'; |
Denis Vlasenko | 7c98612 | 2009-04-04 12:15:42 +0000 | [diff] [blame] | 4564 | /* note: if (is_ifs) continue; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4565 | * will still trigger for us */ |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4566 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4567 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4568 | if (end_trigger && end_trigger == ch) { |
| 4569 | //TODO: disallow "{ cmd }" without semicolon |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4570 | if (done_word(&dest, &ctx)) { |
| 4571 | goto parse_error; |
| 4572 | } |
| 4573 | done_pipe(&ctx, PIPE_SEQ); |
| 4574 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4575 | /* Do we sit outside of any if's, loops or case's? */ |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 4576 | if (!HAS_KEYWORDS |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4577 | 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] | 4578 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4579 | debug_printf_parse("parse_stream return %p: " |
| 4580 | "end_trigger char found\n", |
| 4581 | ctx.list_head); |
| 4582 | o_free(&dest); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4583 | #if !BB_MMU |
| 4584 | debug_printf_parse("as_string '%s'\n", ctx.as_string.data); |
| 4585 | if (pstring) |
| 4586 | *pstring = ctx.as_string.data; |
| 4587 | else |
| 4588 | o_free_unsafe(&ctx.as_string); |
| 4589 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4590 | return ctx.list_head; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4591 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4592 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4593 | if (is_ifs) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4594 | continue; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4595 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4596 | if (dest.o_assignment == MAYBE_ASSIGNMENT) { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4597 | /* ch is a special char and thus this word |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4598 | * cannot be an assignment */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4599 | dest.o_assignment = NOT_ASSIGNMENT; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4600 | } |
| 4601 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4602 | next = '\0'; |
| 4603 | if (ch != '\n') { |
| 4604 | next = i_peek(input); |
| 4605 | } |
| 4606 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4607 | switch (ch) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4608 | case '#': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4609 | if (dest.length == 0) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4610 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4611 | ch = i_peek(input); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4612 | if (ch == EOF || ch == '\n') |
| 4613 | break; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4614 | i_getch(input); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4615 | /* note: we do not add it to &ctx.as_string */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4616 | } |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4617 | #if !BB_MMU |
| 4618 | //TODO: go back one char? |
| 4619 | o_addchr(&ctx.as_string, '\n'); |
| 4620 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4621 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4622 | o_addQchr(&dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4623 | } |
| 4624 | break; |
| 4625 | case '\\': |
| 4626 | if (next == EOF) { |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4627 | syntax("\\<eof>"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4628 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4629 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4630 | o_addchr(&dest, '\\'); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4631 | ch = i_getch(input); |
| 4632 | o_addchr(&dest, ch); |
| 4633 | #if !BB_MMU |
| 4634 | o_addchr(&ctx.as_string, ch); |
| 4635 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4636 | break; |
| 4637 | case '$': |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4638 | //NOMMU TODO! |
| 4639 | if (handle_dollar(&ctx, &dest, input) != 0) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4640 | debug_printf_parse("parse_stream parse error: " |
| 4641 | "handle_dollar returned non-0\n"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4642 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4643 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4644 | break; |
| 4645 | case '\'': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4646 | dest.nonnull = 1; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4647 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4648 | ch = i_getch(input); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4649 | if (ch == EOF) { |
| 4650 | syntax("unterminated '"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4651 | goto parse_error; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4652 | } |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4653 | #if !BB_MMU |
| 4654 | o_addchr(&ctx.as_string, ch); |
| 4655 | #endif |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4656 | if (ch == '\'') |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4657 | break; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4658 | if (dest.o_assignment == NOT_ASSIGNMENT) |
| 4659 | o_addqchr(&dest, ch); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4660 | else |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4661 | o_addchr(&dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4662 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4663 | break; |
| 4664 | case '"': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4665 | dest.nonnull = 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4666 | is_in_dquote ^= 1; /* invert */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4667 | if (dest.o_assignment == NOT_ASSIGNMENT) |
| 4668 | dest.o_escape ^= 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4669 | break; |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4670 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4671 | case '`': { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4672 | //int pos = dest.length; |
| 4673 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 4674 | o_addchr(&dest, '`'); |
| 4675 | add_till_backquote(&dest, input); |
| 4676 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 4677 | //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4678 | break; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4679 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4680 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4681 | case '>': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4682 | redir_fd = redirect_opt_num(&dest); |
| 4683 | if (done_word(&dest, &ctx)) { |
| 4684 | goto parse_error; |
| 4685 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4686 | redir_style = REDIRECT_OVERWRITE; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4687 | if (next == '>') { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4688 | redir_style = REDIRECT_APPEND; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4689 | ch = i_getch(input); |
| 4690 | #if !BB_MMU |
| 4691 | o_addchr(&ctx.as_string, ch); |
| 4692 | #endif |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4693 | } |
| 4694 | #if 0 |
| 4695 | else if (next == '(') { |
| 4696 | syntax(">(process) not supported"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4697 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4698 | } |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4699 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4700 | setup_redirect(&ctx, redir_fd, redir_style, input); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4701 | break; |
| 4702 | case '<': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4703 | redir_fd = redirect_opt_num(&dest); |
| 4704 | if (done_word(&dest, &ctx)) { |
| 4705 | goto parse_error; |
| 4706 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4707 | redir_style = REDIRECT_INPUT; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4708 | if (next == '<') { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4709 | redir_style = REDIRECT_HEREIS; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4710 | ch = i_getch(input); |
| 4711 | #if !BB_MMU |
| 4712 | o_addchr(&ctx.as_string, ch); |
| 4713 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4714 | } else if (next == '>') { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4715 | redir_style = REDIRECT_IO; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4716 | ch = i_getch(input); |
| 4717 | #if !BB_MMU |
| 4718 | o_addchr(&ctx.as_string, ch); |
| 4719 | #endif |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4720 | } |
| 4721 | #if 0 |
| 4722 | else if (next == '(') { |
| 4723 | syntax("<(process) not supported"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4724 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4725 | } |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4726 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4727 | setup_redirect(&ctx, redir_fd, redir_style, input); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4728 | break; |
| 4729 | case ';': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4730 | #if ENABLE_HUSH_CASE |
| 4731 | case_semi: |
| 4732 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4733 | if (done_word(&dest, &ctx)) { |
| 4734 | goto parse_error; |
| 4735 | } |
| 4736 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4737 | #if ENABLE_HUSH_CASE |
| 4738 | /* Eat multiple semicolons, detect |
| 4739 | * whether it means something special */ |
| 4740 | while (1) { |
| 4741 | ch = i_peek(input); |
| 4742 | if (ch != ';') |
| 4743 | break; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4744 | ch = i_getch(input); |
| 4745 | #if !BB_MMU |
| 4746 | o_addchr(&ctx.as_string, ch); |
| 4747 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4748 | if (ctx.ctx_res_w == RES_CASEI) { |
| 4749 | ctx.ctx_dsemicolon = 1; |
| 4750 | ctx.ctx_res_w = RES_MATCH; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4751 | break; |
| 4752 | } |
| 4753 | } |
| 4754 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4755 | new_cmd: |
| 4756 | /* We just finished a cmd. New one may start |
| 4757 | * with an assignment */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4758 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4759 | break; |
| 4760 | case '&': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4761 | if (done_word(&dest, &ctx)) { |
| 4762 | goto parse_error; |
| 4763 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4764 | if (next == '&') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4765 | ch = i_getch(input); |
| 4766 | #if !BB_MMU |
| 4767 | o_addchr(&ctx.as_string, ch); |
| 4768 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4769 | done_pipe(&ctx, PIPE_AND); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4770 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4771 | done_pipe(&ctx, PIPE_BG); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4772 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4773 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4774 | case '|': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4775 | if (done_word(&dest, &ctx)) { |
| 4776 | goto parse_error; |
| 4777 | } |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 4778 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4779 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 4780 | break; /* we are in case's "word | word)" */ |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 4781 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4782 | if (next == '|') { /* || */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4783 | ch = i_getch(input); |
| 4784 | #if !BB_MMU |
| 4785 | o_addchr(&ctx.as_string, ch); |
| 4786 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4787 | done_pipe(&ctx, PIPE_OR); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4788 | } else { |
| 4789 | /* we could pick up a file descriptor choice here |
| 4790 | * with redirect_opt_num(), but bash doesn't do it. |
| 4791 | * "echo foo 2| cat" yields "foo 2". */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4792 | done_command(&ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4793 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4794 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4795 | case '(': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4796 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 4797 | /* "case... in [(]word)..." - skip '(' */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4798 | if (ctx.ctx_res_w == RES_MATCH |
| 4799 | && ctx.command->argv == NULL /* not (word|(... */ |
| 4800 | && dest.length == 0 /* not word(... */ |
| 4801 | && dest.nonnull == 0 /* not ""(... */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4802 | ) { |
| 4803 | continue; |
| 4804 | } |
| 4805 | #endif |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4806 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4807 | if (dest.length != 0 /* not just () but word() */ |
| 4808 | && dest.nonnull == 0 /* not a"b"c() */ |
| 4809 | && ctx.command->argv == NULL /* it's the first word */ |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4810 | //TODO: "func ( ) {...}" - note spaces - is valid format too in bash |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4811 | && i_peek(input) == ')' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4812 | && !match_reserved_word(&dest) |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4813 | ) { |
| 4814 | bb_error_msg("seems like a function definition"); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4815 | i_getch(input); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4816 | //if !BB_MMU o_addchr(&ctx.as_string... |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4817 | do { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4818 | //TODO: do it properly. |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4819 | ch = i_getch(input); |
| 4820 | } while (ch == ' ' || ch == '\n'); |
| 4821 | if (ch != '{') { |
| 4822 | syntax("was expecting {"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4823 | goto parse_error; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4824 | } |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4825 | ch = 'F'; /* magic value */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4826 | } |
| 4827 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4828 | case '{': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4829 | if (parse_group(&dest, &ctx, input, ch) != 0) { |
| 4830 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4831 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4832 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4833 | case ')': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4834 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4835 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4836 | goto case_semi; |
| 4837 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4838 | case '}': |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4839 | /* proper use of this character is caught by end_trigger: |
| 4840 | * if we see {, we call parse_group(..., end_trigger='}') |
| 4841 | * and it will match } earlier (not here). */ |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4842 | syntax("unexpected } or )"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4843 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4844 | default: |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4845 | if (HUSH_DEBUG) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4846 | bb_error_msg_and_die("BUG: unexpected %c\n", ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4847 | } |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4848 | } /* while (1) */ |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4849 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4850 | parse_error: |
| 4851 | { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 4852 | struct parse_context *pctx; |
| 4853 | IF_HAS_KEYWORDS(struct parse_context *p2;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4854 | |
| 4855 | /* Clean up allocated tree. |
| 4856 | * Samples for finding leaks on syntax error recovery path. |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4857 | * Run them from interactive shell, watch pmap `pidof hush`. |
| 4858 | * while if false; then false; fi do break; done |
| 4859 | * (bash accepts it) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4860 | * while if false; then false; fi; do break; fi |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 4861 | * Samples to catch leaks at execution: |
| 4862 | * while if (true | {true;}); then echo ok; fi; do break; done |
| 4863 | * while if (true | {true;}); then echo ok; fi; do (if echo ok; break; then :; fi) | cat; break; done |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4864 | */ |
| 4865 | pctx = &ctx; |
| 4866 | do { |
| 4867 | /* Update pipe/command counts, |
| 4868 | * otherwise freeing may miss some */ |
| 4869 | done_pipe(pctx, PIPE_SEQ); |
| 4870 | debug_printf_clean("freeing list %p from ctx %p\n", |
| 4871 | pctx->list_head, pctx); |
| 4872 | debug_print_tree(pctx->list_head, 0); |
| 4873 | free_pipe_list(pctx->list_head, 0); |
| 4874 | debug_printf_clean("freed list %p\n", pctx->list_head); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4875 | #if !BB_MMU |
| 4876 | o_free_unsafe(&pctx->as_string); |
| 4877 | #endif |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 4878 | IF_HAS_KEYWORDS(p2 = pctx->stack;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4879 | if (pctx != &ctx) { |
| 4880 | free(pctx); |
| 4881 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 4882 | IF_HAS_KEYWORDS(pctx = p2;) |
| 4883 | } while (HAS_KEYWORDS && pctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4884 | /* Free text, clear all dest fields */ |
| 4885 | o_free(&dest); |
| 4886 | /* If we are not in top-level parse, we return, |
| 4887 | * our caller will propagate error. |
| 4888 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4889 | if (end_trigger != ';') { |
| 4890 | #if !BB_MMU |
| 4891 | if (pstring) |
| 4892 | *pstring = NULL; |
| 4893 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4894 | return ERR_PTR; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4895 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4896 | /* Discard cached input, force prompt */ |
| 4897 | input->p = NULL; |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 4898 | USE_HUSH_INTERACTIVE(input->promptme = 1;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4899 | goto reset; |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4900 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4901 | } |
| 4902 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4903 | /* Executing from string: eval, sh -c '...' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4904 | * or from file: /etc/profile, . file, sh <script>, sh (intereactive) |
| 4905 | * end_trigger controls how often we stop parsing |
| 4906 | * NUL: parse all, execute, return |
| 4907 | * ';': parse till ';' or newline, execute, repeat till EOF |
| 4908 | */ |
| 4909 | 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] | 4910 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4911 | while (1) { |
| 4912 | struct pipe *pipe_list; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4913 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4914 | pipe_list = parse_stream(NULL, inp, end_trigger); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4915 | if (!pipe_list) /* EOF */ |
| 4916 | break; |
| 4917 | debug_print_tree(pipe_list, 0); |
| 4918 | debug_printf_exec("parse_and_run_stream: run_and_free_list\n"); |
| 4919 | run_and_free_list(pipe_list); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4920 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4921 | } |
| 4922 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4923 | static void parse_and_run_string(const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4924 | { |
| 4925 | struct in_str input; |
| 4926 | setup_string_in_str(&input, s); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4927 | parse_and_run_stream(&input, '\0'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4928 | } |
| 4929 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4930 | static void parse_and_run_file(FILE *f) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4931 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4932 | struct in_str input; |
| 4933 | setup_file_in_str(&input, f); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4934 | parse_and_run_stream(&input, ';'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4935 | } |
| 4936 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 4937 | #if ENABLE_HUSH_JOB |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 4938 | /* Make sure we have a controlling tty. If we get started under a job |
| 4939 | * aware app (like bash for example), make sure we are now in charge so |
| 4940 | * we don't fight over who gets the foreground */ |
Eric Andersen | eaecbf3 | 2001-10-31 10:41:31 +0000 | [diff] [blame] | 4941 | static void setup_job_control(void) |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 4942 | { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4943 | pid_t shell_pgrp; |
| 4944 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4945 | shell_pgrp = getpgrp(); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4946 | |
Denis Vlasenko | a6a1785 | 2007-04-28 16:42:11 +0000 | [diff] [blame] | 4947 | /* If we were ran as 'hush &', |
| 4948 | * sleep until we are in the foreground. */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 4949 | while (tcgetpgrp(G_interactive_fd) != shell_pgrp) { |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 4950 | /* Send TTIN to ourself (should stop us) */ |
Denis Vlasenko | ff131b9 | 2007-04-10 15:42:06 +0000 | [diff] [blame] | 4951 | kill(- shell_pgrp, SIGTTIN); |
Denis Vlasenko | a6a1785 | 2007-04-28 16:42:11 +0000 | [diff] [blame] | 4952 | shell_pgrp = getpgrp(); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4953 | } |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 4954 | |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 4955 | /* We _must_ restore tty pgrp on fatal signals */ |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 4956 | set_fatal_signals_to_sigexit(); |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 4957 | |
| 4958 | /* Put ourselves in our own process group. */ |
Bernhard Reutner-Fischer | 864329d | 2008-09-25 10:55:05 +0000 | [diff] [blame] | 4959 | bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */ |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 4960 | /* Grab control of the terminal. */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 4961 | tcsetpgrp(G_interactive_fd, getpid()); |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 4962 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 4963 | #endif |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 4964 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 4965 | static int set_mode(const char cstate, const char mode) |
| 4966 | { |
| 4967 | int state = (cstate == '-' ? 1 : 0); |
| 4968 | switch (mode) { |
| 4969 | case 'n': G.fake_mode = state; break; |
| 4970 | case 'x': /*G.debug_mode = state;*/ break; |
| 4971 | default: return EXIT_FAILURE; |
| 4972 | } |
| 4973 | return EXIT_SUCCESS; |
| 4974 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4975 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 4976 | int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Matt Kraai | 2d91deb | 2001-08-01 17:21:35 +0000 | [diff] [blame] | 4977 | int hush_main(int argc, char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4978 | { |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 4979 | static const struct variable const_shell_ver = { |
| 4980 | .next = NULL, |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 4981 | .varstr = (char*)hush_version_str, |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 4982 | .max_len = 1, /* 0 can provoke free(name) */ |
| 4983 | .flg_export = 1, |
| 4984 | .flg_read_only = 1, |
| 4985 | }; |
| 4986 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4987 | int opt; |
| 4988 | FILE *input; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 4989 | char **e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4990 | struct variable *cur_var; |
Eric Andersen | bc604a2 | 2001-05-16 05:24:03 +0000 | [diff] [blame] | 4991 | |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 4992 | INIT_G(); |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 4993 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4994 | G.root_pid = getpid(); |
Denis Vlasenko | 16c2fea | 2008-06-17 12:28:44 +0000 | [diff] [blame] | 4995 | |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 4996 | /* Deal with HUSH_VERSION */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 4997 | G.shell_ver = const_shell_ver; /* copying struct here */ |
| 4998 | G.top_var = &G.shell_ver; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 4999 | debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION"); |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5000 | unsetenv("HUSH_VERSION"); /* in case it exists in initial env */ |
| 5001 | /* Initialize our shell local variables with the values |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5002 | * currently living in the environment */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5003 | cur_var = G.top_var; |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5004 | e = environ; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5005 | if (e) while (*e) { |
| 5006 | char *value = strchr(*e, '='); |
| 5007 | if (value) { /* paranoia */ |
| 5008 | cur_var->next = xzalloc(sizeof(*cur_var)); |
| 5009 | cur_var = cur_var->next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 5010 | cur_var->varstr = *e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5011 | cur_var->max_len = strlen(*e); |
| 5012 | cur_var->flg_export = 1; |
| 5013 | } |
| 5014 | e++; |
| 5015 | } |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 5016 | debug_printf_env("putenv '%s'\n", hush_version_str); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 5017 | putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 5018 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 5019 | #if ENABLE_FEATURE_EDITING |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5020 | G.line_input_state = new_line_input_t(FOR_SHELL); |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 5021 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5022 | /* XXX what should these be while sourcing /etc/profile? */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5023 | G.global_argc = argc; |
| 5024 | G.global_argv = argv; |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 5025 | /* Initialize some more globals to non-zero values */ |
| 5026 | set_cwd(); |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5027 | #if ENABLE_HUSH_INTERACTIVE |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 5028 | if (ENABLE_FEATURE_EDITING) |
| 5029 | cmdedit_set_initial_prompt(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5030 | G.PS2 = "> "; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5031 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 5032 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5033 | if (EXIT_SUCCESS) /* otherwise is already done */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5034 | G.last_return_code = EXIT_SUCCESS; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5035 | |
| 5036 | if (argv[0] && argv[0][0] == '-') { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 5037 | debug_printf("sourcing /etc/profile\n"); |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 5038 | input = fopen_for_read("/etc/profile"); |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 5039 | if (input != NULL) { |
Denis Vlasenko | a089817 | 2007-10-01 09:59:01 +0000 | [diff] [blame] | 5040 | close_on_exec_on(fileno(input)); |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 5041 | parse_and_run_file(input); |
Eric Andersen | a90f20b | 2001-06-26 23:00:21 +0000 | [diff] [blame] | 5042 | fclose(input); |
| 5043 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5044 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5045 | input = stdin; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5046 | |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 5047 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */ |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5048 | while (1) { |
| 5049 | opt = getopt(argc, argv, "c:xins" |
| 5050 | #if !BB_MMU |
Denis Vlasenko | 16a0c74 | 2009-04-05 01:46:59 +0000 | [diff] [blame] | 5051 | "$:?:D:R:V:" |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5052 | #endif |
| 5053 | ); |
| 5054 | if (opt <= 0) |
| 5055 | break; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5056 | switch (opt) { |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5057 | case 'c': |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5058 | G.global_argv = argv + optind; |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 5059 | if (!argv[optind]) { |
| 5060 | /* -c 'script' (no params): prevent empty $0 */ |
| 5061 | *--G.global_argv = argv[0]; |
| 5062 | optind--; |
| 5063 | } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5064 | G.global_argc = argc - optind; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5065 | parse_and_run_string(optarg); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5066 | goto final_return; |
| 5067 | case 'i': |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 5068 | /* Well, we cannot just declare interactiveness, |
| 5069 | * we have to have some stuff (ctty, etc) */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5070 | /* G_interactive_fd++; */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5071 | break; |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 5072 | case 's': |
| 5073 | /* "-s" means "read from stdin", but this is how we always |
| 5074 | * operate, so simply do nothing here. */ |
| 5075 | break; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5076 | #if !BB_MMU |
| 5077 | case '$': |
| 5078 | G.root_pid = xatoi_u(optarg); |
| 5079 | break; |
| 5080 | case '?': |
| 5081 | G.last_return_code = xatoi_u(optarg); |
| 5082 | break; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 5083 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 16a0c74 | 2009-04-05 01:46:59 +0000 | [diff] [blame] | 5084 | case 'D': |
| 5085 | G.depth_of_loop = xatoi_u(optarg); |
| 5086 | break; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame^] | 5087 | #endif |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5088 | case 'R': |
| 5089 | case 'V': |
| 5090 | set_local_var(xstrdup(optarg), 0, opt == 'R'); |
| 5091 | break; |
| 5092 | #endif |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5093 | case 'n': |
| 5094 | case 'x': |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5095 | if (!set_mode('-', opt)) |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5096 | break; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5097 | default: |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 5098 | #ifndef BB_VER |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5099 | fprintf(stderr, "Usage: sh [FILE]...\n" |
| 5100 | " or: sh -c command [args]...\n\n"); |
| 5101 | exit(EXIT_FAILURE); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 5102 | #else |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5103 | bb_show_usage(); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 5104 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5105 | } |
| 5106 | } |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5107 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5108 | /* 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] | 5109 | * the following conditions are met: |
Denis Vlasenko | 55b2de7 | 2007-04-18 17:21:28 +0000 | [diff] [blame] | 5110 | * no -c command |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5111 | * no arguments remaining or the -s flag given |
| 5112 | * standard input is a terminal |
| 5113 | * standard output is a terminal |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5114 | * Refer to Posix.2, the description of the 'sh' utility. */ |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5115 | if (argv[optind] == NULL && input == stdin |
| 5116 | && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO) |
| 5117 | ) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5118 | G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO); |
| 5119 | debug_printf("saved_tty_pgrp=%d\n", G.saved_tty_pgrp); |
| 5120 | if (G.saved_tty_pgrp >= 0) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5121 | /* try to dup to high fd#, >= 255 */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5122 | G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255); |
| 5123 | if (G_interactive_fd < 0) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5124 | /* try to dup to any fd */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5125 | G_interactive_fd = dup(STDIN_FILENO); |
| 5126 | if (G_interactive_fd < 0) |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5127 | /* give up */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5128 | G_interactive_fd = 0; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5129 | } |
Denis Vlasenko | 2f1bb36 | 2007-04-21 10:01:14 +0000 | [diff] [blame] | 5130 | // TODO: track & disallow any attempts of user |
| 5131 | // to (inadvertently) close/redirect it |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5132 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5133 | } |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 5134 | init_signal_mask(); /* note: ensures SIGCHLD is not masked */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5135 | debug_printf("interactive_fd=%d\n", G_interactive_fd); |
| 5136 | if (G_interactive_fd) { |
| 5137 | fcntl(G_interactive_fd, F_SETFD, FD_CLOEXEC); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5138 | /* Looks like they want an interactive shell */ |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 5139 | setup_job_control(); |
Denis Vlasenko | 4ecfcdc | 2008-02-11 08:32:31 +0000 | [diff] [blame] | 5140 | /* -1 is special - makes xfuncs longjmp, not exit |
Denis Vlasenko | c04163a | 2008-02-11 08:30:53 +0000 | [diff] [blame] | 5141 | * (we reset die_sleep = 0 whereever we [v]fork) */ |
| 5142 | die_sleep = -1; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5143 | if (setjmp(die_jmp)) { |
| 5144 | /* xfunc has failed! die die die */ |
| 5145 | hush_exit(xfunc_error_retval); |
| 5146 | } |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 5147 | } |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5148 | #elif ENABLE_HUSH_INTERACTIVE |
| 5149 | /* no job control compiled, only prompt/line editing */ |
| 5150 | if (argv[optind] == NULL && input == stdin |
| 5151 | && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO) |
| 5152 | ) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5153 | G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255); |
| 5154 | if (G_interactive_fd < 0) { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5155 | /* try to dup to any fd */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5156 | G_interactive_fd = dup(STDIN_FILENO); |
| 5157 | if (G_interactive_fd < 0) |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5158 | /* give up */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5159 | G_interactive_fd = 0; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5160 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5161 | if (G_interactive_fd) { |
| 5162 | fcntl(G_interactive_fd, F_SETFD, FD_CLOEXEC); |
Denis Vlasenko | 4830fc5 | 2008-05-25 21:50:55 +0000 | [diff] [blame] | 5163 | } |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5164 | } |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 5165 | init_signal_mask(); /* note: ensures SIGCHLD is not masked */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5166 | #else |
| 5167 | init_signal_mask(); |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 5168 | #endif |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 5169 | /* POSIX allows shell to re-enable SIGCHLD |
| 5170 | * even if it was SIG_IGN on entry */ |
| 5171 | // G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */ |
| 5172 | signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5173 | |
Denis Vlasenko | 701ac18 | 2009-03-28 19:22:08 +0000 | [diff] [blame] | 5174 | #if ENABLE_HUSH_INTERACTIVE && !ENABLE_FEATURE_SH_EXTRA_QUIET |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5175 | if (G_interactive_fd) { |
Mike Frysinger | b2705e1 | 2009-03-23 08:44:02 +0000 | [diff] [blame] | 5176 | printf("\n\n%s hush - the humble shell v"HUSH_VER_STR"\n", bb_banner); |
| 5177 | printf("Enter 'help' for a list of built-in commands.\n\n"); |
| 5178 | } |
Denis Vlasenko | 701ac18 | 2009-03-28 19:22:08 +0000 | [diff] [blame] | 5179 | #endif |
Mike Frysinger | b2705e1 | 2009-03-23 08:44:02 +0000 | [diff] [blame] | 5180 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5181 | if (argv[optind] == NULL) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5182 | parse_and_run_file(stdin); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 5183 | } else { |
| 5184 | debug_printf("\nrunning script '%s'\n", argv[optind]); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5185 | G.global_argv = argv + optind; |
| 5186 | G.global_argc = argc - optind; |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 5187 | input = xfopen_for_read(argv[optind]); |
Denis Vlasenko | 459a5ad | 2008-02-11 08:35:03 +0000 | [diff] [blame] | 5188 | fcntl(fileno(input), F_SETFD, FD_CLOEXEC); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5189 | parse_and_run_file(input); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5190 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5191 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5192 | final_return: |
| 5193 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 5194 | #if ENABLE_FEATURE_CLEAN_UP |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 5195 | fclose(input); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5196 | if (G.cwd != bb_msg_unknown) |
| 5197 | free((char*)G.cwd); |
| 5198 | cur_var = G.top_var->next; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5199 | while (cur_var) { |
| 5200 | struct variable *tmp = cur_var; |
| 5201 | if (!cur_var->max_len) |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 5202 | free(cur_var->varstr); |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5203 | cur_var = cur_var->next; |
| 5204 | free(tmp); |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 5205 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5206 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5207 | hush_exit(G.last_return_code); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5208 | } |
Denis Vlasenko | 96702ca | 2007-11-23 23:28:55 +0000 | [diff] [blame] | 5209 | |
| 5210 | |
| 5211 | #if ENABLE_LASH |
| 5212 | int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 5213 | int lash_main(int argc, char **argv) |
| 5214 | { |
| 5215 | //bb_error_msg("lash is deprecated, please use hush instead"); |
| 5216 | return hush_main(argc, argv); |
| 5217 | } |
| 5218 | #endif |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5219 | |
| 5220 | |
| 5221 | /* |
| 5222 | * Built-ins |
| 5223 | */ |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5224 | static int builtin_trap(char **argv) |
| 5225 | { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5226 | int i; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5227 | int sig; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5228 | char *new_cmd; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5229 | |
| 5230 | if (!G.traps) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5231 | G.traps = xzalloc(sizeof(G.traps[0]) * NSIG); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5232 | |
| 5233 | if (!argv[1]) { |
| 5234 | /* No args: print all trapped. This isn't 100% correct as we should |
| 5235 | * be escaping the cmd so that it can be pasted back in ... |
| 5236 | */ |
| 5237 | for (i = 0; i < NSIG; ++i) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5238 | if (G.traps[i]) |
| 5239 | printf("trap -- '%s' %s\n", G.traps[i], get_signame(i)); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5240 | return EXIT_SUCCESS; |
| 5241 | } |
| 5242 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5243 | new_cmd = NULL; |
| 5244 | i = 0; |
| 5245 | /* if first arg is decimal: reset all specified */ |
| 5246 | sig = bb_strtou(*++argv, NULL, 10); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5247 | if (errno == 0) { |
| 5248 | int ret; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5249 | set_all: |
| 5250 | ret = EXIT_SUCCESS; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5251 | while (*argv) { |
| 5252 | sig = get_signum(*argv++); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5253 | if (sig < 0 || sig >= NSIG) { |
| 5254 | ret = EXIT_FAILURE; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5255 | /* mimic bash message exactly */ |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5256 | bb_perror_msg("trap: %s: invalid signal specification", argv[i]); |
| 5257 | continue; |
| 5258 | } |
| 5259 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5260 | free(G.traps[sig]); |
| 5261 | G.traps[sig] = xstrdup(new_cmd); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5262 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5263 | debug_printf("trap: setting SIG%s (%i) to '%s'", |
| 5264 | get_signame(sig), sig, G.traps[sig]); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5265 | |
| 5266 | /* There is no signal for 0 (EXIT) */ |
| 5267 | if (sig == 0) |
| 5268 | continue; |
| 5269 | |
| 5270 | if (new_cmd) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5271 | sigaddset(&G.blocked_set, sig); |
| 5272 | } else { |
| 5273 | /* there was a trap handler, we are removing it |
| 5274 | * (if sig has non-DFL handling, |
| 5275 | * we don't need to do anything) */ |
| 5276 | if (sig < 32 && (G.non_DFL_mask & (1 << sig))) |
| 5277 | continue; |
| 5278 | sigdelset(&G.blocked_set, sig); |
| 5279 | } |
| 5280 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5281 | } |
| 5282 | return ret; |
| 5283 | } |
| 5284 | |
| 5285 | /* first arg is "-": reset all specified to default */ |
| 5286 | /* first arg is "": ignore all specified */ |
| 5287 | /* everything else: execute first arg upon signal */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5288 | if (!argv[1]) { |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5289 | bb_error_msg("trap: invalid arguments"); |
| 5290 | return EXIT_FAILURE; |
| 5291 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5292 | if (LONE_DASH(*argv)) |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5293 | /* nothing! */; |
| 5294 | else |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5295 | new_cmd = *argv; |
| 5296 | argv++; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5297 | goto set_all; |
| 5298 | } |
| 5299 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 5300 | static int builtin_true(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5301 | { |
| 5302 | return 0; |
| 5303 | } |
| 5304 | |
| 5305 | static int builtin_test(char **argv) |
| 5306 | { |
| 5307 | int argc = 0; |
| 5308 | while (*argv) { |
| 5309 | argc++; |
| 5310 | argv++; |
| 5311 | } |
| 5312 | return test_main(argc, argv - argc); |
| 5313 | } |
| 5314 | |
| 5315 | static int builtin_echo(char **argv) |
| 5316 | { |
| 5317 | int argc = 0; |
| 5318 | while (*argv) { |
| 5319 | argc++; |
| 5320 | argv++; |
| 5321 | } |
| 5322 | return echo_main(argc, argv - argc); |
| 5323 | } |
| 5324 | |
| 5325 | static int builtin_eval(char **argv) |
| 5326 | { |
| 5327 | int rcode = EXIT_SUCCESS; |
| 5328 | |
| 5329 | if (argv[1]) { |
| 5330 | char *str = expand_strvec_to_string(argv + 1); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5331 | /* bash: |
| 5332 | * eval "echo Hi; done" ("done" is syntax error): |
| 5333 | * "echo Hi" will not execute too. |
| 5334 | */ |
| 5335 | parse_and_run_string(str); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5336 | free(str); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5337 | rcode = G.last_return_code; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5338 | } |
| 5339 | return rcode; |
| 5340 | } |
| 5341 | |
| 5342 | static int builtin_cd(char **argv) |
| 5343 | { |
| 5344 | const char *newdir; |
| 5345 | if (argv[1] == NULL) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5346 | /* bash does nothing (exitcode 0) if HOME is ""; if it's unset, |
| 5347 | * bash says "bash: cd: HOME not set" and does nothing (exitcode 1) |
| 5348 | */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5349 | newdir = getenv("HOME") ? : "/"; |
| 5350 | } else |
| 5351 | newdir = argv[1]; |
| 5352 | if (chdir(newdir)) { |
| 5353 | printf("cd: %s: %s\n", newdir, strerror(errno)); |
| 5354 | return EXIT_FAILURE; |
| 5355 | } |
| 5356 | set_cwd(); |
| 5357 | return EXIT_SUCCESS; |
| 5358 | } |
| 5359 | |
| 5360 | static int builtin_exec(char **argv) |
| 5361 | { |
| 5362 | if (argv[1] == NULL) |
| 5363 | return EXIT_SUCCESS; /* bash does this */ |
| 5364 | { |
| 5365 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 5366 | nommu_save_t dummy; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5367 | #endif |
| 5368 | // FIXME: if exec fails, bash does NOT exit! We do... |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 5369 | pseudo_exec_argv(&dummy, argv + 1, 0, NULL); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5370 | /* never returns */ |
| 5371 | } |
| 5372 | } |
| 5373 | |
| 5374 | static int builtin_exit(char **argv) |
| 5375 | { |
| 5376 | // TODO: bash does it ONLY on top-level sh exit (+interacive only?) |
| 5377 | //puts("exit"); /* bash does it */ |
| 5378 | // TODO: warn if we have background jobs: "There are stopped jobs" |
| 5379 | // On second consecutive 'exit', exit anyway. |
| 5380 | if (argv[1] == NULL) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5381 | hush_exit(G.last_return_code); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5382 | /* mimic bash: exit 123abc == exit 255 + error msg */ |
| 5383 | xfunc_error_retval = 255; |
| 5384 | /* bash: exit -2 == exit 254, no error msg */ |
| 5385 | hush_exit(xatoi(argv[1]) & 0xff); |
| 5386 | } |
| 5387 | |
| 5388 | static int builtin_export(char **argv) |
| 5389 | { |
| 5390 | const char *value; |
| 5391 | char *name = argv[1]; |
| 5392 | |
| 5393 | if (name == NULL) { |
| 5394 | // TODO: |
| 5395 | // ash emits: export VAR='VAL' |
| 5396 | // bash: declare -x VAR="VAL" |
| 5397 | // (both also escape as needed (quotes, $, etc)) |
| 5398 | char **e = environ; |
| 5399 | if (e) |
| 5400 | while (*e) |
| 5401 | puts(*e++); |
| 5402 | return EXIT_SUCCESS; |
| 5403 | } |
| 5404 | |
| 5405 | value = strchr(name, '='); |
| 5406 | if (!value) { |
| 5407 | /* They are exporting something without a =VALUE */ |
| 5408 | struct variable *var; |
| 5409 | |
| 5410 | var = get_local_var(name); |
| 5411 | if (var) { |
| 5412 | var->flg_export = 1; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 5413 | debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5414 | putenv(var->varstr); |
| 5415 | } |
| 5416 | /* bash does not return an error when trying to export |
| 5417 | * an undefined variable. Do likewise. */ |
| 5418 | return EXIT_SUCCESS; |
| 5419 | } |
| 5420 | |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5421 | set_local_var(xstrdup(name), 1, 0); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5422 | return EXIT_SUCCESS; |
| 5423 | } |
| 5424 | |
| 5425 | #if ENABLE_HUSH_JOB |
| 5426 | /* built-in 'fg' and 'bg' handler */ |
| 5427 | static int builtin_fg_bg(char **argv) |
| 5428 | { |
| 5429 | int i, jobnum; |
| 5430 | struct pipe *pi; |
| 5431 | |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5432 | if (!G_interactive_fd) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5433 | return EXIT_FAILURE; |
| 5434 | /* If they gave us no args, assume they want the last backgrounded task */ |
| 5435 | if (!argv[1]) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5436 | for (pi = G.job_list; pi; pi = pi->next) { |
| 5437 | if (pi->jobid == G.last_jobid) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5438 | goto found; |
| 5439 | } |
| 5440 | } |
| 5441 | bb_error_msg("%s: no current job", argv[0]); |
| 5442 | return EXIT_FAILURE; |
| 5443 | } |
| 5444 | if (sscanf(argv[1], "%%%d", &jobnum) != 1) { |
| 5445 | bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]); |
| 5446 | return EXIT_FAILURE; |
| 5447 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5448 | for (pi = G.job_list; pi; pi = pi->next) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5449 | if (pi->jobid == jobnum) { |
| 5450 | goto found; |
| 5451 | } |
| 5452 | } |
| 5453 | bb_error_msg("%s: %d: no such job", argv[0], jobnum); |
| 5454 | return EXIT_FAILURE; |
| 5455 | found: |
| 5456 | // TODO: bash prints a string representation |
| 5457 | // of job being foregrounded (like "sleep 1 | cat") |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 5458 | if (argv[0][0] == 'f') { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5459 | /* Put the job into the foreground. */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5460 | tcsetpgrp(G_interactive_fd, pi->pgrp); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5461 | } |
| 5462 | |
| 5463 | /* Restart the processes in the job */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 5464 | debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp); |
| 5465 | for (i = 0; i < pi->num_cmds; i++) { |
| 5466 | debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid); |
| 5467 | pi->cmds[i].is_stopped = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5468 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 5469 | pi->stopped_cmds = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5470 | |
| 5471 | i = kill(- pi->pgrp, SIGCONT); |
| 5472 | if (i < 0) { |
| 5473 | if (errno == ESRCH) { |
| 5474 | delete_finished_bg_job(pi); |
| 5475 | return EXIT_SUCCESS; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5476 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 5477 | bb_perror_msg("kill (SIGCONT)"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5478 | } |
| 5479 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 5480 | if (argv[0][0] == 'f') { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5481 | remove_bg_job(pi); |
| 5482 | return checkjobs_and_fg_shell(pi); |
| 5483 | } |
| 5484 | return EXIT_SUCCESS; |
| 5485 | } |
| 5486 | #endif |
| 5487 | |
| 5488 | #if ENABLE_HUSH_HELP |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 5489 | static int builtin_help(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5490 | { |
| 5491 | const struct built_in_command *x; |
| 5492 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 5493 | printf("\n" |
| 5494 | "Built-in commands:\n" |
| 5495 | "------------------\n"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5496 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
| 5497 | printf("%s\t%s\n", x->cmd, x->descr); |
| 5498 | } |
| 5499 | printf("\n\n"); |
| 5500 | return EXIT_SUCCESS; |
| 5501 | } |
| 5502 | #endif |
| 5503 | |
| 5504 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 5505 | static int builtin_jobs(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5506 | { |
| 5507 | struct pipe *job; |
| 5508 | const char *status_string; |
| 5509 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5510 | for (job = G.job_list; job; job = job->next) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 5511 | if (job->alive_cmds == job->stopped_cmds) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5512 | status_string = "Stopped"; |
| 5513 | else |
| 5514 | status_string = "Running"; |
| 5515 | |
| 5516 | printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext); |
| 5517 | } |
| 5518 | return EXIT_SUCCESS; |
| 5519 | } |
| 5520 | #endif |
| 5521 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 5522 | static int builtin_pwd(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5523 | { |
| 5524 | puts(set_cwd()); |
| 5525 | return EXIT_SUCCESS; |
| 5526 | } |
| 5527 | |
| 5528 | static int builtin_read(char **argv) |
| 5529 | { |
| 5530 | char *string; |
| 5531 | const char *name = argv[1] ? argv[1] : "REPLY"; |
| 5532 | |
| 5533 | string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5534 | return set_local_var(string, 0, 0); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5535 | } |
| 5536 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5537 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set |
| 5538 | * built-in 'set' handler |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5539 | * SUSv3 says: |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5540 | * set [-abCefhmnuvx] [-o option] [argument...] |
| 5541 | * set [+abCefhmnuvx] [+o option] [argument...] |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5542 | * set -- [argument...] |
| 5543 | * set -o |
| 5544 | * set +o |
| 5545 | * Implementations shall support the options in both their hyphen and |
| 5546 | * plus-sign forms. These options can also be specified as options to sh. |
| 5547 | * Examples: |
| 5548 | * Write out all variables and their values: set |
| 5549 | * Set $1, $2, and $3 and set "$#" to 3: set c a b |
| 5550 | * Turn on the -x and -v options: set -xv |
| 5551 | * Unset all positional parameters: set -- |
| 5552 | * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x" |
| 5553 | * Set the positional parameters to the expansion of x, even if x expands |
| 5554 | * with a leading '-' or '+': set -- $x |
| 5555 | * |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5556 | * 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] | 5557 | */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5558 | static int builtin_set(char **argv) |
| 5559 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5560 | int n; |
| 5561 | char **pp, **g_argv; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5562 | char *arg = *++argv; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5563 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5564 | if (arg == NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5565 | struct variable *e; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5566 | for (e = G.top_var; e; e = e->next) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5567 | puts(e->varstr); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5568 | return EXIT_SUCCESS; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5569 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5570 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5571 | do { |
| 5572 | if (!strcmp(arg, "--")) { |
| 5573 | ++argv; |
| 5574 | goto set_argv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5575 | } |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5576 | |
| 5577 | if (arg[0] == '+' || arg[0] == '-') { |
| 5578 | for (n = 1; arg[n]; ++n) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5579 | if (set_mode(arg[0], arg[n])) |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5580 | goto error; |
| 5581 | continue; |
| 5582 | } |
| 5583 | |
| 5584 | break; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5585 | } while ((arg = *++argv) != NULL); |
| 5586 | /* Now argv[0] is 1st argument */ |
| 5587 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5588 | /* Only reset global_argv if we didn't process anything */ |
| 5589 | if (arg == NULL) |
| 5590 | return EXIT_SUCCESS; |
| 5591 | set_argv: |
| 5592 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5593 | /* NB: G.global_argv[0] ($0) is never freed/changed */ |
| 5594 | g_argv = G.global_argv; |
| 5595 | if (G.global_args_malloced) { |
| 5596 | pp = g_argv; |
| 5597 | while (*++pp) |
| 5598 | free(*pp); |
| 5599 | g_argv[1] = NULL; |
| 5600 | } else { |
| 5601 | G.global_args_malloced = 1; |
| 5602 | pp = xzalloc(sizeof(pp[0]) * 2); |
| 5603 | pp[0] = g_argv[0]; /* retain $0 */ |
| 5604 | g_argv = pp; |
| 5605 | } |
| 5606 | /* This realloc's G.global_argv */ |
| 5607 | G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1); |
| 5608 | |
| 5609 | n = 1; |
| 5610 | while (*++pp) |
| 5611 | n++; |
| 5612 | G.global_argc = n; |
| 5613 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5614 | return EXIT_SUCCESS; |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5615 | |
| 5616 | /* Nothing known, so abort */ |
| 5617 | error: |
| 5618 | bb_error_msg("set: %s: invalid option", arg); |
| 5619 | return EXIT_FAILURE; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5620 | } |
| 5621 | |
| 5622 | static int builtin_shift(char **argv) |
| 5623 | { |
| 5624 | int n = 1; |
| 5625 | if (argv[1]) { |
| 5626 | n = atoi(argv[1]); |
| 5627 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5628 | if (n >= 0 && n < G.global_argc) { |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 5629 | if (G.global_args_malloced) { |
| 5630 | int m = 1; |
| 5631 | while (m <= n) |
| 5632 | free(G.global_argv[m++]); |
| 5633 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5634 | G.global_argc -= n; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 5635 | memmove(&G.global_argv[1], &G.global_argv[n+1], |
| 5636 | G.global_argc * sizeof(G.global_argv[0])); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5637 | return EXIT_SUCCESS; |
| 5638 | } |
| 5639 | return EXIT_FAILURE; |
| 5640 | } |
| 5641 | |
| 5642 | static int builtin_source(char **argv) |
| 5643 | { |
| 5644 | FILE *input; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5645 | |
| 5646 | if (argv[1] == NULL) |
| 5647 | return EXIT_FAILURE; |
| 5648 | |
| 5649 | /* XXX search through $PATH is missing */ |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 5650 | input = fopen_for_read(argv[1]); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5651 | if (!input) { |
Bernhard Reutner-Fischer | a53de7f | 2008-07-21 13:46:54 +0000 | [diff] [blame] | 5652 | bb_error_msg("can't open '%s'", argv[1]); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5653 | return EXIT_FAILURE; |
| 5654 | } |
| 5655 | close_on_exec_on(fileno(input)); |
| 5656 | |
| 5657 | /* Now run the file */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5658 | /* 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] | 5659 | * (pointer only is OK!) on this stack frame, |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5660 | * set G.global_argv=argv+1, recurse, and restore. */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5661 | parse_and_run_file(input); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5662 | fclose(input); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5663 | return G.last_return_code; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5664 | } |
| 5665 | |
| 5666 | static int builtin_umask(char **argv) |
| 5667 | { |
| 5668 | mode_t new_umask; |
| 5669 | const char *arg = argv[1]; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5670 | if (arg) { |
Mike Frysinger | 40b8dc4 | 2009-03-29 00:50:30 +0000 | [diff] [blame] | 5671 | new_umask = bb_strtou(arg, NULL, 8); |
| 5672 | if (errno) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5673 | return EXIT_FAILURE; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5674 | } else { |
| 5675 | new_umask = umask(0); |
| 5676 | printf("%.3o\n", (unsigned) new_umask); |
| 5677 | } |
| 5678 | umask(new_umask); |
| 5679 | return EXIT_SUCCESS; |
| 5680 | } |
| 5681 | |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 5682 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5683 | static int builtin_unset(char **argv) |
| 5684 | { |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 5685 | size_t i; |
| 5686 | int ret; |
| 5687 | bool var = true; |
| 5688 | |
| 5689 | if (!argv[1]) |
| 5690 | return EXIT_SUCCESS; |
| 5691 | |
| 5692 | i = 0; |
| 5693 | if (argv[1][0] == '-') { |
| 5694 | switch (argv[1][1]) { |
| 5695 | case 'v': break; |
| 5696 | case 'f': if (ENABLE_HUSH_FUNCTIONS) { var = false; break; } |
| 5697 | default: |
| 5698 | bb_error_msg("unset: %s: invalid option", argv[1]); |
| 5699 | return EXIT_FAILURE; |
| 5700 | } |
| 5701 | ++i; |
| 5702 | } |
| 5703 | |
| 5704 | ret = EXIT_SUCCESS; |
| 5705 | while (argv[++i]) { |
| 5706 | if (var) { |
| 5707 | if (unset_local_var(argv[i])) |
| 5708 | ret = EXIT_FAILURE; |
| 5709 | } |
| 5710 | #if ENABLE_HUSH_FUNCTIONS |
| 5711 | else |
| 5712 | unset_local_func(argv[i]); |
| 5713 | #endif |
| 5714 | } |
| 5715 | return ret; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5716 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 5717 | |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5718 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */ |
| 5719 | static int builtin_wait(char **argv) |
| 5720 | { |
| 5721 | int ret = EXIT_SUCCESS; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 5722 | int status, sig; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5723 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 5724 | if (*++argv == NULL) { |
| 5725 | /* Don't care about wait results */ |
| 5726 | /* Note 1: must wait until there are no more children */ |
| 5727 | /* Note 2: must be interruptible */ |
| 5728 | /* Examples: |
| 5729 | * $ sleep 3 & sleep 6 & wait |
| 5730 | * [1] 30934 sleep 3 |
| 5731 | * [2] 30935 sleep 6 |
| 5732 | * [1] Done sleep 3 |
| 5733 | * [2] Done sleep 6 |
| 5734 | * $ sleep 3 & sleep 6 & wait |
| 5735 | * [1] 30936 sleep 3 |
| 5736 | * [2] 30937 sleep 6 |
| 5737 | * [1] Done sleep 3 |
| 5738 | * ^C <-- after ~4 sec from keyboard |
| 5739 | * $ |
| 5740 | */ |
| 5741 | sigaddset(&G.blocked_set, SIGCHLD); |
| 5742 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 5743 | while (1) { |
| 5744 | checkjobs(NULL); |
| 5745 | if (errno == ECHILD) |
| 5746 | break; |
| 5747 | /* Wait for SIGCHLD or any other signal of interest */ |
| 5748 | /* sigtimedwait with infinite timeout: */ |
| 5749 | sig = sigwaitinfo(&G.blocked_set, NULL); |
| 5750 | if (sig > 0) { |
| 5751 | sig = check_and_run_traps(sig); |
| 5752 | if (sig && sig != SIGCHLD) { /* see note 2 */ |
| 5753 | ret = 128 + sig; |
| 5754 | break; |
| 5755 | } |
| 5756 | } |
| 5757 | } |
| 5758 | sigdelset(&G.blocked_set, SIGCHLD); |
| 5759 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 5760 | return ret; |
| 5761 | } |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5762 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 5763 | /* This is probably buggy wrt interruptible-ness */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5764 | while (*argv) { |
| 5765 | pid_t pid = bb_strtou(*argv, NULL, 10); |
Mike Frysinger | 40b8dc4 | 2009-03-29 00:50:30 +0000 | [diff] [blame] | 5766 | if (errno) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5767 | /* mimic bash message */ |
| 5768 | 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] | 5769 | return EXIT_FAILURE; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5770 | } |
| 5771 | if (waitpid(pid, &status, 0) == pid) { |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5772 | if (WIFSIGNALED(status)) |
| 5773 | ret = 128 + WTERMSIG(status); |
| 5774 | else if (WIFEXITED(status)) |
| 5775 | ret = WEXITSTATUS(status); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5776 | else /* wtf? */ |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5777 | ret = EXIT_FAILURE; |
| 5778 | } else { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5779 | bb_perror_msg("wait %s", *argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5780 | ret = 127; |
| 5781 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5782 | argv++; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5783 | } |
| 5784 | |
| 5785 | return ret; |
| 5786 | } |
| 5787 | |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 5788 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 5789 | static int builtin_break(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 5790 | { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5791 | if (G.depth_of_loop == 0) { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 5792 | bb_error_msg("%s: only meaningful in a loop", argv[0]); |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 5793 | return EXIT_SUCCESS; /* bash compat */ |
| 5794 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5795 | G.flag_break_continue++; /* BC_BREAK = 1 */ |
| 5796 | G.depth_break_continue = 1; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 5797 | if (argv[1]) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5798 | G.depth_break_continue = bb_strtou(argv[1], NULL, 10); |
| 5799 | if (errno || !G.depth_break_continue || argv[2]) { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 5800 | bb_error_msg("%s: bad arguments", argv[0]); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5801 | G.flag_break_continue = BC_BREAK; |
| 5802 | G.depth_break_continue = UINT_MAX; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 5803 | } |
| 5804 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5805 | if (G.depth_of_loop < G.depth_break_continue) |
| 5806 | G.depth_break_continue = G.depth_of_loop; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 5807 | return EXIT_SUCCESS; |
| 5808 | } |
| 5809 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 5810 | static int builtin_continue(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 5811 | { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 5812 | G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */ |
| 5813 | return builtin_break(argv); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 5814 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 5815 | #endif |