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> |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 9 | * Copyright (C) 2008,2009 Denys Vlasenko <vda.linux@googlemail.com> |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 10 | * |
| 11 | * Credits: |
| 12 | * The parser routines proper are all original material, first |
Eric Andersen | cb81e64 | 2003-07-14 21:21:08 +0000 | [diff] [blame] | 13 | * written Dec 2000 and Jan 2001 by Larry Doolittle. The |
| 14 | * execution engine, the builtins, and much of the underlying |
| 15 | * support has been adapted from busybox-0.49pre's lash, which is |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 16 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | cb81e64 | 2003-07-14 21:21:08 +0000 | [diff] [blame] | 17 | * written by Erik Andersen <andersen@codepoet.org>. That, in turn, |
| 18 | * is based in part on ladsh.c, by Michael K. Johnson and Erik W. |
| 19 | * Troan, which they placed in the public domain. I don't know |
| 20 | * how much of the Johnson/Troan code has survived the repeated |
| 21 | * rewrites. |
| 22 | * |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 23 | * Other credits: |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 24 | * o_addchr() derived from similar w_addchar function in glibc-2.2. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 25 | * setup_redirect(), redirect_opt_num(), and big chunks of main() |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 26 | * and many builtins derived from contributions by Erik Andersen. |
| 27 | * Miscellaneous bugfixes from Matt Kraai. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 28 | * |
| 29 | * There are two big (and related) architecture differences between |
| 30 | * this parser and the lash parser. One is that this version is |
| 31 | * actually designed from the ground up to understand nearly all |
| 32 | * of the Bourne grammar. The second, consequential change is that |
| 33 | * the parser and input reader have been turned inside out. Now, |
| 34 | * the parser is in control, and asks for input as needed. The old |
| 35 | * way had the input reader in control, and it asked for parsing to |
| 36 | * take place as needed. The new way makes it much easier to properly |
| 37 | * handle the recursion implicit in the various substitutions, especially |
| 38 | * across continuation lines. |
| 39 | * |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 40 | * POSIX syntax not implemented: |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 41 | * aliases |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 42 | * <(list) and >(list) Process Substitution |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 43 | * Here Documents ( << word ) |
| 44 | * Functions |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 45 | * Tilde Expansion |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 46 | * Parameter Expansion for substring processing ${var#word} ${var%word} |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 47 | * |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 48 | * Bash stuff (maybe optionally enable?): |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 49 | * &> and >& redirection of stdout+stderr |
| 50 | * Brace expansion |
| 51 | * reserved words: [[ ]] function select |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 52 | * substrings ${var:1:5} |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 53 | * |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 54 | * TODOs: |
| 55 | * grep for "TODO" and fix (some of them are easy) |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 56 | * change { and } from special chars to reserved words |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 57 | * builtins: return, ulimit |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 58 | * follow IFS rules more precisely, including update semantics |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 59 | * figure out what to do with backslash-newline |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 60 | * continuation lines, both explicit and implicit - done? |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 61 | * SIGHUP handling |
| 62 | * ^Z handling (and explain it in comments for mere humans) |
| 63 | * separate job control from interactiveness |
| 64 | * (testcase: booting with init=/bin/hush does not show prompt (2009-04)) |
| 65 | * functions |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 66 | * |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 67 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 68 | */ |
Bernhard Reutner-Fischer | e15d757 | 2006-06-02 20:56:16 +0000 | [diff] [blame] | 69 | |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 70 | #include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 71 | //TODO: pull in some .h and find out whether we have SINGLE_APPLET_MAIN? |
Denis Vlasenko | 61befda | 2008-11-25 01:36:03 +0000 | [diff] [blame] | 72 | //#include "applet_tables.h" doesn't work |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 73 | #include <glob.h> |
| 74 | /* #include <dmalloc.h> */ |
| 75 | #if ENABLE_HUSH_CASE |
| 76 | #include <fnmatch.h> |
| 77 | #endif |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 78 | #include "math.h" |
| 79 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 80 | #ifdef WANT_TO_TEST_NOMMU |
| 81 | # undef BB_MMU |
| 82 | # undef USE_FOR_NOMMU |
| 83 | # undef USE_FOR_MMU |
| 84 | # define BB_MMU 0 |
| 85 | # define USE_FOR_NOMMU(...) __VA_ARGS__ |
| 86 | # define USE_FOR_MMU(...) |
| 87 | #endif |
| 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 | a0e6512 | 2009-04-05 23:39:14 +0000 | [diff] [blame] | 194 | #else |
| 195 | #define DEBUG_CLEAN 0 |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 196 | #endif |
| 197 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 198 | #if DEBUG_EXPAND |
| 199 | static void debug_print_strings(const char *prefix, char **vv) |
| 200 | { |
| 201 | fprintf(stderr, "%s:\n", prefix); |
| 202 | while (*vv) |
| 203 | fprintf(stderr, " '%s'\n", *vv++); |
| 204 | } |
| 205 | #else |
| 206 | #define debug_print_strings(prefix, vv) ((void)0) |
| 207 | #endif |
| 208 | |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 209 | /* |
| 210 | * Leak hunting. Use hush_leaktool.sh for post-processing. |
| 211 | */ |
| 212 | #ifdef FOR_HUSH_LEAKTOOL |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 213 | static void *xxmalloc(int lineno, size_t size) |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 214 | { |
| 215 | void *ptr = xmalloc((size + 0xff) & ~0xff); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 216 | fdprintf(2, "line %d: malloc %p\n", lineno, ptr); |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 217 | return ptr; |
| 218 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 219 | static void *xxrealloc(int lineno, void *ptr, size_t size) |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 220 | { |
| 221 | ptr = xrealloc(ptr, (size + 0xff) & ~0xff); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 222 | fdprintf(2, "line %d: realloc %p\n", lineno, ptr); |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 223 | return ptr; |
| 224 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 225 | static char *xxstrdup(int lineno, const char *str) |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 226 | { |
| 227 | char *ptr = xstrdup(str); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 228 | fdprintf(2, "line %d: strdup %p\n", lineno, ptr); |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 229 | return ptr; |
| 230 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 231 | static void xxfree(void *ptr) |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 232 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 233 | fdprintf(2, "free %p\n", ptr); |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 234 | free(ptr); |
| 235 | } |
| 236 | #define xmalloc(s) xxmalloc(__LINE__, s) |
| 237 | #define xrealloc(p, s) xxrealloc(__LINE__, p, s) |
| 238 | #define xstrdup(s) xxstrdup(__LINE__, s) |
| 239 | #define free(p) xxfree(p) |
| 240 | #endif |
| 241 | |
| 242 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 243 | #define ERR_PTR ((void*)(long)1) |
| 244 | |
Mike Frysinger | 258275d | 2009-04-05 21:19:43 +0000 | [diff] [blame] | 245 | static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER; |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 246 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 247 | #define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n" |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 248 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 249 | #define SPECIAL_VAR_SYMBOL 3 |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 250 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 251 | typedef enum redir_type { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 252 | REDIRECT_INPUT = 1, |
| 253 | REDIRECT_OVERWRITE = 2, |
| 254 | REDIRECT_APPEND = 3, |
| 255 | REDIRECT_HEREIS = 4, |
| 256 | REDIRECT_IO = 5 |
| 257 | } redir_type; |
| 258 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 259 | /* The descrip member of this structure is only used to make |
| 260 | * debugging output pretty */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 261 | static const struct { |
| 262 | int mode; |
Denis Vlasenko | ef36ead | 2007-05-02 15:34:47 +0000 | [diff] [blame] | 263 | signed char default_fd; |
| 264 | char descrip[3]; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 265 | } redir_table[] = { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 266 | { 0, 0, "()" }, |
| 267 | { O_RDONLY, 0, "<" }, |
| 268 | { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" }, |
| 269 | { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" }, |
| 270 | { O_RDONLY, -1, "<<" }, |
| 271 | { O_RDWR, 1, "<>" } |
| 272 | }; |
| 273 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 274 | typedef enum reserved_style { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 275 | RES_NONE = 0, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 276 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 277 | RES_IF , |
| 278 | RES_THEN , |
| 279 | RES_ELIF , |
| 280 | RES_ELSE , |
| 281 | RES_FI , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 282 | #endif |
| 283 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 284 | RES_FOR , |
| 285 | RES_WHILE , |
| 286 | RES_UNTIL , |
| 287 | RES_DO , |
| 288 | RES_DONE , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 289 | #endif |
| 290 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 291 | RES_IN , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 292 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 293 | #if ENABLE_HUSH_CASE |
| 294 | RES_CASE , |
| 295 | /* two pseudo-keywords support contrived "case" syntax: */ |
| 296 | RES_MATCH , /* "word)" */ |
| 297 | RES_CASEI , /* "this command is inside CASE" */ |
| 298 | RES_ESAC , |
| 299 | #endif |
| 300 | RES_XXXX , |
| 301 | RES_SNTX |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 302 | } reserved_style; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 303 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 304 | typedef struct o_string { |
| 305 | char *data; |
| 306 | int length; /* position where data is appended */ |
| 307 | int maxlen; |
| 308 | /* Protect newly added chars against globbing |
| 309 | * (by prepending \ to *, ?, [, \) */ |
| 310 | smallint o_escape; |
| 311 | smallint o_glob; |
| 312 | smallint nonnull; |
| 313 | smallint has_empty_slot; |
| 314 | smallint o_assignment; /* 0:maybe, 1:yes, 2:no */ |
| 315 | } o_string; |
| 316 | enum { |
| 317 | MAYBE_ASSIGNMENT = 0, |
| 318 | DEFINITELY_ASSIGNMENT = 1, |
| 319 | NOT_ASSIGNMENT = 2, |
| 320 | WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */ |
| 321 | }; |
| 322 | /* Used for initialization: o_string foo = NULL_O_STRING; */ |
| 323 | #define NULL_O_STRING { NULL } |
| 324 | |
| 325 | /* I can almost use ordinary FILE*. Is open_memstream() universally |
| 326 | * available? Where is it documented? */ |
| 327 | typedef struct in_str { |
| 328 | const char *p; |
| 329 | /* eof_flag=1: last char in ->p is really an EOF */ |
| 330 | char eof_flag; /* meaningless if ->p == NULL */ |
| 331 | char peek_buf[2]; |
| 332 | #if ENABLE_HUSH_INTERACTIVE |
| 333 | smallint promptme; |
| 334 | smallint promptmode; /* 0: PS1, 1: PS2 */ |
| 335 | #endif |
| 336 | FILE *file; |
| 337 | int (*get) (struct in_str *); |
| 338 | int (*peek) (struct in_str *); |
| 339 | } in_str; |
| 340 | #define i_getch(input) ((input)->get(input)) |
| 341 | #define i_peek(input) ((input)->peek(input)) |
| 342 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 343 | struct redir_struct { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 344 | struct redir_struct *next; |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 345 | char *rd_filename; /* filename */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 346 | int fd; /* file descriptor being redirected */ |
| 347 | int dup; /* -1, or file descriptor being duplicated */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 348 | smallint /*enum redir_type*/ rd_type; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 349 | }; |
| 350 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 351 | struct command { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 352 | pid_t pid; /* 0 if exited */ |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 353 | int assignment_cnt; /* how many argv[i] are assignments? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 354 | smallint is_stopped; /* is the command currently running? */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 355 | smallint grp_type; /* GRP_xxx */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 356 | struct pipe *group; /* if non-NULL, this "command" is { list }, |
| 357 | * ( list ), or a compound statement */ |
| 358 | #if !BB_MMU |
| 359 | char *group_as_string; |
| 360 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 361 | char **argv; /* command name and arguments */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 362 | struct redir_struct *redirects; /* I/O redirections */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 363 | }; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 364 | /* argv vector may contain variable references (^Cvar^C, ^C0^C etc) |
| 365 | * and on execution these are substituted with their values. |
| 366 | * Substitution can make _several_ words out of one argv[n]! |
| 367 | * Example: argv[0]=='.^C*^C.' here: echo .$*. |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 368 | * References of the form ^C`cmd arg^C are `cmd arg` substitutions. |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 369 | */ |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 370 | #define GRP_NORMAL 0 |
| 371 | #define GRP_SUBSHELL 1 |
| 372 | #if ENABLE_HUSH_FUNCTIONS |
| 373 | #define GRP_FUNCTION 2 |
| 374 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 375 | |
| 376 | struct pipe { |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 377 | struct pipe *next; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 378 | int num_cmds; /* total number of commands in job */ |
| 379 | int alive_cmds; /* number of commands running (not exited) */ |
| 380 | int stopped_cmds; /* number of commands alive, but stopped */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 381 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 382 | int jobid; /* job number */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 383 | pid_t pgrp; /* process group ID for the job */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 384 | char *cmdtext; /* name of job */ |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 385 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 386 | struct command *cmds; /* array of commands in pipe */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 387 | smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 388 | IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */ |
| 389 | IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 390 | }; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 391 | typedef enum pipe_style { |
| 392 | PIPE_SEQ = 1, |
| 393 | PIPE_AND = 2, |
| 394 | PIPE_OR = 3, |
| 395 | PIPE_BG = 4, |
| 396 | } pipe_style; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 397 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 398 | /* This holds pointers to the various results of parsing */ |
| 399 | struct parse_context { |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 400 | /* linked list of pipes */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 401 | struct pipe *list_head; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 402 | /* last pipe (being constructed right now) */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 403 | struct pipe *pipe; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 404 | /* last command in pipe (being constructed right now) */ |
| 405 | struct command *command; |
| 406 | /* last redirect in command->redirects list */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 407 | struct redir_struct *pending_redirect; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 408 | #if !BB_MMU |
| 409 | o_string as_string; |
| 410 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 411 | #if HAS_KEYWORDS |
| 412 | smallint ctx_res_w; |
| 413 | smallint ctx_inverted; /* "! cmd | cmd" */ |
| 414 | #if ENABLE_HUSH_CASE |
| 415 | smallint ctx_dsemicolon; /* ";;" seen */ |
| 416 | #endif |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 417 | /* bitmask of FLAG_xxx, for figuring out valid reserved words */ |
| 418 | int old_flag; |
| 419 | /* group we are enclosed in: |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 420 | * example: "if pipe1; pipe2; then pipe3; fi" |
| 421 | * when we see "if" or "then", we malloc and copy current context, |
| 422 | * and make ->stack point to it. then we parse pipeN. |
| 423 | * when closing "then" / fi" / whatever is found, |
| 424 | * we move list_head into ->stack->command->group, |
| 425 | * copy ->stack into current context, and delete ->stack. |
| 426 | * (parsing of { list } and ( list ) doesn't use this method) |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 427 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 428 | struct parse_context *stack; |
| 429 | #endif |
| 430 | }; |
| 431 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 432 | /* On program start, environ points to initial environment. |
| 433 | * putenv adds new pointers into it, unsetenv removes them. |
| 434 | * Neither of these (de)allocates the strings. |
| 435 | * setenv allocates new strings in malloc space and does putenv, |
| 436 | * and thus setenv is unusable (leaky) for shell's purposes */ |
| 437 | #define setenv(...) setenv_is_leaky_dont_use() |
| 438 | struct variable { |
| 439 | struct variable *next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 440 | char *varstr; /* points to "name=" portion */ |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 441 | int max_len; /* if > 0, name is part of initial env; else name is malloced */ |
| 442 | smallint flg_export; /* putenv should be done on this var */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 443 | smallint flg_read_only; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 444 | }; |
| 445 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 446 | enum { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 447 | BC_BREAK = 1, |
| 448 | BC_CONTINUE = 2, |
| 449 | }; |
| 450 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 451 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 452 | /* "Globals" within this file */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 453 | /* Sorted roughly by size (smaller offsets == smaller code) */ |
| 454 | struct globals { |
| 455 | #if ENABLE_HUSH_INTERACTIVE |
| 456 | /* 'interactive_fd' is a fd# open to ctty, if we have one |
| 457 | * _AND_ if we decided to act interactively */ |
| 458 | int interactive_fd; |
| 459 | const char *PS1; |
| 460 | const char *PS2; |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 461 | #define G_interactive_fd (G.interactive_fd) |
| 462 | #else |
| 463 | #define G_interactive_fd 0 |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 464 | #endif |
| 465 | #if ENABLE_FEATURE_EDITING |
| 466 | line_input_t *line_input_state; |
| 467 | #endif |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 468 | pid_t root_pid; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 469 | pid_t last_bg_pid; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 470 | #if ENABLE_HUSH_JOB |
| 471 | int run_list_level; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 472 | pid_t saved_tty_pgrp; |
| 473 | int last_jobid; |
| 474 | struct pipe *job_list; |
| 475 | struct pipe *toplevel_list; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 476 | //// smallint ctrl_z_flag; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 477 | #endif |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 478 | smallint flag_SIGINT; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 479 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 480 | smallint flag_break_continue; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 481 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 482 | smallint fake_mode; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 483 | /* These four support $?, $#, and $1 */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 484 | smalluint last_return_code; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 485 | /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */ |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 486 | smalluint global_args_malloced; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 487 | /* how many non-NULL argv's we have. NB: $# + 1 */ |
| 488 | int global_argc; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 489 | char **global_argv; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 490 | #if !BB_MMU |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 491 | char *argv0_for_re_execing; |
| 492 | char **argv_from_re_execing; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 493 | #endif |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 494 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 495 | unsigned depth_break_continue; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 496 | unsigned depth_of_loop; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 497 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 498 | const char *ifs; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 499 | const char *cwd; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 500 | struct variable *top_var; /* = &G.shell_ver (set in main()) */ |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 501 | struct variable shell_ver; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 502 | /* Signal and trap handling */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 503 | // unsigned count_SIGCHLD; |
| 504 | // unsigned handled_SIGCHLD; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 505 | /* which signals have non-DFL handler (even with no traps set)? */ |
| 506 | unsigned non_DFL_mask; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 507 | char **traps; /* char *traps[NSIG] */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 508 | sigset_t blocked_set; |
| 509 | sigset_t inherited_set; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 510 | char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2]; |
| 511 | #if ENABLE_FEATURE_SH_STANDALONE |
| 512 | struct nofork_save_area nofork_save; |
| 513 | #endif |
| 514 | #if ENABLE_HUSH_JOB |
| 515 | sigjmp_buf toplevel_jb; |
| 516 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 517 | }; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 518 | #define G (*ptr_to_globals) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 519 | /* Not #defining name to G.name - this quickly gets unwieldy |
| 520 | * (too many defines). Also, I actually prefer to see when a variable |
| 521 | * is global, thus "G." prefix is a useful hint */ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 522 | #define INIT_G() do { \ |
| 523 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
| 524 | } while (0) |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 525 | |
| 526 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 527 | /* Function prototypes for builtins */ |
| 528 | static int builtin_cd(char **argv); |
| 529 | static int builtin_echo(char **argv); |
| 530 | static int builtin_eval(char **argv); |
| 531 | static int builtin_exec(char **argv); |
| 532 | static int builtin_exit(char **argv); |
| 533 | static int builtin_export(char **argv); |
| 534 | #if ENABLE_HUSH_JOB |
| 535 | static int builtin_fg_bg(char **argv); |
| 536 | static int builtin_jobs(char **argv); |
| 537 | #endif |
| 538 | #if ENABLE_HUSH_HELP |
| 539 | static int builtin_help(char **argv); |
| 540 | #endif |
| 541 | static int builtin_pwd(char **argv); |
| 542 | static int builtin_read(char **argv); |
| 543 | static int builtin_test(char **argv); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 544 | static int builtin_trap(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 545 | static int builtin_true(char **argv); |
| 546 | static int builtin_set(char **argv); |
| 547 | static int builtin_shift(char **argv); |
| 548 | static int builtin_source(char **argv); |
| 549 | static int builtin_umask(char **argv); |
| 550 | static int builtin_unset(char **argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 551 | static int builtin_wait(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 552 | #if ENABLE_HUSH_LOOPS |
| 553 | static int builtin_break(char **argv); |
| 554 | static int builtin_continue(char **argv); |
| 555 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 556 | |
| 557 | /* Table of built-in functions. They can be forked or not, depending on |
| 558 | * context: within pipes, they fork. As simple commands, they do not. |
| 559 | * When used in non-forking context, they can change global variables |
| 560 | * in the parent shell process. If forked, of course they cannot. |
| 561 | * For example, 'unset foo | whatever' will parse and run, but foo will |
| 562 | * still be set at the end. */ |
| 563 | struct built_in_command { |
| 564 | const char *cmd; |
| 565 | int (*function)(char **argv); |
| 566 | #if ENABLE_HUSH_HELP |
| 567 | const char *descr; |
| 568 | #define BLTIN(cmd, func, help) { cmd, func, help } |
| 569 | #else |
| 570 | #define BLTIN(cmd, func, help) { cmd, func } |
| 571 | #endif |
| 572 | }; |
| 573 | |
| 574 | /* For now, echo and test are unconditionally enabled. |
| 575 | * Maybe make it configurable? */ |
| 576 | static const struct built_in_command bltins[] = { |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 577 | BLTIN("." , builtin_source , "Run commands in a file"), |
| 578 | BLTIN(":" , builtin_true , "No-op"), |
| 579 | BLTIN("[" , builtin_test , "Test condition"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 580 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 581 | BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 582 | #endif |
| 583 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 584 | BLTIN("break" , builtin_break , "Exit from a loop"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 585 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 586 | BLTIN("cd" , builtin_cd , "Change directory"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 587 | #if ENABLE_HUSH_LOOPS |
| 588 | BLTIN("continue", builtin_continue, "Start new loop iteration"), |
| 589 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 590 | BLTIN("echo" , builtin_echo , "Write to stdout"), |
| 591 | BLTIN("eval" , builtin_eval , "Construct and run shell command"), |
| 592 | BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"), |
| 593 | BLTIN("exit" , builtin_exit , "Exit"), |
| 594 | BLTIN("export" , builtin_export , "Set environment variable"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 595 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 596 | BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 597 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 598 | #if ENABLE_HUSH_HELP |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 599 | BLTIN("help" , builtin_help , "List shell built-in commands"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 600 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 601 | #if ENABLE_HUSH_JOB |
| 602 | BLTIN("jobs" , builtin_jobs , "List active jobs"), |
| 603 | #endif |
| 604 | BLTIN("pwd" , builtin_pwd , "Print current directory"), |
| 605 | BLTIN("read" , builtin_read , "Input environment variable"), |
| 606 | // BLTIN("return" , builtin_return , "Return from a function"), |
| 607 | BLTIN("set" , builtin_set , "Set/unset shell local variables"), |
| 608 | BLTIN("shift" , builtin_shift , "Shift positional parameters"), |
| 609 | BLTIN("test" , builtin_test , "Test condition"), |
| 610 | BLTIN("trap" , builtin_trap , "Trap signals"), |
| 611 | // BLTIN("ulimit" , builtin_return , "Control resource limits"), |
| 612 | BLTIN("umask" , builtin_umask , "Set file creation mask"), |
| 613 | BLTIN("unset" , builtin_unset , "Unset environment variable"), |
| 614 | BLTIN("wait" , builtin_wait , "Wait for process"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 615 | }; |
| 616 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 617 | |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 618 | static void maybe_die(const char *notice, const char *msg) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 619 | { |
Denis Vlasenko | 5a1437d | 2007-05-24 13:22:47 +0000 | [diff] [blame] | 620 | /* Was using fancy stuff: |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 621 | * (G_interactive_fd ? bb_error_msg : bb_error_msg_and_die)(...params...) |
Denis Vlasenko | 5a1437d | 2007-05-24 13:22:47 +0000 | [diff] [blame] | 622 | * but it SEGVs. ?! Oh well... explicit temp ptr works around that */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 623 | void FAST_FUNC (*fp)(const char *s, ...) = bb_error_msg_and_die; |
| 624 | #if ENABLE_HUSH_INTERACTIVE |
Mike Frysinger | dfa9de7 | 2009-04-03 22:48:10 +0000 | [diff] [blame] | 625 | if (G_interactive_fd) |
| 626 | fp = bb_error_msg; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 627 | #endif |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 628 | fp(msg ? "%s: %s" : notice, notice, msg); |
| 629 | } |
Mike Frysinger | 5a82845 | 2009-03-28 19:09:04 +0000 | [diff] [blame] | 630 | #if 1 |
| 631 | #define syntax(msg) maybe_die("syntax error", msg); |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 632 | #else |
Mike Frysinger | 5a82845 | 2009-03-28 19:09:04 +0000 | [diff] [blame] | 633 | /* Debug -- trick gcc to expand __LINE__ and convert to string */ |
| 634 | #define __syntax(msg, line) maybe_die("syntax error hush.c:" # line, msg) |
| 635 | #define _syntax(msg, line) __syntax(msg, line) |
| 636 | #define syntax(msg) _syntax(msg, __LINE__) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 637 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 638 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 639 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 640 | static int glob_needed(const char *s) |
| 641 | { |
| 642 | while (*s) { |
| 643 | if (*s == '\\') |
| 644 | s++; |
| 645 | if (*s == '*' || *s == '[' || *s == '?') |
| 646 | return 1; |
| 647 | s++; |
| 648 | } |
| 649 | return 0; |
| 650 | } |
| 651 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 652 | static int is_assignment(const char *s) |
| 653 | { |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 654 | if (!s || !(isalpha(*s) || *s == '_')) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 655 | return 0; |
| 656 | s++; |
| 657 | while (isalnum(*s) || *s == '_') |
| 658 | s++; |
| 659 | return *s == '='; |
| 660 | } |
| 661 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 662 | /* Replace each \x with x in place, return ptr past NUL. */ |
| 663 | static char *unbackslash(char *src) |
| 664 | { |
| 665 | char *dst = src; |
| 666 | while (1) { |
| 667 | if (*src == '\\') |
| 668 | src++; |
| 669 | if ((*dst++ = *src++) == '\0') |
| 670 | break; |
| 671 | } |
| 672 | return dst; |
| 673 | } |
| 674 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 675 | 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] | 676 | { |
| 677 | int i; |
| 678 | unsigned count1; |
| 679 | unsigned count2; |
| 680 | char **v; |
| 681 | |
| 682 | v = strings; |
| 683 | count1 = 0; |
| 684 | if (v) { |
| 685 | while (*v) { |
| 686 | count1++; |
| 687 | v++; |
| 688 | } |
| 689 | } |
| 690 | count2 = 0; |
| 691 | v = add; |
| 692 | while (*v) { |
| 693 | count2++; |
| 694 | v++; |
| 695 | } |
| 696 | v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*)); |
| 697 | v[count1 + count2] = NULL; |
| 698 | i = count2; |
| 699 | while (--i >= 0) |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 700 | v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 701 | return v; |
| 702 | } |
| 703 | |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 704 | static char **add_string_to_strings(char **strings, char *add) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 705 | { |
| 706 | char *v[2]; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 707 | v[0] = add; |
| 708 | v[1] = NULL; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 709 | return add_strings_to_strings(strings, v, /*dup:*/ 0); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 710 | } |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 711 | |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 712 | static void putenv_all(char **strings) |
| 713 | { |
| 714 | if (!strings) |
| 715 | return; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 716 | while (*strings) { |
| 717 | debug_printf_env("putenv '%s'\n", *strings); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 718 | putenv(*strings++); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 719 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 720 | } |
| 721 | |
| 722 | static char **putenv_all_and_save_old(char **strings) |
| 723 | { |
| 724 | char **old = NULL; |
| 725 | char **s = strings; |
| 726 | |
| 727 | if (!strings) |
| 728 | return old; |
| 729 | while (*strings) { |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 730 | char *v, *eq; |
| 731 | |
| 732 | eq = strchr(*strings, '='); |
| 733 | if (eq) { |
| 734 | *eq = '\0'; |
| 735 | v = getenv(*strings); |
| 736 | *eq = '='; |
| 737 | if (v) { |
| 738 | /* v points to VAL in VAR=VAL, go back to VAR */ |
| 739 | v -= (eq - *strings) + 1; |
| 740 | old = add_string_to_strings(old, v); |
| 741 | } |
| 742 | } |
| 743 | strings++; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 744 | } |
| 745 | putenv_all(s); |
| 746 | return old; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 747 | } |
| 748 | |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 749 | static void free_strings_and_unsetenv(char **strings, int unset) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 750 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 751 | char **v; |
| 752 | |
| 753 | if (!strings) |
| 754 | return; |
| 755 | |
| 756 | v = strings; |
| 757 | while (*v) { |
| 758 | if (unset) { |
Denis Vlasenko | 76ddc2e | 2008-12-30 05:05:31 +0000 | [diff] [blame] | 759 | debug_printf_env("unsetenv '%s'\n", *v); |
| 760 | bb_unsetenv(*v); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 761 | } |
| 762 | free(*v++); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 763 | } |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 764 | free(strings); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 765 | } |
| 766 | |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 767 | static void free_strings(char **strings) |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 768 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 769 | free_strings_and_unsetenv(strings, 0); |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 770 | } |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 771 | |
| 772 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 773 | /* Basic theory of signal handling in shell |
| 774 | * ======================================== |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 775 | * This does not describe what hush does, rather, it is current understanding |
| 776 | * what it _should_ do. If it doesn't, it's a bug. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 777 | * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap |
| 778 | * |
| 779 | * Signals are handled only after each pipe ("cmd | cmd | cmd" thing) |
| 780 | * is finished or backgrounded. It is the same in interactive and |
| 781 | * non-interactive shells, and is the same regardless of whether |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 782 | * 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] | 783 | * ^C or ^Z from keyboard seem to execute "at once" because it usually |
| 784 | * backgrounds (i.e. stops) or kills all members of currently running |
| 785 | * pipe. |
| 786 | * |
| 787 | * Wait builtin in interruptible by signals for which user trap is set |
| 788 | * or by SIGINT in interactive shell. |
| 789 | * |
| 790 | * Trap handlers will execute even within trap handlers. (right?) |
| 791 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 792 | * User trap handlers are forgotten when subshell ("(cmd)") is entered. [TODO] |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 793 | * |
| 794 | * If job control is off, backgrounded commands ("cmd &") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 795 | * have SIGINT, SIGQUIT set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 796 | * |
| 797 | * Commands run in command substitution ("`cmd`") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 798 | * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 799 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 800 | * Ordinary commands have signals set to SIG_IGN/DFL set as inherited |
| 801 | * by the shell from its parent. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 802 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 803 | * Siganls which differ from SIG_DFL action |
| 804 | * (note: child (i.e., [v]forked) shell is not an interactive shell): |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 805 | * |
| 806 | * SIGQUIT: ignore |
| 807 | * SIGTERM (interactive): ignore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 808 | * SIGHUP (interactive): |
| 809 | * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 810 | * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 811 | * (note that ^Z is handled not by trapping SIGTSTP, but by seeing |
| 812 | * that all pipe members are stopped) (right?) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 813 | * SIGINT (interactive): wait for last pipe, ignore the rest |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 814 | * of the command line, show prompt. NB: ^C does not send SIGINT |
| 815 | * to interactive shell while shell is waiting for a pipe, |
| 816 | * since shell is bg'ed (is not in foreground process group). |
| 817 | * (check/expand this) |
| 818 | * Example 1: this waits 5 sec, but does not execute ls: |
| 819 | * "echo $$; sleep 5; ls -l" + "kill -INT <pid>" |
| 820 | * Example 2: this does not wait and does not execute ls: |
| 821 | * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>" |
| 822 | * Example 3: this does not wait 5 sec, but executes ls: |
| 823 | * "sleep 5; ls -l" + press ^C |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 824 | * |
| 825 | * (What happens to signals which are IGN on shell start?) |
| 826 | * (What happens with signal mask on shell start?) |
| 827 | * |
| 828 | * Implementation in hush |
| 829 | * ====================== |
| 830 | * We use in-kernel pending signal mask to determine which signals were sent. |
| 831 | * We block all signals which we don't want to take action immediately, |
| 832 | * i.e. we block all signals which need to have special handling as described |
| 833 | * above, and all signals which have traps set. |
| 834 | * After each pipe execution, we extract any pending signals via sigtimedwait() |
| 835 | * and act on them. |
| 836 | * |
| 837 | * unsigned non_DFL_mask: a mask of such "special" signals |
| 838 | * sigset_t blocked_set: current blocked signal set |
| 839 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 840 | * "trap - SIGxxx": |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 841 | * 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] | 842 | * "trap 'cmd' SIGxxx": |
| 843 | * set bit in blocked_set (even if 'cmd' is '') |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 844 | * after [v]fork, if we plan to be a shell: |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 845 | * nothing for {} child shell (say, "true | { true; true; } | true") |
| 846 | * unset all traps if () shell. [TODO] |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 847 | * after [v]fork, if we plan to exec: |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 848 | * POSIX says pending signal mask is cleared in child - no need to clear it. |
| 849 | * 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] | 850 | * |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 851 | * Note: as a result, we do not use signal handlers much. The only uses |
| 852 | * are to count SIGCHLDs [disabled - bug somewhere, + bloat] |
| 853 | * and to restore tty pgrp on signal-induced exit. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 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 | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 861 | static int check_and_run_traps(int sig) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 862 | { |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 863 | static const struct timespec zero_timespec = { 0, 0 }; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 864 | smalluint save_rcode; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 865 | int last_sig = 0; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 866 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 867 | if (sig) |
| 868 | goto jump_in; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 869 | while (1) { |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 870 | sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 871 | if (sig <= 0) |
| 872 | break; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 873 | jump_in: |
| 874 | last_sig = sig; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 875 | if (G.traps && G.traps[sig]) { |
| 876 | if (G.traps[sig][0]) { |
| 877 | /* We have user-defined handler */ |
| 878 | char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL }; |
| 879 | save_rcode = G.last_return_code; |
| 880 | builtin_eval(argv); |
| 881 | free(argv[1]); |
| 882 | G.last_return_code = save_rcode; |
| 883 | } /* else: "" trap, ignoring signal */ |
| 884 | continue; |
| 885 | } |
| 886 | /* not a trap: special action */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 887 | switch (sig) { |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 888 | // case SIGCHLD: |
| 889 | // G.count_SIGCHLD++; |
| 890 | // break; |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 891 | case SIGINT: |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 892 | bb_putchar('\n'); |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 893 | G.flag_SIGINT = 1; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 894 | break; |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 895 | //TODO |
| 896 | // case SIGHUP: ... |
| 897 | // break; |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 898 | default: /* ignored: */ |
| 899 | /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */ |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 900 | break; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 901 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 902 | } |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 903 | return last_sig; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 904 | } |
| 905 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 906 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 907 | /* Restores tty foreground process group, and exits. |
| 908 | * May be called as signal handler for fatal signal |
| 909 | * (will faithfully resend signal to itself, producing correct exit state) |
| 910 | * or called directly with -EXITCODE. |
| 911 | * We also call it if xfunc is exiting. */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 912 | static void sigexit(int sig) NORETURN; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 913 | static void sigexit(int sig) |
| 914 | { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 915 | /* Disable all signals: job control, SIGPIPE, etc. */ |
Denis Vlasenko | 3f165fa | 2008-03-17 08:29:08 +0000 | [diff] [blame] | 916 | sigprocmask_allsigs(SIG_BLOCK); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 917 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 918 | /* Careful: we can end up here after [v]fork. Do not restore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 919 | * tty pgrp then, only top-level shell process does that */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 920 | if (G_interactive_fd && getpid() == G.root_pid) |
| 921 | tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 922 | |
| 923 | /* Not a signal, just exit */ |
| 924 | if (sig <= 0) |
| 925 | _exit(- sig); |
| 926 | |
Denis Vlasenko | 400d8bb | 2008-02-24 13:36:01 +0000 | [diff] [blame] | 927 | kill_myself_with_sig(sig); /* does not return */ |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 928 | } |
Denis Vlasenko | e0755e5 | 2009-04-03 21:16:45 +0000 | [diff] [blame] | 929 | #endif |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 930 | |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 931 | /* Restores tty foreground process group, and exits. */ |
| 932 | static void hush_exit(int exitcode) NORETURN; |
| 933 | static void hush_exit(int exitcode) |
| 934 | { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 935 | if (G.traps && G.traps[0] && G.traps[0][0]) { |
| 936 | char *argv[] = { NULL, xstrdup(G.traps[0]), NULL }; |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 937 | //TODO: do we need to prevent recursion? |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 938 | builtin_eval(argv); |
| 939 | free(argv[1]); |
| 940 | } |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 941 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 942 | #if ENABLE_HUSH_JOB |
| 943 | fflush(NULL); /* flush all streams */ |
| 944 | sigexit(- (exitcode & 0xff)); |
| 945 | #else |
| 946 | exit(exitcode); |
| 947 | #endif |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 948 | } |
| 949 | |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 950 | |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 951 | static const char *set_cwd(void) |
| 952 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 953 | /* xrealloc_getcwd_or_warn(arg) calls free(arg), |
| 954 | * we must not try to free(bb_msg_unknown) */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 955 | if (G.cwd == bb_msg_unknown) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 956 | G.cwd = NULL; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 957 | G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd); |
| 958 | if (!G.cwd) |
| 959 | G.cwd = bb_msg_unknown; |
| 960 | return G.cwd; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 961 | } |
| 962 | |
Denis Vlasenko | 8350686 | 2007-11-23 13:11:42 +0000 | [diff] [blame] | 963 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 964 | /* Get/check local shell variables */ |
| 965 | static struct variable *get_local_var(const char *name) |
| 966 | { |
| 967 | struct variable *cur; |
| 968 | int len; |
| 969 | |
| 970 | if (!name) |
| 971 | return NULL; |
| 972 | len = strlen(name); |
| 973 | for (cur = G.top_var; cur; cur = cur->next) { |
| 974 | if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=') |
| 975 | return cur; |
| 976 | } |
| 977 | return NULL; |
| 978 | } |
| 979 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 980 | static const char *get_local_var_value(const char *src) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 981 | { |
| 982 | struct variable *var = get_local_var(src); |
| 983 | if (var) |
| 984 | return strchr(var->varstr, '=') + 1; |
| 985 | return NULL; |
| 986 | } |
| 987 | |
| 988 | /* str holds "NAME=VAL" and is expected to be malloced. |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 989 | * We take ownership of it. |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 990 | * flg_export: |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 991 | * 0: do not export |
| 992 | * 1: export |
| 993 | * -1: if NAME is set, leave export status alone |
| 994 | * if NAME is not set, do not export |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 995 | * flg_read_only is set only when we handle -R var=val |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 996 | */ |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 997 | #if BB_MMU |
| 998 | #define set_local_var(str, flg_export, flg_read_only) \ |
| 999 | set_local_var(str, flg_export) |
| 1000 | #endif |
| 1001 | 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] | 1002 | { |
| 1003 | struct variable *cur; |
| 1004 | char *value; |
| 1005 | int name_len; |
| 1006 | |
| 1007 | value = strchr(str, '='); |
| 1008 | if (!value) { /* not expected to ever happen? */ |
| 1009 | free(str); |
| 1010 | return -1; |
| 1011 | } |
| 1012 | |
| 1013 | name_len = value - str + 1; /* including '=' */ |
| 1014 | cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */ |
| 1015 | while (1) { |
| 1016 | if (strncmp(cur->varstr, str, name_len) != 0) { |
| 1017 | if (!cur->next) { |
| 1018 | /* Bail out. Note that now cur points |
| 1019 | * to last var in linked list */ |
| 1020 | break; |
| 1021 | } |
| 1022 | cur = cur->next; |
| 1023 | continue; |
| 1024 | } |
| 1025 | /* We found an existing var with this name */ |
| 1026 | *value = '\0'; |
| 1027 | if (cur->flg_read_only) { |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1028 | #if !BB_MMU |
| 1029 | if (!flg_read_only) |
| 1030 | #endif |
| 1031 | bb_error_msg("%s: readonly variable", str); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1032 | free(str); |
| 1033 | return -1; |
| 1034 | } |
| 1035 | debug_printf_env("%s: unsetenv '%s'\n", __func__, str); |
| 1036 | unsetenv(str); /* just in case */ |
| 1037 | *value = '='; |
| 1038 | if (strcmp(cur->varstr, str) == 0) { |
| 1039 | free_and_exp: |
| 1040 | free(str); |
| 1041 | goto exp; |
| 1042 | } |
| 1043 | if (cur->max_len >= strlen(str)) { |
| 1044 | /* This one is from startup env, reuse space */ |
| 1045 | strcpy(cur->varstr, str); |
| 1046 | goto free_and_exp; |
| 1047 | } |
| 1048 | /* max_len == 0 signifies "malloced" var, which we can |
| 1049 | * (and has to) free */ |
| 1050 | if (!cur->max_len) |
| 1051 | free(cur->varstr); |
| 1052 | cur->max_len = 0; |
| 1053 | goto set_str_and_exp; |
| 1054 | } |
| 1055 | |
| 1056 | /* Not found - create next variable struct */ |
| 1057 | cur->next = xzalloc(sizeof(*cur)); |
| 1058 | cur = cur->next; |
| 1059 | |
| 1060 | set_str_and_exp: |
| 1061 | cur->varstr = str; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 1062 | #if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1063 | cur->flg_read_only = flg_read_only; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 1064 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1065 | exp: |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1066 | if (flg_export == 1) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1067 | cur->flg_export = 1; |
| 1068 | if (cur->flg_export) { |
| 1069 | debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr); |
| 1070 | return putenv(cur->varstr); |
| 1071 | } |
| 1072 | return 0; |
| 1073 | } |
| 1074 | |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1075 | static int unset_local_var(const char *name) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1076 | { |
| 1077 | struct variable *cur; |
| 1078 | struct variable *prev = prev; /* for gcc */ |
| 1079 | int name_len; |
| 1080 | |
| 1081 | if (!name) |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1082 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1083 | name_len = strlen(name); |
| 1084 | cur = G.top_var; |
| 1085 | while (cur) { |
| 1086 | if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') { |
| 1087 | if (cur->flg_read_only) { |
| 1088 | bb_error_msg("%s: readonly variable", name); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1089 | return EXIT_FAILURE; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1090 | } |
| 1091 | /* prev is ok to use here because 1st variable, HUSH_VERSION, |
| 1092 | * is ro, and we cannot reach this code on the 1st pass */ |
| 1093 | prev->next = cur->next; |
| 1094 | debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr); |
| 1095 | bb_unsetenv(cur->varstr); |
| 1096 | if (!cur->max_len) |
| 1097 | free(cur->varstr); |
| 1098 | free(cur); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1099 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1100 | } |
| 1101 | prev = cur; |
| 1102 | cur = cur->next; |
| 1103 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1104 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1105 | } |
| 1106 | |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1107 | #if ENABLE_SH_MATH_SUPPORT |
| 1108 | #define is_name(c) ((c) == '_' || isalpha((unsigned char)(c))) |
| 1109 | #define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c))) |
| 1110 | static char *endofname(const char *name) |
| 1111 | { |
| 1112 | char *p; |
| 1113 | |
| 1114 | p = (char *) name; |
| 1115 | if (!is_name(*p)) |
| 1116 | return p; |
| 1117 | while (*++p) { |
| 1118 | if (!is_in_name(*p)) |
| 1119 | break; |
| 1120 | } |
| 1121 | return p; |
| 1122 | } |
| 1123 | |
| 1124 | static void arith_set_local_var(const char *name, const char *val, int flags) |
| 1125 | { |
| 1126 | /* arith code doesnt malloc space, so do it for it */ |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1127 | char *var = xasprintf("%s=%s", name, val); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1128 | set_local_var(var, flags, 0); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1129 | } |
| 1130 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1131 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1132 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1133 | /* |
| 1134 | * in_str support |
| 1135 | */ |
| 1136 | static int static_get(struct in_str *i) |
| 1137 | { |
| 1138 | int ch = *i->p++; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 1139 | if (ch != '\0') |
| 1140 | return ch; |
| 1141 | i->p--; |
| 1142 | return EOF; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1143 | } |
| 1144 | |
| 1145 | static int static_peek(struct in_str *i) |
| 1146 | { |
| 1147 | return *i->p; |
| 1148 | } |
| 1149 | |
| 1150 | #if ENABLE_HUSH_INTERACTIVE |
| 1151 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1152 | static void cmdedit_set_initial_prompt(void) |
| 1153 | { |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1154 | if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 1155 | G.PS1 = getenv("PS1"); |
| 1156 | if (G.PS1 == NULL) |
| 1157 | G.PS1 = "\\w \\$ "; |
| 1158 | } else |
| 1159 | G.PS1 = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1160 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1161 | |
| 1162 | static const char* setup_prompt_string(int promptmode) |
| 1163 | { |
| 1164 | const char *prompt_str; |
| 1165 | debug_printf("setup_prompt_string %d ", promptmode); |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1166 | if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 1167 | /* Set up the prompt */ |
| 1168 | if (promptmode == 0) { /* PS1 */ |
| 1169 | free((char*)G.PS1); |
| 1170 | G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#'); |
| 1171 | prompt_str = G.PS1; |
| 1172 | } else |
| 1173 | prompt_str = G.PS2; |
| 1174 | } else |
| 1175 | prompt_str = (promptmode == 0) ? G.PS1 : G.PS2; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1176 | debug_printf("result '%s'\n", prompt_str); |
| 1177 | return prompt_str; |
| 1178 | } |
| 1179 | |
| 1180 | static void get_user_input(struct in_str *i) |
| 1181 | { |
| 1182 | int r; |
| 1183 | const char *prompt_str; |
| 1184 | |
| 1185 | prompt_str = setup_prompt_string(i->promptmode); |
| 1186 | #if ENABLE_FEATURE_EDITING |
| 1187 | /* Enable command line editing only while a command line |
| 1188 | * is actually being read */ |
| 1189 | do { |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1190 | G.flag_SIGINT = 0; |
| 1191 | /* buglet: SIGINT will not make new prompt to appear _at once_, |
| 1192 | * only after <Enter>. (^C will work) */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1193 | 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] | 1194 | /* catch *SIGINT* etc (^C is handled by read_line_input) */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1195 | check_and_run_traps(0); |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1196 | } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1197 | i->eof_flag = (r < 0); |
| 1198 | if (i->eof_flag) { /* EOF/error detected */ |
| 1199 | G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */ |
| 1200 | G.user_input_buf[1] = '\0'; |
| 1201 | } |
| 1202 | #else |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1203 | do { |
| 1204 | G.flag_SIGINT = 0; |
| 1205 | fputs(prompt_str, stdout); |
| 1206 | fflush(stdout); |
| 1207 | G.user_input_buf[0] = r = fgetc(i->file); |
| 1208 | /*G.user_input_buf[1] = '\0'; - already is and never changed */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1209 | //do we need check_and_run_traps(0)? (maybe only if stdin) |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1210 | } while (G.flag_SIGINT); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1211 | i->eof_flag = (r == EOF); |
| 1212 | #endif |
| 1213 | i->p = G.user_input_buf; |
| 1214 | } |
| 1215 | |
| 1216 | #endif /* INTERACTIVE */ |
| 1217 | |
| 1218 | /* This is the magic location that prints prompts |
| 1219 | * and gets data back from the user */ |
| 1220 | static int file_get(struct in_str *i) |
| 1221 | { |
| 1222 | int ch; |
| 1223 | |
| 1224 | /* If there is data waiting, eat it up */ |
| 1225 | if (i->p && *i->p) { |
| 1226 | #if ENABLE_HUSH_INTERACTIVE |
| 1227 | take_cached: |
| 1228 | #endif |
| 1229 | ch = *i->p++; |
| 1230 | if (i->eof_flag && !*i->p) |
| 1231 | ch = EOF; |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1232 | /* note: ch is never NUL */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1233 | } else { |
| 1234 | /* need to double check i->file because we might be doing something |
| 1235 | * more complicated by now, like sourcing or substituting. */ |
| 1236 | #if ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 1237 | if (G_interactive_fd && i->promptme && i->file == stdin) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1238 | do { |
| 1239 | get_user_input(i); |
| 1240 | } while (!*i->p); /* need non-empty line */ |
| 1241 | i->promptmode = 1; /* PS2 */ |
| 1242 | i->promptme = 0; |
| 1243 | goto take_cached; |
| 1244 | } |
| 1245 | #endif |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1246 | do ch = fgetc(i->file); while (ch == '\0'); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1247 | } |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1248 | debug_printf("file_get: got '%c' %d\n", ch, ch); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1249 | #if ENABLE_HUSH_INTERACTIVE |
| 1250 | if (ch == '\n') |
| 1251 | i->promptme = 1; |
| 1252 | #endif |
| 1253 | return ch; |
| 1254 | } |
| 1255 | |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1256 | /* All callers guarantee this routine will never |
| 1257 | * be used right after a newline, so prompting is not needed. |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1258 | */ |
| 1259 | static int file_peek(struct in_str *i) |
| 1260 | { |
| 1261 | int ch; |
| 1262 | if (i->p && *i->p) { |
| 1263 | if (i->eof_flag && !i->p[1]) |
| 1264 | return EOF; |
| 1265 | return *i->p; |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1266 | /* note: ch is never NUL */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1267 | } |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1268 | do ch = fgetc(i->file); while (ch == '\0'); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1269 | i->eof_flag = (ch == EOF); |
| 1270 | i->peek_buf[0] = ch; |
| 1271 | i->peek_buf[1] = '\0'; |
| 1272 | i->p = i->peek_buf; |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1273 | debug_printf("file_peek: got '%c' %d\n", ch, ch); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1274 | return ch; |
| 1275 | } |
| 1276 | |
| 1277 | static void setup_file_in_str(struct in_str *i, FILE *f) |
| 1278 | { |
| 1279 | i->peek = file_peek; |
| 1280 | i->get = file_get; |
| 1281 | #if ENABLE_HUSH_INTERACTIVE |
| 1282 | i->promptme = 1; |
| 1283 | i->promptmode = 0; /* PS1 */ |
| 1284 | #endif |
| 1285 | i->file = f; |
| 1286 | i->p = NULL; |
| 1287 | } |
| 1288 | |
| 1289 | static void setup_string_in_str(struct in_str *i, const char *s) |
| 1290 | { |
| 1291 | i->peek = static_peek; |
| 1292 | i->get = static_get; |
| 1293 | #if ENABLE_HUSH_INTERACTIVE |
| 1294 | i->promptme = 1; |
| 1295 | i->promptmode = 0; /* PS1 */ |
| 1296 | #endif |
| 1297 | i->p = s; |
| 1298 | i->eof_flag = 0; |
| 1299 | } |
| 1300 | |
| 1301 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1302 | /* |
| 1303 | * o_string support |
| 1304 | */ |
| 1305 | #define B_CHUNK (32 * sizeof(char*)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1306 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1307 | static void o_reset(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1308 | { |
| 1309 | o->length = 0; |
| 1310 | o->nonnull = 0; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1311 | if (o->data) |
| 1312 | o->data[0] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1313 | } |
| 1314 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1315 | static void o_free(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1316 | { |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 1317 | free(o->data); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1318 | memset(o, 0, sizeof(*o)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1319 | } |
| 1320 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1321 | static ALWAYS_INLINE void o_free_unsafe(o_string *o) |
| 1322 | { |
| 1323 | free(o->data); |
| 1324 | } |
| 1325 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1326 | static void o_grow_by(o_string *o, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1327 | { |
| 1328 | if (o->length + len > o->maxlen) { |
| 1329 | o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK); |
| 1330 | o->data = xrealloc(o->data, 1 + o->maxlen); |
| 1331 | } |
| 1332 | } |
| 1333 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1334 | static void o_addchr(o_string *o, int ch) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1335 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1336 | debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o); |
| 1337 | o_grow_by(o, 1); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1338 | o->data[o->length] = ch; |
| 1339 | o->length++; |
| 1340 | o->data[o->length] = '\0'; |
| 1341 | } |
| 1342 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1343 | static void o_addblock(o_string *o, const char *str, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1344 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1345 | o_grow_by(o, len); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1346 | memcpy(&o->data[o->length], str, len); |
| 1347 | o->length += len; |
| 1348 | o->data[o->length] = '\0'; |
| 1349 | } |
| 1350 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1351 | #if !BB_MMU |
| 1352 | static void o_addstr(o_string *o, const char *str) |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1353 | { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1354 | o_addblock(o, str, strlen(str)); |
| 1355 | } |
| 1356 | #endif |
| 1357 | |
| 1358 | static void o_addstr_with_NUL(o_string *o, const char *str) |
| 1359 | { |
| 1360 | o_addblock(o, str, strlen(str) + 1); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1361 | } |
| 1362 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1363 | 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] | 1364 | { |
| 1365 | while (len) { |
| 1366 | o_addchr(o, *str); |
| 1367 | if (*str++ == '\\' |
| 1368 | && (*str != '*' && *str != '?' && *str != '[') |
| 1369 | ) { |
| 1370 | o_addchr(o, '\\'); |
| 1371 | } |
| 1372 | len--; |
| 1373 | } |
| 1374 | } |
| 1375 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1376 | /* My analysis of quoting semantics tells me that state information |
| 1377 | * is associated with a destination, not a source. |
| 1378 | */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1379 | static void o_addqchr(o_string *o, int ch) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1380 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1381 | int sz = 1; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 1382 | char *found = strchr("*?[\\", ch); |
| 1383 | if (found) |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1384 | sz++; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 1385 | o_grow_by(o, sz); |
| 1386 | if (found) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1387 | o->data[o->length] = '\\'; |
| 1388 | o->length++; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1389 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1390 | o->data[o->length] = ch; |
| 1391 | o->length++; |
| 1392 | o->data[o->length] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1393 | } |
| 1394 | |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1395 | static void o_addQchr(o_string *o, int ch) |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1396 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1397 | int sz = 1; |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1398 | if (o->o_escape && strchr("*?[\\", ch)) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1399 | sz++; |
| 1400 | o->data[o->length] = '\\'; |
| 1401 | o->length++; |
| 1402 | } |
| 1403 | o_grow_by(o, sz); |
| 1404 | o->data[o->length] = ch; |
| 1405 | o->length++; |
| 1406 | o->data[o->length] = '\0'; |
| 1407 | } |
| 1408 | |
| 1409 | static void o_addQstr(o_string *o, const char *str, int len) |
| 1410 | { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1411 | if (!o->o_escape) { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1412 | o_addblock(o, str, len); |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1413 | return; |
| 1414 | } |
| 1415 | while (len) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1416 | char ch; |
| 1417 | int sz; |
| 1418 | int ordinary_cnt = strcspn(str, "*?[\\"); |
| 1419 | if (ordinary_cnt > len) /* paranoia */ |
| 1420 | ordinary_cnt = len; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1421 | o_addblock(o, str, ordinary_cnt); |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1422 | if (ordinary_cnt == len) |
| 1423 | return; |
| 1424 | str += ordinary_cnt; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1425 | len -= ordinary_cnt + 1; /* we are processing + 1 char below */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1426 | |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1427 | ch = *str++; |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1428 | sz = 1; |
| 1429 | if (ch) { /* it is necessarily one of "*?[\\" */ |
| 1430 | sz++; |
| 1431 | o->data[o->length] = '\\'; |
| 1432 | o->length++; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1433 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1434 | o_grow_by(o, sz); |
| 1435 | o->data[o->length] = ch; |
| 1436 | o->length++; |
| 1437 | o->data[o->length] = '\0'; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1438 | } |
| 1439 | } |
| 1440 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1441 | /* A special kind of o_string for $VAR and `cmd` expansion. |
| 1442 | * 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] | 1443 | * increments. Actual string data starts at the next multiple of 16 * (char*). |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1444 | * list[i] contains an INDEX (int!) into this string data. |
| 1445 | * It means that if list[] needs to grow, data needs to be moved higher up |
| 1446 | * but list[i]'s need not be modified. |
| 1447 | * NB: remembering how many list[i]'s you have there is crucial. |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1448 | * o_finalize_list() operation post-processes this structure - calculates |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1449 | * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well. |
| 1450 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1451 | #if DEBUG_EXPAND || DEBUG_GLOB |
| 1452 | static void debug_print_list(const char *prefix, o_string *o, int n) |
| 1453 | { |
| 1454 | char **list = (char**)o->data; |
| 1455 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1456 | int i = 0; |
| 1457 | fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n", |
| 1458 | prefix, list, n, string_start, o->length, o->maxlen); |
| 1459 | while (i < n) { |
| 1460 | fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i], |
| 1461 | o->data + (int)list[i] + string_start, |
| 1462 | o->data + (int)list[i] + string_start); |
| 1463 | i++; |
| 1464 | } |
| 1465 | if (n) { |
| 1466 | const char *p = o->data + (int)list[n - 1] + string_start; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1467 | 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] | 1468 | } |
| 1469 | } |
| 1470 | #else |
| 1471 | #define debug_print_list(prefix, o, n) ((void)0) |
| 1472 | #endif |
| 1473 | |
| 1474 | /* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value |
| 1475 | * in list[n] so that it points past last stored byte so far. |
| 1476 | * It returns n+1. */ |
| 1477 | static int o_save_ptr_helper(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1478 | { |
| 1479 | char **list = (char**)o->data; |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1480 | int string_start; |
| 1481 | int string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1482 | |
| 1483 | if (!o->has_empty_slot) { |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1484 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1485 | string_len = o->length - string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1486 | if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */ |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1487 | 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] | 1488 | /* list[n] points to string_start, make space for 16 more pointers */ |
| 1489 | o->maxlen += 0x10 * sizeof(list[0]); |
| 1490 | o->data = xrealloc(o->data, o->maxlen + 1); |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 1491 | list = (char**)o->data; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1492 | memmove(list + n + 0x10, list + n, string_len); |
| 1493 | o->length += 0x10 * sizeof(list[0]); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 1494 | } else { |
| 1495 | debug_printf_list("list[%d]=%d string_start=%d\n", |
| 1496 | n, string_len, string_start); |
| 1497 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1498 | } else { |
| 1499 | /* We have empty slot at list[n], reuse without growth */ |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1500 | string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */ |
| 1501 | string_len = o->length - string_start; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 1502 | debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n", |
| 1503 | n, string_len, string_start); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1504 | o->has_empty_slot = 0; |
| 1505 | } |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1506 | list[n] = (char*)(ptrdiff_t)string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1507 | return n + 1; |
| 1508 | } |
| 1509 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1510 | /* "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] | 1511 | static int o_get_last_ptr(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1512 | { |
| 1513 | char **list = (char**)o->data; |
| 1514 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1515 | |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1516 | return ((int)(ptrdiff_t)list[n-1]) + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1517 | } |
| 1518 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1519 | /* o_glob performs globbing on last list[], saving each result |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1520 | * as a new list[]. */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1521 | static int o_glob(o_string *o, int n) |
| 1522 | { |
| 1523 | glob_t globdata; |
| 1524 | int gr; |
| 1525 | char *pattern; |
| 1526 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1527 | 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] | 1528 | if (!o->data) |
| 1529 | return o_save_ptr_helper(o, n); |
| 1530 | pattern = o->data + o_get_last_ptr(o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1531 | debug_printf_glob("glob pattern '%s'\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1532 | if (!glob_needed(pattern)) { |
| 1533 | literal: |
| 1534 | o->length = unbackslash(pattern) - o->data; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1535 | debug_printf_glob("glob pattern '%s' is literal\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1536 | return o_save_ptr_helper(o, n); |
| 1537 | } |
| 1538 | |
| 1539 | memset(&globdata, 0, sizeof(globdata)); |
| 1540 | gr = glob(pattern, 0, NULL, &globdata); |
| 1541 | debug_printf_glob("glob('%s'):%d\n", pattern, gr); |
| 1542 | if (gr == GLOB_NOSPACE) |
| 1543 | bb_error_msg_and_die("out of memory during glob"); |
| 1544 | if (gr == GLOB_NOMATCH) { |
| 1545 | globfree(&globdata); |
| 1546 | goto literal; |
| 1547 | } |
| 1548 | if (gr != 0) { /* GLOB_ABORTED ? */ |
| 1549 | //TODO: testcase for bad glob pattern behavior |
| 1550 | bb_error_msg("glob(3) error %d on '%s'", gr, pattern); |
| 1551 | } |
| 1552 | if (globdata.gl_pathv && globdata.gl_pathv[0]) { |
| 1553 | char **argv = globdata.gl_pathv; |
| 1554 | o->length = pattern - o->data; /* "forget" pattern */ |
| 1555 | while (1) { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1556 | o_addstr_with_NUL(o, *argv); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1557 | n = o_save_ptr_helper(o, n); |
| 1558 | argv++; |
| 1559 | if (!*argv) |
| 1560 | break; |
| 1561 | } |
| 1562 | } |
| 1563 | globfree(&globdata); |
| 1564 | if (DEBUG_GLOB) |
| 1565 | debug_print_list("o_glob returning", o, n); |
| 1566 | return n; |
| 1567 | } |
| 1568 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1569 | /* If o->o_glob == 1, glob the string so far remembered. |
| 1570 | * Otherwise, just finish current list[] and start new */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1571 | static int o_save_ptr(o_string *o, int n) |
| 1572 | { |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 1573 | if (o->o_glob) { /* if globbing is requested */ |
| 1574 | /* If o->has_empty_slot, list[n] was already globbed |
| 1575 | * (if it was requested back then when it was filled) |
| 1576 | * so don't do that again! */ |
| 1577 | if (!o->has_empty_slot) |
| 1578 | return o_glob(o, n); /* o_save_ptr_helper is inside */ |
| 1579 | } |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1580 | return o_save_ptr_helper(o, n); |
| 1581 | } |
| 1582 | |
| 1583 | /* "Please convert list[n] to real char* ptrs, and NULL terminate it." */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1584 | static char **o_finalize_list(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1585 | { |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1586 | char **list; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1587 | int string_start; |
| 1588 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1589 | n = o_save_ptr(o, n); /* force growth for list[n] if necessary */ |
| 1590 | if (DEBUG_EXPAND) |
| 1591 | debug_print_list("finalized", o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1592 | debug_printf_expand("finalized n:%d\n", n); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1593 | list = (char**)o->data; |
| 1594 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1595 | list[--n] = NULL; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1596 | while (n) { |
| 1597 | n--; |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1598 | list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1599 | } |
| 1600 | return list; |
| 1601 | } |
| 1602 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1603 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1604 | /* Expansion can recurse */ |
| 1605 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 1606 | static int process_command_subs(o_string *dest, const char *s); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1607 | #endif |
| 1608 | static char *expand_string_to_string(const char *str); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1609 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 1610 | #define parse_stream_dquoted(as_string, dest, input, dquote_end) \ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1611 | parse_stream_dquoted(dest, input, dquote_end) |
| 1612 | #endif |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 1613 | static int parse_stream_dquoted(o_string *as_string, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1614 | o_string *dest, |
| 1615 | struct in_str *input, |
| 1616 | int dquote_end); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1617 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1618 | /* expand_strvec_to_strvec() takes a list of strings, expands |
| 1619 | * all variable references within and returns a pointer to |
| 1620 | * a list of expanded strings, possibly with larger number |
| 1621 | * of strings. (Think VAR="a b"; echo $VAR). |
| 1622 | * This new list is allocated as a single malloc block. |
| 1623 | * NULL-terminated list of char* pointers is at the beginning of it, |
| 1624 | * followed by strings themself. |
| 1625 | * Caller can deallocate entire list by single free(list). */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1626 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1627 | /* Store given string, finalizing the word and starting new one whenever |
| 1628 | * we encounter IFS char(s). This is used for expanding variable values. |
| 1629 | * End-of-string does NOT finalize word: think about 'echo -$VAR-' */ |
| 1630 | 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] | 1631 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1632 | while (1) { |
| 1633 | int word_len = strcspn(str, G.ifs); |
| 1634 | if (word_len) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1635 | if (output->o_escape || !output->o_glob) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1636 | o_addQstr(output, str, word_len); |
| 1637 | else /* protect backslashes against globbing up :) */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1638 | o_addblock_duplicate_backslash(output, str, word_len); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1639 | str += word_len; |
| 1640 | } |
| 1641 | if (!*str) /* EOL - do not finalize word */ |
| 1642 | break; |
| 1643 | o_addchr(output, '\0'); |
| 1644 | debug_print_list("expand_on_ifs", output, n); |
| 1645 | n = o_save_ptr(output, n); |
| 1646 | str += strspn(str, G.ifs); /* skip ifs chars */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1647 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1648 | debug_print_list("expand_on_ifs[1]", output, n); |
| 1649 | return n; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1650 | } |
| 1651 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1652 | /* Expand all variable references in given string, adding words to list[] |
| 1653 | * at n, n+1,... positions. Return updated n (so that list[n] is next one |
| 1654 | * to be filled). This routine is extremely tricky: has to deal with |
| 1655 | * variables/parameters with whitespace, $* and $@, and constructs like |
| 1656 | * 'echo -$*-'. If you play here, you must run testsuite afterwards! */ |
| 1657 | 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] | 1658 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1659 | /* or_mask is either 0 (normal case) or 0x80 |
| 1660 | * (expansion of right-hand side of assignment == 1-element expand. |
| 1661 | * 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] | 1662 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1663 | char first_ch, ored_ch; |
| 1664 | int i; |
| 1665 | const char *val; |
| 1666 | char *p; |
| 1667 | |
| 1668 | ored_ch = 0; |
| 1669 | |
| 1670 | debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg); |
| 1671 | debug_print_list("expand_vars_to_list", output, n); |
| 1672 | n = o_save_ptr(output, n); |
| 1673 | debug_print_list("expand_vars_to_list[0]", output, n); |
| 1674 | |
| 1675 | while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) { |
| 1676 | #if ENABLE_HUSH_TICK |
| 1677 | o_string subst_result = NULL_O_STRING; |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 1678 | #endif |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1679 | #if ENABLE_SH_MATH_SUPPORT |
| 1680 | char arith_buf[sizeof(arith_t)*3 + 2]; |
| 1681 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1682 | o_addblock(output, arg, p - arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1683 | debug_print_list("expand_vars_to_list[1]", output, n); |
| 1684 | arg = ++p; |
| 1685 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 1686 | |
| 1687 | first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */ |
| 1688 | /* "$@" is special. Even if quoted, it can still |
| 1689 | * expand to nothing (not even an empty string) */ |
| 1690 | if ((first_ch & 0x7f) != '@') |
| 1691 | ored_ch |= first_ch; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1692 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1693 | val = NULL; |
| 1694 | switch (first_ch & 0x7f) { |
| 1695 | /* Highest bit in first_ch indicates that var is double-quoted */ |
| 1696 | case '$': /* pid */ |
| 1697 | val = utoa(G.root_pid); |
| 1698 | break; |
| 1699 | case '!': /* bg pid */ |
| 1700 | val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)""; |
| 1701 | break; |
| 1702 | case '?': /* exitcode */ |
| 1703 | val = utoa(G.last_return_code); |
| 1704 | break; |
| 1705 | case '#': /* argc */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1706 | if (arg[1] != SPECIAL_VAR_SYMBOL) |
| 1707 | /* actually, it's a ${#var} */ |
| 1708 | goto case_default; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1709 | val = utoa(G.global_argc ? G.global_argc-1 : 0); |
| 1710 | break; |
| 1711 | case '*': |
| 1712 | case '@': |
| 1713 | i = 1; |
| 1714 | if (!G.global_argv[i]) |
| 1715 | break; |
| 1716 | ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */ |
| 1717 | if (!(first_ch & 0x80)) { /* unquoted $* or $@ */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1718 | smallint sv = output->o_escape; |
| 1719 | /* unquoted var's contents should be globbed, so don't escape */ |
| 1720 | output->o_escape = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1721 | while (G.global_argv[i]) { |
| 1722 | n = expand_on_ifs(output, n, G.global_argv[i]); |
| 1723 | debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1); |
| 1724 | if (G.global_argv[i++][0] && G.global_argv[i]) { |
| 1725 | /* this argv[] is not empty and not last: |
| 1726 | * put terminating NUL, start new word */ |
| 1727 | o_addchr(output, '\0'); |
| 1728 | debug_print_list("expand_vars_to_list[2]", output, n); |
| 1729 | n = o_save_ptr(output, n); |
| 1730 | debug_print_list("expand_vars_to_list[3]", output, n); |
| 1731 | } |
| 1732 | } |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1733 | output->o_escape = sv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1734 | } else |
| 1735 | /* If or_mask is nonzero, we handle assignment 'a=....$@.....' |
| 1736 | * and in this case should treat it like '$*' - see 'else...' below */ |
| 1737 | if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */ |
| 1738 | while (1) { |
| 1739 | o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i])); |
| 1740 | if (++i >= G.global_argc) |
| 1741 | break; |
| 1742 | o_addchr(output, '\0'); |
| 1743 | debug_print_list("expand_vars_to_list[4]", output, n); |
| 1744 | n = o_save_ptr(output, n); |
| 1745 | } |
| 1746 | } else { /* quoted $*: add as one word */ |
| 1747 | while (1) { |
| 1748 | o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i])); |
| 1749 | if (!G.global_argv[++i]) |
| 1750 | break; |
| 1751 | if (G.ifs[0]) |
| 1752 | o_addchr(output, G.ifs[0]); |
| 1753 | } |
| 1754 | } |
| 1755 | break; |
| 1756 | case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */ |
| 1757 | /* "Empty variable", used to make "" etc to not disappear */ |
| 1758 | arg++; |
| 1759 | ored_ch = 0x80; |
| 1760 | break; |
| 1761 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 1762 | case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1763 | *p = '\0'; |
| 1764 | arg++; |
| 1765 | //TODO: can we just stuff it into "output" directly? |
| 1766 | debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 1767 | process_command_subs(&subst_result, arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1768 | debug_printf_subst("SUBST RES '%s'\n", subst_result.data); |
| 1769 | val = subst_result.data; |
| 1770 | goto store_val; |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 1771 | #endif |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1772 | #if ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1773 | case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */ |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1774 | arith_eval_hooks_t hooks; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1775 | arith_t res; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1776 | int errcode; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1777 | char *exp_str; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1778 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1779 | arg++; /* skip '+' */ |
| 1780 | *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */ |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1781 | debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1782 | |
| 1783 | /* Optional: skip expansion if expr is simple ("a + 3", "i++" etc) */ |
Denis Vlasenko | b1d11bf | 2009-04-06 12:24:58 +0000 | [diff] [blame] | 1784 | exp_str = NULL; |
| 1785 | if (strchr(arg, '$') != NULL |
| 1786 | #if ENABLE_HUSH_TICK |
| 1787 | || strchr(arg, '`') != NULL |
| 1788 | #endif |
| 1789 | ) { |
| 1790 | /* We need to expand. Example: |
| 1791 | * echo $(($a + `echo 1`)) $((1 + $((2)) )) |
| 1792 | */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1793 | struct in_str input; |
| 1794 | o_string dest = NULL_O_STRING; |
| 1795 | |
| 1796 | setup_string_in_str(&input, arg); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1797 | parse_stream_dquoted(NULL, &dest, &input, EOF); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1798 | //bb_error_msg("'%s' -> '%s'", arg, dest.data); |
| 1799 | exp_str = expand_string_to_string(dest.data); |
| 1800 | //bb_error_msg("'%s' -> '%s'", dest.data, exp_str); |
Denis Vlasenko | 5e883fb | 2009-04-06 12:28:34 +0000 | [diff] [blame] | 1801 | o_free_unsafe(&dest); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1802 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 1803 | hooks.lookupvar = get_local_var_value; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1804 | hooks.setvar = arith_set_local_var; |
| 1805 | hooks.endofname = endofname; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1806 | res = arith(exp_str ? exp_str : arg, &errcode, &hooks); |
| 1807 | free(exp_str); |
| 1808 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1809 | if (errcode < 0) { |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1810 | switch (errcode) { |
| 1811 | case -3: maybe_die("arith", "exponent less than 0"); break; |
| 1812 | case -2: maybe_die("arith", "divide by zero"); break; |
| 1813 | case -5: maybe_die("arith", "expression recursion loop detected"); break; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1814 | default: maybe_die("arith", "syntax error"); break; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1815 | } |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1816 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1817 | debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1818 | sprintf(arith_buf, arith_t_fmt, res); |
| 1819 | val = arith_buf; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1820 | break; |
| 1821 | } |
| 1822 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1823 | default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1824 | case_default: { |
Denis Vlasenko | 232be3e | 2009-04-05 09:16:00 +0000 | [diff] [blame] | 1825 | bool exp_len = false; |
| 1826 | bool exp_null = false; |
| 1827 | char *var = arg; |
| 1828 | char exp_save = exp_save; /* for compiler */ |
| 1829 | char exp_op = exp_op; /* for compiler */ |
| 1830 | char *exp_word = exp_word; /* for compiler */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1831 | size_t exp_off = 0; |
Denis Vlasenko | 232be3e | 2009-04-05 09:16:00 +0000 | [diff] [blame] | 1832 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1833 | *p = '\0'; |
| 1834 | arg[0] = first_ch & 0x7f; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1835 | |
| 1836 | /* prepare for expansions */ |
| 1837 | if (var[0] == '#') { |
| 1838 | /* handle length expansion ${#var} */ |
| 1839 | exp_len = true; |
| 1840 | ++var; |
| 1841 | } else { |
| 1842 | /* maybe handle parameter expansion */ |
| 1843 | exp_off = strcspn(var, ":-=+?"); |
| 1844 | if (!var[exp_off]) |
| 1845 | exp_off = 0; |
| 1846 | if (exp_off) { |
| 1847 | exp_save = var[exp_off]; |
| 1848 | exp_null = exp_save == ':'; |
| 1849 | exp_word = var + exp_off; |
| 1850 | if (exp_null) ++exp_word; |
| 1851 | exp_op = *exp_word++; |
| 1852 | var[exp_off] = '\0'; |
| 1853 | } |
| 1854 | } |
| 1855 | |
| 1856 | /* lookup the variable in question */ |
| 1857 | if (isdigit(var[0])) { |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 1858 | /* handle_dollar() should have vetted var for us */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1859 | i = xatoi_u(var); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1860 | if (i < G.global_argc) |
| 1861 | val = G.global_argv[i]; |
| 1862 | /* else val remains NULL: $N with too big N */ |
| 1863 | } else |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 1864 | val = get_local_var_value(var); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1865 | |
| 1866 | /* handle any expansions */ |
| 1867 | if (exp_len) { |
| 1868 | debug_printf_expand("expand: length of '%s' = ", val); |
| 1869 | val = utoa(val ? strlen(val) : 0); |
| 1870 | debug_printf_expand("%s\n", val); |
| 1871 | } else if (exp_off) { |
| 1872 | /* we need to do an expansion */ |
| 1873 | int exp_test = (!val || (exp_null && !val[0])); |
| 1874 | if (exp_op == '+') |
| 1875 | exp_test = !exp_test; |
| 1876 | debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op, |
| 1877 | exp_null ? "true" : "false", exp_test); |
| 1878 | if (exp_test) { |
| 1879 | if (exp_op == '?') |
| 1880 | maybe_die(var, *exp_word ? exp_word : "parameter null or not set"); |
| 1881 | else |
| 1882 | val = exp_word; |
| 1883 | |
| 1884 | if (exp_op == '=') { |
| 1885 | if (isdigit(var[0]) || var[0] == '#') { |
| 1886 | maybe_die(var, "special vars cannot assign in this way"); |
| 1887 | val = NULL; |
| 1888 | } else { |
| 1889 | char *new_var = xmalloc(strlen(var) + strlen(val) + 2); |
| 1890 | sprintf(new_var, "%s=%s", var, val); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1891 | set_local_var(new_var, -1, 0); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1892 | } |
| 1893 | } |
| 1894 | } |
| 1895 | var[exp_off] = exp_save; |
| 1896 | } |
| 1897 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1898 | arg[0] = first_ch; |
| 1899 | #if ENABLE_HUSH_TICK |
| 1900 | store_val: |
| 1901 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1902 | if (!(first_ch & 0x80)) { /* unquoted $VAR */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1903 | 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] | 1904 | if (val) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1905 | /* unquoted var's contents should be globbed, so don't escape */ |
| 1906 | smallint sv = output->o_escape; |
| 1907 | output->o_escape = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1908 | n = expand_on_ifs(output, n, val); |
| 1909 | val = NULL; |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1910 | output->o_escape = sv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1911 | } |
| 1912 | } else { /* quoted $VAR, val will be appended below */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1913 | 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] | 1914 | } |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1915 | } /* default: */ |
| 1916 | } /* switch (char after <SPECIAL_VAR_SYMBOL>) */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1917 | if (val) { |
| 1918 | o_addQstr(output, val, strlen(val)); |
| 1919 | } |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1920 | /* Do the check to avoid writing to a const string */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1921 | if (*p != SPECIAL_VAR_SYMBOL) |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1922 | *p = SPECIAL_VAR_SYMBOL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1923 | |
| 1924 | #if ENABLE_HUSH_TICK |
| 1925 | o_free(&subst_result); |
| 1926 | #endif |
| 1927 | arg = ++p; |
| 1928 | } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */ |
| 1929 | |
| 1930 | if (arg[0]) { |
| 1931 | debug_print_list("expand_vars_to_list[a]", output, n); |
| 1932 | /* this part is literal, and it was already pre-quoted |
| 1933 | * if needed (much earlier), do not use o_addQstr here! */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1934 | o_addstr_with_NUL(output, arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1935 | debug_print_list("expand_vars_to_list[b]", output, n); |
| 1936 | } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */ |
| 1937 | && !(ored_ch & 0x80) /* and all vars were not quoted. */ |
| 1938 | ) { |
| 1939 | n--; |
| 1940 | /* allow to reuse list[n] later without re-growth */ |
| 1941 | output->has_empty_slot = 1; |
| 1942 | } else { |
| 1943 | o_addchr(output, '\0'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1944 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1945 | return n; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1946 | } |
| 1947 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1948 | static char **expand_variables(char **argv, int or_mask) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1949 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1950 | int n; |
| 1951 | char **list; |
| 1952 | char **v; |
| 1953 | o_string output = NULL_O_STRING; |
| 1954 | |
| 1955 | if (or_mask & 0x100) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1956 | output.o_escape = 1; /* protect against globbing for "$var" */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1957 | /* (unquoted $var will temporarily switch it off) */ |
| 1958 | output.o_glob = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1959 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1960 | |
| 1961 | n = 0; |
| 1962 | v = argv; |
| 1963 | while (*v) { |
| 1964 | n = expand_vars_to_list(&output, n, *v, (char)or_mask); |
| 1965 | v++; |
| 1966 | } |
| 1967 | debug_print_list("expand_variables", &output, n); |
| 1968 | |
| 1969 | /* output.data (malloced in one block) gets returned in "list" */ |
| 1970 | list = o_finalize_list(&output, n); |
| 1971 | debug_print_strings("expand_variables[1]", list); |
| 1972 | return list; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1973 | } |
| 1974 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1975 | static char **expand_strvec_to_strvec(char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1976 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1977 | return expand_variables(argv, 0x100); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1978 | } |
| 1979 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1980 | /* Used for expansion of right hand of assignments */ |
| 1981 | /* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs |
| 1982 | * "v=/bin/c*" */ |
| 1983 | static char *expand_string_to_string(const char *str) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1984 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1985 | char *argv[2], **list; |
| 1986 | |
| 1987 | argv[0] = (char*)str; |
| 1988 | argv[1] = NULL; |
| 1989 | list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */ |
| 1990 | if (HUSH_DEBUG) |
| 1991 | if (!list[0] || list[1]) |
| 1992 | bb_error_msg_and_die("BUG in varexp2"); |
| 1993 | /* actually, just move string 2*sizeof(char*) bytes back */ |
| 1994 | overlapping_strcpy((char*)list, list[0]); |
| 1995 | debug_printf_expand("string_to_string='%s'\n", (char*)list); |
| 1996 | return (char*)list; |
| 1997 | } |
| 1998 | |
| 1999 | /* Used for "eval" builtin */ |
| 2000 | static char* expand_strvec_to_string(char **argv) |
| 2001 | { |
| 2002 | char **list; |
| 2003 | |
| 2004 | list = expand_variables(argv, 0x80); |
| 2005 | /* Convert all NULs to spaces */ |
| 2006 | if (list[0]) { |
| 2007 | int n = 1; |
| 2008 | while (list[n]) { |
| 2009 | if (HUSH_DEBUG) |
| 2010 | if (list[n-1] + strlen(list[n-1]) + 1 != list[n]) |
| 2011 | bb_error_msg_and_die("BUG in varexp3"); |
| 2012 | list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */ |
| 2013 | n++; |
| 2014 | } |
| 2015 | } |
| 2016 | overlapping_strcpy((char*)list, list[0]); |
| 2017 | debug_printf_expand("strvec_to_string='%s'\n", (char*)list); |
| 2018 | return (char*)list; |
| 2019 | } |
| 2020 | |
| 2021 | static char **expand_assignments(char **argv, int count) |
| 2022 | { |
| 2023 | int i; |
| 2024 | char **p = NULL; |
| 2025 | /* Expand assignments into one string each */ |
| 2026 | for (i = 0; i < count; i++) { |
| 2027 | p = add_string_to_strings(p, expand_string_to_string(argv[i])); |
| 2028 | } |
| 2029 | return p; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2030 | } |
| 2031 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 2032 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2033 | /* squirrel != NULL means we squirrel away copies of stdin, stdout, |
| 2034 | * and stderr if they are redirected. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2035 | static int setup_redirects(struct command *prog, int squirrel[]) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2036 | { |
| 2037 | int openfd, mode; |
| 2038 | struct redir_struct *redir; |
| 2039 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2040 | for (redir = prog->redirects; redir; redir = redir->next) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 2041 | if (redir->dup == -1 && redir->rd_filename == NULL) { |
Eric Andersen | 817e73c | 2001-06-06 17:56:09 +0000 | [diff] [blame] | 2042 | /* something went wrong in the parse. Pretend it didn't happen */ |
| 2043 | continue; |
| 2044 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2045 | if (redir->dup == -1) { |
Denis Vlasenko | cccdc4e | 2007-11-23 21:08:38 +0000 | [diff] [blame] | 2046 | char *p; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 2047 | mode = redir_table[redir->rd_type].mode; |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 2048 | //TODO: check redir for names like '\\' |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 2049 | p = expand_string_to_string(redir->rd_filename); |
Denis Vlasenko | cccdc4e | 2007-11-23 21:08:38 +0000 | [diff] [blame] | 2050 | openfd = open_or_warn(p, mode); |
| 2051 | free(p); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2052 | if (openfd < 0) { |
| 2053 | /* this could get lost if stderr has been redirected, but |
| 2054 | bash and ash both lose it as well (though zsh doesn't!) */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2055 | return 1; |
| 2056 | } |
| 2057 | } else { |
| 2058 | openfd = redir->dup; |
| 2059 | } |
| 2060 | |
| 2061 | if (openfd != redir->fd) { |
| 2062 | if (squirrel && redir->fd < 3) { |
| 2063 | squirrel[redir->fd] = dup(redir->fd); |
| 2064 | } |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2065 | if (openfd == -3) { |
Mike Frysinger | dc41780 | 2009-04-06 12:35:41 +0000 | [diff] [blame] | 2066 | /* "-" means "close me" and we use -3 for that */ |
| 2067 | close(redir->fd); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2068 | } else { |
| 2069 | dup2(openfd, redir->fd); |
Matt Kraai | c616e53 | 2001-06-05 16:50:08 +0000 | [diff] [blame] | 2070 | if (redir->dup == -1) |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2071 | close(openfd); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2072 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2073 | } |
| 2074 | } |
| 2075 | return 0; |
| 2076 | } |
| 2077 | |
| 2078 | static void restore_redirects(int squirrel[]) |
| 2079 | { |
| 2080 | int i, fd; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2081 | for (i = 0; i < 3; i++) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2082 | fd = squirrel[i]; |
| 2083 | if (fd != -1) { |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 2084 | /* We simply die on error */ |
| 2085 | xmove_fd(fd, i); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2086 | } |
| 2087 | } |
| 2088 | } |
| 2089 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2090 | |
Denis Vlasenko | a0e6512 | 2009-04-05 23:39:14 +0000 | [diff] [blame] | 2091 | #if !DEBUG_CLEAN |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2092 | #define free_pipe_list(head, indent) free_pipe_list(head) |
| 2093 | #define free_pipe(pi, indent) free_pipe(pi) |
| 2094 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2095 | static void free_pipe_list(struct pipe *head, int indent); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2096 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2097 | /* Return code is the exit status of the pipe */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2098 | static void free_pipe(struct pipe *pi, int indent) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2099 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2100 | char **p; |
| 2101 | struct command *command; |
| 2102 | struct redir_struct *r, *rnext; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2103 | int a, i; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2104 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2105 | if (pi->stopped_cmds > 0) /* why? */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2106 | return; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2107 | debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid()); |
| 2108 | for (i = 0; i < pi->num_cmds; i++) { |
| 2109 | command = &pi->cmds[i]; |
| 2110 | debug_printf_clean("%s command %d:\n", indenter(indent), i); |
| 2111 | if (command->argv) { |
| 2112 | for (a = 0, p = command->argv; *p; a++, p++) { |
| 2113 | debug_printf_clean("%s argv[%d] = %s\n", indenter(indent), a, *p); |
| 2114 | } |
| 2115 | free_strings(command->argv); |
| 2116 | command->argv = NULL; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2117 | } |
| 2118 | /* not "else if": on syntax error, we may have both! */ |
| 2119 | if (command->group) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2120 | 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] | 2121 | free_pipe_list(command->group, indent+3); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2122 | debug_printf_clean("%s end group\n", indenter(indent)); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2123 | command->group = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2124 | } |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2125 | #if !BB_MMU |
| 2126 | free(command->group_as_string); |
| 2127 | command->group_as_string = NULL; |
| 2128 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2129 | for (r = command->redirects; r; r = rnext) { |
| 2130 | debug_printf_clean("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->rd_type].descrip); |
| 2131 | if (r->dup == -1) { |
| 2132 | /* guard against the case >$FOO, where foo is unset or blank */ |
| 2133 | if (r->rd_filename) { |
| 2134 | debug_printf_clean(" %s\n", r->rd_filename); |
| 2135 | free(r->rd_filename); |
| 2136 | r->rd_filename = NULL; |
| 2137 | } |
| 2138 | } else { |
| 2139 | debug_printf_clean("&%d\n", r->dup); |
| 2140 | } |
| 2141 | rnext = r->next; |
| 2142 | free(r); |
| 2143 | } |
| 2144 | command->redirects = NULL; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2145 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2146 | free(pi->cmds); /* children are an array, they get freed all at once */ |
| 2147 | pi->cmds = NULL; |
| 2148 | #if ENABLE_HUSH_JOB |
| 2149 | free(pi->cmdtext); |
| 2150 | pi->cmdtext = NULL; |
| 2151 | #endif |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2152 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 2153 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2154 | static void free_pipe_list(struct pipe *head, int indent) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2155 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2156 | struct pipe *pi, *next; |
| 2157 | |
| 2158 | for (pi = head; pi; pi = next) { |
| 2159 | #if HAS_KEYWORDS |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 2160 | debug_printf_clean("%s pipe reserved word %d\n", indenter(indent), pi->res_word); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2161 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2162 | free_pipe(pi, indent); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2163 | debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup); |
| 2164 | next = pi->next; |
| 2165 | /*pi->next = NULL;*/ |
| 2166 | free(pi); |
| 2167 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2168 | } |
| 2169 | |
| 2170 | |
| 2171 | #if !BB_MMU |
| 2172 | typedef struct nommu_save_t { |
| 2173 | char **new_env; |
| 2174 | char **old_env; |
| 2175 | char **argv; |
| 2176 | } nommu_save_t; |
| 2177 | #else |
| 2178 | #define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \ |
| 2179 | pseudo_exec_argv(argv, assignment_cnt, argv_expanded) |
| 2180 | #define pseudo_exec(nommu_save, command, argv_expanded) \ |
| 2181 | pseudo_exec(command, argv_expanded) |
| 2182 | #endif |
| 2183 | |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 2184 | /* Called after [v]fork() in run_pipe, or from builtin_exec. |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2185 | * Never returns. |
| 2186 | * XXX no exit() here. If you don't exec, use _exit instead. |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2187 | * The at_exit handlers apparently confuse the calling process, |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2188 | * in particular stdin handling. Not sure why? -- because of vfork! (vda) */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2189 | static void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 2190 | char **argv, int assignment_cnt, |
| 2191 | char **argv_expanded) NORETURN; |
| 2192 | static void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 2193 | char **argv, int assignment_cnt, |
| 2194 | char **argv_expanded) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2195 | { |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2196 | char **new_env; |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2197 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2198 | /* Case when we are here: ... | var=val | ... */ |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2199 | if (!argv[assignment_cnt]) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2200 | _exit(EXIT_SUCCESS); |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2201 | |
Denis Vlasenko | 9504e44 | 2008-10-29 01:19:15 +0000 | [diff] [blame] | 2202 | new_env = expand_assignments(argv, assignment_cnt); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2203 | #if BB_MMU |
| 2204 | putenv_all(new_env); |
| 2205 | free(new_env); /* optional */ |
| 2206 | #else |
| 2207 | nommu_save->new_env = new_env; |
| 2208 | nommu_save->old_env = putenv_all_and_save_old(new_env); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2209 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2210 | if (argv_expanded) { |
| 2211 | argv = argv_expanded; |
| 2212 | } else { |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 2213 | argv = expand_strvec_to_strvec(argv + assignment_cnt); |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2214 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2215 | nommu_save->argv = argv; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2216 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2217 | } |
Denis Vlasenko | 764d59d | 2007-05-14 16:23:23 +0000 | [diff] [blame] | 2218 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2219 | /* On NOMMU, we must never block! |
| 2220 | * Example: { sleep 99999 | read line } & echo Ok |
| 2221 | * read builtin will block on read syscall, leaving parent blocked |
| 2222 | * in vfork. Therefore we can't do this: |
| 2223 | */ |
| 2224 | #if BB_MMU |
| 2225 | /* Check if the command matches any of the builtins. |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2226 | * Depending on context, this might be redundant. But it's |
| 2227 | * easier to waste a few CPU cycles than it is to figure out |
| 2228 | * if this is one of those cases. |
| 2229 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2230 | { |
| 2231 | int rcode; |
| 2232 | const struct built_in_command *x; |
| 2233 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
| 2234 | if (strcmp(argv[0], x->cmd) == 0) { |
| 2235 | debug_printf_exec("running builtin '%s'\n", |
| 2236 | argv[0]); |
| 2237 | rcode = x->function(argv); |
| 2238 | fflush(NULL); |
| 2239 | _exit(rcode); |
| 2240 | } |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2241 | } |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2242 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2243 | #endif |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 2244 | |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 2245 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2246 | /* Check if the command matches any busybox applets */ |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2247 | if (strchr(argv[0], '/') == NULL) { |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 2248 | int a = find_applet_by_name(argv[0]); |
| 2249 | if (a >= 0) { |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2250 | #if BB_MMU /* see above why on NOMMU it is not allowed */ |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 2251 | if (APPLET_IS_NOEXEC(a)) { |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2252 | debug_printf_exec("running applet '%s'\n", argv[0]); |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 2253 | run_applet_no_and_exit(a, argv); |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2254 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2255 | #endif |
| 2256 | /* Re-exec ourselves */ |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2257 | debug_printf_exec("re-execing applet '%s'\n", argv[0]); |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2258 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
| 2259 | execv(bb_busybox_exec_path, argv); |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2260 | /* If they called chroot or otherwise made the binary no longer |
| 2261 | * executable, fall through */ |
| 2262 | } |
| 2263 | } |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 2264 | #endif |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2265 | |
| 2266 | debug_printf_exec("execing '%s'\n", argv[0]); |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2267 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2268 | execvp(argv[0], argv); |
Bernhard Reutner-Fischer | a53de7f | 2008-07-21 13:46:54 +0000 | [diff] [blame] | 2269 | bb_perror_msg("can't exec '%s'", argv[0]); |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 2270 | _exit(EXIT_FAILURE); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2271 | } |
| 2272 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 2273 | #if BB_MMU |
| 2274 | static void reset_traps_to_defaults(void) |
| 2275 | { |
| 2276 | unsigned sig; |
| 2277 | int dirty; |
| 2278 | |
| 2279 | if (!G.traps) |
| 2280 | return; |
| 2281 | dirty = 0; |
| 2282 | for (sig = 0; sig < NSIG; sig++) { |
| 2283 | if (!G.traps[sig]) |
| 2284 | continue; |
| 2285 | free(G.traps[sig]); |
| 2286 | G.traps[sig] = NULL; |
| 2287 | /* There is no signal for 0 (EXIT) */ |
| 2288 | if (sig == 0) |
| 2289 | continue; |
| 2290 | /* there was a trap handler, we are removing it |
| 2291 | * (if sig has non-DFL handling, |
| 2292 | * we don't need to do anything) */ |
| 2293 | if (sig < 32 && (G.non_DFL_mask & (1 << sig))) |
| 2294 | continue; |
| 2295 | sigdelset(&G.blocked_set, sig); |
| 2296 | dirty = 1; |
| 2297 | } |
| 2298 | if (dirty) |
| 2299 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 2300 | } |
| 2301 | #define clean_up_after_re_execute() ((void)0) |
| 2302 | |
| 2303 | #else /* !BB_MMU */ |
| 2304 | |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 2305 | static void re_execute_shell(const char *s) NORETURN; |
| 2306 | static void re_execute_shell(const char *s) |
| 2307 | { |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 2308 | char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4]; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 2309 | struct variable *cur; |
Denis Vlasenko | 30db43b | 2009-04-05 02:10:39 +0000 | [diff] [blame] | 2310 | char **argv, **pp, **pp2; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 2311 | unsigned cnt; |
| 2312 | |
Denis Vlasenko | 0969a49 | 2009-04-06 13:05:57 +0000 | [diff] [blame] | 2313 | sprintf(param_buf, "-$%x:%x:%x" USE_HUSH_LOOPS(":%x") |
| 2314 | , (unsigned) G.root_pid |
| 2315 | , (unsigned) G.last_bg_pid |
| 2316 | , (unsigned) G.last_return_code |
| 2317 | USE_HUSH_LOOPS(, G.depth_of_loop) |
| 2318 | ); |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 2319 | /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...> |
| 2320 | * 3:-c 4:<cmd> <argN...> 5:NULL |
Denis Vlasenko | 30db43b | 2009-04-05 02:10:39 +0000 | [diff] [blame] | 2321 | */ |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 2322 | cnt = 5 + G.global_argc; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 2323 | for (cur = G.top_var; cur; cur = cur->next) { |
| 2324 | if (!cur->flg_export || cur->flg_read_only) |
| 2325 | cnt += 2; |
| 2326 | } |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 2327 | G.argv_from_re_execing = pp = xzalloc(sizeof(argv[0]) * cnt); |
| 2328 | *pp++ = (char *) G.argv0_for_re_execing; |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 2329 | *pp++ = param_buf; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 2330 | for (cur = G.top_var; cur; cur = cur->next) { |
| 2331 | if (cur->varstr == hush_version_str) |
| 2332 | continue; |
| 2333 | if (cur->flg_read_only) { |
| 2334 | *pp++ = (char *) "-R"; |
| 2335 | *pp++ = cur->varstr; |
| 2336 | } else if (!cur->flg_export) { |
| 2337 | *pp++ = (char *) "-V"; |
| 2338 | *pp++ = cur->varstr; |
| 2339 | } |
| 2340 | } |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 2341 | //TODO: pass functions |
| 2342 | /* We can pass activated traps here. Say, -Tnn:trap_string |
| 2343 | * |
| 2344 | * However, POSIX says that subshells reset signals with traps |
| 2345 | * to SIG_DFL. |
| 2346 | * I tested bash-3.2 and it not only does that with true subshells |
| 2347 | * of the form ( list ), but with any forked children shells. |
| 2348 | * I set trap "echo W" WINCH; and then tried: |
| 2349 | * |
| 2350 | * { echo 1; sleep 20; echo 2; } & |
| 2351 | * while true; do echo 1; sleep 20; echo 2; break; done & |
| 2352 | * true | { echo 1; sleep 20; echo 2; } | cat |
| 2353 | * |
| 2354 | * In all these cases sending SIGWINCH to the child shell |
| 2355 | * did not run the trap. If I add trap "echo V" WINCH; |
| 2356 | * _inside_ group (just before echo 1), it works. |
| 2357 | * |
| 2358 | * I conclude it means we don't need to pass active traps here. |
| 2359 | * exec syscall below resets them to SIG_DFL for us. |
| 2360 | */ |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 2361 | *pp++ = (char *) "-c"; |
| 2362 | *pp++ = (char *) s; |
Denis Vlasenko | 30db43b | 2009-04-05 02:10:39 +0000 | [diff] [blame] | 2363 | pp2 = G.global_argv; |
| 2364 | while (*pp2) |
| 2365 | *pp++ = *pp2++; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 2366 | /* *pp = NULL; - is already there */ |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 2367 | |
| 2368 | 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] | 2369 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 2370 | execv(bb_busybox_exec_path, G.argv_from_re_execing); |
| 2371 | /* Fallback. Useful for init=/bin/hush usage etc */ |
| 2372 | if (G.argv0_for_re_execing[0] == '/') |
| 2373 | execv(G.argv0_for_re_execing, G.argv_from_re_execing); |
| 2374 | xfunc_error_retval = 127; |
| 2375 | bb_error_msg_and_die("can't re-execute the shell"); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 2376 | } |
| 2377 | |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 2378 | static void clean_up_after_re_execute(void) |
| 2379 | { |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 2380 | char **pp = G.argv_from_re_execing; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 2381 | if (pp) { |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 2382 | /* Must match re_execute_shell's allocations (if any) */ |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 2383 | free(pp); |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 2384 | G.argv_from_re_execing = NULL; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 2385 | } |
| 2386 | } |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 2387 | #endif |
| 2388 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2389 | static int run_list(struct pipe *pi); |
| 2390 | |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 2391 | /* Called after [v]fork() in run_pipe |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2392 | */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2393 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 2394 | struct command *command, |
| 2395 | char **argv_expanded) NORETURN; |
| 2396 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 2397 | struct command *command, |
| 2398 | char **argv_expanded) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2399 | { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2400 | if (command->argv) { |
| 2401 | pseudo_exec_argv(nommu_save, command->argv, |
| 2402 | command->assignment_cnt, argv_expanded); |
| 2403 | } |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2404 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2405 | if (command->group) { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2406 | /* Cases when we are here: |
| 2407 | * ( list ) |
| 2408 | * { list } & |
| 2409 | * ... | ( list ) | ... |
| 2410 | * ... | { list } | ... |
| 2411 | */ |
| 2412 | #if BB_MMU |
Denis Vlasenko | 3b49216 | 2007-12-24 14:26:57 +0000 | [diff] [blame] | 2413 | int rcode; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2414 | debug_printf_exec("pseudo_exec: run_list\n"); |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 2415 | reset_traps_to_defaults(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2416 | rcode = run_list(command->group); |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 2417 | /* OK to leak memory by not calling free_pipe_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2418 | * since this process is about to exit */ |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2419 | _exit(rcode); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2420 | #else |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 2421 | re_execute_shell(command->group_as_string); |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2422 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2423 | } |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2424 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2425 | /* Case when we are here: ... | >file */ |
| 2426 | debug_printf_exec("pseudo_exec'ed null command\n"); |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2427 | _exit(EXIT_SUCCESS); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2428 | } |
| 2429 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2430 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2431 | static const char *get_cmdtext(struct pipe *pi) |
| 2432 | { |
| 2433 | char **argv; |
| 2434 | char *p; |
| 2435 | int len; |
| 2436 | |
| 2437 | /* This is subtle. ->cmdtext is created only on first backgrounding. |
| 2438 | * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...) |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2439 | * On subsequent bg argv is trashed, but we won't use it */ |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2440 | if (pi->cmdtext) |
| 2441 | return pi->cmdtext; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2442 | argv = pi->cmds[0].argv; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 2443 | if (!argv || !argv[0]) { |
| 2444 | pi->cmdtext = xzalloc(1); |
| 2445 | return pi->cmdtext; |
| 2446 | } |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2447 | |
| 2448 | len = 0; |
| 2449 | do len += strlen(*argv) + 1; while (*++argv); |
| 2450 | pi->cmdtext = p = xmalloc(len); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2451 | argv = pi->cmds[0].argv; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2452 | do { |
| 2453 | len = strlen(*argv); |
| 2454 | memcpy(p, *argv, len); |
| 2455 | p += len; |
| 2456 | *p++ = ' '; |
| 2457 | } while (*++argv); |
| 2458 | p[-1] = '\0'; |
| 2459 | return pi->cmdtext; |
| 2460 | } |
| 2461 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2462 | static void insert_bg_job(struct pipe *pi) |
| 2463 | { |
| 2464 | struct pipe *thejob; |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2465 | int i; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2466 | |
| 2467 | /* Linear search for the ID of the job to use */ |
| 2468 | pi->jobid = 1; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2469 | for (thejob = G.job_list; thejob; thejob = thejob->next) |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2470 | if (thejob->jobid >= pi->jobid) |
| 2471 | pi->jobid = thejob->jobid + 1; |
| 2472 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2473 | /* Add thejob to the list of running jobs */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2474 | if (!G.job_list) { |
| 2475 | thejob = G.job_list = xmalloc(sizeof(*thejob)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2476 | } else { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2477 | for (thejob = G.job_list; thejob->next; thejob = thejob->next) |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2478 | continue; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2479 | thejob->next = xmalloc(sizeof(*thejob)); |
| 2480 | thejob = thejob->next; |
| 2481 | } |
| 2482 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2483 | /* Physically copy the struct job */ |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 2484 | memcpy(thejob, pi, sizeof(struct pipe)); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2485 | thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds); |
| 2486 | /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */ |
| 2487 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2488 | // TODO: do we really need to have so many fields which are just dead weight |
| 2489 | // at execution stage? |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2490 | thejob->cmds[i].pid = pi->cmds[i].pid; |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2491 | /* all other fields are not used and stay zero */ |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2492 | } |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2493 | thejob->next = NULL; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2494 | thejob->cmdtext = xstrdup(get_cmdtext(pi)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2495 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2496 | /* We don't wait for background thejobs to return -- append it |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2497 | to the list of backgrounded thejobs and leave it alone */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 2498 | if (G_interactive_fd) |
Mike Frysinger | 87824e0 | 2009-03-30 00:19:30 +0000 | [diff] [blame] | 2499 | 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] | 2500 | G.last_bg_pid = thejob->cmds[0].pid; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2501 | G.last_jobid = thejob->jobid; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2502 | } |
| 2503 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2504 | static void remove_bg_job(struct pipe *pi) |
| 2505 | { |
| 2506 | struct pipe *prev_pipe; |
| 2507 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2508 | if (pi == G.job_list) { |
| 2509 | G.job_list = pi->next; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2510 | } else { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2511 | prev_pipe = G.job_list; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2512 | while (prev_pipe->next != pi) |
| 2513 | prev_pipe = prev_pipe->next; |
| 2514 | prev_pipe->next = pi->next; |
| 2515 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2516 | if (G.job_list) |
| 2517 | G.last_jobid = G.job_list->jobid; |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 2518 | else |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2519 | G.last_jobid = 0; |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2520 | } |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 2521 | |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2522 | /* Remove a backgrounded job */ |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2523 | static void delete_finished_bg_job(struct pipe *pi) |
| 2524 | { |
| 2525 | remove_bg_job(pi); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2526 | pi->stopped_cmds = 0; |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 2527 | free_pipe(pi, 0); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2528 | free(pi); |
| 2529 | } |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2530 | #endif /* JOB */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2531 | |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2532 | /* Check to see if any processes have exited -- if they |
| 2533 | * have, figure out why and see if a job has completed */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2534 | static int checkjobs(struct pipe* fg_pipe) |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2535 | { |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2536 | int attributes; |
| 2537 | int status; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2538 | #if ENABLE_HUSH_JOB |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2539 | struct pipe *pi; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2540 | #endif |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2541 | pid_t childpid; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2542 | int rcode = 0; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2543 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 2544 | debug_printf_jobs("checkjobs %p\n", fg_pipe); |
| 2545 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 2546 | errno = 0; |
| 2547 | // if (G.handled_SIGCHLD == G.count_SIGCHLD) |
| 2548 | // /* avoid doing syscall, nothing there anyway */ |
| 2549 | // return rcode; |
| 2550 | |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2551 | attributes = WUNTRACED; |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2552 | if (fg_pipe == NULL) |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2553 | attributes |= WNOHANG; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2554 | |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2555 | /* Do we do this right? |
| 2556 | * bash-3.00# sleep 20 | false |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2557 | * <ctrl-Z pressed> |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2558 | * [3]+ Stopped sleep 20 | false |
| 2559 | * bash-3.00# echo $? |
| 2560 | * 1 <========== bg pipe is not fully done, but exitcode is already known! |
| 2561 | */ |
| 2562 | |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2563 | //FIXME: non-interactive bash does not continue even if all processes in fg pipe |
| 2564 | //are stopped. Testcase: "cat | cat" in a script (not on command line) |
| 2565 | // + killall -STOP cat |
| 2566 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2567 | wait_more: |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 2568 | while (1) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2569 | int i; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 2570 | int dead; |
| 2571 | |
| 2572 | // i = G.count_SIGCHLD; |
| 2573 | childpid = waitpid(-1, &status, attributes); |
| 2574 | if (childpid <= 0) { |
| 2575 | if (childpid && errno != ECHILD) |
| 2576 | bb_perror_msg("waitpid"); |
| 2577 | // else /* Until next SIGCHLD, waitpid's are useless */ |
| 2578 | // G.handled_SIGCHLD = i; |
| 2579 | break; |
| 2580 | } |
| 2581 | dead = WIFEXITED(status) || WIFSIGNALED(status); |
| 2582 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2583 | #if DEBUG_JOBS |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2584 | if (WIFSTOPPED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 2585 | debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2586 | childpid, WSTOPSIG(status), WEXITSTATUS(status)); |
| 2587 | if (WIFSIGNALED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 2588 | debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2589 | childpid, WTERMSIG(status), WEXITSTATUS(status)); |
| 2590 | if (WIFEXITED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 2591 | debug_printf_jobs("pid %d exited, exitcode %d\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2592 | childpid, WEXITSTATUS(status)); |
| 2593 | #endif |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2594 | /* Were we asked to wait for fg pipe? */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2595 | if (fg_pipe) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2596 | for (i = 0; i < fg_pipe->num_cmds; i++) { |
| 2597 | debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid); |
| 2598 | if (fg_pipe->cmds[i].pid != childpid) |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2599 | continue; |
| 2600 | /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */ |
| 2601 | if (dead) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2602 | fg_pipe->cmds[i].pid = 0; |
| 2603 | fg_pipe->alive_cmds--; |
| 2604 | if (i == fg_pipe->num_cmds - 1) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2605 | /* last process gives overall exitstatus */ |
| 2606 | rcode = WEXITSTATUS(status); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 2607 | IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2608 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2609 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2610 | fg_pipe->cmds[i].is_stopped = 1; |
| 2611 | fg_pipe->stopped_cmds++; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2612 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2613 | debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n", |
| 2614 | fg_pipe->alive_cmds, fg_pipe->stopped_cmds); |
| 2615 | if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2616 | /* All processes in fg pipe have exited/stopped */ |
| 2617 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2618 | if (fg_pipe->alive_cmds) |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2619 | insert_bg_job(fg_pipe); |
| 2620 | #endif |
| 2621 | return rcode; |
| 2622 | } |
| 2623 | /* There are still running processes in the fg pipe */ |
| 2624 | goto wait_more; /* do waitpid again */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2625 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2626 | /* it wasnt fg_pipe, look for process in bg pipes */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2627 | } |
| 2628 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2629 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2630 | /* We asked to wait for bg or orphaned children */ |
| 2631 | /* No need to remember exitcode in this case */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2632 | for (pi = G.job_list; pi; pi = pi->next) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2633 | for (i = 0; i < pi->num_cmds; i++) { |
| 2634 | if (pi->cmds[i].pid == childpid) |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 2635 | goto found_pi_and_prognum; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 2636 | } |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2637 | } |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 2638 | /* Happens when shell is used as init process (init=/bin/sh) */ |
| 2639 | debug_printf("checkjobs: pid %d was not in our list!\n", childpid); |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2640 | continue; /* do waitpid again */ |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 2641 | |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 2642 | found_pi_and_prognum: |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2643 | if (dead) { |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2644 | /* child exited */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2645 | pi->cmds[i].pid = 0; |
| 2646 | pi->alive_cmds--; |
| 2647 | if (!pi->alive_cmds) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 2648 | if (G_interactive_fd) |
Mike Frysinger | 87824e0 | 2009-03-30 00:19:30 +0000 | [diff] [blame] | 2649 | printf(JOB_STATUS_FORMAT, pi->jobid, |
| 2650 | "Done", pi->cmdtext); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2651 | delete_finished_bg_job(pi); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2652 | } |
| 2653 | } else { |
| 2654 | /* child stopped */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2655 | pi->cmds[i].is_stopped = 1; |
| 2656 | pi->stopped_cmds++; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2657 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2658 | #endif |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2659 | } /* while (waitpid succeeds)... */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2660 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2661 | return rcode; |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 2662 | } |
| 2663 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2664 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 2665 | static int checkjobs_and_fg_shell(struct pipe* fg_pipe) |
| 2666 | { |
| 2667 | pid_t p; |
| 2668 | int rcode = checkjobs(fg_pipe); |
| 2669 | /* Job finished, move the shell to the foreground */ |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 2670 | p = getpgid(0); /* pgid of our process */ |
| 2671 | debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 2672 | tcsetpgrp(G_interactive_fd, p); |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 2673 | return rcode; |
| 2674 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2675 | #endif |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 2676 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2677 | /* Start all the jobs, but don't wait for anything to finish. |
| 2678 | * See checkjobs(). |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2679 | * |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2680 | * 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] | 2681 | * to finish to determine the exit status of the pipe. If the pipe |
| 2682 | * is a simple builtin command, however, the action is done by the |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2683 | * time run_pipe returns, and the exit code is provided as the |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2684 | * return value. |
| 2685 | * |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 2686 | * Returns -1 only if started some children. IOW: we have to |
| 2687 | * mask out retvals of builtins etc with 0xff! |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2688 | * |
| 2689 | * The only case when we do not need to [v]fork is when the pipe |
| 2690 | * is single, non-backgrounded, non-subshell command. Examples: |
| 2691 | * cmd ; ... { list } ; ... |
| 2692 | * cmd && ... { list } && ... |
| 2693 | * cmd || ... { list } || ... |
| 2694 | * If it is, then we can run cmd as a builtin, NOFORK [do we do this?], |
| 2695 | * or (if SH_STANDALONE) an applet, and we can run the { list } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2696 | * 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] | 2697 | * |
| 2698 | * Cases when we must fork: |
| 2699 | * non-single: cmd | cmd |
| 2700 | * backgrounded: cmd & { list } & |
| 2701 | * subshell: ( list ) [&] |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2702 | */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2703 | static int run_pipe(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2704 | { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2705 | static const char *const null_ptr = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2706 | int i; |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2707 | int nextin; |
| 2708 | int pipefds[2]; /* pipefds[0] is for reading */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2709 | struct command *command; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2710 | char **argv_expanded; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2711 | char **argv; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2712 | char *p; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 2713 | /* it is not always needed, but we aim to smaller code */ |
| 2714 | int squirrel[] = { -1, -1, -1 }; |
| 2715 | int rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2716 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2717 | debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds); |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 2718 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2719 | USE_HUSH_JOB(pi->pgrp = -1;) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2720 | pi->stopped_cmds = 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2721 | command = &(pi->cmds[0]); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2722 | argv_expanded = NULL; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2723 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2724 | if (pi->num_cmds != 1 |
| 2725 | || pi->followup == PIPE_BG |
| 2726 | || command->grp_type == GRP_SUBSHELL |
| 2727 | ) { |
| 2728 | goto must_fork; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2729 | } |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2730 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2731 | pi->alive_cmds = 1; |
| 2732 | |
| 2733 | debug_printf_exec(": group:%p argv:'%s'\n", |
| 2734 | command->group, command->argv ? command->argv[0] : "NONE"); |
| 2735 | |
| 2736 | if (command->group) { |
| 2737 | #if ENABLE_HUSH_FUNCTIONS |
| 2738 | if (command->grp_type == GRP_FUNCTION) { |
| 2739 | /* func () { list } */ |
| 2740 | bb_error_msg("here we ought to remember function definition, and go on"); |
| 2741 | return EXIT_SUCCESS; |
| 2742 | } |
| 2743 | #endif |
| 2744 | /* { list } */ |
| 2745 | debug_printf("non-subshell group\n"); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2746 | setup_redirects(command, squirrel); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2747 | debug_printf_exec(": run_list\n"); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2748 | rcode = run_list(command->group) & 0xff; |
Eric Andersen | 04407e5 | 2001-06-07 16:42:05 +0000 | [diff] [blame] | 2749 | restore_redirects(squirrel); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2750 | debug_printf_exec("run_pipe return %d\n", rcode); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 2751 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2752 | return rcode; |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2753 | } |
| 2754 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2755 | argv = command->argv ? command->argv : (char **) &null_ptr; |
| 2756 | { |
| 2757 | const struct built_in_command *x; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2758 | char **new_env = NULL; |
| 2759 | char **old_env = NULL; |
| 2760 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2761 | if (argv[command->assignment_cnt] == NULL) { |
| 2762 | /* Assignments, but no command */ |
| 2763 | /* Ensure redirects take effect. Try "a=t >file" */ |
| 2764 | setup_redirects(command, squirrel); |
| 2765 | restore_redirects(squirrel); |
| 2766 | /* Set shell variables */ |
| 2767 | while (*argv) { |
| 2768 | p = expand_string_to_string(*argv); |
| 2769 | debug_printf_exec("set shell var:'%s'->'%s'\n", |
| 2770 | *argv, p); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 2771 | set_local_var(p, 0, 0); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2772 | argv++; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 2773 | } |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2774 | /* Do we need to flag set_local_var() errors? |
| 2775 | * "assignment to readonly var" and "putenv error" |
| 2776 | */ |
| 2777 | return EXIT_SUCCESS; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 2778 | } |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2779 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2780 | /* Expand the rest into (possibly) many strings each */ |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2781 | argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt); |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2782 | |
Denis Vlasenko | dd316dd | 2008-06-14 15:50:55 +0000 | [diff] [blame] | 2783 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2784 | if (strcmp(argv_expanded[0], x->cmd) != 0) |
| 2785 | continue; |
| 2786 | if (x->function == builtin_exec && argv_expanded[1] == NULL) { |
| 2787 | debug_printf("exec with redirects only\n"); |
| 2788 | setup_redirects(command, NULL); |
| 2789 | rcode = EXIT_SUCCESS; |
| 2790 | goto clean_up_and_ret1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2791 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2792 | debug_printf("builtin inline %s\n", argv_expanded[0]); |
| 2793 | /* XXX setup_redirects acts on file descriptors, not FILEs. |
| 2794 | * This is perfect for work that comes after exec(). |
| 2795 | * Is it really safe for inline use? Experimentally, |
| 2796 | * things seem to work with glibc. */ |
| 2797 | setup_redirects(command, squirrel); |
| 2798 | new_env = expand_assignments(argv, command->assignment_cnt); |
| 2799 | old_env = putenv_all_and_save_old(new_env); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2800 | debug_printf_exec(": builtin '%s' '%s'...\n", |
| 2801 | x->cmd, argv_expanded[1]); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2802 | rcode = x->function(argv_expanded) & 0xff; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2803 | #if ENABLE_FEATURE_SH_STANDALONE |
| 2804 | clean_up_and_ret: |
| 2805 | #endif |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2806 | restore_redirects(squirrel); |
| 2807 | free_strings_and_unsetenv(new_env, 1); |
| 2808 | putenv_all(old_env); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2809 | free(old_env); /* not free_strings()! */ |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2810 | clean_up_and_ret1: |
| 2811 | free(argv_expanded); |
| 2812 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 2813 | debug_printf_exec("run_pipe return %d\n", rcode); |
| 2814 | return rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2815 | } |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 2816 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2817 | i = find_applet_by_name(argv_expanded[0]); |
| 2818 | if (i >= 0 && APPLET_IS_NOFORK(i)) { |
| 2819 | setup_redirects(command, squirrel); |
| 2820 | save_nofork_data(&G.nofork_save); |
| 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(": run_nofork_applet '%s' '%s'...\n", |
| 2824 | argv_expanded[0], argv_expanded[1]); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2825 | rcode = run_nofork_applet_prime(&G.nofork_save, i, argv_expanded); |
| 2826 | goto clean_up_and_ret; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 2827 | } |
| 2828 | #endif |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2829 | /* It is neither builtin nor applet. We must fork. */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2830 | } |
| 2831 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2832 | must_fork: |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2833 | /* NB: argv_expanded may already be created, and that |
| 2834 | * might include `cmd` runs! Do not rerun it! We *must* |
| 2835 | * use argv_expanded if it's non-NULL */ |
| 2836 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2837 | /* Going to fork a child per each pipe member */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2838 | pi->alive_cmds = 0; |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2839 | nextin = 0; |
| 2840 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2841 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2842 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2843 | volatile nommu_save_t nommu_save; |
| 2844 | nommu_save.new_env = NULL; |
| 2845 | nommu_save.old_env = NULL; |
| 2846 | nommu_save.argv = NULL; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2847 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2848 | command = &(pi->cmds[i]); |
| 2849 | if (command->argv) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2850 | debug_printf_exec(": pipe member '%s' '%s'...\n", |
| 2851 | command->argv[0], command->argv[1]); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2852 | } else { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2853 | debug_printf_exec(": pipe member with no argv\n"); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2854 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2855 | |
| 2856 | /* pipes are inserted between pairs of commands */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2857 | pipefds[0] = 0; |
| 2858 | pipefds[1] = 1; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2859 | if ((i + 1) < pi->num_cmds) |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2860 | xpipe(pipefds); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2861 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2862 | command->pid = BB_MMU ? fork() : vfork(); |
| 2863 | if (!command->pid) { /* child */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2864 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 2865 | die_sleep = 0; /* do not restore tty pgrp on xfunc death */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 2866 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2867 | /* Every child adds itself to new process group |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2868 | * with pgid == pid_of_first_child_in_pipe */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 2869 | if (G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2870 | pid_t pgrp; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2871 | pgrp = pi->pgrp; |
| 2872 | if (pgrp < 0) /* true for 1st process only */ |
| 2873 | pgrp = getpid(); |
| 2874 | if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2875 | /* We do it in *every* child, not just first, |
| 2876 | * to avoid races */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 2877 | tcsetpgrp(G_interactive_fd, pgrp); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2878 | } |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2879 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2880 | #endif |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2881 | xmove_fd(nextin, 0); |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2882 | xmove_fd(pipefds[1], 1); /* write end */ |
| 2883 | if (pipefds[0] > 1) |
| 2884 | close(pipefds[0]); /* read end */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2885 | /* Like bash, explicit redirects override pipes, |
| 2886 | * and the pipe fd is available for dup'ing. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2887 | setup_redirects(command, NULL); |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 2888 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2889 | /* Restore default handlers just prior to exec */ |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 2890 | /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */ |
| 2891 | |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2892 | /* Stores to nommu_save list of env vars putenv'ed |
| 2893 | * (NOMMU, on MMU we don't need that) */ |
| 2894 | /* cast away volatility... */ |
| 2895 | pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2896 | /* pseudo_exec() does not return */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2897 | } |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 2898 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 2899 | /* parent or error */ |
| 2900 | #if ENABLE_HUSH_JOB |
| 2901 | die_sleep = -1; /* restore tty pgrp on xfunc death */ |
| 2902 | #endif |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2903 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2904 | /* Clean up after vforked child */ |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 2905 | clean_up_after_re_execute(); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2906 | free(nommu_save.argv); |
| 2907 | free_strings_and_unsetenv(nommu_save.new_env, 1); |
| 2908 | putenv_all(nommu_save.old_env); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2909 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2910 | free(argv_expanded); |
| 2911 | argv_expanded = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2912 | if (command->pid < 0) { /* [v]fork failed */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2913 | /* Clearly indicate, was it fork or vfork */ |
Denis Vlasenko | 82604e9 | 2008-07-01 15:59:42 +0000 | [diff] [blame] | 2914 | bb_perror_msg(BB_MMU ? "fork" : "vfork"); |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2915 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2916 | pi->alive_cmds++; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2917 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2918 | /* Second and next children need to know pid of first one */ |
| 2919 | if (pi->pgrp < 0) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2920 | pi->pgrp = command->pid; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2921 | #endif |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2922 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2923 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2924 | if (i) |
| 2925 | close(nextin); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2926 | if ((i + 1) < pi->num_cmds) |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2927 | close(pipefds[1]); /* write end */ |
| 2928 | /* Pass read (output) pipe end to next iteration */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2929 | nextin = pipefds[0]; |
| 2930 | } |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2931 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2932 | if (!pi->alive_cmds) { |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2933 | debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n"); |
| 2934 | return 1; |
| 2935 | } |
| 2936 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2937 | 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] | 2938 | return -1; |
| 2939 | } |
| 2940 | |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 2941 | #ifndef debug_print_tree |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2942 | static void debug_print_tree(struct pipe *pi, int lvl) |
| 2943 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2944 | static const char *const PIPE[] = { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2945 | [PIPE_SEQ] = "SEQ", |
| 2946 | [PIPE_AND] = "AND", |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2947 | [PIPE_OR ] = "OR" , |
| 2948 | [PIPE_BG ] = "BG" , |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2949 | }; |
| 2950 | static const char *RES[] = { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2951 | [RES_NONE ] = "NONE" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2952 | #if ENABLE_HUSH_IF |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2953 | [RES_IF ] = "IF" , |
| 2954 | [RES_THEN ] = "THEN" , |
| 2955 | [RES_ELIF ] = "ELIF" , |
| 2956 | [RES_ELSE ] = "ELSE" , |
| 2957 | [RES_FI ] = "FI" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2958 | #endif |
| 2959 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2960 | [RES_FOR ] = "FOR" , |
| 2961 | [RES_WHILE] = "WHILE", |
| 2962 | [RES_UNTIL] = "UNTIL", |
| 2963 | [RES_DO ] = "DO" , |
| 2964 | [RES_DONE ] = "DONE" , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 2965 | #endif |
| 2966 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2967 | [RES_IN ] = "IN" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2968 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 2969 | #if ENABLE_HUSH_CASE |
| 2970 | [RES_CASE ] = "CASE" , |
| 2971 | [RES_MATCH] = "MATCH", |
| 2972 | [RES_CASEI] = "CASEI", |
| 2973 | [RES_ESAC ] = "ESAC" , |
| 2974 | #endif |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 2975 | [RES_XXXX ] = "XXXX" , |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2976 | [RES_SNTX ] = "SNTX" , |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2977 | }; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2978 | static const char *const GRPTYPE[] = { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2979 | "{}", |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 2980 | "()", |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2981 | #if ENABLE_HUSH_FUNCTIONS |
| 2982 | "func()", |
| 2983 | #endif |
| 2984 | }; |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2985 | |
| 2986 | int pin, prn; |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 2987 | |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2988 | pin = 0; |
| 2989 | while (pi) { |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 2990 | fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "", |
| 2991 | pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 2992 | prn = 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2993 | while (prn < pi->num_cmds) { |
| 2994 | struct command *command = &pi->cmds[prn]; |
| 2995 | char **argv = command->argv; |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 2996 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2997 | fprintf(stderr, "%*s prog %d assignment_cnt:%d", |
| 2998 | lvl*2, "", prn, |
| 2999 | command->assignment_cnt); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3000 | if (command->group) { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3001 | fprintf(stderr, " group %s: (argv=%p)\n", |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3002 | GRPTYPE[command->grp_type], |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 3003 | argv); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3004 | debug_print_tree(command->group, lvl+1); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3005 | prn++; |
| 3006 | continue; |
| 3007 | } |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3008 | if (argv) while (*argv) { |
| 3009 | fprintf(stderr, " '%s'", *argv); |
| 3010 | argv++; |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 3011 | } |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3012 | fprintf(stderr, "\n"); |
| 3013 | prn++; |
| 3014 | } |
| 3015 | pi = pi->next; |
| 3016 | pin++; |
| 3017 | } |
| 3018 | } |
| 3019 | #endif |
| 3020 | |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3021 | /* NB: called by pseudo_exec, and therefore must not modify any |
| 3022 | * global data until exec/_exit (we can be a child after vfork!) */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3023 | static int run_list(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3024 | { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3025 | #if ENABLE_HUSH_CASE |
| 3026 | char *case_word = NULL; |
| 3027 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3028 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3029 | struct pipe *loop_top = NULL; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3030 | char *for_varname = NULL; |
| 3031 | char **for_lcur = NULL; |
| 3032 | char **for_list = NULL; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3033 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3034 | smallint last_followup; |
| 3035 | smalluint rcode; |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 3036 | #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3037 | smalluint cond_code = 0; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3038 | #else |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3039 | enum { cond_code = 0 }; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3040 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3041 | /*enum reserved_style*/ smallint rword; |
| 3042 | /*enum reserved_style*/ smallint last_rword; |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 3043 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3044 | 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] | 3045 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3046 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3047 | /* Check syntax for "for" */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3048 | for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) { |
| 3049 | if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3050 | continue; |
| 3051 | /* current word is FOR or IN (BOLD in comments below) */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3052 | if (cpipe->next == NULL) { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3053 | syntax("malformed for"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3054 | 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] | 3055 | return 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3056 | } |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3057 | /* "FOR v; do ..." and "for v IN a b; do..." are ok */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3058 | if (cpipe->next->res_word == RES_DO) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3059 | continue; |
| 3060 | /* 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] | 3061 | if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */ |
| 3062 | || 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] | 3063 | ) { |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3064 | syntax("malformed for"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3065 | 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] | 3066 | return 1; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3067 | } |
| 3068 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3069 | #endif |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3070 | |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3071 | /* Past this point, all code paths should jump to ret: label |
Denis Vlasenko | 12acec5 | 2008-07-28 15:15:59 +0000 | [diff] [blame] | 3072 | * in order to return, no direct "return" statements please. |
| 3073 | * This helps to ensure that no memory is leaked. */ |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3074 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 3075 | ////TODO: ctrl-Z handling needs re-thinking and re-testing |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3076 | |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3077 | #if ENABLE_HUSH_JOB |
| 3078 | /* Example of nested list: "while true; do { sleep 1 | exit 2; } done". |
| 3079 | * We are saving state before entering outermost list ("while...done") |
| 3080 | * so that ctrl-Z will correctly background _entire_ outermost list, |
| 3081 | * not just a part of it (like "sleep 1 | exit 2") */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3082 | if (++G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3083 | if (sigsetjmp(G.toplevel_jb, 1)) { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3084 | /* ctrl-Z forked and we are parent; or ctrl-C. |
| 3085 | * Sighandler has longjmped us here */ |
| 3086 | signal(SIGINT, SIG_IGN); |
| 3087 | signal(SIGTSTP, SIG_IGN); |
| 3088 | /* Restore level (we can be coming from deep inside |
| 3089 | * nested levels) */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3090 | G.run_list_level = 1; |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3091 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3092 | if (G.nofork_save.saved) { /* if save area is valid */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3093 | debug_printf_jobs("exiting nofork early\n"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3094 | restore_nofork_data(&G.nofork_save); |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3095 | } |
| 3096 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3097 | //// if (G.ctrl_z_flag) { |
| 3098 | //// /* ctrl-Z has forked and stored pid of the child in pi->pid. |
| 3099 | //// * Remember this child as background job */ |
| 3100 | //// insert_bg_job(pi); |
| 3101 | //// } else { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3102 | /* ctrl-C. We just stop doing whatever we were doing */ |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 3103 | bb_putchar('\n'); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3104 | //// } |
Denis Vlasenko | ff29b4f | 2008-07-29 13:57:59 +0000 | [diff] [blame] | 3105 | USE_HUSH_LOOPS(loop_top = NULL;) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3106 | USE_HUSH_LOOPS(G.depth_of_loop = 0;) |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3107 | rcode = 0; |
| 3108 | goto ret; |
| 3109 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3110 | //// /* ctrl-Z handler will store pid etc in pi */ |
| 3111 | //// G.toplevel_list = pi; |
| 3112 | //// G.ctrl_z_flag = 0; |
| 3113 | ////#if ENABLE_FEATURE_SH_STANDALONE |
| 3114 | //// G.nofork_save.saved = 0; /* in case we will run a nofork later */ |
| 3115 | ////#endif |
| 3116 | //// signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z); |
| 3117 | //// signal(SIGINT, handler_ctrl_c); |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3118 | } |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3119 | #endif /* JOB */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3120 | |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3121 | rcode = G.last_return_code; |
| 3122 | rword = RES_NONE; |
| 3123 | last_rword = RES_XXXX; |
| 3124 | last_followup = PIPE_SEQ; |
| 3125 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3126 | /* Go through list of pipes, (maybe) executing them. */ |
| 3127 | 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] | 3128 | if (G.flag_SIGINT) |
| 3129 | break; |
| 3130 | |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3131 | IF_HAS_KEYWORDS(rword = pi->res_word;) |
| 3132 | IF_HAS_NO_KEYWORDS(rword = RES_NONE;) |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3133 | debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n", |
| 3134 | rword, cond_code, last_rword); |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3135 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 4554b72 | 2008-07-29 13:36:09 +0000 | [diff] [blame] | 3136 | if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3137 | && loop_top == NULL /* avoid bumping G.depth_of_loop twice */ |
Denis Vlasenko | 4554b72 | 2008-07-29 13:36:09 +0000 | [diff] [blame] | 3138 | ) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3139 | /* start of a loop: remember where loop starts */ |
| 3140 | loop_top = pi; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3141 | G.depth_of_loop++; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3142 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3143 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3144 | /* Still in the same "if...", "then..." or "do..." branch? */ |
| 3145 | if (rword == last_rword) { |
| 3146 | if ((rcode == 0 && last_followup == PIPE_OR) |
| 3147 | || (rcode != 0 && last_followup == PIPE_AND) |
| 3148 | ) { |
| 3149 | /* It is "<true> || CMD" or "<false> && CMD" |
| 3150 | * and we should not execute CMD */ |
| 3151 | debug_printf_exec("skipped cmd because of || or &&\n"); |
| 3152 | last_followup = pi->followup; |
| 3153 | continue; |
| 3154 | } |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3155 | } |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3156 | last_followup = pi->followup; |
| 3157 | last_rword = rword; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3158 | #if ENABLE_HUSH_IF |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3159 | if (cond_code) { |
| 3160 | if (rword == RES_THEN) { |
| 3161 | /* "if <false> THEN cmd": skip cmd */ |
| 3162 | continue; |
| 3163 | } |
| 3164 | } else { |
| 3165 | if (rword == RES_ELSE || rword == RES_ELIF) { |
| 3166 | /* "if <true> then ... ELSE/ELIF cmd": |
| 3167 | * skip cmd and all following ones */ |
| 3168 | break; |
| 3169 | } |
| 3170 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3171 | #endif |
| 3172 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3173 | if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3174 | if (!for_lcur) { |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 3175 | /* first loop through for */ |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3176 | |
| 3177 | static const char encoded_dollar_at[] ALIGN1 = { |
| 3178 | SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0' |
| 3179 | }; /* encoded representation of "$@" */ |
| 3180 | static const char *const encoded_dollar_at_argv[] = { |
| 3181 | encoded_dollar_at, NULL |
| 3182 | }; /* argv list with one element: "$@" */ |
| 3183 | char **vals; |
| 3184 | |
| 3185 | vals = (char**)encoded_dollar_at_argv; |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3186 | if (pi->next->res_word == RES_IN) { |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3187 | /* if no variable values after "in" we skip "for" */ |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3188 | if (!pi->next->cmds[0].argv) { |
| 3189 | G.last_return_code = rcode = EXIT_SUCCESS; |
| 3190 | debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n"); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3191 | break; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3192 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3193 | vals = pi->next->cmds[0].argv; |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3194 | } /* else: "for var; do..." -> assume "$@" list */ |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3195 | /* create list of variable values */ |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3196 | debug_print_strings("for_list made from", vals); |
| 3197 | for_list = expand_strvec_to_strvec(vals); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3198 | for_lcur = for_list; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3199 | debug_print_strings("for_list", for_list); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3200 | for_varname = pi->cmds[0].argv[0]; |
| 3201 | pi->cmds[0].argv[0] = NULL; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3202 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3203 | free(pi->cmds[0].argv[0]); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3204 | if (!*for_lcur) { |
Denis Vlasenko | 12acec5 | 2008-07-28 15:15:59 +0000 | [diff] [blame] | 3205 | /* "for" loop is over, clean up */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3206 | free(for_list); |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3207 | for_list = NULL; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3208 | for_lcur = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3209 | pi->cmds[0].argv[0] = for_varname; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3210 | break; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3211 | } |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3212 | /* Insert next value from for_lcur */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3213 | //TODO: does it need escaping? |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3214 | pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++); |
| 3215 | pi->cmds[0].assignment_cnt = 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3216 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3217 | if (rword == RES_IN) { |
| 3218 | continue; /* "for v IN list;..." - "in" has no cmds anyway */ |
| 3219 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3220 | if (rword == RES_DONE) { |
| 3221 | continue; /* "done" has no cmds too */ |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3222 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3223 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3224 | #if ENABLE_HUSH_CASE |
| 3225 | if (rword == RES_CASE) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3226 | case_word = expand_strvec_to_string(pi->cmds->argv); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3227 | continue; |
| 3228 | } |
| 3229 | if (rword == RES_MATCH) { |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 3230 | char **argv; |
| 3231 | |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3232 | if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */ |
| 3233 | break; |
| 3234 | /* all prev words didn't match, does this one match? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3235 | argv = pi->cmds->argv; |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 3236 | while (*argv) { |
| 3237 | char *pattern = expand_string_to_string(*argv); |
| 3238 | /* TODO: which FNM_xxx flags to use? */ |
| 3239 | cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0); |
| 3240 | free(pattern); |
| 3241 | if (cond_code == 0) { /* match! we will execute this branch */ |
| 3242 | free(case_word); /* make future "word)" stop */ |
| 3243 | case_word = NULL; |
| 3244 | break; |
| 3245 | } |
| 3246 | argv++; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3247 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3248 | continue; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3249 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3250 | if (rword == RES_CASEI) { /* inside of a case branch */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3251 | if (cond_code != 0) |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3252 | continue; /* not matched yet, skip this pipe */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3253 | } |
| 3254 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3255 | /* Just pressing <enter> in shell should check for jobs. |
| 3256 | * OTOH, in non-interactive shell this is useless |
| 3257 | * and only leads to extra job checks */ |
| 3258 | if (pi->num_cmds == 0) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3259 | if (G_interactive_fd) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3260 | goto check_jobs_and_continue; |
| 3261 | continue; |
| 3262 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3263 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3264 | /* After analyzing all keywords and conditions, we decided |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3265 | * to execute this pipe. NB: have to do checkjobs(NULL) |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3266 | * after run_pipe to collect any background children, |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3267 | * even if list execution is to be stopped. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3268 | debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3269 | { |
| 3270 | int r; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3271 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3272 | G.flag_break_continue = 0; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3273 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3274 | rcode = r = run_pipe(pi); /* NB: rcode is a smallint */ |
| 3275 | if (r != -1) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3276 | /* We only ran a builtin: rcode is already known |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3277 | * and we don't need to wait for anything. */ |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3278 | G.last_return_code = rcode; |
| 3279 | debug_printf_exec(": builtin exitcode %d\n", rcode); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3280 | check_and_run_traps(0); |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3281 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3282 | /* Was it "break" or "continue"? */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3283 | if (G.flag_break_continue) { |
| 3284 | smallint fbc = G.flag_break_continue; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3285 | /* We might fall into outer *loop*, |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3286 | * don't want to break it too */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3287 | if (loop_top) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3288 | G.depth_break_continue--; |
| 3289 | if (G.depth_break_continue == 0) |
| 3290 | G.flag_break_continue = 0; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3291 | /* else: e.g. "continue 2" should *break* once, *then* continue */ |
| 3292 | } /* 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] | 3293 | if (G.depth_break_continue != 0 || fbc == BC_BREAK) |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3294 | goto check_jobs_and_break; |
| 3295 | /* "continue": simulate end of loop */ |
| 3296 | rword = RES_DONE; |
| 3297 | continue; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3298 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3299 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3300 | } else if (pi->followup == PIPE_BG) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3301 | /* What does bash do with attempts to background builtins? */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3302 | /* even bash 3.2 doesn't do that well with nested bg: |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3303 | * try "{ { sleep 10; echo DEEP; } & echo HERE; } &". |
| 3304 | * I'm NOT treating inner &'s as jobs */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3305 | check_and_run_traps(0); |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3306 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3307 | if (G.run_list_level == 1) |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3308 | insert_bg_job(pi); |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3309 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3310 | rcode = EXIT_SUCCESS; |
| 3311 | G.last_return_code = EXIT_SUCCESS; |
| 3312 | debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n"); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3313 | } else { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3314 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3315 | if (G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3316 | /* Waits for completion, then fg's main shell */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3317 | rcode = checkjobs_and_fg_shell(pi); |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3318 | debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3319 | check_and_run_traps(0); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3320 | } else |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3321 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3322 | { /* This one just waits for completion */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3323 | rcode = checkjobs(pi); |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3324 | debug_printf_exec(": checkjobs exitcode %d\n", rcode); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3325 | check_and_run_traps(0); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3326 | } |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3327 | G.last_return_code = rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3328 | } |
| 3329 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3330 | |
| 3331 | /* Analyze how result affects subsequent commands */ |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3332 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3333 | if (rword == RES_IF || rword == RES_ELIF) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3334 | cond_code = rcode; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3335 | #endif |
| 3336 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3337 | if (rword == RES_WHILE) { |
Denis Vlasenko | 918a34b | 2008-07-28 23:17:31 +0000 | [diff] [blame] | 3338 | if (rcode) { |
| 3339 | rcode = 0; /* "while false; do...done" - exitcode 0 */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3340 | goto check_jobs_and_break; |
Denis Vlasenko | 918a34b | 2008-07-28 23:17:31 +0000 | [diff] [blame] | 3341 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3342 | } |
| 3343 | if (rword == RES_UNTIL) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3344 | if (!rcode) { |
| 3345 | check_jobs_and_break: |
| 3346 | checkjobs(NULL); |
| 3347 | break; |
| 3348 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3349 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3350 | #endif |
Mike Frysinger | 8ec1c9d | 2009-03-29 00:45:26 +0000 | [diff] [blame] | 3351 | |
| 3352 | check_jobs_and_continue: |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 3353 | checkjobs(NULL); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3354 | } /* for (pi) */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3355 | |
| 3356 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3357 | //// if (G.ctrl_z_flag) { |
| 3358 | //// /* ctrl-Z forked somewhere in the past, we are the child, |
| 3359 | //// * and now we completed running the list. Exit. */ |
| 3360 | //////TODO: _exit? |
| 3361 | //// exit(rcode); |
| 3362 | //// } |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3363 | ret: |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3364 | G.run_list_level--; |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3365 | //// if (!G.run_list_level && G_interactive_fd) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3366 | //// signal(SIGTSTP, SIG_IGN); |
| 3367 | //// signal(SIGINT, SIG_IGN); |
| 3368 | //// } |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3369 | #endif |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3370 | 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] | 3371 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3372 | if (loop_top) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3373 | G.depth_of_loop--; |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3374 | free(for_list); |
| 3375 | #endif |
| 3376 | #if ENABLE_HUSH_CASE |
| 3377 | free(case_word); |
| 3378 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3379 | return rcode; |
| 3380 | } |
| 3381 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3382 | /* Select which version we will use */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3383 | static int run_and_free_list(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3384 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3385 | int rcode = 0; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3386 | debug_printf_exec("run_and_free_list entered\n"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3387 | if (!G.fake_mode) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3388 | debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3389 | rcode = run_list(pi); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3390 | } |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3391 | /* free_pipe_list has the side effect of clearing memory. |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3392 | * In the long run that function can be merged with run_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3393 | * but doing that now would hobble the debugging effort. */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3394 | free_pipe_list(pi, /* indent: */ 0); |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 3395 | debug_printf_exec("run_and_free_list return %d\n", rcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3396 | return rcode; |
| 3397 | } |
| 3398 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3399 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3400 | /* Peek ahead in the in_str to find out if we have a "&n" construct, |
| 3401 | * as in "2>&1", that represents duplicating a file descriptor. |
| 3402 | * Return either -2 (syntax error), -1 (no &), or the number found. |
| 3403 | */ |
| 3404 | static int redirect_dup_num(struct in_str *input) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3405 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3406 | int ch, d = 0, ok = 0; |
| 3407 | ch = i_peek(input); |
| 3408 | if (ch != '&') return -1; |
| 3409 | |
| 3410 | i_getch(input); /* get the & */ |
| 3411 | ch = i_peek(input); |
| 3412 | if (ch == '-') { |
| 3413 | i_getch(input); |
| 3414 | return -3; /* "-" represents "close me" */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3415 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3416 | while (isdigit(ch)) { |
| 3417 | d = d*10 + (ch-'0'); |
| 3418 | ok = 1; |
| 3419 | i_getch(input); |
| 3420 | ch = i_peek(input); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3421 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3422 | if (ok) return d; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3423 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3424 | bb_error_msg("ambiguous redirect"); |
| 3425 | return -2; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 3426 | } |
| 3427 | |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3428 | /* 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] | 3429 | * for file descriptor duplication, e.g., "2>&1". |
| 3430 | * Return code is 0 normally, 1 if a syntax error is detected in src. |
| 3431 | * Resource errors (in xmalloc) cause the process to exit */ |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 3432 | static int setup_redirect(struct parse_context *ctx, |
| 3433 | int fd, |
| 3434 | redir_type style, |
| 3435 | struct in_str *input) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3436 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3437 | struct command *command = ctx->command; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 3438 | struct redir_struct *redir; |
| 3439 | struct redir_struct **redirp; |
| 3440 | int dup_num; |
| 3441 | |
| 3442 | /* Check for a '2>&1' type redirect */ |
| 3443 | dup_num = redirect_dup_num(input); |
| 3444 | if (dup_num == -2) |
| 3445 | return 1; /* syntax error */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3446 | |
| 3447 | /* 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] | 3448 | redirp = &command->redirects; |
| 3449 | while ((redir = *redirp) != NULL) { |
| 3450 | redirp = &(redir->next); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3451 | } |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 3452 | *redirp = redir = xzalloc(sizeof(*redir)); |
Denis Vlasenko | ff09762 | 2007-10-01 10:00:45 +0000 | [diff] [blame] | 3453 | /* redir->next = NULL; */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3454 | /* redir->rd_filename = NULL; */ |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3455 | redir->rd_type = style; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3456 | redir->fd = (fd == -1) ? redir_table[style].default_fd : fd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3457 | |
| 3458 | debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip); |
| 3459 | |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 3460 | redir->dup = dup_num; |
| 3461 | if (dup_num != -1) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3462 | /* Erik had a check here that the file descriptor in question |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 3463 | * is legit; I postpone that to "run time" |
| 3464 | * A "-" representation of "close me" shows up as a -3 here */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3465 | debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup); |
| 3466 | } else { |
| 3467 | /* We do _not_ try to open the file that src points to, |
| 3468 | * since we need to return and let src be expanded first. |
| 3469 | * Set ctx->pending_redirect, so we know what to do at the |
Denis Vlasenko | 201c72a | 2007-05-25 10:00:36 +0000 | [diff] [blame] | 3470 | * end of the next parsed word. */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3471 | ctx->pending_redirect = redir; |
| 3472 | } |
| 3473 | return 0; |
| 3474 | } |
| 3475 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3476 | |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 3477 | static struct pipe *new_pipe(void) |
| 3478 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3479 | struct pipe *pi; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3480 | pi = xzalloc(sizeof(struct pipe)); |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3481 | /*pi->followup = 0; - deliberately invalid value */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3482 | /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3483 | return pi; |
| 3484 | } |
| 3485 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3486 | /* Command (member of a pipe) is complete. The only possible error here |
| 3487 | * is out of memory, in which case xmalloc exits. */ |
| 3488 | static int done_command(struct parse_context *ctx) |
| 3489 | { |
| 3490 | /* The command is really already in the pipe structure, so |
| 3491 | * advance the pipe counter and make a new, null command. */ |
| 3492 | struct pipe *pi = ctx->pipe; |
| 3493 | struct command *command = ctx->command; |
| 3494 | |
| 3495 | if (command) { |
| 3496 | if (command->group == NULL |
| 3497 | && command->argv == NULL |
| 3498 | && command->redirects == NULL |
| 3499 | ) { |
| 3500 | debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds); |
| 3501 | return pi->num_cmds; |
| 3502 | } |
| 3503 | pi->num_cmds++; |
| 3504 | debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds); |
| 3505 | } else { |
| 3506 | debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds); |
| 3507 | } |
| 3508 | |
| 3509 | /* Only real trickiness here is that the uncommitted |
| 3510 | * command structure is not counted in pi->num_cmds. */ |
| 3511 | pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1)); |
| 3512 | command = &pi->cmds[pi->num_cmds]; |
| 3513 | memset(command, 0, sizeof(*command)); |
| 3514 | |
| 3515 | ctx->command = command; |
| 3516 | /* but ctx->pipe and ctx->list_head remain unchanged */ |
| 3517 | |
| 3518 | return pi->num_cmds; /* used only for 0/nonzero check */ |
| 3519 | } |
| 3520 | |
| 3521 | static void done_pipe(struct parse_context *ctx, pipe_style type) |
| 3522 | { |
| 3523 | int not_null; |
| 3524 | |
| 3525 | debug_printf_parse("done_pipe entered, followup %d\n", type); |
| 3526 | /* Close previous command */ |
| 3527 | not_null = done_command(ctx); |
| 3528 | ctx->pipe->followup = type; |
| 3529 | IF_HAS_KEYWORDS(ctx->pipe->pi_inverted = ctx->ctx_inverted;) |
| 3530 | IF_HAS_KEYWORDS(ctx->ctx_inverted = 0;) |
| 3531 | IF_HAS_KEYWORDS(ctx->pipe->res_word = ctx->ctx_res_w;) |
| 3532 | |
| 3533 | /* Without this check, even just <enter> on command line generates |
| 3534 | * tree of three NOPs (!). Which is harmless but annoying. |
| 3535 | * IOW: it is safe to do it unconditionally. |
| 3536 | * RES_NONE case is for "for a in; do ..." (empty IN set) |
| 3537 | * to work, possibly other cases too. */ |
| 3538 | if (not_null IF_HAS_KEYWORDS(|| ctx->ctx_res_w != RES_NONE)) { |
| 3539 | struct pipe *new_p; |
| 3540 | debug_printf_parse("done_pipe: adding new pipe: " |
| 3541 | "not_null:%d ctx->ctx_res_w:%d\n", |
| 3542 | not_null, ctx->ctx_res_w); |
| 3543 | new_p = new_pipe(); |
| 3544 | ctx->pipe->next = new_p; |
| 3545 | ctx->pipe = new_p; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3546 | /* RES_THEN, RES_DO etc are "sticky" - |
| 3547 | * they remain set for commands inside if/while. |
| 3548 | * This is used to control execution. |
| 3549 | * RES_FOR and RES_IN are NOT sticky (needed to support |
| 3550 | * cases where variable or value happens to match a keyword): |
| 3551 | */ |
| 3552 | #if ENABLE_HUSH_LOOPS |
| 3553 | if (ctx->ctx_res_w == RES_FOR |
| 3554 | || ctx->ctx_res_w == RES_IN) |
| 3555 | ctx->ctx_res_w = RES_NONE; |
| 3556 | #endif |
| 3557 | #if ENABLE_HUSH_CASE |
| 3558 | if (ctx->ctx_res_w == RES_MATCH) |
| 3559 | ctx->ctx_res_w = RES_CASEI; |
| 3560 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3561 | ctx->command = NULL; /* trick done_command below */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3562 | /* Create the memory for command, roughly: |
| 3563 | * ctx->pipe->cmds = new struct command; |
| 3564 | * ctx->command = &ctx->pipe->cmds[0]; |
| 3565 | */ |
| 3566 | done_command(ctx); |
| 3567 | } |
| 3568 | debug_printf_parse("done_pipe return\n"); |
| 3569 | } |
| 3570 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3571 | static void initialize_context(struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3572 | { |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3573 | memset(ctx, 0, sizeof(*ctx)); |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3574 | ctx->pipe = ctx->list_head = new_pipe(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3575 | /* Create the memory for command, roughly: |
| 3576 | * ctx->pipe->cmds = new struct command; |
| 3577 | * ctx->command = &ctx->pipe->cmds[0]; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3578 | */ |
| 3579 | done_command(ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3580 | } |
| 3581 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3582 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3583 | /* If a reserved word is found and processed, parse context is modified |
| 3584 | * and 1 is returned. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3585 | */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3586 | #if HAS_KEYWORDS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3587 | struct reserved_combo { |
| 3588 | char literal[6]; |
| 3589 | unsigned char res; |
| 3590 | unsigned char assignment_flag; |
| 3591 | int flag; |
| 3592 | }; |
| 3593 | enum { |
| 3594 | FLAG_END = (1 << RES_NONE ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3595 | #if ENABLE_HUSH_IF |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3596 | FLAG_IF = (1 << RES_IF ), |
| 3597 | FLAG_THEN = (1 << RES_THEN ), |
| 3598 | FLAG_ELIF = (1 << RES_ELIF ), |
| 3599 | FLAG_ELSE = (1 << RES_ELSE ), |
| 3600 | FLAG_FI = (1 << RES_FI ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3601 | #endif |
| 3602 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3603 | FLAG_FOR = (1 << RES_FOR ), |
| 3604 | FLAG_WHILE = (1 << RES_WHILE), |
| 3605 | FLAG_UNTIL = (1 << RES_UNTIL), |
| 3606 | FLAG_DO = (1 << RES_DO ), |
| 3607 | FLAG_DONE = (1 << RES_DONE ), |
| 3608 | FLAG_IN = (1 << RES_IN ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3609 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3610 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3611 | FLAG_MATCH = (1 << RES_MATCH), |
| 3612 | FLAG_ESAC = (1 << RES_ESAC ), |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3613 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3614 | FLAG_START = (1 << RES_XXXX ), |
| 3615 | }; |
| 3616 | |
| 3617 | static const struct reserved_combo* match_reserved_word(o_string *word) |
| 3618 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3619 | /* Mostly a list of accepted follow-up reserved words. |
| 3620 | * FLAG_END means we are done with the sequence, and are ready |
| 3621 | * to turn the compound list into a command. |
| 3622 | * FLAG_START means the word must start a new compound list. |
| 3623 | */ |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3624 | static const struct reserved_combo reserved_list[] = { |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3625 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3626 | { "!", RES_NONE, NOT_ASSIGNMENT , 0 }, |
| 3627 | { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START }, |
| 3628 | { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI }, |
| 3629 | { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN }, |
| 3630 | { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI }, |
| 3631 | { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3632 | #endif |
| 3633 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3634 | { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START }, |
| 3635 | { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START }, |
| 3636 | { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START }, |
| 3637 | { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO }, |
| 3638 | { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE }, |
| 3639 | { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3640 | #endif |
| 3641 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3642 | { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START }, |
| 3643 | { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3644 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3645 | }; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3646 | const struct reserved_combo *r; |
| 3647 | |
| 3648 | for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) { |
| 3649 | if (strcmp(word->data, r->literal) == 0) |
| 3650 | return r; |
| 3651 | } |
| 3652 | return NULL; |
| 3653 | } |
| 3654 | static int reserved_word(o_string *word, struct parse_context *ctx) |
| 3655 | { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3656 | #if ENABLE_HUSH_CASE |
| 3657 | static const struct reserved_combo reserved_match = { |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3658 | "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3659 | }; |
| 3660 | #endif |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3661 | const struct reserved_combo *r; |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3662 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3663 | r = match_reserved_word(word); |
| 3664 | if (!r) |
| 3665 | return 0; |
| 3666 | |
| 3667 | 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] | 3668 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3669 | if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE) |
| 3670 | /* "case word IN ..." - IN part starts first match part */ |
| 3671 | r = &reserved_match; |
| 3672 | else |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3673 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3674 | if (r->flag == 0) { /* '!' */ |
| 3675 | if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3676 | syntax("! ! command"); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3677 | IF_HAS_KEYWORDS(ctx->ctx_res_w = RES_SNTX;) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3678 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3679 | ctx->ctx_inverted = 1; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3680 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3681 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3682 | if (r->flag & FLAG_START) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3683 | struct parse_context *old; |
| 3684 | old = xmalloc(sizeof(*old)); |
| 3685 | debug_printf_parse("push stack %p\n", old); |
| 3686 | *old = *ctx; /* physical copy */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3687 | initialize_context(ctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3688 | ctx->stack = old; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3689 | } 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] | 3690 | syntax(word->data); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3691 | ctx->ctx_res_w = RES_SNTX; |
| 3692 | return 1; |
| 3693 | } |
| 3694 | ctx->ctx_res_w = r->res; |
| 3695 | ctx->old_flag = r->flag; |
| 3696 | if (ctx->old_flag & FLAG_END) { |
| 3697 | struct parse_context *old; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3698 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3699 | debug_printf_parse("pop stack %p\n", ctx->stack); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3700 | old = ctx->stack; |
| 3701 | old->command->group = ctx->list_head; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3702 | old->command->grp_type = GRP_NORMAL; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3703 | #if !BB_MMU |
| 3704 | o_addstr(&old->as_string, ctx->as_string.data); |
| 3705 | o_free_unsafe(&ctx->as_string); |
| 3706 | old->command->group_as_string = xstrdup(old->as_string.data); |
| 3707 | debug_printf_parse("pop, remembering as:'%s'\n", |
| 3708 | old->command->group_as_string); |
| 3709 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3710 | *ctx = *old; /* physical copy */ |
| 3711 | free(old); |
| 3712 | } |
| 3713 | word->o_assignment = r->assignment_flag; |
| 3714 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3715 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3716 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3717 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3718 | /* Word is complete, look at it and update parsing context. |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3719 | * Normal return is 0. Syntax errors return 1. |
| 3720 | * Note: on return, word is reset, but not o_free'd! |
| 3721 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3722 | static int done_word(o_string *word, struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3723 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3724 | struct command *command = ctx->command; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3725 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3726 | debug_printf_parse("done_word entered: '%s' %p\n", word->data, command); |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3727 | if (word->length == 0 && word->nonnull == 0) { |
| 3728 | debug_printf_parse("done_word return 0: true null, ignored\n"); |
| 3729 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3730 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3731 | /* If this word wasn't an assignment, next ones definitely |
| 3732 | * can't be assignments. Even if they look like ones. */ |
| 3733 | if (word->o_assignment != DEFINITELY_ASSIGNMENT |
| 3734 | && word->o_assignment != WORD_IS_KEYWORD |
| 3735 | ) { |
| 3736 | word->o_assignment = NOT_ASSIGNMENT; |
| 3737 | } else { |
| 3738 | if (word->o_assignment == DEFINITELY_ASSIGNMENT) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3739 | command->assignment_cnt++; |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3740 | word->o_assignment = MAYBE_ASSIGNMENT; |
| 3741 | } |
| 3742 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3743 | if (ctx->pending_redirect) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3744 | /* We do not glob in e.g. >*.tmp case. bash seems to glob here |
| 3745 | * only if run as "bash", not "sh" */ |
| 3746 | ctx->pending_redirect->rd_filename = xstrdup(word->data); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3747 | word->o_assignment = NOT_ASSIGNMENT; |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3748 | debug_printf("word stored in rd_filename: '%s'\n", word->data); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3749 | } else { |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 3750 | /* "{ echo foo; } echo bar" - bad */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3751 | /* NB: bash allows e.g.: |
| 3752 | * if true; then { echo foo; } fi |
| 3753 | * while if false; then false; fi do break; done |
| 3754 | * TODO? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3755 | if (command->group) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3756 | syntax(word->data); |
| 3757 | debug_printf_parse("done_word return 1: syntax error, " |
| 3758 | "groups and arglists don't mix\n"); |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 3759 | return 1; |
| 3760 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3761 | #if HAS_KEYWORDS |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3762 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | 757361f | 2008-07-14 08:26:47 +0000 | [diff] [blame] | 3763 | if (ctx->ctx_dsemicolon |
| 3764 | && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */ |
| 3765 | ) { |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 3766 | /* already done when ctx_dsemicolon was set to 1: */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3767 | /* ctx->ctx_res_w = RES_MATCH; */ |
| 3768 | ctx->ctx_dsemicolon = 0; |
| 3769 | } else |
| 3770 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3771 | if (!command->argv /* if it's the first word... */ |
Denis Vlasenko | 6bdff08 | 2008-07-09 20:14:53 +0000 | [diff] [blame] | 3772 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3773 | && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */ |
| 3774 | && ctx->ctx_res_w != RES_IN |
Denis Vlasenko | 6bdff08 | 2008-07-09 20:14:53 +0000 | [diff] [blame] | 3775 | #endif |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3776 | ) { |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3777 | debug_printf_parse(": checking '%s' for reserved-ness\n", word->data); |
| 3778 | if (reserved_word(word, ctx)) { |
| 3779 | o_reset(word); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3780 | debug_printf_parse("done_word return %d\n", |
| 3781 | (ctx->ctx_res_w == RES_SNTX)); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3782 | return (ctx->ctx_res_w == RES_SNTX); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3783 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3784 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3785 | #endif |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3786 | 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] | 3787 | /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */ |
| 3788 | && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL) |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3789 | /* (otherwise it's known to be not empty and is already safe) */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3790 | ) { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3791 | /* exclude "$@" - it can expand to no word despite "" */ |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 3792 | char *p = word->data; |
| 3793 | while (p[0] == SPECIAL_VAR_SYMBOL |
| 3794 | && (p[1] & 0x7f) == '@' |
| 3795 | && p[2] == SPECIAL_VAR_SYMBOL |
| 3796 | ) { |
| 3797 | p += 3; |
| 3798 | } |
| 3799 | if (p == word->data || p[0] != '\0') { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3800 | /* saw no "$@", or not only "$@" but some |
| 3801 | * real text is there too */ |
| 3802 | /* insert "empty variable" reference, this makes |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 3803 | * e.g. "", $empty"" etc to not disappear */ |
| 3804 | o_addchr(word, SPECIAL_VAR_SYMBOL); |
| 3805 | o_addchr(word, SPECIAL_VAR_SYMBOL); |
| 3806 | } |
Denis Vlasenko | c1c63b6 | 2008-06-18 09:20:35 +0000 | [diff] [blame] | 3807 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3808 | command->argv = add_string_to_strings(command->argv, xstrdup(word->data)); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3809 | debug_print_strings("word appended to argv", command->argv); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3810 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3811 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3812 | o_reset(word); |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3813 | ctx->pending_redirect = NULL; |
| 3814 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3815 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3816 | /* Force FOR to have just one word (variable name) */ |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3817 | /* NB: basically, this makes hush see "for v in ..." syntax as if |
| 3818 | * as it is "for v; in ...". FOR and IN become two pipe structs |
| 3819 | * in parse tree. */ |
| 3820 | if (ctx->ctx_res_w == RES_FOR) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3821 | //TODO: check that command->argv[0] is a valid variable name! |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 3822 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3823 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3824 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3825 | #if ENABLE_HUSH_CASE |
| 3826 | /* Force CASE to have just one word */ |
| 3827 | if (ctx->ctx_res_w == RES_CASE) { |
| 3828 | done_pipe(ctx, PIPE_SEQ); |
| 3829 | } |
| 3830 | #endif |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3831 | debug_printf_parse("done_word return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3832 | return 0; |
| 3833 | } |
| 3834 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3835 | /* If a redirect is immediately preceded by a number, that number is |
| 3836 | * supposed to tell which file descriptor to redirect. This routine |
| 3837 | * looks for such preceding numbers. In an ideal world this routine |
| 3838 | * needs to handle all the following classes of redirects... |
| 3839 | * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo |
| 3840 | * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo |
| 3841 | * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo |
| 3842 | * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo |
| 3843 | * A -1 output from this program means no valid number was found, so the |
| 3844 | * caller should use the appropriate default for this redirection. |
| 3845 | */ |
| 3846 | static int redirect_opt_num(o_string *o) |
| 3847 | { |
| 3848 | int num; |
| 3849 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3850 | if (o->length == 0) |
| 3851 | return -1; |
| 3852 | for (num = 0; num < o->length; num++) { |
Denis Vlasenko | c1c63b6 | 2008-06-18 09:20:35 +0000 | [diff] [blame] | 3853 | if (!isdigit(o->data[num])) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3854 | return -1; |
| 3855 | } |
| 3856 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 3857 | num = atoi(o->data); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3858 | o_reset(o); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3859 | return num; |
| 3860 | } |
| 3861 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3862 | #if BB_MMU |
| 3863 | #define parse_stream(pstring, input, end_trigger) \ |
| 3864 | parse_stream(input, end_trigger) |
| 3865 | #endif |
| 3866 | static struct pipe *parse_stream(char **pstring, |
| 3867 | struct in_str *input, |
| 3868 | int end_trigger); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3869 | static void parse_and_run_string(const char *s); |
Mike Frysinger | ddbee97 | 2009-03-22 22:48:41 +0000 | [diff] [blame] | 3870 | |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 3871 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3872 | static FILE *generate_stream_from_string(const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3873 | { |
| 3874 | FILE *pf; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3875 | int pid, channel[2]; |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 3876 | |
Denis Vlasenko | 5a6aedd | 2007-05-26 16:44:20 +0000 | [diff] [blame] | 3877 | xpipe(channel); |
Denis Vlasenko | 82604e9 | 2008-07-01 15:59:42 +0000 | [diff] [blame] | 3878 | pid = BB_MMU ? fork() : vfork(); |
| 3879 | if (pid < 0) |
| 3880 | bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork"); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3881 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3882 | if (pid == 0) { /* child */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 3883 | #if ENABLE_HUSH_JOB |
| 3884 | die_sleep = 0; /* do not restore tty pgrp on xfunc death */ |
| 3885 | #endif |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 3886 | /* Process substitution is not considered to be usual |
| 3887 | * 'command execution'. |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 3888 | * SUSv3 says ctrl-Z should be ignored, ctrl-C should not. |
| 3889 | */ |
Denis Vlasenko | e0755e5 | 2009-04-03 21:16:45 +0000 | [diff] [blame] | 3890 | bb_signals(0 |
| 3891 | + (1 << SIGTSTP) |
| 3892 | + (1 << SIGTTIN) |
| 3893 | + (1 << SIGTTOU) |
| 3894 | , SIG_IGN); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3895 | close(channel[0]); /* NB: close _first_, then move fd! */ |
| 3896 | xmove_fd(channel[1], 1); |
| 3897 | /* Prevent it from trying to handle ctrl-z etc */ |
| 3898 | USE_HUSH_JOB(G.run_list_level = 1;) |
| 3899 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 3900 | reset_traps_to_defaults(); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3901 | parse_and_run_string(s); |
| 3902 | _exit(G.last_return_code); |
| 3903 | #else |
| 3904 | /* We re-execute after vfork on NOMMU. This makes this script safe: |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 3905 | * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG |
| 3906 | * huge=`cat BIG` # was blocking here forever |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3907 | * echo OK |
| 3908 | */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 3909 | re_execute_shell(s); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3910 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3911 | } |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3912 | |
| 3913 | /* parent */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 3914 | #if ENABLE_HUSH_JOB |
| 3915 | die_sleep = -1; /* restore tty pgrp on xfunc death */ |
| 3916 | #endif |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 3917 | clean_up_after_re_execute(); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3918 | close(channel[1]); |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 3919 | pf = fdopen(channel[0], "r"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3920 | return pf; |
| 3921 | } |
| 3922 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3923 | /* Return code is exit status of the process that is run. */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3924 | static int process_command_subs(o_string *dest, const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3925 | { |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3926 | FILE *pf; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3927 | struct in_str pipe_str; |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3928 | int ch, eol_cnt; |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 3929 | |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3930 | pf = generate_stream_from_string(s); |
| 3931 | if (pf == NULL) |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3932 | return 1; |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3933 | close_on_exec_on(fileno(pf)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3934 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3935 | /* Now send results of command back into original context */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3936 | setup_file_in_str(&pipe_str, pf); |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 3937 | eol_cnt = 0; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 3938 | while ((ch = i_getch(&pipe_str)) != EOF) { |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 3939 | if (ch == '\n') { |
| 3940 | eol_cnt++; |
| 3941 | continue; |
| 3942 | } |
| 3943 | while (eol_cnt) { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3944 | o_addchr(dest, '\n'); |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 3945 | eol_cnt--; |
| 3946 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 3947 | o_addQchr(dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3948 | } |
| 3949 | |
| 3950 | debug_printf("done reading from pipe, pclose()ing\n"); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 3951 | /* Note: we got EOF, and we just close the read end of the pipe. |
| 3952 | * 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] | 3953 | * Try these: |
| 3954 | * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec |
| 3955 | * `false`; echo $? - bash outputs "1" |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 3956 | */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 3957 | fclose(pf); |
| 3958 | debug_printf("closed FILE from child. return 0\n"); |
| 3959 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3960 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 3961 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3962 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3963 | static int parse_group(o_string *dest, struct parse_context *ctx, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3964 | struct in_str *input, int ch) |
| 3965 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3966 | /* dest contains characters seen prior to ( or {. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 3967 | * Typically it's empty, but for function defs, |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3968 | * it contains function name (without '()'). */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3969 | struct pipe *pipe_list; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 3970 | int endch; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3971 | struct command *command = ctx->command; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3972 | |
| 3973 | debug_printf_parse("parse_group entered\n"); |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3974 | #if ENABLE_HUSH_FUNCTIONS |
| 3975 | if (ch == 'F') { /* function definition? */ |
| 3976 | bb_error_msg("aha '%s' is a function, parsing it...", dest->data); |
| 3977 | //command->fname = dest->data; |
| 3978 | command->grp_type = GRP_FUNCTION; |
| 3979 | //TODO: review every o_reset() location... do they handle all o_string fields correctly? |
| 3980 | memset(dest, 0, sizeof(*dest)); |
| 3981 | } |
| 3982 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3983 | if (command->argv /* word [word](... */ |
| 3984 | || dest->length /* word(... */ |
| 3985 | || dest->nonnull /* ""(... */ |
| 3986 | ) { |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 3987 | syntax(NULL); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3988 | debug_printf_parse("parse_group return 1: " |
| 3989 | "syntax error, groups and arglists don't mix\n"); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3990 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3991 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 3992 | endch = '}'; |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 3993 | if (ch == '(') { |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 3994 | endch = ')'; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3995 | command->grp_type = GRP_SUBSHELL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3996 | } |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3997 | { |
| 3998 | #if !BB_MMU |
| 3999 | char *as_string = NULL; |
| 4000 | #endif |
| 4001 | pipe_list = parse_stream(&as_string, input, endch); |
| 4002 | #if !BB_MMU |
| 4003 | if (as_string) |
| 4004 | o_addstr(&ctx->as_string, as_string); |
| 4005 | #endif |
| 4006 | /* empty ()/{} or parse error? */ |
| 4007 | if (!pipe_list || pipe_list == ERR_PTR) { |
| 4008 | #if !BB_MMU |
| 4009 | free(as_string); |
| 4010 | #endif |
| 4011 | syntax(NULL); |
| 4012 | debug_printf_parse("parse_group return 1: " |
| 4013 | "parse_stream returned %p\n", pipe_list); |
| 4014 | return 1; |
| 4015 | } |
| 4016 | command->group = pipe_list; |
| 4017 | #if !BB_MMU |
| 4018 | as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */ |
| 4019 | command->group_as_string = as_string; |
| 4020 | debug_printf_parse("end of group, remembering as:'%s'\n", |
| 4021 | command->group_as_string); |
| 4022 | #endif |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4023 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4024 | debug_printf_parse("parse_group return 0\n"); |
| 4025 | return 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4026 | /* command remains "open", available for possible redirects */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4027 | } |
| 4028 | |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4029 | #if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4030 | /* Subroutines for copying $(...) and `...` things */ |
| 4031 | static void add_till_backquote(o_string *dest, struct in_str *input); |
| 4032 | /* '...' */ |
| 4033 | static void add_till_single_quote(o_string *dest, struct in_str *input) |
| 4034 | { |
| 4035 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4036 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4037 | if (ch == EOF) |
| 4038 | break; |
| 4039 | if (ch == '\'') |
| 4040 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4041 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4042 | } |
| 4043 | } |
| 4044 | /* "...\"...`..`...." - do we need to handle "...$(..)..." too? */ |
| 4045 | static void add_till_double_quote(o_string *dest, struct in_str *input) |
| 4046 | { |
| 4047 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4048 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4049 | if (ch == '"') |
| 4050 | break; |
| 4051 | if (ch == '\\') { /* \x. Copy both chars. */ |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4052 | o_addchr(dest, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4053 | ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4054 | } |
| 4055 | if (ch == EOF) |
| 4056 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4057 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4058 | if (ch == '`') { |
| 4059 | add_till_backquote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4060 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4061 | continue; |
| 4062 | } |
Denis Vlasenko | 5703c22 | 2008-06-15 11:49:42 +0000 | [diff] [blame] | 4063 | //if (ch == '$') ... |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4064 | } |
| 4065 | } |
| 4066 | /* Process `cmd` - copy contents until "`" is seen. Complicated by |
| 4067 | * \` quoting. |
| 4068 | * "Within the backquoted style of command substitution, backslash |
| 4069 | * shall retain its literal meaning, except when followed by: '$', '`', or '\'. |
| 4070 | * The search for the matching backquote shall be satisfied by the first |
| 4071 | * backquote found without a preceding backslash; during this search, |
| 4072 | * if a non-escaped backquote is encountered within a shell comment, |
| 4073 | * a here-document, an embedded command substitution of the $(command) |
| 4074 | * form, or a quoted string, undefined results occur. A single-quoted |
| 4075 | * or double-quoted string that begins, but does not end, within the |
| 4076 | * "`...`" sequence produces undefined results." |
| 4077 | * Example Output |
| 4078 | * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST |
| 4079 | */ |
| 4080 | static void add_till_backquote(o_string *dest, struct in_str *input) |
| 4081 | { |
| 4082 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4083 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4084 | if (ch == '`') |
| 4085 | break; |
| 4086 | if (ch == '\\') { /* \x. Copy both chars unless it is \` */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4087 | int ch2 = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4088 | if (ch2 != '`' && ch2 != '$' && ch2 != '\\') |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4089 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4090 | ch = ch2; |
| 4091 | } |
| 4092 | if (ch == EOF) |
| 4093 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4094 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4095 | } |
| 4096 | } |
| 4097 | /* Process $(cmd) - copy contents until ")" is seen. Complicated by |
| 4098 | * quoting and nested ()s. |
| 4099 | * "With the $(command) style of command substitution, all characters |
| 4100 | * following the open parenthesis to the matching closing parenthesis |
| 4101 | * constitute the command. Any valid shell script can be used for command, |
| 4102 | * except a script consisting solely of redirections which produces |
| 4103 | * unspecified results." |
| 4104 | * Example Output |
| 4105 | * echo $(echo '(TEST)' BEST) (TEST) BEST |
| 4106 | * echo $(echo 'TEST)' BEST) TEST) BEST |
| 4107 | * echo $(echo \(\(TEST\) BEST) ((TEST) BEST |
| 4108 | */ |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4109 | 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] | 4110 | { |
| 4111 | int count = 0; |
| 4112 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4113 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4114 | if (ch == EOF) |
| 4115 | break; |
| 4116 | if (ch == '(') |
| 4117 | count++; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4118 | if (ch == ')') { |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4119 | if (--count < 0) { |
| 4120 | if (!dbl) |
| 4121 | break; |
| 4122 | if (i_peek(input) == ')') { |
| 4123 | i_getch(input); |
| 4124 | break; |
| 4125 | } |
| 4126 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4127 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4128 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4129 | if (ch == '\'') { |
| 4130 | add_till_single_quote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4131 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4132 | continue; |
| 4133 | } |
| 4134 | if (ch == '"') { |
| 4135 | add_till_double_quote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4136 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4137 | continue; |
| 4138 | } |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4139 | if (ch == '\\') { /* \x. Copy verbatim. Important for \(, \) */ |
| 4140 | ch = i_getch(input); |
| 4141 | if (ch == EOF) |
| 4142 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4143 | o_addchr(dest, ch); |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4144 | continue; |
| 4145 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4146 | } |
| 4147 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4148 | #endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */ |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4149 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4150 | /* Return code: 0 for OK, 1 for syntax error */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4151 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4152 | #define handle_dollar(as_string, dest, input) \ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4153 | handle_dollar(dest, input) |
| 4154 | #endif |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4155 | static int handle_dollar(o_string *as_string, |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4156 | o_string *dest, |
| 4157 | struct in_str *input) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4158 | { |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 4159 | int expansion; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4160 | int ch = i_peek(input); /* first character after the $ */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 4161 | unsigned char quote_mask = dest->o_escape ? 0x80 : 0; |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4162 | |
| 4163 | debug_printf_parse("handle_dollar entered: ch='%c'\n", ch); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 4164 | if (isalpha(ch)) { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4165 | ch = i_getch(input); |
| 4166 | #if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4167 | if (as_string) o_addchr(as_string, ch); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4168 | #endif |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 4169 | make_var: |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4170 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4171 | while (1) { |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4172 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4173 | o_addchr(dest, ch | quote_mask); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 4174 | quote_mask = 0; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4175 | ch = i_peek(input); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4176 | if (!isalnum(ch) && ch != '_') |
| 4177 | break; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4178 | ch = i_getch(input); |
| 4179 | #if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4180 | if (as_string) o_addchr(as_string, ch); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4181 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4182 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4183 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4184 | } else if (isdigit(ch)) { |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4185 | make_one_char_var: |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4186 | ch = i_getch(input); |
| 4187 | #if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4188 | if (as_string) o_addchr(as_string, ch); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4189 | #endif |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4190 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4191 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4192 | o_addchr(dest, ch | quote_mask); |
| 4193 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4194 | } else switch (ch) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4195 | case '$': /* pid */ |
| 4196 | case '!': /* last bg pid */ |
| 4197 | case '?': /* last exit code */ |
| 4198 | case '#': /* number of args */ |
| 4199 | case '*': /* args */ |
| 4200 | case '@': /* args */ |
| 4201 | goto make_one_char_var; |
| 4202 | case '{': { |
| 4203 | bool first_char, all_digits; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 4204 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4205 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4206 | ch = i_getch(input); |
| 4207 | #if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4208 | if (as_string) o_addchr(as_string, ch); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4209 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4210 | /* XXX maybe someone will try to escape the '}' */ |
| 4211 | expansion = 0; |
| 4212 | first_char = true; |
| 4213 | all_digits = false; |
| 4214 | while (1) { |
| 4215 | ch = i_getch(input); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4216 | #if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4217 | if (as_string) o_addchr(as_string, ch); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4218 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4219 | if (ch == '}') |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4220 | break; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4221 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4222 | if (first_char) { |
| 4223 | if (ch == '#') |
| 4224 | /* ${#var}: length of var contents */ |
| 4225 | goto char_ok; |
| 4226 | else if (isdigit(ch)) { |
| 4227 | all_digits = true; |
| 4228 | goto char_ok; |
| 4229 | } |
| 4230 | } |
| 4231 | |
| 4232 | if (expansion < 2 |
| 4233 | && ( (all_digits && !isdigit(ch)) |
| 4234 | || (!all_digits && !isalnum(ch) && ch != '_') |
| 4235 | ) |
| 4236 | ) { |
| 4237 | /* handle parameter expansions |
| 4238 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02 |
| 4239 | */ |
| 4240 | if (first_char) |
| 4241 | goto case_default; |
| 4242 | switch (ch) { |
| 4243 | case ':': /* null modifier */ |
| 4244 | if (expansion == 0) { |
| 4245 | debug_printf_parse(": null modifier\n"); |
| 4246 | ++expansion; |
| 4247 | break; |
| 4248 | } |
| 4249 | goto case_default; |
| 4250 | #if 0 /* not implemented yet :( */ |
| 4251 | case '#': /* remove prefix */ |
| 4252 | case '%': /* remove suffix */ |
| 4253 | if (expansion == 0) { |
| 4254 | debug_printf_parse(": remove suffix/prefix\n"); |
| 4255 | expansion = 2; |
| 4256 | break; |
| 4257 | } |
| 4258 | goto case_default; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4259 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4260 | case '-': /* default value */ |
| 4261 | case '=': /* assign default */ |
| 4262 | case '+': /* alternative */ |
| 4263 | case '?': /* error indicate */ |
| 4264 | debug_printf_parse(": parameter expansion\n"); |
| 4265 | expansion = 2; |
| 4266 | break; |
| 4267 | default: |
| 4268 | case_default: |
| 4269 | syntax("unterminated ${name}"); |
| 4270 | debug_printf_parse("handle_dollar return 1: unterminated ${name}\n"); |
| 4271 | return 1; |
| 4272 | } |
| 4273 | } |
| 4274 | char_ok: |
| 4275 | debug_printf_parse(": '%c'\n", ch); |
| 4276 | o_addchr(dest, ch | quote_mask); |
| 4277 | quote_mask = 0; |
| 4278 | first_char = false; |
| 4279 | } |
| 4280 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4281 | break; |
| 4282 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4283 | #if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK) |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4284 | case '(': { |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4285 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4286 | int pos; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4287 | # endif |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4288 | ch = i_getch(input); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4289 | # if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4290 | if (as_string) o_addchr(as_string, ch); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4291 | # endif |
| 4292 | # if ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4293 | if (i_peek(input) == '(') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4294 | ch = i_getch(input); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4295 | # if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4296 | if (as_string) o_addchr(as_string, ch); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4297 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4298 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4299 | o_addchr(dest, /*quote_mask |*/ '+'); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4300 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4301 | pos = dest->length; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4302 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4303 | add_till_closing_paren(dest, input, true); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4304 | # if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4305 | if (as_string) { |
| 4306 | o_addstr(as_string, dest->data + pos); |
| 4307 | o_addchr(as_string, ')'); |
| 4308 | o_addchr(as_string, ')'); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4309 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4310 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4311 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4312 | break; |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4313 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4314 | # endif |
| 4315 | # if ENABLE_HUSH_TICK |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4316 | //int pos = dest->length; |
| 4317 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4318 | o_addchr(dest, quote_mask | '`'); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4319 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4320 | pos = dest->length; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4321 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4322 | add_till_closing_paren(dest, input, false); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4323 | # if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4324 | if (as_string) { |
| 4325 | o_addstr(as_string, dest->data + pos); |
| 4326 | o_addchr(as_string, '`'); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4327 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4328 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4329 | //debug_printf_subst("SUBST RES2 '%s'\n", dest->data + pos); |
| 4330 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4331 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4332 | break; |
| 4333 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4334 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4335 | case '_': |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4336 | ch = i_getch(input); |
| 4337 | #if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4338 | if (as_string) o_addchr(as_string, ch); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4339 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4340 | ch = i_peek(input); |
| 4341 | if (isalnum(ch)) { /* it's $_name or $_123 */ |
| 4342 | ch = '_'; |
| 4343 | goto make_var; |
| 4344 | } |
| 4345 | /* else: it's $_ */ |
| 4346 | /* TODO: */ |
| 4347 | /* $_ Shell or shell script name; or last cmd name */ |
| 4348 | /* $- Option flags set by set builtin or shell options (-i etc) */ |
| 4349 | default: |
| 4350 | o_addQchr(dest, '$'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4351 | } |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4352 | debug_printf_parse("handle_dollar return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4353 | return 0; |
| 4354 | } |
| 4355 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4356 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4357 | #define parse_stream_dquoted(as_string, dest, input, dquote_end) \ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4358 | parse_stream_dquoted(dest, input, dquote_end) |
| 4359 | #endif |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4360 | static int parse_stream_dquoted(o_string *as_string, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4361 | o_string *dest, |
| 4362 | struct in_str *input, |
| 4363 | int dquote_end) |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4364 | { |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4365 | int ch; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4366 | int next; |
| 4367 | |
| 4368 | again: |
| 4369 | ch = i_getch(input); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4370 | #if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4371 | if (as_string && ch != EOF) |
| 4372 | o_addchr(as_string, ch); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4373 | #endif |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4374 | if (ch == dquote_end) { /* may be only '"' or EOF */ |
| 4375 | dest->nonnull = 1; |
| 4376 | if (dest->o_assignment == NOT_ASSIGNMENT) |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 4377 | dest->o_escape ^= 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4378 | debug_printf_parse("parse_stream_dquoted return 0\n"); |
| 4379 | return 0; |
| 4380 | } |
| 4381 | if (ch == EOF) { |
| 4382 | syntax("unterminated \""); |
| 4383 | debug_printf_parse("parse_stream_dquoted return 1: unterminated \"\n"); |
| 4384 | return 1; |
| 4385 | } |
| 4386 | next = '\0'; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4387 | if (ch != '\n') { |
| 4388 | next = i_peek(input); |
| 4389 | } |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4390 | debug_printf_parse(": ch=%c (%d) escape=%d\n", |
| 4391 | ch, ch, dest->o_escape); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4392 | if (ch == '\\') { |
| 4393 | if (next == EOF) { |
| 4394 | syntax("\\<eof>"); |
| 4395 | debug_printf_parse("parse_stream_dquoted return 1: \\<eof>\n"); |
| 4396 | return 1; |
| 4397 | } |
| 4398 | /* bash: |
| 4399 | * "The backslash retains its special meaning [in "..."] |
| 4400 | * only when followed by one of the following characters: |
| 4401 | * $, `, ", \, or <newline>. A double quote may be quoted |
| 4402 | * within double quotes by preceding it with a backslash. |
| 4403 | * If enabled, history expansion will be performed unless |
| 4404 | * an ! appearing in double quotes is escaped using |
| 4405 | * a backslash. The backslash preceding the ! is not removed." |
| 4406 | */ |
| 4407 | if (strchr("$`\"\\", next) != NULL) { |
| 4408 | o_addqchr(dest, i_getch(input)); |
| 4409 | } else { |
| 4410 | o_addqchr(dest, '\\'); |
| 4411 | } |
| 4412 | goto again; |
| 4413 | } |
| 4414 | if (ch == '$') { |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4415 | if (handle_dollar(as_string, dest, input) != 0) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4416 | debug_printf_parse("parse_stream_dquoted return 1: " |
| 4417 | "handle_dollar returned non-0\n"); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4418 | return 1; |
| 4419 | } |
| 4420 | goto again; |
| 4421 | } |
| 4422 | #if ENABLE_HUSH_TICK |
| 4423 | if (ch == '`') { |
| 4424 | //int pos = dest->length; |
| 4425 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4426 | o_addchr(dest, 0x80 | '`'); |
| 4427 | add_till_backquote(dest, input); |
| 4428 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4429 | //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos); |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 4430 | goto again; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4431 | } |
| 4432 | #endif |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 4433 | o_addQchr(dest, ch); |
| 4434 | if (ch == '=' |
| 4435 | && (dest->o_assignment == MAYBE_ASSIGNMENT |
| 4436 | || dest->o_assignment == WORD_IS_KEYWORD) |
| 4437 | && is_assignment(dest->data) |
| 4438 | ) { |
| 4439 | dest->o_assignment = DEFINITELY_ASSIGNMENT; |
| 4440 | } |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4441 | goto again; |
| 4442 | } |
| 4443 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4444 | /* |
| 4445 | * Scan input until EOF or end_trigger char. |
| 4446 | * Return a list of pipes to execute, or NULL on EOF |
| 4447 | * or if end_trigger character is met. |
| 4448 | * On syntax error, exit is shell is not interactive, |
| 4449 | * reset parsing machinery and start parsing anew, |
| 4450 | * or return ERR_PTR. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4451 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4452 | static struct pipe *parse_stream(char **pstring, |
| 4453 | struct in_str *input, |
| 4454 | int end_trigger) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4455 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4456 | struct parse_context ctx; |
| 4457 | o_string dest = NULL_O_STRING; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4458 | int is_in_dquote; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4459 | |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 4460 | /* Double-quote state is handled in the state variable is_in_dquote. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4461 | * 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] | 4462 | * found. When recursing, quote state is passed in via dest->o_escape. |
| 4463 | */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4464 | debug_printf_parse("parse_stream entered, end_trigger='%c'\n", |
| 4465 | end_trigger ? : 'X'); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4466 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4467 | G.ifs = get_local_var_value("IFS"); |
| 4468 | if (G.ifs == NULL) |
| 4469 | G.ifs = " \t\n"; |
| 4470 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4471 | reset: |
| 4472 | #if ENABLE_HUSH_INTERACTIVE |
| 4473 | input->promptmode = 0; /* PS1 */ |
| 4474 | #endif |
| 4475 | /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */ |
| 4476 | initialize_context(&ctx); |
| 4477 | is_in_dquote = 0; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4478 | while (1) { |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4479 | const char *is_ifs; |
| 4480 | const char *is_special; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4481 | int ch; |
| 4482 | int next; |
| 4483 | int redir_fd; |
| 4484 | redir_type redir_style; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4485 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4486 | if (is_in_dquote) { |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4487 | if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4488 | goto parse_error; |
| 4489 | } |
| 4490 | /* We reached closing '"' */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4491 | is_in_dquote = 0; |
| 4492 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4493 | ch = i_getch(input); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4494 | debug_printf_parse(": ch=%c (%d) escape=%d\n", |
| 4495 | ch, ch, dest.o_escape); |
| 4496 | if (ch == EOF) { |
| 4497 | struct pipe *pi; |
| 4498 | if (done_word(&dest, &ctx)) { |
| 4499 | goto parse_error; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4500 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4501 | o_free(&dest); |
| 4502 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4503 | pi = ctx.list_head; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4504 | /* If we got nothing... */ |
| 4505 | // TODO: test script consisting of just "&" |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4506 | if (pi->num_cmds == 0 |
| 4507 | IF_HAS_KEYWORDS( && pi->res_word == RES_NONE) |
| 4508 | ) { |
| 4509 | free_pipe_list(pi, 0); |
| 4510 | pi = NULL; |
| 4511 | } |
| 4512 | debug_printf_parse("parse_stream return %p\n", pi); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4513 | #if !BB_MMU |
| 4514 | debug_printf_parse("as_string '%s'\n", ctx.as_string.data); |
| 4515 | if (pstring) |
| 4516 | *pstring = ctx.as_string.data; |
| 4517 | else |
| 4518 | o_free_unsafe(&ctx.as_string); |
| 4519 | #endif |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4520 | return pi; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4521 | } |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4522 | #if !BB_MMU |
| 4523 | o_addchr(&ctx.as_string, ch); |
| 4524 | #endif |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4525 | is_ifs = strchr(G.ifs, ch); |
| 4526 | is_special = strchr("<>;&|(){}#'" /* special outside of "str" */ |
| 4527 | "\\$\"" USE_HUSH_TICK("`") /* always special */ |
| 4528 | , ch); |
| 4529 | |
| 4530 | if (!is_special && !is_ifs) { /* ordinary char */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4531 | o_addQchr(&dest, ch); |
| 4532 | if ((dest.o_assignment == MAYBE_ASSIGNMENT |
| 4533 | || dest.o_assignment == WORD_IS_KEYWORD) |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4534 | && ch == '=' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4535 | && is_assignment(dest.data) |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4536 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4537 | dest.o_assignment = DEFINITELY_ASSIGNMENT; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4538 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4539 | continue; |
| 4540 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4541 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4542 | if (is_ifs) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4543 | if (done_word(&dest, &ctx)) { |
| 4544 | goto parse_error; |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 4545 | } |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 4546 | if (ch == '\n') { |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 4547 | #if ENABLE_HUSH_CASE |
| 4548 | /* "case ... in <newline> word) ..." - |
| 4549 | * newlines are ignored (but ';' wouldn't be) */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4550 | if (ctx.command->argv == NULL |
| 4551 | && ctx.ctx_res_w == RES_MATCH |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 4552 | ) { |
| 4553 | continue; |
| 4554 | } |
| 4555 | #endif |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4556 | /* Treat newline as a command separator. */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4557 | done_pipe(&ctx, PIPE_SEQ); |
| 4558 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4559 | ch = ';'; |
Denis Vlasenko | 7c98612 | 2009-04-04 12:15:42 +0000 | [diff] [blame] | 4560 | /* note: if (is_ifs) continue; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4561 | * will still trigger for us */ |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4562 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4563 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4564 | if (end_trigger && end_trigger == ch) { |
| 4565 | //TODO: disallow "{ cmd }" without semicolon |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4566 | if (done_word(&dest, &ctx)) { |
| 4567 | goto parse_error; |
| 4568 | } |
| 4569 | done_pipe(&ctx, PIPE_SEQ); |
| 4570 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4571 | /* Do we sit outside of any if's, loops or case's? */ |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 4572 | if (!HAS_KEYWORDS |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4573 | 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] | 4574 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4575 | debug_printf_parse("parse_stream return %p: " |
| 4576 | "end_trigger char found\n", |
| 4577 | ctx.list_head); |
| 4578 | o_free(&dest); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4579 | #if !BB_MMU |
| 4580 | debug_printf_parse("as_string '%s'\n", ctx.as_string.data); |
| 4581 | if (pstring) |
| 4582 | *pstring = ctx.as_string.data; |
| 4583 | else |
| 4584 | o_free_unsafe(&ctx.as_string); |
| 4585 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4586 | return ctx.list_head; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4587 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4588 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4589 | if (is_ifs) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4590 | continue; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4591 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4592 | if (dest.o_assignment == MAYBE_ASSIGNMENT) { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4593 | /* ch is a special char and thus this word |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4594 | * cannot be an assignment */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4595 | dest.o_assignment = NOT_ASSIGNMENT; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4596 | } |
| 4597 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4598 | next = '\0'; |
| 4599 | if (ch != '\n') { |
| 4600 | next = i_peek(input); |
| 4601 | } |
| 4602 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4603 | switch (ch) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4604 | case '#': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4605 | if (dest.length == 0) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4606 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4607 | ch = i_peek(input); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4608 | if (ch == EOF || ch == '\n') |
| 4609 | break; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4610 | i_getch(input); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4611 | /* note: we do not add it to &ctx.as_string */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4612 | } |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4613 | #if !BB_MMU |
| 4614 | //TODO: go back one char? |
| 4615 | o_addchr(&ctx.as_string, '\n'); |
| 4616 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4617 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4618 | o_addQchr(&dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4619 | } |
| 4620 | break; |
| 4621 | case '\\': |
| 4622 | if (next == EOF) { |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4623 | syntax("\\<eof>"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4624 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4625 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4626 | o_addchr(&dest, '\\'); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4627 | ch = i_getch(input); |
| 4628 | o_addchr(&dest, ch); |
| 4629 | #if !BB_MMU |
| 4630 | o_addchr(&ctx.as_string, ch); |
| 4631 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4632 | break; |
| 4633 | case '$': |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4634 | if (handle_dollar(&ctx.as_string, &dest, input) != 0) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4635 | debug_printf_parse("parse_stream parse error: " |
| 4636 | "handle_dollar returned non-0\n"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4637 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4638 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4639 | break; |
| 4640 | case '\'': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4641 | dest.nonnull = 1; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4642 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4643 | ch = i_getch(input); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4644 | if (ch == EOF) { |
| 4645 | syntax("unterminated '"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4646 | goto parse_error; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4647 | } |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4648 | #if !BB_MMU |
| 4649 | o_addchr(&ctx.as_string, ch); |
| 4650 | #endif |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4651 | if (ch == '\'') |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4652 | break; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4653 | if (dest.o_assignment == NOT_ASSIGNMENT) |
| 4654 | o_addqchr(&dest, ch); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4655 | else |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4656 | o_addchr(&dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4657 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4658 | break; |
| 4659 | case '"': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4660 | dest.nonnull = 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4661 | is_in_dquote ^= 1; /* invert */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4662 | if (dest.o_assignment == NOT_ASSIGNMENT) |
| 4663 | dest.o_escape ^= 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4664 | break; |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4665 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4666 | case '`': { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4667 | //int pos = dest.length; |
| 4668 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 4669 | o_addchr(&dest, '`'); |
| 4670 | add_till_backquote(&dest, input); |
| 4671 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 4672 | //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4673 | break; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4674 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4675 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4676 | case '>': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4677 | redir_fd = redirect_opt_num(&dest); |
| 4678 | if (done_word(&dest, &ctx)) { |
| 4679 | goto parse_error; |
| 4680 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4681 | redir_style = REDIRECT_OVERWRITE; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4682 | if (next == '>') { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4683 | redir_style = REDIRECT_APPEND; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4684 | ch = i_getch(input); |
| 4685 | #if !BB_MMU |
| 4686 | o_addchr(&ctx.as_string, ch); |
| 4687 | #endif |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4688 | } |
| 4689 | #if 0 |
| 4690 | else if (next == '(') { |
| 4691 | syntax(">(process) not supported"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4692 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4693 | } |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4694 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4695 | setup_redirect(&ctx, redir_fd, redir_style, input); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4696 | break; |
| 4697 | case '<': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4698 | redir_fd = redirect_opt_num(&dest); |
| 4699 | if (done_word(&dest, &ctx)) { |
| 4700 | goto parse_error; |
| 4701 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4702 | redir_style = REDIRECT_INPUT; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4703 | if (next == '<') { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4704 | redir_style = REDIRECT_HEREIS; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4705 | ch = i_getch(input); |
| 4706 | #if !BB_MMU |
| 4707 | o_addchr(&ctx.as_string, ch); |
| 4708 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4709 | } else if (next == '>') { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4710 | redir_style = REDIRECT_IO; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4711 | ch = i_getch(input); |
| 4712 | #if !BB_MMU |
| 4713 | o_addchr(&ctx.as_string, ch); |
| 4714 | #endif |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4715 | } |
| 4716 | #if 0 |
| 4717 | else if (next == '(') { |
| 4718 | syntax("<(process) not supported"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4719 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4720 | } |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4721 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4722 | setup_redirect(&ctx, redir_fd, redir_style, input); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4723 | break; |
| 4724 | case ';': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4725 | #if ENABLE_HUSH_CASE |
| 4726 | case_semi: |
| 4727 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4728 | if (done_word(&dest, &ctx)) { |
| 4729 | goto parse_error; |
| 4730 | } |
| 4731 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4732 | #if ENABLE_HUSH_CASE |
| 4733 | /* Eat multiple semicolons, detect |
| 4734 | * whether it means something special */ |
| 4735 | while (1) { |
| 4736 | ch = i_peek(input); |
| 4737 | if (ch != ';') |
| 4738 | break; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4739 | ch = i_getch(input); |
| 4740 | #if !BB_MMU |
| 4741 | o_addchr(&ctx.as_string, ch); |
| 4742 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4743 | if (ctx.ctx_res_w == RES_CASEI) { |
| 4744 | ctx.ctx_dsemicolon = 1; |
| 4745 | ctx.ctx_res_w = RES_MATCH; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4746 | break; |
| 4747 | } |
| 4748 | } |
| 4749 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4750 | new_cmd: |
| 4751 | /* We just finished a cmd. New one may start |
| 4752 | * with an assignment */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4753 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4754 | break; |
| 4755 | case '&': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4756 | if (done_word(&dest, &ctx)) { |
| 4757 | goto parse_error; |
| 4758 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4759 | if (next == '&') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4760 | ch = i_getch(input); |
| 4761 | #if !BB_MMU |
| 4762 | o_addchr(&ctx.as_string, ch); |
| 4763 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4764 | done_pipe(&ctx, PIPE_AND); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4765 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4766 | done_pipe(&ctx, PIPE_BG); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4767 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4768 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4769 | case '|': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4770 | if (done_word(&dest, &ctx)) { |
| 4771 | goto parse_error; |
| 4772 | } |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 4773 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4774 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 4775 | break; /* we are in case's "word | word)" */ |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 4776 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4777 | if (next == '|') { /* || */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4778 | ch = i_getch(input); |
| 4779 | #if !BB_MMU |
| 4780 | o_addchr(&ctx.as_string, ch); |
| 4781 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4782 | done_pipe(&ctx, PIPE_OR); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4783 | } else { |
| 4784 | /* we could pick up a file descriptor choice here |
| 4785 | * with redirect_opt_num(), but bash doesn't do it. |
| 4786 | * "echo foo 2| cat" yields "foo 2". */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4787 | done_command(&ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4788 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4789 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4790 | case '(': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4791 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 4792 | /* "case... in [(]word)..." - skip '(' */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4793 | if (ctx.ctx_res_w == RES_MATCH |
| 4794 | && ctx.command->argv == NULL /* not (word|(... */ |
| 4795 | && dest.length == 0 /* not word(... */ |
| 4796 | && dest.nonnull == 0 /* not ""(... */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4797 | ) { |
| 4798 | continue; |
| 4799 | } |
| 4800 | #endif |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4801 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4802 | if (dest.length != 0 /* not just () but word() */ |
| 4803 | && dest.nonnull == 0 /* not a"b"c() */ |
| 4804 | && ctx.command->argv == NULL /* it's the first word */ |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4805 | //TODO: "func ( ) {...}" - note spaces - is valid format too in bash |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4806 | && i_peek(input) == ')' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4807 | && !match_reserved_word(&dest) |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4808 | ) { |
| 4809 | bb_error_msg("seems like a function definition"); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4810 | i_getch(input); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4811 | //if !BB_MMU o_addchr(&ctx.as_string... |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4812 | do { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4813 | //TODO: do it properly. |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4814 | ch = i_getch(input); |
| 4815 | } while (ch == ' ' || ch == '\n'); |
| 4816 | if (ch != '{') { |
| 4817 | syntax("was expecting {"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4818 | goto parse_error; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 4819 | } |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4820 | ch = 'F'; /* magic value */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4821 | } |
| 4822 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4823 | case '{': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4824 | if (parse_group(&dest, &ctx, input, ch) != 0) { |
| 4825 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4826 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 4827 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4828 | case ')': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4829 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4830 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 4831 | goto case_semi; |
| 4832 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4833 | case '}': |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 4834 | /* proper use of this character is caught by end_trigger: |
| 4835 | * if we see {, we call parse_group(..., end_trigger='}') |
| 4836 | * and it will match } earlier (not here). */ |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 4837 | syntax("unexpected } or )"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4838 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4839 | default: |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 4840 | if (HUSH_DEBUG) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4841 | bb_error_msg_and_die("BUG: unexpected %c\n", ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4842 | } |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4843 | } /* while (1) */ |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4844 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4845 | parse_error: |
| 4846 | { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 4847 | struct parse_context *pctx; |
| 4848 | IF_HAS_KEYWORDS(struct parse_context *p2;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4849 | |
| 4850 | /* Clean up allocated tree. |
| 4851 | * Samples for finding leaks on syntax error recovery path. |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4852 | * Run them from interactive shell, watch pmap `pidof hush`. |
| 4853 | * while if false; then false; fi do break; done |
| 4854 | * (bash accepts it) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4855 | * while if false; then false; fi; do break; fi |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 4856 | * Samples to catch leaks at execution: |
| 4857 | * while if (true | {true;}); then echo ok; fi; do break; done |
| 4858 | * 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] | 4859 | */ |
| 4860 | pctx = &ctx; |
| 4861 | do { |
| 4862 | /* Update pipe/command counts, |
| 4863 | * otherwise freeing may miss some */ |
| 4864 | done_pipe(pctx, PIPE_SEQ); |
| 4865 | debug_printf_clean("freeing list %p from ctx %p\n", |
| 4866 | pctx->list_head, pctx); |
| 4867 | debug_print_tree(pctx->list_head, 0); |
| 4868 | free_pipe_list(pctx->list_head, 0); |
| 4869 | debug_printf_clean("freed list %p\n", pctx->list_head); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4870 | #if !BB_MMU |
| 4871 | o_free_unsafe(&pctx->as_string); |
| 4872 | #endif |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 4873 | IF_HAS_KEYWORDS(p2 = pctx->stack;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4874 | if (pctx != &ctx) { |
| 4875 | free(pctx); |
| 4876 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 4877 | IF_HAS_KEYWORDS(pctx = p2;) |
| 4878 | } while (HAS_KEYWORDS && pctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4879 | /* Free text, clear all dest fields */ |
| 4880 | o_free(&dest); |
| 4881 | /* If we are not in top-level parse, we return, |
| 4882 | * our caller will propagate error. |
| 4883 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4884 | if (end_trigger != ';') { |
| 4885 | #if !BB_MMU |
| 4886 | if (pstring) |
| 4887 | *pstring = NULL; |
| 4888 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4889 | return ERR_PTR; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4890 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4891 | /* Discard cached input, force prompt */ |
| 4892 | input->p = NULL; |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 4893 | USE_HUSH_INTERACTIVE(input->promptme = 1;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4894 | goto reset; |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4895 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4896 | } |
| 4897 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4898 | /* Executing from string: eval, sh -c '...' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4899 | * or from file: /etc/profile, . file, sh <script>, sh (intereactive) |
| 4900 | * end_trigger controls how often we stop parsing |
| 4901 | * NUL: parse all, execute, return |
| 4902 | * ';': parse till ';' or newline, execute, repeat till EOF |
| 4903 | */ |
| 4904 | 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] | 4905 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4906 | while (1) { |
| 4907 | struct pipe *pipe_list; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4908 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4909 | pipe_list = parse_stream(NULL, inp, end_trigger); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4910 | if (!pipe_list) /* EOF */ |
| 4911 | break; |
| 4912 | debug_print_tree(pipe_list, 0); |
| 4913 | debug_printf_exec("parse_and_run_stream: run_and_free_list\n"); |
| 4914 | run_and_free_list(pipe_list); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4915 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4916 | } |
| 4917 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4918 | static void parse_and_run_string(const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4919 | { |
| 4920 | struct in_str input; |
| 4921 | setup_string_in_str(&input, s); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4922 | parse_and_run_stream(&input, '\0'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4923 | } |
| 4924 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4925 | static void parse_and_run_file(FILE *f) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4926 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4927 | struct in_str input; |
| 4928 | setup_file_in_str(&input, f); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4929 | parse_and_run_stream(&input, ';'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4930 | } |
| 4931 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 4932 | /* Called a few times only (or even once if "sh -c") */ |
| 4933 | static void block_signals(int second_time) |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 4934 | { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 4935 | unsigned sig; |
| 4936 | unsigned mask; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4937 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 4938 | mask = (1 << SIGQUIT); |
| 4939 | if (G_interactive_fd) { |
| 4940 | mask = 0 |
| 4941 | | (1 << SIGQUIT) |
| 4942 | | (1 << SIGTERM) |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 4943 | //TODO | (1 << SIGHUP) |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 4944 | #if ENABLE_HUSH_JOB |
| 4945 | | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP) |
| 4946 | #endif |
| 4947 | | (1 << SIGINT) |
| 4948 | ; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 4949 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 4950 | G.non_DFL_mask = mask; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 4951 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 4952 | if (!second_time) |
| 4953 | sigprocmask(SIG_SETMASK, NULL, &G.blocked_set); |
| 4954 | sig = 0; |
| 4955 | while (mask) { |
| 4956 | if (mask & 1) |
| 4957 | sigaddset(&G.blocked_set, sig); |
| 4958 | mask >>= 1; |
| 4959 | sig++; |
| 4960 | } |
| 4961 | sigdelset(&G.blocked_set, SIGCHLD); |
| 4962 | |
| 4963 | sigprocmask(SIG_SETMASK, &G.blocked_set, |
| 4964 | second_time ? NULL : &G.inherited_set); |
| 4965 | /* POSIX allows shell to re-enable SIGCHLD |
| 4966 | * even if it was SIG_IGN on entry */ |
| 4967 | // G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */ |
| 4968 | if (!second_time) |
| 4969 | signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler); |
| 4970 | } |
| 4971 | |
| 4972 | #if ENABLE_HUSH_JOB |
| 4973 | /* helper */ |
| 4974 | static void maybe_set_to_sigexit(int sig) |
| 4975 | { |
| 4976 | void (*handler)(int); |
| 4977 | /* non_DFL_mask'ed signals are, well, masked, |
| 4978 | * no need to set handler for them. |
| 4979 | */ |
| 4980 | if (!((G.non_DFL_mask >> sig) & 1)) { |
| 4981 | handler = signal(sig, sigexit); |
| 4982 | if (handler == SIG_IGN) /* oops... restore back to IGN! */ |
| 4983 | signal(sig, handler); |
| 4984 | } |
| 4985 | } |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 4986 | /* Set handlers to restore tty pgrp and exit */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 4987 | static void set_fatal_handlers(void) |
| 4988 | { |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 4989 | /* We _must_ restore tty pgrp on fatal signals */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 4990 | if (HUSH_DEBUG) { |
| 4991 | maybe_set_to_sigexit(SIGILL ); |
| 4992 | maybe_set_to_sigexit(SIGFPE ); |
| 4993 | maybe_set_to_sigexit(SIGBUS ); |
| 4994 | maybe_set_to_sigexit(SIGSEGV); |
| 4995 | maybe_set_to_sigexit(SIGTRAP); |
| 4996 | } /* else: hush is perfect. what SEGV? */ |
| 4997 | maybe_set_to_sigexit(SIGABRT); |
| 4998 | /* bash 3.2 seems to handle these just like 'fatal' ones */ |
| 4999 | maybe_set_to_sigexit(SIGPIPE); |
| 5000 | maybe_set_to_sigexit(SIGALRM); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5001 | //TODO: disable and move down when proper SIGHUP handling is added |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5002 | maybe_set_to_sigexit(SIGHUP ); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5003 | /* if we are interactive, [SIGHUP,] SIGTERM and SIGINT are masked. |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5004 | * if we aren't interactive... but in this case |
| 5005 | * we never want to restore pgrp on exit, and this fn is not called */ |
| 5006 | /*maybe_set_to_sigexit(SIGTERM);*/ |
| 5007 | /*maybe_set_to_sigexit(SIGINT );*/ |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 5008 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 5009 | #endif |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 5010 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5011 | static int set_mode(const char cstate, const char mode) |
| 5012 | { |
| 5013 | int state = (cstate == '-' ? 1 : 0); |
| 5014 | switch (mode) { |
| 5015 | case 'n': G.fake_mode = state; break; |
| 5016 | case 'x': /*G.debug_mode = state;*/ break; |
| 5017 | default: return EXIT_FAILURE; |
| 5018 | } |
| 5019 | return EXIT_SUCCESS; |
| 5020 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5021 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 5022 | int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Matt Kraai | 2d91deb | 2001-08-01 17:21:35 +0000 | [diff] [blame] | 5023 | int hush_main(int argc, char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5024 | { |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5025 | static const struct variable const_shell_ver = { |
| 5026 | .next = NULL, |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 5027 | .varstr = (char*)hush_version_str, |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5028 | .max_len = 1, /* 0 can provoke free(name) */ |
| 5029 | .flg_export = 1, |
| 5030 | .flg_read_only = 1, |
| 5031 | }; |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5032 | int signal_mask_is_inited = 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5033 | int opt; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5034 | char **e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5035 | struct variable *cur_var; |
Eric Andersen | bc604a2 | 2001-05-16 05:24:03 +0000 | [diff] [blame] | 5036 | |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 5037 | INIT_G(); |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5038 | if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */ |
| 5039 | G.last_return_code = EXIT_SUCCESS; |
| 5040 | #if !BB_MMU |
| 5041 | G.argv0_for_re_execing = argv[0]; |
| 5042 | #endif |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5043 | /* Deal with HUSH_VERSION */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5044 | G.shell_ver = const_shell_ver; /* copying struct here */ |
| 5045 | G.top_var = &G.shell_ver; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 5046 | debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION"); |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5047 | unsetenv("HUSH_VERSION"); /* in case it exists in initial env */ |
| 5048 | /* Initialize our shell local variables with the values |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5049 | * currently living in the environment */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5050 | cur_var = G.top_var; |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5051 | e = environ; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5052 | if (e) while (*e) { |
| 5053 | char *value = strchr(*e, '='); |
| 5054 | if (value) { /* paranoia */ |
| 5055 | cur_var->next = xzalloc(sizeof(*cur_var)); |
| 5056 | cur_var = cur_var->next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 5057 | cur_var->varstr = *e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5058 | cur_var->max_len = strlen(*e); |
| 5059 | cur_var->flg_export = 1; |
| 5060 | } |
| 5061 | e++; |
| 5062 | } |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 5063 | debug_printf_env("putenv '%s'\n", hush_version_str); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 5064 | putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */ |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 5065 | #if ENABLE_FEATURE_EDITING |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5066 | G.line_input_state = new_line_input_t(FOR_SHELL); |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 5067 | #endif |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5068 | G.global_argc = argc; |
| 5069 | G.global_argv = argv; |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 5070 | /* Initialize some more globals to non-zero values */ |
| 5071 | set_cwd(); |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5072 | #if ENABLE_HUSH_INTERACTIVE |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 5073 | if (ENABLE_FEATURE_EDITING) |
| 5074 | cmdedit_set_initial_prompt(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5075 | G.PS2 = "> "; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5076 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 5077 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5078 | /* Shell is non-interactive at first. We need to call |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5079 | * block_signals(0) if we are going to execute "sh <script>", |
| 5080 | * "sh -c <cmds>" or login shell's /etc/profile and friends. |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5081 | * If we later decide that we are interactive, we run block_signals(0) |
| 5082 | * (or re-run block_signals(1) if we ran block_signals(0) before) |
| 5083 | * in order to intercept (more) signals. |
| 5084 | */ |
| 5085 | |
| 5086 | /* Parse options */ |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 5087 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */ |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5088 | while (1) { |
| 5089 | opt = getopt(argc, argv, "c:xins" |
| 5090 | #if !BB_MMU |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5091 | "$:!:?:D:R:V:" |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5092 | #endif |
| 5093 | ); |
| 5094 | if (opt <= 0) |
| 5095 | break; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5096 | switch (opt) { |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5097 | case 'c': |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5098 | if (!G.root_pid) |
| 5099 | G.root_pid = getpid(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5100 | G.global_argv = argv + optind; |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 5101 | if (!argv[optind]) { |
| 5102 | /* -c 'script' (no params): prevent empty $0 */ |
| 5103 | *--G.global_argv = argv[0]; |
| 5104 | optind--; |
| 5105 | } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5106 | G.global_argc = argc - optind; |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5107 | block_signals(0); /* 0: called 1st time */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5108 | parse_and_run_string(optarg); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5109 | goto final_return; |
| 5110 | case 'i': |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 5111 | /* Well, we cannot just declare interactiveness, |
| 5112 | * we have to have some stuff (ctty, etc) */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5113 | /* G_interactive_fd++; */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5114 | break; |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 5115 | case 's': |
| 5116 | /* "-s" means "read from stdin", but this is how we always |
| 5117 | * operate, so simply do nothing here. */ |
| 5118 | break; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5119 | #if !BB_MMU |
| 5120 | case '$': |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 5121 | G.root_pid = bb_strtou(optarg, &optarg, 16); |
| 5122 | optarg++; |
| 5123 | G.last_bg_pid = bb_strtou(optarg, &optarg, 16); |
| 5124 | optarg++; |
| 5125 | G.last_return_code = bb_strtou(optarg, &optarg, 16); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5126 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 5127 | optarg++; |
| 5128 | G.depth_of_loop = bb_strtou(optarg, &optarg, 16); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5129 | # endif |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 5130 | break; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5131 | case 'R': |
| 5132 | case 'V': |
| 5133 | set_local_var(xstrdup(optarg), 0, opt == 'R'); |
| 5134 | break; |
| 5135 | #endif |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5136 | case 'n': |
| 5137 | case 'x': |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5138 | if (!set_mode('-', opt)) |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5139 | break; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5140 | default: |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 5141 | #ifndef BB_VER |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5142 | fprintf(stderr, "Usage: sh [FILE]...\n" |
| 5143 | " or: sh -c command [args]...\n\n"); |
| 5144 | exit(EXIT_FAILURE); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 5145 | #else |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5146 | bb_show_usage(); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 5147 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5148 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5149 | } /* option parsing loop */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5150 | |
| 5151 | if (!G.root_pid) |
| 5152 | G.root_pid = getpid(); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5153 | |
| 5154 | /* If we are login shell... */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5155 | if (argv[0] && argv[0][0] == '-') { |
| 5156 | FILE *input; |
| 5157 | /* XXX what should argv be while sourcing /etc/profile? */ |
| 5158 | debug_printf("sourcing /etc/profile\n"); |
| 5159 | input = fopen_for_read("/etc/profile"); |
| 5160 | if (input != NULL) { |
| 5161 | close_on_exec_on(fileno(input)); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5162 | block_signals(0); /* 0: called 1st time */ |
| 5163 | signal_mask_is_inited = 1; |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5164 | parse_and_run_file(input); |
| 5165 | fclose(input); |
| 5166 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5167 | /* bash: after sourcing /etc/profile, |
| 5168 | * tries to source (in the given order): |
| 5169 | * ~/.bash_profile, ~/.bash_login, ~/.profile, |
| 5170 | * stopping of first found. --noprofile turns this off. |
| 5171 | * bash also sources ~/.bash_logout on exit. |
| 5172 | * If called as sh, skips .bash_XXX files. |
| 5173 | */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5174 | } |
| 5175 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5176 | if (argv[optind]) { |
| 5177 | FILE *input; |
| 5178 | /* |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5179 | * "bash <script>" (which is never interactive (unless -i?)) |
| 5180 | * sources $BASH_ENV here (without scanning $PATH). |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5181 | * If called as sh, does the same but with $ENV. |
| 5182 | */ |
| 5183 | debug_printf("running script '%s'\n", argv[optind]); |
| 5184 | G.global_argv = argv + optind; |
| 5185 | G.global_argc = argc - optind; |
| 5186 | input = xfopen_for_read(argv[optind]); |
| 5187 | close_on_exec_on(fileno(input)); |
| 5188 | if (!signal_mask_is_inited) |
| 5189 | block_signals(0); /* 0: called 1st time */ |
| 5190 | parse_and_run_file(input); |
| 5191 | #if ENABLE_FEATURE_CLEAN_UP |
| 5192 | fclose(input); |
| 5193 | #endif |
| 5194 | goto final_return; |
| 5195 | } |
| 5196 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5197 | /* Up to here, shell was non-interactive. Now it may become one. |
| 5198 | * NB: don't forget to (re)run block_signals(0/1) as needed. |
| 5199 | */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5200 | |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5201 | /* 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] | 5202 | * the following conditions are met: |
Denis Vlasenko | 55b2de7 | 2007-04-18 17:21:28 +0000 | [diff] [blame] | 5203 | * no -c command |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5204 | * no arguments remaining or the -s flag given |
| 5205 | * standard input is a terminal |
| 5206 | * standard output is a terminal |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5207 | * Refer to Posix.2, the description of the 'sh' utility. |
| 5208 | */ |
| 5209 | #if ENABLE_HUSH_JOB |
| 5210 | if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5211 | G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5212 | debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5213 | //TODO: "interactive" and "have job control" are two different things. |
| 5214 | //If tcgetpgrp fails here, "have job control" is false, but "interactive" |
| 5215 | //should stay on! Currently, we mix these into one. |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5216 | if (G.saved_tty_pgrp >= 0) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5217 | /* try to dup stdin to high fd#, >= 255 */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5218 | G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255); |
| 5219 | if (G_interactive_fd < 0) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5220 | /* try to dup to any fd */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5221 | G_interactive_fd = dup(STDIN_FILENO); |
| 5222 | if (G_interactive_fd < 0) |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5223 | /* give up */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5224 | G_interactive_fd = 0; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5225 | } |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5226 | // TODO: track & disallow any attempts of user |
| 5227 | // to (inadvertently) close/redirect it |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5228 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5229 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5230 | debug_printf("interactive_fd:%d\n", G_interactive_fd); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5231 | if (G_interactive_fd) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5232 | pid_t shell_pgrp; |
| 5233 | |
| 5234 | /* We are indeed interactive shell, and we will perform |
| 5235 | * job control. Setting up for that. */ |
| 5236 | |
| 5237 | close_on_exec_on(G_interactive_fd); |
| 5238 | /* If we were run as 'hush &', sleep until we are |
| 5239 | * in the foreground (tty pgrp == our pgrp). |
| 5240 | * If we get started under a job aware app (like bash), |
| 5241 | * make sure we are now in charge so we don't fight over |
| 5242 | * who gets the foreground */ |
| 5243 | while (1) { |
| 5244 | shell_pgrp = getpgrp(); |
| 5245 | G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd); |
| 5246 | if (G.saved_tty_pgrp == shell_pgrp) |
| 5247 | break; |
| 5248 | /* send TTIN to ourself (should stop us) */ |
| 5249 | kill(- shell_pgrp, SIGTTIN); |
| 5250 | } |
| 5251 | /* Block some signals */ |
| 5252 | block_signals(signal_mask_is_inited); |
| 5253 | /* Set other signals to restore saved_tty_pgrp */ |
| 5254 | set_fatal_handlers(); |
| 5255 | /* Put ourselves in our own process group */ |
| 5256 | bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */ |
| 5257 | /* Grab control of the terminal */ |
| 5258 | tcsetpgrp(G_interactive_fd, getpid()); |
Denis Vlasenko | 4ecfcdc | 2008-02-11 08:32:31 +0000 | [diff] [blame] | 5259 | /* -1 is special - makes xfuncs longjmp, not exit |
Denis Vlasenko | c04163a | 2008-02-11 08:30:53 +0000 | [diff] [blame] | 5260 | * (we reset die_sleep = 0 whereever we [v]fork) */ |
| 5261 | die_sleep = -1; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5262 | if (setjmp(die_jmp)) { |
| 5263 | /* xfunc has failed! die die die */ |
| 5264 | hush_exit(xfunc_error_retval); |
| 5265 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5266 | } else if (!signal_mask_is_inited) { |
| 5267 | block_signals(0); /* 0: called 1st time */ |
| 5268 | } /* else: block_signals(0) was done before */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5269 | #elif ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5270 | /* No job control compiled in, only prompt/line editing */ |
| 5271 | if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5272 | G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255); |
| 5273 | if (G_interactive_fd < 0) { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5274 | /* try to dup to any fd */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5275 | G_interactive_fd = dup(STDIN_FILENO); |
| 5276 | if (G_interactive_fd < 0) |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5277 | /* give up */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5278 | G_interactive_fd = 0; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5279 | } |
| 5280 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5281 | if (G_interactive_fd) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5282 | close_on_exec_on(G_interactive_fd); |
| 5283 | block_signals(signal_mask_is_inited); |
| 5284 | } else if (!signal_mask_is_inited) { |
| 5285 | block_signals(0); |
| 5286 | } |
| 5287 | #else |
| 5288 | /* We have interactiveness code disabled */ |
| 5289 | if (!signal_mask_is_inited) { |
| 5290 | block_signals(0); |
| 5291 | } |
| 5292 | #endif |
| 5293 | /* bash: |
| 5294 | * if interactive but not a login shell, sources ~/.bashrc |
| 5295 | * (--norc turns this off, --rcfile <file> overrides) |
| 5296 | */ |
| 5297 | |
| 5298 | if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) { |
Mike Frysinger | 258275d | 2009-04-05 21:19:43 +0000 | [diff] [blame] | 5299 | printf("\n\n%s hush - the humble shell\n", bb_banner); |
Mike Frysinger | b2705e1 | 2009-03-23 08:44:02 +0000 | [diff] [blame] | 5300 | printf("Enter 'help' for a list of built-in commands.\n\n"); |
| 5301 | } |
| 5302 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5303 | parse_and_run_file(stdin); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5304 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5305 | final_return: |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 5306 | #if ENABLE_FEATURE_CLEAN_UP |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5307 | if (G.cwd != bb_msg_unknown) |
| 5308 | free((char*)G.cwd); |
| 5309 | cur_var = G.top_var->next; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5310 | while (cur_var) { |
| 5311 | struct variable *tmp = cur_var; |
| 5312 | if (!cur_var->max_len) |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 5313 | free(cur_var->varstr); |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5314 | cur_var = cur_var->next; |
| 5315 | free(tmp); |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 5316 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5317 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5318 | hush_exit(G.last_return_code); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5319 | } |
Denis Vlasenko | 96702ca | 2007-11-23 23:28:55 +0000 | [diff] [blame] | 5320 | |
| 5321 | |
| 5322 | #if ENABLE_LASH |
| 5323 | int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 5324 | int lash_main(int argc, char **argv) |
| 5325 | { |
| 5326 | //bb_error_msg("lash is deprecated, please use hush instead"); |
| 5327 | return hush_main(argc, argv); |
| 5328 | } |
| 5329 | #endif |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5330 | |
| 5331 | |
| 5332 | /* |
| 5333 | * Built-ins |
| 5334 | */ |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5335 | static int builtin_trap(char **argv) |
| 5336 | { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5337 | int i; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5338 | int sig; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5339 | char *new_cmd; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5340 | |
| 5341 | if (!G.traps) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5342 | G.traps = xzalloc(sizeof(G.traps[0]) * NSIG); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5343 | |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 5344 | argv++; |
| 5345 | if (!*argv) { |
| 5346 | /* No args: print all trapped. This isn't 100% correct as we |
| 5347 | * should be escaping the cmd so that it can be pasted back in |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5348 | */ |
| 5349 | for (i = 0; i < NSIG; ++i) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5350 | if (G.traps[i]) |
| 5351 | printf("trap -- '%s' %s\n", G.traps[i], get_signame(i)); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5352 | return EXIT_SUCCESS; |
| 5353 | } |
| 5354 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5355 | new_cmd = NULL; |
| 5356 | i = 0; |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 5357 | /* If first arg is decimal: reset all specified signals */ |
| 5358 | sig = bb_strtou(*argv, NULL, 10); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5359 | if (errno == 0) { |
| 5360 | int ret; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5361 | set_all: |
| 5362 | ret = EXIT_SUCCESS; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5363 | while (*argv) { |
| 5364 | sig = get_signum(*argv++); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5365 | if (sig < 0 || sig >= NSIG) { |
| 5366 | ret = EXIT_FAILURE; |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 5367 | /* Mimic bash message exactly */ |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5368 | bb_perror_msg("trap: %s: invalid signal specification", argv[i]); |
| 5369 | continue; |
| 5370 | } |
| 5371 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5372 | free(G.traps[sig]); |
| 5373 | G.traps[sig] = xstrdup(new_cmd); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5374 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5375 | debug_printf("trap: setting SIG%s (%i) to '%s'", |
| 5376 | get_signame(sig), sig, G.traps[sig]); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5377 | |
| 5378 | /* There is no signal for 0 (EXIT) */ |
| 5379 | if (sig == 0) |
| 5380 | continue; |
| 5381 | |
| 5382 | if (new_cmd) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5383 | sigaddset(&G.blocked_set, sig); |
| 5384 | } else { |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 5385 | /* There was a trap handler, we are removing it |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5386 | * (if sig has non-DFL handling, |
| 5387 | * we don't need to do anything) */ |
| 5388 | if (sig < 32 && (G.non_DFL_mask & (1 << sig))) |
| 5389 | continue; |
| 5390 | sigdelset(&G.blocked_set, sig); |
| 5391 | } |
| 5392 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5393 | } |
| 5394 | return ret; |
| 5395 | } |
| 5396 | |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 5397 | /* First arg is "-": reset all specified to default */ |
| 5398 | /* First arg is "": ignore all specified */ |
| 5399 | /* Everything else: execute first arg upon signal */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5400 | if (!argv[1]) { |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5401 | bb_error_msg("trap: invalid arguments"); |
| 5402 | return EXIT_FAILURE; |
| 5403 | } |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 5404 | if (NOT_LONE_DASH(*argv)) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5405 | new_cmd = *argv; |
| 5406 | argv++; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5407 | goto set_all; |
| 5408 | } |
| 5409 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 5410 | static int builtin_true(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5411 | { |
| 5412 | return 0; |
| 5413 | } |
| 5414 | |
| 5415 | static int builtin_test(char **argv) |
| 5416 | { |
| 5417 | int argc = 0; |
| 5418 | while (*argv) { |
| 5419 | argc++; |
| 5420 | argv++; |
| 5421 | } |
| 5422 | return test_main(argc, argv - argc); |
| 5423 | } |
| 5424 | |
| 5425 | static int builtin_echo(char **argv) |
| 5426 | { |
| 5427 | int argc = 0; |
| 5428 | while (*argv) { |
| 5429 | argc++; |
| 5430 | argv++; |
| 5431 | } |
| 5432 | return echo_main(argc, argv - argc); |
| 5433 | } |
| 5434 | |
| 5435 | static int builtin_eval(char **argv) |
| 5436 | { |
| 5437 | int rcode = EXIT_SUCCESS; |
| 5438 | |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5439 | if (*++argv) { |
| 5440 | char *str = expand_strvec_to_string(argv); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5441 | /* bash: |
| 5442 | * eval "echo Hi; done" ("done" is syntax error): |
| 5443 | * "echo Hi" will not execute too. |
| 5444 | */ |
| 5445 | parse_and_run_string(str); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5446 | free(str); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5447 | rcode = G.last_return_code; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5448 | } |
| 5449 | return rcode; |
| 5450 | } |
| 5451 | |
| 5452 | static int builtin_cd(char **argv) |
| 5453 | { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5454 | const char *newdir = argv[1]; |
| 5455 | if (newdir == NULL) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5456 | /* bash does nothing (exitcode 0) if HOME is ""; if it's unset, |
| 5457 | * bash says "bash: cd: HOME not set" and does nothing (exitcode 1) |
| 5458 | */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5459 | newdir = getenv("HOME") ? : "/"; |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5460 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5461 | if (chdir(newdir)) { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5462 | /* Mimic bash message exactly */ |
| 5463 | bb_perror_msg("cd: %s", newdir); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5464 | return EXIT_FAILURE; |
| 5465 | } |
| 5466 | set_cwd(); |
| 5467 | return EXIT_SUCCESS; |
| 5468 | } |
| 5469 | |
| 5470 | static int builtin_exec(char **argv) |
| 5471 | { |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5472 | if (*++argv == NULL) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5473 | return EXIT_SUCCESS; /* bash does this */ |
| 5474 | { |
| 5475 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 5476 | nommu_save_t dummy; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5477 | #endif |
| 5478 | // FIXME: if exec fails, bash does NOT exit! We do... |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5479 | pseudo_exec_argv(&dummy, argv, 0, NULL); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5480 | /* never returns */ |
| 5481 | } |
| 5482 | } |
| 5483 | |
| 5484 | static int builtin_exit(char **argv) |
| 5485 | { |
| 5486 | // TODO: bash does it ONLY on top-level sh exit (+interacive only?) |
| 5487 | //puts("exit"); /* bash does it */ |
| 5488 | // TODO: warn if we have background jobs: "There are stopped jobs" |
| 5489 | // On second consecutive 'exit', exit anyway. |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5490 | if (*++argv == NULL) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5491 | hush_exit(G.last_return_code); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5492 | /* mimic bash: exit 123abc == exit 255 + error msg */ |
| 5493 | xfunc_error_retval = 255; |
| 5494 | /* bash: exit -2 == exit 254, no error msg */ |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5495 | hush_exit(xatoi(*argv) & 0xff); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5496 | } |
| 5497 | |
| 5498 | static int builtin_export(char **argv) |
| 5499 | { |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5500 | if (*++argv == NULL) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5501 | // TODO: |
| 5502 | // ash emits: export VAR='VAL' |
| 5503 | // bash: declare -x VAR="VAL" |
| 5504 | // (both also escape as needed (quotes, $, etc)) |
| 5505 | char **e = environ; |
| 5506 | if (e) |
| 5507 | while (*e) |
| 5508 | puts(*e++); |
| 5509 | return EXIT_SUCCESS; |
| 5510 | } |
| 5511 | |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5512 | do { |
| 5513 | const char *value; |
| 5514 | char *name = *argv; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5515 | |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5516 | value = strchr(name, '='); |
| 5517 | if (!value) { |
| 5518 | /* They are exporting something without a =VALUE */ |
| 5519 | struct variable *var; |
| 5520 | |
| 5521 | var = get_local_var(name); |
| 5522 | if (var) { |
| 5523 | var->flg_export = 1; |
| 5524 | debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr); |
| 5525 | putenv(var->varstr); |
| 5526 | } |
| 5527 | /* bash does not return an error when trying to export |
| 5528 | * an undefined variable. Do likewise. */ |
| 5529 | continue; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5530 | } |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5531 | set_local_var(xstrdup(name), 1, 0); |
| 5532 | } while (*++argv); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5533 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5534 | return EXIT_SUCCESS; |
| 5535 | } |
| 5536 | |
| 5537 | #if ENABLE_HUSH_JOB |
| 5538 | /* built-in 'fg' and 'bg' handler */ |
| 5539 | static int builtin_fg_bg(char **argv) |
| 5540 | { |
| 5541 | int i, jobnum; |
| 5542 | struct pipe *pi; |
| 5543 | |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5544 | if (!G_interactive_fd) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5545 | return EXIT_FAILURE; |
| 5546 | /* If they gave us no args, assume they want the last backgrounded task */ |
| 5547 | if (!argv[1]) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5548 | for (pi = G.job_list; pi; pi = pi->next) { |
| 5549 | if (pi->jobid == G.last_jobid) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5550 | goto found; |
| 5551 | } |
| 5552 | } |
| 5553 | bb_error_msg("%s: no current job", argv[0]); |
| 5554 | return EXIT_FAILURE; |
| 5555 | } |
| 5556 | if (sscanf(argv[1], "%%%d", &jobnum) != 1) { |
| 5557 | bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]); |
| 5558 | return EXIT_FAILURE; |
| 5559 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5560 | for (pi = G.job_list; pi; pi = pi->next) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5561 | if (pi->jobid == jobnum) { |
| 5562 | goto found; |
| 5563 | } |
| 5564 | } |
| 5565 | bb_error_msg("%s: %d: no such job", argv[0], jobnum); |
| 5566 | return EXIT_FAILURE; |
| 5567 | found: |
| 5568 | // TODO: bash prints a string representation |
| 5569 | // of job being foregrounded (like "sleep 1 | cat") |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 5570 | if (argv[0][0] == 'f') { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5571 | /* Put the job into the foreground. */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5572 | tcsetpgrp(G_interactive_fd, pi->pgrp); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5573 | } |
| 5574 | |
| 5575 | /* Restart the processes in the job */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 5576 | debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp); |
| 5577 | for (i = 0; i < pi->num_cmds; i++) { |
| 5578 | debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid); |
| 5579 | pi->cmds[i].is_stopped = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5580 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 5581 | pi->stopped_cmds = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5582 | |
| 5583 | i = kill(- pi->pgrp, SIGCONT); |
| 5584 | if (i < 0) { |
| 5585 | if (errno == ESRCH) { |
| 5586 | delete_finished_bg_job(pi); |
| 5587 | return EXIT_SUCCESS; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5588 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 5589 | bb_perror_msg("kill (SIGCONT)"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5590 | } |
| 5591 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 5592 | if (argv[0][0] == 'f') { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5593 | remove_bg_job(pi); |
| 5594 | return checkjobs_and_fg_shell(pi); |
| 5595 | } |
| 5596 | return EXIT_SUCCESS; |
| 5597 | } |
| 5598 | #endif |
| 5599 | |
| 5600 | #if ENABLE_HUSH_HELP |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 5601 | static int builtin_help(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5602 | { |
| 5603 | const struct built_in_command *x; |
| 5604 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 5605 | printf("\n" |
| 5606 | "Built-in commands:\n" |
| 5607 | "------------------\n"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5608 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
| 5609 | printf("%s\t%s\n", x->cmd, x->descr); |
| 5610 | } |
| 5611 | printf("\n\n"); |
| 5612 | return EXIT_SUCCESS; |
| 5613 | } |
| 5614 | #endif |
| 5615 | |
| 5616 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 5617 | static int builtin_jobs(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5618 | { |
| 5619 | struct pipe *job; |
| 5620 | const char *status_string; |
| 5621 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5622 | for (job = G.job_list; job; job = job->next) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 5623 | if (job->alive_cmds == job->stopped_cmds) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5624 | status_string = "Stopped"; |
| 5625 | else |
| 5626 | status_string = "Running"; |
| 5627 | |
| 5628 | printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext); |
| 5629 | } |
| 5630 | return EXIT_SUCCESS; |
| 5631 | } |
| 5632 | #endif |
| 5633 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 5634 | static int builtin_pwd(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5635 | { |
| 5636 | puts(set_cwd()); |
| 5637 | return EXIT_SUCCESS; |
| 5638 | } |
| 5639 | |
| 5640 | static int builtin_read(char **argv) |
| 5641 | { |
| 5642 | char *string; |
| 5643 | const char *name = argv[1] ? argv[1] : "REPLY"; |
Denis Vlasenko | a0e6512 | 2009-04-05 23:39:14 +0000 | [diff] [blame] | 5644 | //TODO: check that argv[1] is a valid variable name |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5645 | |
| 5646 | string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5647 | return set_local_var(string, 0, 0); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5648 | } |
| 5649 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5650 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set |
| 5651 | * built-in 'set' handler |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5652 | * SUSv3 says: |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5653 | * set [-abCefhmnuvx] [-o option] [argument...] |
| 5654 | * set [+abCefhmnuvx] [+o option] [argument...] |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5655 | * set -- [argument...] |
| 5656 | * set -o |
| 5657 | * set +o |
| 5658 | * Implementations shall support the options in both their hyphen and |
| 5659 | * plus-sign forms. These options can also be specified as options to sh. |
| 5660 | * Examples: |
| 5661 | * Write out all variables and their values: set |
| 5662 | * Set $1, $2, and $3 and set "$#" to 3: set c a b |
| 5663 | * Turn on the -x and -v options: set -xv |
| 5664 | * Unset all positional parameters: set -- |
| 5665 | * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x" |
| 5666 | * Set the positional parameters to the expansion of x, even if x expands |
| 5667 | * with a leading '-' or '+': set -- $x |
| 5668 | * |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5669 | * 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] | 5670 | */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5671 | static int builtin_set(char **argv) |
| 5672 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5673 | int n; |
| 5674 | char **pp, **g_argv; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5675 | char *arg = *++argv; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5676 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5677 | if (arg == NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5678 | struct variable *e; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5679 | for (e = G.top_var; e; e = e->next) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5680 | puts(e->varstr); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5681 | return EXIT_SUCCESS; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5682 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5683 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5684 | do { |
| 5685 | if (!strcmp(arg, "--")) { |
| 5686 | ++argv; |
| 5687 | goto set_argv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5688 | } |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5689 | |
| 5690 | if (arg[0] == '+' || arg[0] == '-') { |
| 5691 | for (n = 1; arg[n]; ++n) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5692 | if (set_mode(arg[0], arg[n])) |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5693 | goto error; |
| 5694 | continue; |
| 5695 | } |
| 5696 | |
| 5697 | break; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5698 | } while ((arg = *++argv) != NULL); |
| 5699 | /* Now argv[0] is 1st argument */ |
| 5700 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5701 | /* Only reset global_argv if we didn't process anything */ |
| 5702 | if (arg == NULL) |
| 5703 | return EXIT_SUCCESS; |
| 5704 | set_argv: |
| 5705 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5706 | /* NB: G.global_argv[0] ($0) is never freed/changed */ |
| 5707 | g_argv = G.global_argv; |
| 5708 | if (G.global_args_malloced) { |
| 5709 | pp = g_argv; |
| 5710 | while (*++pp) |
| 5711 | free(*pp); |
| 5712 | g_argv[1] = NULL; |
| 5713 | } else { |
| 5714 | G.global_args_malloced = 1; |
| 5715 | pp = xzalloc(sizeof(pp[0]) * 2); |
| 5716 | pp[0] = g_argv[0]; /* retain $0 */ |
| 5717 | g_argv = pp; |
| 5718 | } |
| 5719 | /* This realloc's G.global_argv */ |
| 5720 | G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1); |
| 5721 | |
| 5722 | n = 1; |
| 5723 | while (*++pp) |
| 5724 | n++; |
| 5725 | G.global_argc = n; |
| 5726 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5727 | return EXIT_SUCCESS; |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5728 | |
| 5729 | /* Nothing known, so abort */ |
| 5730 | error: |
| 5731 | bb_error_msg("set: %s: invalid option", arg); |
| 5732 | return EXIT_FAILURE; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5733 | } |
| 5734 | |
| 5735 | static int builtin_shift(char **argv) |
| 5736 | { |
| 5737 | int n = 1; |
| 5738 | if (argv[1]) { |
| 5739 | n = atoi(argv[1]); |
| 5740 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5741 | if (n >= 0 && n < G.global_argc) { |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 5742 | if (G.global_args_malloced) { |
| 5743 | int m = 1; |
| 5744 | while (m <= n) |
| 5745 | free(G.global_argv[m++]); |
| 5746 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5747 | G.global_argc -= n; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 5748 | memmove(&G.global_argv[1], &G.global_argv[n+1], |
| 5749 | G.global_argc * sizeof(G.global_argv[0])); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5750 | return EXIT_SUCCESS; |
| 5751 | } |
| 5752 | return EXIT_FAILURE; |
| 5753 | } |
| 5754 | |
| 5755 | static int builtin_source(char **argv) |
| 5756 | { |
| 5757 | FILE *input; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5758 | |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5759 | if (*++argv == NULL) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5760 | return EXIT_FAILURE; |
| 5761 | |
| 5762 | /* XXX search through $PATH is missing */ |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5763 | input = fopen_or_warn(*argv, "r"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5764 | if (!input) { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5765 | /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5766 | return EXIT_FAILURE; |
| 5767 | } |
| 5768 | close_on_exec_on(fileno(input)); |
| 5769 | |
| 5770 | /* Now run the file */ |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5771 | //TODO: |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5772 | /* 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] | 5773 | * (pointer only is OK!) on this stack frame, |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5774 | * set G.global_argv=argv+1, recurse, and restore. */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5775 | parse_and_run_file(input); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5776 | fclose(input); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5777 | return G.last_return_code; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5778 | } |
| 5779 | |
| 5780 | static int builtin_umask(char **argv) |
| 5781 | { |
| 5782 | mode_t new_umask; |
| 5783 | const char *arg = argv[1]; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5784 | if (arg) { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5785 | //TODO: umask may take chmod-like symbolic masks |
Mike Frysinger | 40b8dc4 | 2009-03-29 00:50:30 +0000 | [diff] [blame] | 5786 | new_umask = bb_strtou(arg, NULL, 8); |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5787 | if (errno) { |
| 5788 | //Message? bash examples: |
| 5789 | //bash: umask: 'q': invalid symbolic mode operator |
| 5790 | //bash: umask: 999: octal number out of range |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5791 | return EXIT_FAILURE; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5792 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5793 | } else { |
| 5794 | new_umask = umask(0); |
| 5795 | printf("%.3o\n", (unsigned) new_umask); |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5796 | /* fall through and restore new_umask which we set to 0 */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5797 | } |
| 5798 | umask(new_umask); |
| 5799 | return EXIT_SUCCESS; |
| 5800 | } |
| 5801 | |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 5802 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5803 | static int builtin_unset(char **argv) |
| 5804 | { |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 5805 | int ret; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5806 | char var; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 5807 | |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5808 | if (!*++argv) |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 5809 | return EXIT_SUCCESS; |
| 5810 | |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5811 | var = 'v'; |
| 5812 | if (argv[0][0] == '-') { |
| 5813 | switch (argv[0][1]) { |
| 5814 | case 'v': |
| 5815 | case 'f': |
| 5816 | var = argv[0][1]; |
| 5817 | break; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 5818 | default: |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5819 | bb_error_msg("unset: %s: invalid option", *argv); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 5820 | return EXIT_FAILURE; |
| 5821 | } |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5822 | //TODO: disallow "unset -vf ..." too |
| 5823 | argv++; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 5824 | } |
| 5825 | |
| 5826 | ret = EXIT_SUCCESS; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5827 | while (*argv) { |
| 5828 | if (var == 'v') { |
| 5829 | if (unset_local_var(*argv)) { |
| 5830 | /* unset <nonexistent_var> doesn't fail. |
| 5831 | * Error is when one tries to unset RO var. |
| 5832 | * Message was printed by unset_local_var. */ |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 5833 | ret = EXIT_FAILURE; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5834 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 5835 | } |
| 5836 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5837 | else { |
| 5838 | unset_local_func(*argv); |
| 5839 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 5840 | #endif |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5841 | argv++; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 5842 | } |
| 5843 | return ret; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5844 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 5845 | |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5846 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */ |
| 5847 | static int builtin_wait(char **argv) |
| 5848 | { |
| 5849 | int ret = EXIT_SUCCESS; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 5850 | int status, sig; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5851 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 5852 | if (*++argv == NULL) { |
| 5853 | /* Don't care about wait results */ |
| 5854 | /* Note 1: must wait until there are no more children */ |
| 5855 | /* Note 2: must be interruptible */ |
| 5856 | /* Examples: |
| 5857 | * $ sleep 3 & sleep 6 & wait |
| 5858 | * [1] 30934 sleep 3 |
| 5859 | * [2] 30935 sleep 6 |
| 5860 | * [1] Done sleep 3 |
| 5861 | * [2] Done sleep 6 |
| 5862 | * $ sleep 3 & sleep 6 & wait |
| 5863 | * [1] 30936 sleep 3 |
| 5864 | * [2] 30937 sleep 6 |
| 5865 | * [1] Done sleep 3 |
| 5866 | * ^C <-- after ~4 sec from keyboard |
| 5867 | * $ |
| 5868 | */ |
| 5869 | sigaddset(&G.blocked_set, SIGCHLD); |
| 5870 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 5871 | while (1) { |
| 5872 | checkjobs(NULL); |
| 5873 | if (errno == ECHILD) |
| 5874 | break; |
| 5875 | /* Wait for SIGCHLD or any other signal of interest */ |
| 5876 | /* sigtimedwait with infinite timeout: */ |
| 5877 | sig = sigwaitinfo(&G.blocked_set, NULL); |
| 5878 | if (sig > 0) { |
| 5879 | sig = check_and_run_traps(sig); |
| 5880 | if (sig && sig != SIGCHLD) { /* see note 2 */ |
| 5881 | ret = 128 + sig; |
| 5882 | break; |
| 5883 | } |
| 5884 | } |
| 5885 | } |
| 5886 | sigdelset(&G.blocked_set, SIGCHLD); |
| 5887 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 5888 | return ret; |
| 5889 | } |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5890 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 5891 | /* This is probably buggy wrt interruptible-ness */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5892 | while (*argv) { |
| 5893 | pid_t pid = bb_strtou(*argv, NULL, 10); |
Mike Frysinger | 40b8dc4 | 2009-03-29 00:50:30 +0000 | [diff] [blame] | 5894 | if (errno) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5895 | /* mimic bash message */ |
| 5896 | 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] | 5897 | return EXIT_FAILURE; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5898 | } |
| 5899 | if (waitpid(pid, &status, 0) == pid) { |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5900 | if (WIFSIGNALED(status)) |
| 5901 | ret = 128 + WTERMSIG(status); |
| 5902 | else if (WIFEXITED(status)) |
| 5903 | ret = WEXITSTATUS(status); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5904 | else /* wtf? */ |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5905 | ret = EXIT_FAILURE; |
| 5906 | } else { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5907 | bb_perror_msg("wait %s", *argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5908 | ret = 127; |
| 5909 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5910 | argv++; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 5911 | } |
| 5912 | |
| 5913 | return ret; |
| 5914 | } |
| 5915 | |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 5916 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 5917 | static int builtin_break(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 5918 | { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5919 | if (G.depth_of_loop == 0) { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 5920 | bb_error_msg("%s: only meaningful in a loop", argv[0]); |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 5921 | return EXIT_SUCCESS; /* bash compat */ |
| 5922 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5923 | G.flag_break_continue++; /* BC_BREAK = 1 */ |
| 5924 | G.depth_break_continue = 1; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 5925 | if (argv[1]) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5926 | G.depth_break_continue = bb_strtou(argv[1], NULL, 10); |
| 5927 | if (errno || !G.depth_break_continue || argv[2]) { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 5928 | bb_error_msg("%s: bad arguments", argv[0]); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5929 | G.flag_break_continue = BC_BREAK; |
| 5930 | G.depth_break_continue = UINT_MAX; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 5931 | } |
| 5932 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5933 | if (G.depth_of_loop < G.depth_break_continue) |
| 5934 | G.depth_break_continue = G.depth_of_loop; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 5935 | return EXIT_SUCCESS; |
| 5936 | } |
| 5937 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 5938 | static int builtin_continue(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 5939 | { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 5940 | G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */ |
| 5941 | return builtin_break(argv); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 5942 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 5943 | #endif |