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 | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 24 | * o_addchr derived from similar w_addchar function in glibc-2.2. |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 25 | * parse_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 | * Functions |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 44 | * Tilde Expansion |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 45 | * |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 46 | * Bash stuff (maybe optionally enable?): |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 47 | * &> and >& redirection of stdout+stderr |
| 48 | * Brace expansion |
| 49 | * reserved words: [[ ]] function select |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 50 | * substrings ${var:1:5} |
Mike Frysinger | 25a6ca0 | 2009-03-28 13:59:26 +0000 | [diff] [blame] | 51 | * |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 52 | * TODOs: |
| 53 | * grep for "TODO" and fix (some of them are easy) |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 54 | * change { and } from special chars to reserved words |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 55 | * builtins: return, ulimit |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 56 | * follow IFS rules more precisely, including update semantics |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 57 | * figure out what to do with backslash-newline |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 58 | * continuation lines, both explicit and implicit - done? |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 59 | * SIGHUP handling |
| 60 | * ^Z handling (and explain it in comments for mere humans) |
| 61 | * separate job control from interactiveness |
| 62 | * (testcase: booting with init=/bin/hush does not show prompt (2009-04)) |
| 63 | * functions |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 64 | * |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 65 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 66 | */ |
Bernhard Reutner-Fischer | e15d757 | 2006-06-02 20:56:16 +0000 | [diff] [blame] | 67 | |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 68 | #include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 69 | //TODO: pull in some .h and find out whether we have SINGLE_APPLET_MAIN? |
Denis Vlasenko | 61befda | 2008-11-25 01:36:03 +0000 | [diff] [blame] | 70 | //#include "applet_tables.h" doesn't work |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 71 | #include <glob.h> |
| 72 | /* #include <dmalloc.h> */ |
| 73 | #if ENABLE_HUSH_CASE |
| 74 | #include <fnmatch.h> |
| 75 | #endif |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 76 | #include "math.h" |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 77 | #include "match.h" |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 78 | #ifndef PIPE_BUF |
| 79 | # define PIPE_BUF 4096 /* amount of buffering in a pipe */ |
| 80 | #endif |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 81 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 82 | #ifdef WANT_TO_TEST_NOMMU |
| 83 | # undef BB_MMU |
| 84 | # undef USE_FOR_NOMMU |
| 85 | # undef USE_FOR_MMU |
| 86 | # define BB_MMU 0 |
| 87 | # define USE_FOR_NOMMU(...) __VA_ARGS__ |
| 88 | # define USE_FOR_MMU(...) |
| 89 | #endif |
| 90 | |
Denis Vlasenko | 61befda | 2008-11-25 01:36:03 +0000 | [diff] [blame] | 91 | #if defined SINGLE_APPLET_MAIN |
| 92 | /* STANDALONE does not make sense, and won't compile */ |
| 93 | #undef CONFIG_FEATURE_SH_STANDALONE |
| 94 | #undef ENABLE_FEATURE_SH_STANDALONE |
| 95 | #undef USE_FEATURE_SH_STANDALONE |
| 96 | #define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__ |
| 97 | #define ENABLE_FEATURE_SH_STANDALONE 0 |
| 98 | #define USE_FEATURE_SH_STANDALONE(...) |
| 99 | #define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__ |
| 100 | #endif |
| 101 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 102 | #if !ENABLE_HUSH_INTERACTIVE |
| 103 | #undef ENABLE_FEATURE_EDITING |
| 104 | #define ENABLE_FEATURE_EDITING 0 |
| 105 | #undef ENABLE_FEATURE_EDITING_FANCY_PROMPT |
| 106 | #define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0 |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 107 | #endif |
| 108 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 109 | /* Do we support ANY keywords? */ |
| 110 | #if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
| 111 | #define HAS_KEYWORDS 1 |
| 112 | #define IF_HAS_KEYWORDS(...) __VA_ARGS__ |
| 113 | #define IF_HAS_NO_KEYWORDS(...) |
| 114 | #else |
| 115 | #define HAS_KEYWORDS 0 |
| 116 | #define IF_HAS_KEYWORDS(...) |
| 117 | #define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__ |
| 118 | #endif |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 119 | |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 120 | /* Keep unconditionally on for now */ |
| 121 | #define HUSH_DEBUG 1 |
| 122 | /* In progress... */ |
| 123 | #define ENABLE_HUSH_FUNCTIONS 0 |
| 124 | |
| 125 | |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 126 | /* If you comment out one of these below, it will be #defined later |
| 127 | * to perform debug printfs to stderr: */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 128 | #define debug_printf(...) do {} while (0) |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 129 | /* Finer-grained debug switches */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 130 | #define debug_printf_parse(...) do {} while (0) |
| 131 | #define debug_print_tree(a, b) do {} while (0) |
| 132 | #define debug_printf_exec(...) do {} while (0) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 133 | #define debug_printf_env(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 134 | #define debug_printf_jobs(...) do {} while (0) |
| 135 | #define debug_printf_expand(...) do {} while (0) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 136 | #define debug_printf_glob(...) do {} while (0) |
| 137 | #define debug_printf_list(...) do {} while (0) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 138 | #define debug_printf_subst(...) do {} while (0) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 139 | #define debug_printf_clean(...) do {} while (0) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 140 | |
| 141 | #ifndef debug_printf |
| 142 | #define debug_printf(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 143 | #endif |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 144 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 145 | #ifndef debug_printf_parse |
| 146 | #define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 147 | #endif |
| 148 | |
| 149 | #ifndef debug_printf_exec |
| 150 | #define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__) |
| 151 | #endif |
| 152 | |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 153 | #ifndef debug_printf_env |
| 154 | #define debug_printf_env(...) fprintf(stderr, __VA_ARGS__) |
| 155 | #endif |
| 156 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 157 | #ifndef debug_printf_jobs |
| 158 | #define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 159 | #define DEBUG_JOBS 1 |
| 160 | #else |
| 161 | #define DEBUG_JOBS 0 |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 162 | #endif |
| 163 | |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 164 | #ifndef debug_printf_expand |
| 165 | #define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__) |
| 166 | #define DEBUG_EXPAND 1 |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 167 | #else |
| 168 | #define DEBUG_EXPAND 0 |
| 169 | #endif |
| 170 | |
| 171 | #ifndef debug_printf_glob |
| 172 | #define debug_printf_glob(...) fprintf(stderr, __VA_ARGS__) |
| 173 | #define DEBUG_GLOB 1 |
| 174 | #else |
| 175 | #define DEBUG_GLOB 0 |
| 176 | #endif |
| 177 | |
| 178 | #ifndef debug_printf_list |
| 179 | #define debug_printf_list(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 180 | #endif |
| 181 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 182 | #ifndef debug_printf_subst |
| 183 | #define debug_printf_subst(...) fprintf(stderr, __VA_ARGS__) |
| 184 | #endif |
| 185 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 186 | #ifndef debug_printf_clean |
| 187 | /* broken, of course, but OK for testing */ |
| 188 | static const char *indenter(int i) |
| 189 | { |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 190 | static const char blanks[] ALIGN1 = |
| 191 | " "; |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 192 | return &blanks[sizeof(blanks) - i - 1]; |
| 193 | } |
| 194 | #define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__) |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 195 | #define DEBUG_CLEAN 1 |
Denis Vlasenko | a0e6512 | 2009-04-05 23:39:14 +0000 | [diff] [blame] | 196 | #else |
| 197 | #define DEBUG_CLEAN 0 |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 198 | #endif |
| 199 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 200 | #if DEBUG_EXPAND |
| 201 | static void debug_print_strings(const char *prefix, char **vv) |
| 202 | { |
| 203 | fprintf(stderr, "%s:\n", prefix); |
| 204 | while (*vv) |
| 205 | fprintf(stderr, " '%s'\n", *vv++); |
| 206 | } |
| 207 | #else |
| 208 | #define debug_print_strings(prefix, vv) ((void)0) |
| 209 | #endif |
| 210 | |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 211 | /* |
| 212 | * Leak hunting. Use hush_leaktool.sh for post-processing. |
| 213 | */ |
| 214 | #ifdef FOR_HUSH_LEAKTOOL |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 215 | static void *xxmalloc(int lineno, size_t size) |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 216 | { |
| 217 | void *ptr = xmalloc((size + 0xff) & ~0xff); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 218 | fdprintf(2, "line %d: malloc %p\n", lineno, ptr); |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 219 | return ptr; |
| 220 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 221 | static void *xxrealloc(int lineno, void *ptr, size_t size) |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 222 | { |
| 223 | ptr = xrealloc(ptr, (size + 0xff) & ~0xff); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 224 | fdprintf(2, "line %d: realloc %p\n", lineno, ptr); |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 225 | return ptr; |
| 226 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 227 | static char *xxstrdup(int lineno, const char *str) |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 228 | { |
| 229 | char *ptr = xstrdup(str); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 230 | fdprintf(2, "line %d: strdup %p\n", lineno, ptr); |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 231 | return ptr; |
| 232 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 233 | static void xxfree(void *ptr) |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 234 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 235 | fdprintf(2, "free %p\n", ptr); |
Denis Vlasenko | f962a03 | 2007-11-23 12:50:54 +0000 | [diff] [blame] | 236 | free(ptr); |
| 237 | } |
| 238 | #define xmalloc(s) xxmalloc(__LINE__, s) |
| 239 | #define xrealloc(p, s) xxrealloc(__LINE__, p, s) |
| 240 | #define xstrdup(s) xxstrdup(__LINE__, s) |
| 241 | #define free(p) xxfree(p) |
| 242 | #endif |
| 243 | |
| 244 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 245 | #define ERR_PTR ((void*)(long)1) |
| 246 | |
Mike Frysinger | 258275d | 2009-04-05 21:19:43 +0000 | [diff] [blame] | 247 | static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER; |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 248 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 249 | #define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n" |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 250 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 251 | #define SPECIAL_VAR_SYMBOL 3 |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 252 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 253 | /* The descrip member of this structure is only used to make |
| 254 | * debugging output pretty */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 255 | static const struct { |
| 256 | int mode; |
Denis Vlasenko | ef36ead | 2007-05-02 15:34:47 +0000 | [diff] [blame] | 257 | signed char default_fd; |
| 258 | char descrip[3]; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 259 | } redir_table[] = { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 260 | { 0, 0, "??" }, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 261 | { O_RDONLY, 0, "<" }, |
| 262 | { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" }, |
| 263 | { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" }, |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 264 | { O_RDONLY, 0, "<<" }, |
| 265 | { O_CREAT|O_RDWR, 1, "<>" }, |
| 266 | /* Should not be needed. Bogus default_fd helps in debugging */ |
| 267 | /* { O_RDONLY, 77, "<<" }, */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 268 | }; |
| 269 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 270 | typedef enum reserved_style { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 271 | RES_NONE = 0, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 272 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 273 | RES_IF , |
| 274 | RES_THEN , |
| 275 | RES_ELIF , |
| 276 | RES_ELSE , |
| 277 | RES_FI , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 278 | #endif |
| 279 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 280 | RES_FOR , |
| 281 | RES_WHILE , |
| 282 | RES_UNTIL , |
| 283 | RES_DO , |
| 284 | RES_DONE , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 285 | #endif |
| 286 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 287 | RES_IN , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 288 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 289 | #if ENABLE_HUSH_CASE |
| 290 | RES_CASE , |
| 291 | /* two pseudo-keywords support contrived "case" syntax: */ |
| 292 | RES_MATCH , /* "word)" */ |
| 293 | RES_CASEI , /* "this command is inside CASE" */ |
| 294 | RES_ESAC , |
| 295 | #endif |
| 296 | RES_XXXX , |
| 297 | RES_SNTX |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 298 | } reserved_style; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 299 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 300 | typedef struct o_string { |
| 301 | char *data; |
| 302 | int length; /* position where data is appended */ |
| 303 | int maxlen; |
| 304 | /* Protect newly added chars against globbing |
| 305 | * (by prepending \ to *, ?, [, \) */ |
| 306 | smallint o_escape; |
| 307 | smallint o_glob; |
| 308 | smallint nonnull; |
| 309 | smallint has_empty_slot; |
| 310 | smallint o_assignment; /* 0:maybe, 1:yes, 2:no */ |
| 311 | } o_string; |
| 312 | enum { |
| 313 | MAYBE_ASSIGNMENT = 0, |
| 314 | DEFINITELY_ASSIGNMENT = 1, |
| 315 | NOT_ASSIGNMENT = 2, |
| 316 | WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */ |
| 317 | }; |
| 318 | /* Used for initialization: o_string foo = NULL_O_STRING; */ |
| 319 | #define NULL_O_STRING { NULL } |
| 320 | |
| 321 | /* I can almost use ordinary FILE*. Is open_memstream() universally |
| 322 | * available? Where is it documented? */ |
| 323 | typedef struct in_str { |
| 324 | const char *p; |
| 325 | /* eof_flag=1: last char in ->p is really an EOF */ |
| 326 | char eof_flag; /* meaningless if ->p == NULL */ |
| 327 | char peek_buf[2]; |
| 328 | #if ENABLE_HUSH_INTERACTIVE |
| 329 | smallint promptme; |
| 330 | smallint promptmode; /* 0: PS1, 1: PS2 */ |
| 331 | #endif |
| 332 | FILE *file; |
| 333 | int (*get) (struct in_str *); |
| 334 | int (*peek) (struct in_str *); |
| 335 | } in_str; |
| 336 | #define i_getch(input) ((input)->get(input)) |
| 337 | #define i_peek(input) ((input)->peek(input)) |
| 338 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 339 | struct redir_struct { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 340 | struct redir_struct *next; |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 341 | char *rd_filename; /* filename */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 342 | int rd_fd; /* file descriptor being redirected */ |
| 343 | int rd_dup; /* -1, or file descriptor being duplicated */ |
| 344 | smallint rd_type; /* (enum redir_type) */ |
| 345 | /* note: for heredocs, rd_filename contains heredoc delimiter, |
| 346 | * and subsequently heredoc itself; and rd_dup is |
| 347 | * "do we need to trim leading tabs?" bool flag |
| 348 | */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 349 | }; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 350 | typedef enum redir_type { |
| 351 | REDIRECT_INVALID = 0, |
| 352 | REDIRECT_INPUT = 1, |
| 353 | REDIRECT_OVERWRITE = 2, |
| 354 | REDIRECT_APPEND = 3, |
| 355 | REDIRECT_HEREDOC = 4, |
| 356 | REDIRECT_IO = 5, |
| 357 | REDIRECT_HEREDOC2 = 6, /* REDIRECT_HEREDOC after heredoc is loaded */ |
| 358 | } redir_type; |
| 359 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 360 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 361 | struct command { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 362 | pid_t pid; /* 0 if exited */ |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 363 | int assignment_cnt; /* how many argv[i] are assignments? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 364 | smallint is_stopped; /* is the command currently running? */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 365 | smallint grp_type; /* GRP_xxx */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 366 | struct pipe *group; /* if non-NULL, this "command" is { list }, |
| 367 | * ( list ), or a compound statement */ |
| 368 | #if !BB_MMU |
| 369 | char *group_as_string; |
| 370 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 371 | char **argv; /* command name and arguments */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 372 | struct redir_struct *redirects; /* I/O redirections */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 373 | }; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 374 | /* argv vector may contain variable references (^Cvar^C, ^C0^C etc) |
| 375 | * and on execution these are substituted with their values. |
| 376 | * Substitution can make _several_ words out of one argv[n]! |
| 377 | * Example: argv[0]=='.^C*^C.' here: echo .$*. |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 378 | * References of the form ^C`cmd arg^C are `cmd arg` substitutions. |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 379 | */ |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 380 | #define GRP_NORMAL 0 |
| 381 | #define GRP_SUBSHELL 1 |
| 382 | #if ENABLE_HUSH_FUNCTIONS |
| 383 | #define GRP_FUNCTION 2 |
| 384 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 385 | |
| 386 | struct pipe { |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 387 | struct pipe *next; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 388 | int num_cmds; /* total number of commands in job */ |
| 389 | int alive_cmds; /* number of commands running (not exited) */ |
| 390 | int stopped_cmds; /* number of commands alive, but stopped */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 391 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 392 | int jobid; /* job number */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 393 | pid_t pgrp; /* process group ID for the job */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 394 | char *cmdtext; /* name of job */ |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 395 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 396 | struct command *cmds; /* array of commands in pipe */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 397 | smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 398 | IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */ |
| 399 | IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 400 | }; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 401 | typedef enum pipe_style { |
| 402 | PIPE_SEQ = 1, |
| 403 | PIPE_AND = 2, |
| 404 | PIPE_OR = 3, |
| 405 | PIPE_BG = 4, |
| 406 | } pipe_style; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 407 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 408 | /* This holds pointers to the various results of parsing */ |
| 409 | struct parse_context { |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 410 | /* linked list of pipes */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 411 | struct pipe *list_head; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 412 | /* last pipe (being constructed right now) */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 413 | struct pipe *pipe; |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 414 | /* last command in pipe (being constructed right now) */ |
| 415 | struct command *command; |
| 416 | /* last redirect in command->redirects list */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 417 | struct redir_struct *pending_redirect; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 418 | #if !BB_MMU |
| 419 | o_string as_string; |
| 420 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 421 | #if HAS_KEYWORDS |
| 422 | smallint ctx_res_w; |
| 423 | smallint ctx_inverted; /* "! cmd | cmd" */ |
| 424 | #if ENABLE_HUSH_CASE |
| 425 | smallint ctx_dsemicolon; /* ";;" seen */ |
| 426 | #endif |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 427 | /* bitmask of FLAG_xxx, for figuring out valid reserved words */ |
| 428 | int old_flag; |
| 429 | /* group we are enclosed in: |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 430 | * example: "if pipe1; pipe2; then pipe3; fi" |
| 431 | * when we see "if" or "then", we malloc and copy current context, |
| 432 | * and make ->stack point to it. then we parse pipeN. |
| 433 | * when closing "then" / fi" / whatever is found, |
| 434 | * we move list_head into ->stack->command->group, |
| 435 | * copy ->stack into current context, and delete ->stack. |
| 436 | * (parsing of { list } and ( list ) doesn't use this method) |
Denis Vlasenko | f9f7429 | 2009-04-03 00:07:05 +0000 | [diff] [blame] | 437 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 438 | struct parse_context *stack; |
| 439 | #endif |
| 440 | }; |
| 441 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 442 | /* On program start, environ points to initial environment. |
| 443 | * putenv adds new pointers into it, unsetenv removes them. |
| 444 | * Neither of these (de)allocates the strings. |
| 445 | * setenv allocates new strings in malloc space and does putenv, |
| 446 | * and thus setenv is unusable (leaky) for shell's purposes */ |
| 447 | #define setenv(...) setenv_is_leaky_dont_use() |
| 448 | struct variable { |
| 449 | struct variable *next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 450 | char *varstr; /* points to "name=" portion */ |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 451 | int max_len; /* if > 0, name is part of initial env; else name is malloced */ |
| 452 | smallint flg_export; /* putenv should be done on this var */ |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 453 | smallint flg_read_only; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 454 | }; |
| 455 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 456 | enum { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 457 | BC_BREAK = 1, |
| 458 | BC_CONTINUE = 2, |
| 459 | }; |
| 460 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 461 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 462 | /* "Globals" within this file */ |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 463 | /* Sorted roughly by size (smaller offsets == smaller code) */ |
| 464 | struct globals { |
| 465 | #if ENABLE_HUSH_INTERACTIVE |
| 466 | /* 'interactive_fd' is a fd# open to ctty, if we have one |
| 467 | * _AND_ if we decided to act interactively */ |
| 468 | int interactive_fd; |
| 469 | const char *PS1; |
| 470 | const char *PS2; |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 471 | #define G_interactive_fd (G.interactive_fd) |
| 472 | #else |
| 473 | #define G_interactive_fd 0 |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 474 | #endif |
| 475 | #if ENABLE_FEATURE_EDITING |
| 476 | line_input_t *line_input_state; |
| 477 | #endif |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 478 | pid_t root_pid; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 479 | pid_t last_bg_pid; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 480 | #if ENABLE_HUSH_JOB |
| 481 | int run_list_level; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 482 | pid_t saved_tty_pgrp; |
| 483 | int last_jobid; |
| 484 | struct pipe *job_list; |
| 485 | struct pipe *toplevel_list; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 486 | //// smallint ctrl_z_flag; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 487 | #endif |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 488 | smallint flag_SIGINT; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 489 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 490 | smallint flag_break_continue; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 491 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 492 | smallint fake_mode; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 493 | /* These four support $?, $#, and $1 */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 494 | smalluint last_exitcode; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 495 | /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */ |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 496 | smalluint global_args_malloced; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 497 | /* how many non-NULL argv's we have. NB: $# + 1 */ |
| 498 | int global_argc; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 499 | char **global_argv; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 500 | #if !BB_MMU |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 501 | char *argv0_for_re_execing; |
| 502 | char **argv_from_re_execing; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 503 | #endif |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 504 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 505 | unsigned depth_break_continue; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 506 | unsigned depth_of_loop; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 507 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 508 | const char *ifs; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 509 | const char *cwd; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 510 | struct variable *top_var; /* = &G.shell_ver (set in main()) */ |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 511 | struct variable shell_ver; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 512 | /* Signal and trap handling */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 513 | // unsigned count_SIGCHLD; |
| 514 | // unsigned handled_SIGCHLD; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 515 | /* which signals have non-DFL handler (even with no traps set)? */ |
| 516 | unsigned non_DFL_mask; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 517 | char **traps; /* char *traps[NSIG] */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 518 | sigset_t blocked_set; |
| 519 | sigset_t inherited_set; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 520 | char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2]; |
| 521 | #if ENABLE_FEATURE_SH_STANDALONE |
| 522 | struct nofork_save_area nofork_save; |
| 523 | #endif |
| 524 | #if ENABLE_HUSH_JOB |
| 525 | sigjmp_buf toplevel_jb; |
| 526 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 527 | }; |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 528 | #define G (*ptr_to_globals) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 529 | /* Not #defining name to G.name - this quickly gets unwieldy |
| 530 | * (too many defines). Also, I actually prefer to see when a variable |
| 531 | * is global, thus "G." prefix is a useful hint */ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 532 | #define INIT_G() do { \ |
| 533 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
| 534 | } while (0) |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 535 | |
| 536 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 537 | /* Function prototypes for builtins */ |
| 538 | static int builtin_cd(char **argv); |
| 539 | static int builtin_echo(char **argv); |
| 540 | static int builtin_eval(char **argv); |
| 541 | static int builtin_exec(char **argv); |
| 542 | static int builtin_exit(char **argv); |
| 543 | static int builtin_export(char **argv); |
| 544 | #if ENABLE_HUSH_JOB |
| 545 | static int builtin_fg_bg(char **argv); |
| 546 | static int builtin_jobs(char **argv); |
| 547 | #endif |
| 548 | #if ENABLE_HUSH_HELP |
| 549 | static int builtin_help(char **argv); |
| 550 | #endif |
| 551 | static int builtin_pwd(char **argv); |
| 552 | static int builtin_read(char **argv); |
| 553 | static int builtin_test(char **argv); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 554 | static int builtin_trap(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 555 | static int builtin_true(char **argv); |
| 556 | static int builtin_set(char **argv); |
| 557 | static int builtin_shift(char **argv); |
| 558 | static int builtin_source(char **argv); |
| 559 | static int builtin_umask(char **argv); |
| 560 | static int builtin_unset(char **argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 561 | static int builtin_wait(char **argv); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 562 | #if ENABLE_HUSH_LOOPS |
| 563 | static int builtin_break(char **argv); |
| 564 | static int builtin_continue(char **argv); |
| 565 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 566 | |
| 567 | /* Table of built-in functions. They can be forked or not, depending on |
| 568 | * context: within pipes, they fork. As simple commands, they do not. |
| 569 | * When used in non-forking context, they can change global variables |
| 570 | * in the parent shell process. If forked, of course they cannot. |
| 571 | * For example, 'unset foo | whatever' will parse and run, but foo will |
| 572 | * still be set at the end. */ |
| 573 | struct built_in_command { |
| 574 | const char *cmd; |
| 575 | int (*function)(char **argv); |
| 576 | #if ENABLE_HUSH_HELP |
| 577 | const char *descr; |
| 578 | #define BLTIN(cmd, func, help) { cmd, func, help } |
| 579 | #else |
| 580 | #define BLTIN(cmd, func, help) { cmd, func } |
| 581 | #endif |
| 582 | }; |
| 583 | |
| 584 | /* For now, echo and test are unconditionally enabled. |
| 585 | * Maybe make it configurable? */ |
| 586 | static const struct built_in_command bltins[] = { |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 587 | BLTIN("." , builtin_source , "Run commands in a file"), |
| 588 | BLTIN(":" , builtin_true , "No-op"), |
| 589 | BLTIN("[" , builtin_test , "Test condition"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 590 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 591 | BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 592 | #endif |
| 593 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 594 | BLTIN("break" , builtin_break , "Exit from a loop"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 595 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 596 | BLTIN("cd" , builtin_cd , "Change directory"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 597 | #if ENABLE_HUSH_LOOPS |
| 598 | BLTIN("continue", builtin_continue, "Start new loop iteration"), |
| 599 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 600 | BLTIN("echo" , builtin_echo , "Write to stdout"), |
| 601 | BLTIN("eval" , builtin_eval , "Construct and run shell command"), |
| 602 | BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"), |
| 603 | BLTIN("exit" , builtin_exit , "Exit"), |
| 604 | BLTIN("export" , builtin_export , "Set environment variable"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 605 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 606 | BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 607 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 608 | #if ENABLE_HUSH_HELP |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 609 | BLTIN("help" , builtin_help , "List shell built-in commands"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 610 | #endif |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 611 | #if ENABLE_HUSH_JOB |
| 612 | BLTIN("jobs" , builtin_jobs , "List active jobs"), |
| 613 | #endif |
| 614 | BLTIN("pwd" , builtin_pwd , "Print current directory"), |
| 615 | BLTIN("read" , builtin_read , "Input environment variable"), |
| 616 | // BLTIN("return" , builtin_return , "Return from a function"), |
| 617 | BLTIN("set" , builtin_set , "Set/unset shell local variables"), |
| 618 | BLTIN("shift" , builtin_shift , "Shift positional parameters"), |
| 619 | BLTIN("test" , builtin_test , "Test condition"), |
| 620 | BLTIN("trap" , builtin_trap , "Trap signals"), |
| 621 | // BLTIN("ulimit" , builtin_return , "Control resource limits"), |
| 622 | BLTIN("umask" , builtin_umask , "Set file creation mask"), |
| 623 | BLTIN("unset" , builtin_unset , "Unset environment variable"), |
| 624 | BLTIN("wait" , builtin_wait , "Wait for process"), |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 625 | }; |
| 626 | |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 627 | |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 628 | static void maybe_die(const char *notice, const char *msg) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 629 | { |
Denis Vlasenko | 5a1437d | 2007-05-24 13:22:47 +0000 | [diff] [blame] | 630 | /* Was using fancy stuff: |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 631 | * (G_interactive_fd ? bb_error_msg : bb_error_msg_and_die)(...params...) |
Denis Vlasenko | 5a1437d | 2007-05-24 13:22:47 +0000 | [diff] [blame] | 632 | * but it SEGVs. ?! Oh well... explicit temp ptr works around that */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 633 | void FAST_FUNC (*fp)(const char *s, ...) = bb_error_msg_and_die; |
| 634 | #if ENABLE_HUSH_INTERACTIVE |
Mike Frysinger | dfa9de7 | 2009-04-03 22:48:10 +0000 | [diff] [blame] | 635 | if (G_interactive_fd) |
| 636 | fp = bb_error_msg; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 637 | #endif |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 638 | fp(msg ? "%s: %s" : notice, notice, msg); |
| 639 | } |
Mike Frysinger | 5a82845 | 2009-03-28 19:09:04 +0000 | [diff] [blame] | 640 | #if 1 |
| 641 | #define syntax(msg) maybe_die("syntax error", msg); |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 642 | #else |
Mike Frysinger | 5a82845 | 2009-03-28 19:09:04 +0000 | [diff] [blame] | 643 | /* Debug -- trick gcc to expand __LINE__ and convert to string */ |
| 644 | #define __syntax(msg, line) maybe_die("syntax error hush.c:" # line, msg) |
| 645 | #define _syntax(msg, line) __syntax(msg, line) |
| 646 | #define syntax(msg) _syntax(msg, __LINE__) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 647 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 648 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 649 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 650 | static int glob_needed(const char *s) |
| 651 | { |
| 652 | while (*s) { |
| 653 | if (*s == '\\') |
| 654 | s++; |
| 655 | if (*s == '*' || *s == '[' || *s == '?') |
| 656 | return 1; |
| 657 | s++; |
| 658 | } |
| 659 | return 0; |
| 660 | } |
| 661 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 662 | static int is_assignment(const char *s) |
| 663 | { |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 664 | if (!s || !(isalpha(*s) || *s == '_')) |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 665 | return 0; |
| 666 | s++; |
| 667 | while (isalnum(*s) || *s == '_') |
| 668 | s++; |
| 669 | return *s == '='; |
| 670 | } |
| 671 | |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 672 | /* Replace each \x with x in place, return ptr past NUL. */ |
| 673 | static char *unbackslash(char *src) |
| 674 | { |
| 675 | char *dst = src; |
| 676 | while (1) { |
| 677 | if (*src == '\\') |
| 678 | src++; |
| 679 | if ((*dst++ = *src++) == '\0') |
| 680 | break; |
| 681 | } |
| 682 | return dst; |
| 683 | } |
| 684 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 685 | 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] | 686 | { |
| 687 | int i; |
| 688 | unsigned count1; |
| 689 | unsigned count2; |
| 690 | char **v; |
| 691 | |
| 692 | v = strings; |
| 693 | count1 = 0; |
| 694 | if (v) { |
| 695 | while (*v) { |
| 696 | count1++; |
| 697 | v++; |
| 698 | } |
| 699 | } |
| 700 | count2 = 0; |
| 701 | v = add; |
| 702 | while (*v) { |
| 703 | count2++; |
| 704 | v++; |
| 705 | } |
| 706 | v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*)); |
| 707 | v[count1 + count2] = NULL; |
| 708 | i = count2; |
| 709 | while (--i >= 0) |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 710 | v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 711 | return v; |
| 712 | } |
| 713 | |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 714 | static char **add_string_to_strings(char **strings, char *add) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 715 | { |
| 716 | char *v[2]; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 717 | v[0] = add; |
| 718 | v[1] = NULL; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 719 | return add_strings_to_strings(strings, v, /*dup:*/ 0); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 720 | } |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 721 | |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 722 | static void putenv_all(char **strings) |
| 723 | { |
| 724 | if (!strings) |
| 725 | return; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 726 | while (*strings) { |
| 727 | debug_printf_env("putenv '%s'\n", *strings); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 728 | putenv(*strings++); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 729 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 730 | } |
| 731 | |
| 732 | static char **putenv_all_and_save_old(char **strings) |
| 733 | { |
| 734 | char **old = NULL; |
| 735 | char **s = strings; |
| 736 | |
| 737 | if (!strings) |
| 738 | return old; |
| 739 | while (*strings) { |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 740 | char *v, *eq; |
| 741 | |
| 742 | eq = strchr(*strings, '='); |
| 743 | if (eq) { |
| 744 | *eq = '\0'; |
| 745 | v = getenv(*strings); |
| 746 | *eq = '='; |
| 747 | if (v) { |
| 748 | /* v points to VAL in VAR=VAL, go back to VAR */ |
| 749 | v -= (eq - *strings) + 1; |
| 750 | old = add_string_to_strings(old, v); |
| 751 | } |
| 752 | } |
| 753 | strings++; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 754 | } |
| 755 | putenv_all(s); |
| 756 | return old; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 757 | } |
| 758 | |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 759 | static void free_strings_and_unsetenv(char **strings, int unset) |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 760 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 761 | char **v; |
| 762 | |
| 763 | if (!strings) |
| 764 | return; |
| 765 | |
| 766 | v = strings; |
| 767 | while (*v) { |
| 768 | if (unset) { |
Denis Vlasenko | 76ddc2e | 2008-12-30 05:05:31 +0000 | [diff] [blame] | 769 | debug_printf_env("unsetenv '%s'\n", *v); |
| 770 | bb_unsetenv(*v); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 771 | } |
| 772 | free(*v++); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 773 | } |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 774 | free(strings); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 775 | } |
| 776 | |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 777 | static void free_strings(char **strings) |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 778 | { |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 779 | free_strings_and_unsetenv(strings, 0); |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 780 | } |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 781 | |
| 782 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 783 | /* Basic theory of signal handling in shell |
| 784 | * ======================================== |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 785 | * This does not describe what hush does, rather, it is current understanding |
| 786 | * what it _should_ do. If it doesn't, it's a bug. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 787 | * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap |
| 788 | * |
| 789 | * Signals are handled only after each pipe ("cmd | cmd | cmd" thing) |
| 790 | * is finished or backgrounded. It is the same in interactive and |
| 791 | * non-interactive shells, and is the same regardless of whether |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 792 | * 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] | 793 | * ^C or ^Z from keyboard seem to execute "at once" because it usually |
| 794 | * backgrounds (i.e. stops) or kills all members of currently running |
| 795 | * pipe. |
| 796 | * |
| 797 | * Wait builtin in interruptible by signals for which user trap is set |
| 798 | * or by SIGINT in interactive shell. |
| 799 | * |
| 800 | * Trap handlers will execute even within trap handlers. (right?) |
| 801 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 802 | * User trap handlers are forgotten when subshell ("(cmd)") is entered. [TODO] |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 803 | * |
| 804 | * If job control is off, backgrounded commands ("cmd &") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 805 | * have SIGINT, SIGQUIT set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 806 | * |
| 807 | * Commands run in command substitution ("`cmd`") |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 808 | * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 809 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 810 | * Ordinary commands have signals set to SIG_IGN/DFL set as inherited |
| 811 | * by the shell from its parent. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 812 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 813 | * Siganls which differ from SIG_DFL action |
| 814 | * (note: child (i.e., [v]forked) shell is not an interactive shell): |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 815 | * |
| 816 | * SIGQUIT: ignore |
| 817 | * SIGTERM (interactive): ignore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 818 | * SIGHUP (interactive): |
| 819 | * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 820 | * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 821 | * (note that ^Z is handled not by trapping SIGTSTP, but by seeing |
| 822 | * that all pipe members are stopped) (right?) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 823 | * SIGINT (interactive): wait for last pipe, ignore the rest |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 824 | * of the command line, show prompt. NB: ^C does not send SIGINT |
| 825 | * to interactive shell while shell is waiting for a pipe, |
| 826 | * since shell is bg'ed (is not in foreground process group). |
| 827 | * (check/expand this) |
| 828 | * Example 1: this waits 5 sec, but does not execute ls: |
| 829 | * "echo $$; sleep 5; ls -l" + "kill -INT <pid>" |
| 830 | * Example 2: this does not wait and does not execute ls: |
| 831 | * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>" |
| 832 | * Example 3: this does not wait 5 sec, but executes ls: |
| 833 | * "sleep 5; ls -l" + press ^C |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 834 | * |
| 835 | * (What happens to signals which are IGN on shell start?) |
| 836 | * (What happens with signal mask on shell start?) |
| 837 | * |
| 838 | * Implementation in hush |
| 839 | * ====================== |
| 840 | * We use in-kernel pending signal mask to determine which signals were sent. |
| 841 | * We block all signals which we don't want to take action immediately, |
| 842 | * i.e. we block all signals which need to have special handling as described |
| 843 | * above, and all signals which have traps set. |
| 844 | * After each pipe execution, we extract any pending signals via sigtimedwait() |
| 845 | * and act on them. |
| 846 | * |
| 847 | * unsigned non_DFL_mask: a mask of such "special" signals |
| 848 | * sigset_t blocked_set: current blocked signal set |
| 849 | * |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 850 | * "trap - SIGxxx": |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 851 | * 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] | 852 | * "trap 'cmd' SIGxxx": |
| 853 | * set bit in blocked_set (even if 'cmd' is '') |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 854 | * after [v]fork, if we plan to be a shell: |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 855 | * nothing for {} child shell (say, "true | { true; true; } | true") |
| 856 | * unset all traps if () shell. [TODO] |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 857 | * after [v]fork, if we plan to exec: |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 858 | * POSIX says pending signal mask is cleared in child - no need to clear it. |
| 859 | * 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] | 860 | * |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 861 | * Note: as a result, we do not use signal handlers much. The only uses |
| 862 | * are to count SIGCHLDs [disabled - bug somewhere, + bloat] |
| 863 | * and to restore tty pgrp on signal-induced exit. |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 864 | */ |
| 865 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 866 | //static void SIGCHLD_handler(int sig UNUSED_PARAM) |
| 867 | //{ |
| 868 | // G.count_SIGCHLD++; |
| 869 | //} |
| 870 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 871 | static int check_and_run_traps(int sig) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 872 | { |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 873 | static const struct timespec zero_timespec = { 0, 0 }; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 874 | smalluint save_rcode; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 875 | int last_sig = 0; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 876 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 877 | if (sig) |
| 878 | goto jump_in; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 879 | while (1) { |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 880 | sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 881 | if (sig <= 0) |
| 882 | break; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 883 | jump_in: |
| 884 | last_sig = sig; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 885 | if (G.traps && G.traps[sig]) { |
| 886 | if (G.traps[sig][0]) { |
| 887 | /* We have user-defined handler */ |
| 888 | char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL }; |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 889 | save_rcode = G.last_exitcode; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 890 | builtin_eval(argv); |
| 891 | free(argv[1]); |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 892 | G.last_exitcode = save_rcode; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 893 | } /* else: "" trap, ignoring signal */ |
| 894 | continue; |
| 895 | } |
| 896 | /* not a trap: special action */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 897 | switch (sig) { |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 898 | // case SIGCHLD: |
| 899 | // G.count_SIGCHLD++; |
| 900 | // break; |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 901 | case SIGINT: |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 902 | bb_putchar('\n'); |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 903 | G.flag_SIGINT = 1; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 904 | break; |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 905 | //TODO |
| 906 | // case SIGHUP: ... |
| 907 | // break; |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 908 | default: /* ignored: */ |
| 909 | /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */ |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 910 | break; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 911 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 912 | } |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 913 | return last_sig; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 914 | } |
| 915 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 916 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 25af86f | 2009-04-07 13:29:27 +0000 | [diff] [blame^] | 917 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 918 | /* After [v]fork, in child: do not restore tty pgrp on xfunc death */ |
| 919 | #define disable_restore_tty_pgrp_on_exit() (die_sleep = 0) |
Denis Vlasenko | 25af86f | 2009-04-07 13:29:27 +0000 | [diff] [blame^] | 920 | /* After [v]fork, in parent: restore tty pgrp on xfunc death */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 921 | #define enable_restore_tty_pgrp_on_exit() (die_sleep = -1) |
| 922 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 923 | /* Restores tty foreground process group, and exits. |
| 924 | * May be called as signal handler for fatal signal |
| 925 | * (will faithfully resend signal to itself, producing correct exit state) |
| 926 | * or called directly with -EXITCODE. |
| 927 | * We also call it if xfunc is exiting. */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 928 | static void sigexit(int sig) NORETURN; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 929 | static void sigexit(int sig) |
| 930 | { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 931 | /* Disable all signals: job control, SIGPIPE, etc. */ |
Denis Vlasenko | 3f165fa | 2008-03-17 08:29:08 +0000 | [diff] [blame] | 932 | sigprocmask_allsigs(SIG_BLOCK); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 933 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 934 | /* Careful: we can end up here after [v]fork. Do not restore |
Denis Vlasenko | 7b830e7 | 2009-03-31 13:05:32 +0000 | [diff] [blame] | 935 | * tty pgrp then, only top-level shell process does that */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 936 | if (G_interactive_fd && getpid() == G.root_pid) |
| 937 | tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 938 | |
| 939 | /* Not a signal, just exit */ |
| 940 | if (sig <= 0) |
| 941 | _exit(- sig); |
| 942 | |
Denis Vlasenko | 400d8bb | 2008-02-24 13:36:01 +0000 | [diff] [blame] | 943 | kill_myself_with_sig(sig); /* does not return */ |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 944 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 945 | #else |
| 946 | |
| 947 | #define disable_restore_tty_pgrp_on_exit() ((void)0) |
| 948 | #define enable_restore_tty_pgrp_on_exit() ((void)0) |
| 949 | |
Denis Vlasenko | e0755e5 | 2009-04-03 21:16:45 +0000 | [diff] [blame] | 950 | #endif |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 951 | |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 952 | /* Restores tty foreground process group, and exits. */ |
| 953 | static void hush_exit(int exitcode) NORETURN; |
| 954 | static void hush_exit(int exitcode) |
| 955 | { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 956 | if (G.traps && G.traps[0] && G.traps[0][0]) { |
| 957 | char *argv[] = { NULL, xstrdup(G.traps[0]), NULL }; |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 958 | //TODO: do we need to prevent recursion? |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 959 | builtin_eval(argv); |
| 960 | free(argv[1]); |
| 961 | } |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 962 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 963 | #if ENABLE_HUSH_JOB |
| 964 | fflush(NULL); /* flush all streams */ |
| 965 | sigexit(- (exitcode & 0xff)); |
| 966 | #else |
| 967 | exit(exitcode); |
| 968 | #endif |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 969 | } |
| 970 | |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 971 | |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 972 | static const char *set_cwd(void) |
| 973 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 974 | /* xrealloc_getcwd_or_warn(arg) calls free(arg), |
| 975 | * we must not try to free(bb_msg_unknown) */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 976 | if (G.cwd == bb_msg_unknown) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 977 | G.cwd = NULL; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 978 | G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd); |
| 979 | if (!G.cwd) |
| 980 | G.cwd = bb_msg_unknown; |
| 981 | return G.cwd; |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 982 | } |
| 983 | |
Denis Vlasenko | 8350686 | 2007-11-23 13:11:42 +0000 | [diff] [blame] | 984 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 985 | /* Get/check local shell variables */ |
| 986 | static struct variable *get_local_var(const char *name) |
| 987 | { |
| 988 | struct variable *cur; |
| 989 | int len; |
| 990 | |
| 991 | if (!name) |
| 992 | return NULL; |
| 993 | len = strlen(name); |
| 994 | for (cur = G.top_var; cur; cur = cur->next) { |
| 995 | if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=') |
| 996 | return cur; |
| 997 | } |
| 998 | return NULL; |
| 999 | } |
| 1000 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 1001 | static const char *get_local_var_value(const char *src) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1002 | { |
| 1003 | struct variable *var = get_local_var(src); |
| 1004 | if (var) |
| 1005 | return strchr(var->varstr, '=') + 1; |
| 1006 | return NULL; |
| 1007 | } |
| 1008 | |
| 1009 | /* str holds "NAME=VAL" and is expected to be malloced. |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1010 | * We take ownership of it. |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1011 | * flg_export: |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1012 | * 0: do not export |
| 1013 | * 1: export |
| 1014 | * -1: if NAME is set, leave export status alone |
| 1015 | * if NAME is not set, do not export |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1016 | * flg_read_only is set only when we handle -R var=val |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1017 | */ |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1018 | #if BB_MMU |
| 1019 | #define set_local_var(str, flg_export, flg_read_only) \ |
| 1020 | set_local_var(str, flg_export) |
| 1021 | #endif |
| 1022 | 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] | 1023 | { |
| 1024 | struct variable *cur; |
| 1025 | char *value; |
| 1026 | int name_len; |
| 1027 | |
| 1028 | value = strchr(str, '='); |
| 1029 | if (!value) { /* not expected to ever happen? */ |
| 1030 | free(str); |
| 1031 | return -1; |
| 1032 | } |
| 1033 | |
| 1034 | name_len = value - str + 1; /* including '=' */ |
| 1035 | cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */ |
| 1036 | while (1) { |
| 1037 | if (strncmp(cur->varstr, str, name_len) != 0) { |
| 1038 | if (!cur->next) { |
| 1039 | /* Bail out. Note that now cur points |
| 1040 | * to last var in linked list */ |
| 1041 | break; |
| 1042 | } |
| 1043 | cur = cur->next; |
| 1044 | continue; |
| 1045 | } |
| 1046 | /* We found an existing var with this name */ |
| 1047 | *value = '\0'; |
| 1048 | if (cur->flg_read_only) { |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1049 | #if !BB_MMU |
| 1050 | if (!flg_read_only) |
| 1051 | #endif |
| 1052 | bb_error_msg("%s: readonly variable", str); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1053 | free(str); |
| 1054 | return -1; |
| 1055 | } |
| 1056 | debug_printf_env("%s: unsetenv '%s'\n", __func__, str); |
| 1057 | unsetenv(str); /* just in case */ |
| 1058 | *value = '='; |
| 1059 | if (strcmp(cur->varstr, str) == 0) { |
| 1060 | free_and_exp: |
| 1061 | free(str); |
| 1062 | goto exp; |
| 1063 | } |
| 1064 | if (cur->max_len >= strlen(str)) { |
| 1065 | /* This one is from startup env, reuse space */ |
| 1066 | strcpy(cur->varstr, str); |
| 1067 | goto free_and_exp; |
| 1068 | } |
| 1069 | /* max_len == 0 signifies "malloced" var, which we can |
| 1070 | * (and has to) free */ |
| 1071 | if (!cur->max_len) |
| 1072 | free(cur->varstr); |
| 1073 | cur->max_len = 0; |
| 1074 | goto set_str_and_exp; |
| 1075 | } |
| 1076 | |
| 1077 | /* Not found - create next variable struct */ |
| 1078 | cur->next = xzalloc(sizeof(*cur)); |
| 1079 | cur = cur->next; |
| 1080 | |
| 1081 | set_str_and_exp: |
| 1082 | cur->varstr = str; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 1083 | #if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1084 | cur->flg_read_only = flg_read_only; |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 1085 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1086 | exp: |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1087 | if (flg_export == 1) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1088 | cur->flg_export = 1; |
| 1089 | if (cur->flg_export) { |
| 1090 | debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr); |
| 1091 | return putenv(cur->varstr); |
| 1092 | } |
| 1093 | return 0; |
| 1094 | } |
| 1095 | |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1096 | static int unset_local_var(const char *name) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1097 | { |
| 1098 | struct variable *cur; |
| 1099 | struct variable *prev = prev; /* for gcc */ |
| 1100 | int name_len; |
| 1101 | |
| 1102 | if (!name) |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1103 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1104 | name_len = strlen(name); |
| 1105 | cur = G.top_var; |
| 1106 | while (cur) { |
| 1107 | if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') { |
| 1108 | if (cur->flg_read_only) { |
| 1109 | bb_error_msg("%s: readonly variable", name); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1110 | return EXIT_FAILURE; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1111 | } |
| 1112 | /* prev is ok to use here because 1st variable, HUSH_VERSION, |
| 1113 | * is ro, and we cannot reach this code on the 1st pass */ |
| 1114 | prev->next = cur->next; |
| 1115 | debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr); |
| 1116 | bb_unsetenv(cur->varstr); |
| 1117 | if (!cur->max_len) |
| 1118 | free(cur->varstr); |
| 1119 | free(cur); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1120 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1121 | } |
| 1122 | prev = cur; |
| 1123 | cur = cur->next; |
| 1124 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 1125 | return EXIT_SUCCESS; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1126 | } |
| 1127 | |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1128 | #if ENABLE_SH_MATH_SUPPORT |
| 1129 | #define is_name(c) ((c) == '_' || isalpha((unsigned char)(c))) |
| 1130 | #define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c))) |
| 1131 | static char *endofname(const char *name) |
| 1132 | { |
| 1133 | char *p; |
| 1134 | |
| 1135 | p = (char *) name; |
| 1136 | if (!is_name(*p)) |
| 1137 | return p; |
| 1138 | while (*++p) { |
| 1139 | if (!is_in_name(*p)) |
| 1140 | break; |
| 1141 | } |
| 1142 | return p; |
| 1143 | } |
| 1144 | |
| 1145 | static void arith_set_local_var(const char *name, const char *val, int flags) |
| 1146 | { |
| 1147 | /* arith code doesnt malloc space, so do it for it */ |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1148 | char *var = xasprintf("%s=%s", name, val); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 1149 | set_local_var(var, flags, 0); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1150 | } |
| 1151 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1152 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1153 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1154 | /* |
| 1155 | * in_str support |
| 1156 | */ |
| 1157 | static int static_get(struct in_str *i) |
| 1158 | { |
| 1159 | int ch = *i->p++; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 1160 | if (ch != '\0') |
| 1161 | return ch; |
| 1162 | i->p--; |
| 1163 | return EOF; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1164 | } |
| 1165 | |
| 1166 | static int static_peek(struct in_str *i) |
| 1167 | { |
| 1168 | return *i->p; |
| 1169 | } |
| 1170 | |
| 1171 | #if ENABLE_HUSH_INTERACTIVE |
| 1172 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1173 | static void cmdedit_set_initial_prompt(void) |
| 1174 | { |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1175 | if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 1176 | G.PS1 = getenv("PS1"); |
| 1177 | if (G.PS1 == NULL) |
| 1178 | G.PS1 = "\\w \\$ "; |
| 1179 | } else |
| 1180 | G.PS1 = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1181 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1182 | |
| 1183 | static const char* setup_prompt_string(int promptmode) |
| 1184 | { |
| 1185 | const char *prompt_str; |
| 1186 | debug_printf("setup_prompt_string %d ", promptmode); |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 1187 | if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) { |
| 1188 | /* Set up the prompt */ |
| 1189 | if (promptmode == 0) { /* PS1 */ |
| 1190 | free((char*)G.PS1); |
| 1191 | G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#'); |
| 1192 | prompt_str = G.PS1; |
| 1193 | } else |
| 1194 | prompt_str = G.PS2; |
| 1195 | } else |
| 1196 | prompt_str = (promptmode == 0) ? G.PS1 : G.PS2; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1197 | debug_printf("result '%s'\n", prompt_str); |
| 1198 | return prompt_str; |
| 1199 | } |
| 1200 | |
| 1201 | static void get_user_input(struct in_str *i) |
| 1202 | { |
| 1203 | int r; |
| 1204 | const char *prompt_str; |
| 1205 | |
| 1206 | prompt_str = setup_prompt_string(i->promptmode); |
| 1207 | #if ENABLE_FEATURE_EDITING |
| 1208 | /* Enable command line editing only while a command line |
| 1209 | * is actually being read */ |
| 1210 | do { |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1211 | G.flag_SIGINT = 0; |
| 1212 | /* buglet: SIGINT will not make new prompt to appear _at once_, |
| 1213 | * only after <Enter>. (^C will work) */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1214 | 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] | 1215 | /* catch *SIGINT* etc (^C is handled by read_line_input) */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1216 | check_and_run_traps(0); |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1217 | } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1218 | i->eof_flag = (r < 0); |
| 1219 | if (i->eof_flag) { /* EOF/error detected */ |
| 1220 | G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */ |
| 1221 | G.user_input_buf[1] = '\0'; |
| 1222 | } |
| 1223 | #else |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1224 | do { |
| 1225 | G.flag_SIGINT = 0; |
| 1226 | fputs(prompt_str, stdout); |
| 1227 | fflush(stdout); |
| 1228 | G.user_input_buf[0] = r = fgetc(i->file); |
| 1229 | /*G.user_input_buf[1] = '\0'; - already is and never changed */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 1230 | //do we need check_and_run_traps(0)? (maybe only if stdin) |
Denis Vlasenko | 422cd7c | 2009-03-31 12:41:52 +0000 | [diff] [blame] | 1231 | } while (G.flag_SIGINT); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1232 | i->eof_flag = (r == EOF); |
| 1233 | #endif |
| 1234 | i->p = G.user_input_buf; |
| 1235 | } |
| 1236 | |
| 1237 | #endif /* INTERACTIVE */ |
| 1238 | |
| 1239 | /* This is the magic location that prints prompts |
| 1240 | * and gets data back from the user */ |
| 1241 | static int file_get(struct in_str *i) |
| 1242 | { |
| 1243 | int ch; |
| 1244 | |
| 1245 | /* If there is data waiting, eat it up */ |
| 1246 | if (i->p && *i->p) { |
| 1247 | #if ENABLE_HUSH_INTERACTIVE |
| 1248 | take_cached: |
| 1249 | #endif |
| 1250 | ch = *i->p++; |
| 1251 | if (i->eof_flag && !*i->p) |
| 1252 | ch = EOF; |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1253 | /* note: ch is never NUL */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1254 | } else { |
| 1255 | /* need to double check i->file because we might be doing something |
| 1256 | * more complicated by now, like sourcing or substituting. */ |
| 1257 | #if ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 1258 | if (G_interactive_fd && i->promptme && i->file == stdin) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1259 | do { |
| 1260 | get_user_input(i); |
| 1261 | } while (!*i->p); /* need non-empty line */ |
| 1262 | i->promptmode = 1; /* PS2 */ |
| 1263 | i->promptme = 0; |
| 1264 | goto take_cached; |
| 1265 | } |
| 1266 | #endif |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1267 | do ch = fgetc(i->file); while (ch == '\0'); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1268 | } |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1269 | debug_printf("file_get: got '%c' %d\n", ch, ch); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1270 | #if ENABLE_HUSH_INTERACTIVE |
| 1271 | if (ch == '\n') |
| 1272 | i->promptme = 1; |
| 1273 | #endif |
| 1274 | return ch; |
| 1275 | } |
| 1276 | |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1277 | /* All callers guarantee this routine will never |
| 1278 | * be used right after a newline, so prompting is not needed. |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1279 | */ |
| 1280 | static int file_peek(struct in_str *i) |
| 1281 | { |
| 1282 | int ch; |
| 1283 | if (i->p && *i->p) { |
| 1284 | if (i->eof_flag && !i->p[1]) |
| 1285 | return EOF; |
| 1286 | return *i->p; |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1287 | /* note: ch is never NUL */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1288 | } |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1289 | do ch = fgetc(i->file); while (ch == '\0'); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1290 | i->eof_flag = (ch == EOF); |
| 1291 | i->peek_buf[0] = ch; |
| 1292 | i->peek_buf[1] = '\0'; |
| 1293 | i->p = i->peek_buf; |
Denis Vlasenko | 913a201 | 2009-04-05 22:17:04 +0000 | [diff] [blame] | 1294 | debug_printf("file_peek: got '%c' %d\n", ch, ch); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1295 | return ch; |
| 1296 | } |
| 1297 | |
| 1298 | static void setup_file_in_str(struct in_str *i, FILE *f) |
| 1299 | { |
| 1300 | i->peek = file_peek; |
| 1301 | i->get = file_get; |
| 1302 | #if ENABLE_HUSH_INTERACTIVE |
| 1303 | i->promptme = 1; |
| 1304 | i->promptmode = 0; /* PS1 */ |
| 1305 | #endif |
| 1306 | i->file = f; |
| 1307 | i->p = NULL; |
| 1308 | } |
| 1309 | |
| 1310 | static void setup_string_in_str(struct in_str *i, const char *s) |
| 1311 | { |
| 1312 | i->peek = static_peek; |
| 1313 | i->get = static_get; |
| 1314 | #if ENABLE_HUSH_INTERACTIVE |
| 1315 | i->promptme = 1; |
| 1316 | i->promptmode = 0; /* PS1 */ |
| 1317 | #endif |
| 1318 | i->p = s; |
| 1319 | i->eof_flag = 0; |
| 1320 | } |
| 1321 | |
| 1322 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1323 | /* |
| 1324 | * o_string support |
| 1325 | */ |
| 1326 | #define B_CHUNK (32 * sizeof(char*)) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1327 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1328 | static void o_reset(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1329 | { |
| 1330 | o->length = 0; |
| 1331 | o->nonnull = 0; |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1332 | if (o->data) |
| 1333 | o->data[0] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1334 | } |
| 1335 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1336 | static void o_free(o_string *o) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1337 | { |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 1338 | free(o->data); |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 1339 | memset(o, 0, sizeof(*o)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1340 | } |
| 1341 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1342 | static ALWAYS_INLINE void o_free_unsafe(o_string *o) |
| 1343 | { |
| 1344 | free(o->data); |
| 1345 | } |
| 1346 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1347 | static void o_grow_by(o_string *o, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1348 | { |
| 1349 | if (o->length + len > o->maxlen) { |
| 1350 | o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK); |
| 1351 | o->data = xrealloc(o->data, 1 + o->maxlen); |
| 1352 | } |
| 1353 | } |
| 1354 | |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1355 | static void o_addchr(o_string *o, int ch) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1356 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1357 | debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o); |
| 1358 | o_grow_by(o, 1); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1359 | o->data[o->length] = ch; |
| 1360 | o->length++; |
| 1361 | o->data[o->length] = '\0'; |
| 1362 | } |
| 1363 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1364 | static void o_addblock(o_string *o, const char *str, int len) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1365 | { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1366 | o_grow_by(o, len); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1367 | memcpy(&o->data[o->length], str, len); |
| 1368 | o->length += len; |
| 1369 | o->data[o->length] = '\0'; |
| 1370 | } |
| 1371 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1372 | #if !BB_MMU |
| 1373 | static void o_addstr(o_string *o, const char *str) |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1374 | { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1375 | o_addblock(o, str, strlen(str)); |
| 1376 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 1377 | static void nommu_addchr(o_string *o, int ch) |
| 1378 | { |
| 1379 | if (o) |
| 1380 | o_addchr(o, ch); |
| 1381 | } |
| 1382 | #else |
| 1383 | #define nommu_addchr(o, str) ((void)0) |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1384 | #endif |
| 1385 | |
| 1386 | static void o_addstr_with_NUL(o_string *o, const char *str) |
| 1387 | { |
| 1388 | o_addblock(o, str, strlen(str) + 1); |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1389 | } |
| 1390 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1391 | 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] | 1392 | { |
| 1393 | while (len) { |
| 1394 | o_addchr(o, *str); |
| 1395 | if (*str++ == '\\' |
| 1396 | && (*str != '*' && *str != '?' && *str != '[') |
| 1397 | ) { |
| 1398 | o_addchr(o, '\\'); |
| 1399 | } |
| 1400 | len--; |
| 1401 | } |
| 1402 | } |
| 1403 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1404 | /* My analysis of quoting semantics tells me that state information |
| 1405 | * is associated with a destination, not a source. |
| 1406 | */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1407 | static void o_addqchr(o_string *o, int ch) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1408 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1409 | int sz = 1; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 1410 | char *found = strchr("*?[\\", ch); |
| 1411 | if (found) |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1412 | sz++; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 1413 | o_grow_by(o, sz); |
| 1414 | if (found) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1415 | o->data[o->length] = '\\'; |
| 1416 | o->length++; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1417 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1418 | o->data[o->length] = ch; |
| 1419 | o->length++; |
| 1420 | o->data[o->length] = '\0'; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1421 | } |
| 1422 | |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1423 | static void o_addQchr(o_string *o, int ch) |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1424 | { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1425 | int sz = 1; |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1426 | if (o->o_escape && strchr("*?[\\", ch)) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1427 | sz++; |
| 1428 | o->data[o->length] = '\\'; |
| 1429 | o->length++; |
| 1430 | } |
| 1431 | o_grow_by(o, sz); |
| 1432 | o->data[o->length] = ch; |
| 1433 | o->length++; |
| 1434 | o->data[o->length] = '\0'; |
| 1435 | } |
| 1436 | |
| 1437 | static void o_addQstr(o_string *o, const char *str, int len) |
| 1438 | { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1439 | if (!o->o_escape) { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1440 | o_addblock(o, str, len); |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1441 | return; |
| 1442 | } |
| 1443 | while (len) { |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1444 | char ch; |
| 1445 | int sz; |
| 1446 | int ordinary_cnt = strcspn(str, "*?[\\"); |
| 1447 | if (ordinary_cnt > len) /* paranoia */ |
| 1448 | ordinary_cnt = len; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1449 | o_addblock(o, str, ordinary_cnt); |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1450 | if (ordinary_cnt == len) |
| 1451 | return; |
| 1452 | str += ordinary_cnt; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1453 | len -= ordinary_cnt + 1; /* we are processing + 1 char below */ |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1454 | |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1455 | ch = *str++; |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1456 | sz = 1; |
| 1457 | if (ch) { /* it is necessarily one of "*?[\\" */ |
| 1458 | sz++; |
| 1459 | o->data[o->length] = '\\'; |
| 1460 | o->length++; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1461 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 1462 | o_grow_by(o, sz); |
| 1463 | o->data[o->length] = ch; |
| 1464 | o->length++; |
| 1465 | o->data[o->length] = '\0'; |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 1466 | } |
| 1467 | } |
| 1468 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1469 | /* A special kind of o_string for $VAR and `cmd` expansion. |
| 1470 | * 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] | 1471 | * increments. Actual string data starts at the next multiple of 16 * (char*). |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1472 | * list[i] contains an INDEX (int!) into this string data. |
| 1473 | * It means that if list[] needs to grow, data needs to be moved higher up |
| 1474 | * but list[i]'s need not be modified. |
| 1475 | * NB: remembering how many list[i]'s you have there is crucial. |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1476 | * o_finalize_list() operation post-processes this structure - calculates |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1477 | * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well. |
| 1478 | */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1479 | #if DEBUG_EXPAND || DEBUG_GLOB |
| 1480 | static void debug_print_list(const char *prefix, o_string *o, int n) |
| 1481 | { |
| 1482 | char **list = (char**)o->data; |
| 1483 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1484 | int i = 0; |
| 1485 | fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n", |
| 1486 | prefix, list, n, string_start, o->length, o->maxlen); |
| 1487 | while (i < n) { |
| 1488 | fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i], |
| 1489 | o->data + (int)list[i] + string_start, |
| 1490 | o->data + (int)list[i] + string_start); |
| 1491 | i++; |
| 1492 | } |
| 1493 | if (n) { |
| 1494 | const char *p = o->data + (int)list[n - 1] + string_start; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1495 | 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] | 1496 | } |
| 1497 | } |
| 1498 | #else |
| 1499 | #define debug_print_list(prefix, o, n) ((void)0) |
| 1500 | #endif |
| 1501 | |
| 1502 | /* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value |
| 1503 | * in list[n] so that it points past last stored byte so far. |
| 1504 | * It returns n+1. */ |
| 1505 | static int o_save_ptr_helper(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1506 | { |
| 1507 | char **list = (char**)o->data; |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1508 | int string_start; |
| 1509 | int string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1510 | |
| 1511 | if (!o->has_empty_slot) { |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1512 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1513 | string_len = o->length - string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1514 | if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */ |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1515 | 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] | 1516 | /* list[n] points to string_start, make space for 16 more pointers */ |
| 1517 | o->maxlen += 0x10 * sizeof(list[0]); |
| 1518 | o->data = xrealloc(o->data, o->maxlen + 1); |
Denis Vlasenko | 7049ff8 | 2008-06-25 09:53:17 +0000 | [diff] [blame] | 1519 | list = (char**)o->data; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1520 | memmove(list + n + 0x10, list + n, string_len); |
| 1521 | o->length += 0x10 * sizeof(list[0]); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 1522 | } else { |
| 1523 | debug_printf_list("list[%d]=%d string_start=%d\n", |
| 1524 | n, string_len, string_start); |
| 1525 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1526 | } else { |
| 1527 | /* We have empty slot at list[n], reuse without growth */ |
Denis Vlasenko | 895bea2 | 2008-06-10 18:06:24 +0000 | [diff] [blame] | 1528 | string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */ |
| 1529 | string_len = o->length - string_start; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 1530 | debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n", |
| 1531 | n, string_len, string_start); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1532 | o->has_empty_slot = 0; |
| 1533 | } |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1534 | list[n] = (char*)(ptrdiff_t)string_len; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1535 | return n + 1; |
| 1536 | } |
| 1537 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1538 | /* "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] | 1539 | static int o_get_last_ptr(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1540 | { |
| 1541 | char **list = (char**)o->data; |
| 1542 | int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1543 | |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1544 | return ((int)(ptrdiff_t)list[n-1]) + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1545 | } |
| 1546 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1547 | /* o_glob performs globbing on last list[], saving each result |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 1548 | * as a new list[]. */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1549 | static int o_glob(o_string *o, int n) |
| 1550 | { |
| 1551 | glob_t globdata; |
| 1552 | int gr; |
| 1553 | char *pattern; |
| 1554 | |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1555 | 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] | 1556 | if (!o->data) |
| 1557 | return o_save_ptr_helper(o, n); |
| 1558 | pattern = o->data + o_get_last_ptr(o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1559 | debug_printf_glob("glob pattern '%s'\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1560 | if (!glob_needed(pattern)) { |
| 1561 | literal: |
| 1562 | o->length = unbackslash(pattern) - o->data; |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1563 | debug_printf_glob("glob pattern '%s' is literal\n", pattern); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1564 | return o_save_ptr_helper(o, n); |
| 1565 | } |
| 1566 | |
| 1567 | memset(&globdata, 0, sizeof(globdata)); |
| 1568 | gr = glob(pattern, 0, NULL, &globdata); |
| 1569 | debug_printf_glob("glob('%s'):%d\n", pattern, gr); |
| 1570 | if (gr == GLOB_NOSPACE) |
| 1571 | bb_error_msg_and_die("out of memory during glob"); |
| 1572 | if (gr == GLOB_NOMATCH) { |
| 1573 | globfree(&globdata); |
| 1574 | goto literal; |
| 1575 | } |
| 1576 | if (gr != 0) { /* GLOB_ABORTED ? */ |
| 1577 | //TODO: testcase for bad glob pattern behavior |
| 1578 | bb_error_msg("glob(3) error %d on '%s'", gr, pattern); |
| 1579 | } |
| 1580 | if (globdata.gl_pathv && globdata.gl_pathv[0]) { |
| 1581 | char **argv = globdata.gl_pathv; |
| 1582 | o->length = pattern - o->data; /* "forget" pattern */ |
| 1583 | while (1) { |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1584 | o_addstr_with_NUL(o, *argv); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1585 | n = o_save_ptr_helper(o, n); |
| 1586 | argv++; |
| 1587 | if (!*argv) |
| 1588 | break; |
| 1589 | } |
| 1590 | } |
| 1591 | globfree(&globdata); |
| 1592 | if (DEBUG_GLOB) |
| 1593 | debug_print_list("o_glob returning", o, n); |
| 1594 | return n; |
| 1595 | } |
| 1596 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 1597 | /* If o->o_glob == 1, glob the string so far remembered. |
| 1598 | * Otherwise, just finish current list[] and start new */ |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1599 | static int o_save_ptr(o_string *o, int n) |
| 1600 | { |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 1601 | if (o->o_glob) { /* if globbing is requested */ |
| 1602 | /* If o->has_empty_slot, list[n] was already globbed |
| 1603 | * (if it was requested back then when it was filled) |
| 1604 | * so don't do that again! */ |
| 1605 | if (!o->has_empty_slot) |
| 1606 | return o_glob(o, n); /* o_save_ptr_helper is inside */ |
| 1607 | } |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1608 | return o_save_ptr_helper(o, n); |
| 1609 | } |
| 1610 | |
| 1611 | /* "Please convert list[n] to real char* ptrs, and NULL terminate it." */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 1612 | static char **o_finalize_list(o_string *o, int n) |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1613 | { |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1614 | char **list; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1615 | int string_start; |
| 1616 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1617 | n = o_save_ptr(o, n); /* force growth for list[n] if necessary */ |
| 1618 | if (DEBUG_EXPAND) |
| 1619 | debug_print_list("finalized", o, n); |
Denis Vlasenko | 30c9cc5 | 2008-06-17 07:24:29 +0000 | [diff] [blame] | 1620 | debug_printf_expand("finalized n:%d\n", n); |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 1621 | list = (char**)o->data; |
| 1622 | string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]); |
| 1623 | list[--n] = NULL; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1624 | while (n) { |
| 1625 | n--; |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 1626 | list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1627 | } |
| 1628 | return list; |
| 1629 | } |
| 1630 | |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 1631 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1632 | /* Expansion can recurse */ |
| 1633 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 1634 | static int process_command_subs(o_string *dest, const char *s); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1635 | #endif |
| 1636 | static char *expand_string_to_string(const char *str); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1637 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 1638 | #define parse_stream_dquoted(as_string, dest, input, dquote_end) \ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1639 | parse_stream_dquoted(dest, input, dquote_end) |
| 1640 | #endif |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 1641 | static int parse_stream_dquoted(o_string *as_string, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1642 | o_string *dest, |
| 1643 | struct in_str *input, |
| 1644 | int dquote_end); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1645 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1646 | /* expand_strvec_to_strvec() takes a list of strings, expands |
| 1647 | * all variable references within and returns a pointer to |
| 1648 | * a list of expanded strings, possibly with larger number |
| 1649 | * of strings. (Think VAR="a b"; echo $VAR). |
| 1650 | * This new list is allocated as a single malloc block. |
| 1651 | * NULL-terminated list of char* pointers is at the beginning of it, |
| 1652 | * followed by strings themself. |
| 1653 | * Caller can deallocate entire list by single free(list). */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1654 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1655 | /* Store given string, finalizing the word and starting new one whenever |
| 1656 | * we encounter IFS char(s). This is used for expanding variable values. |
| 1657 | * End-of-string does NOT finalize word: think about 'echo -$VAR-' */ |
| 1658 | 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] | 1659 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1660 | while (1) { |
| 1661 | int word_len = strcspn(str, G.ifs); |
| 1662 | if (word_len) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1663 | if (output->o_escape || !output->o_glob) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1664 | o_addQstr(output, str, word_len); |
| 1665 | else /* protect backslashes against globbing up :) */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1666 | o_addblock_duplicate_backslash(output, str, word_len); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1667 | str += word_len; |
| 1668 | } |
| 1669 | if (!*str) /* EOL - do not finalize word */ |
| 1670 | break; |
| 1671 | o_addchr(output, '\0'); |
| 1672 | debug_print_list("expand_on_ifs", output, n); |
| 1673 | n = o_save_ptr(output, n); |
| 1674 | str += strspn(str, G.ifs); /* skip ifs chars */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1675 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1676 | debug_print_list("expand_on_ifs[1]", output, n); |
| 1677 | return n; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1678 | } |
| 1679 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1680 | /* Expand all variable references in given string, adding words to list[] |
| 1681 | * at n, n+1,... positions. Return updated n (so that list[n] is next one |
| 1682 | * to be filled). This routine is extremely tricky: has to deal with |
| 1683 | * variables/parameters with whitespace, $* and $@, and constructs like |
| 1684 | * 'echo -$*-'. If you play here, you must run testsuite afterwards! */ |
| 1685 | 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] | 1686 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1687 | /* or_mask is either 0 (normal case) or 0x80 |
| 1688 | * (expansion of right-hand side of assignment == 1-element expand. |
| 1689 | * 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] | 1690 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1691 | char first_ch, ored_ch; |
| 1692 | int i; |
| 1693 | const char *val; |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 1694 | char *dyn_val, *p; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1695 | |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 1696 | dyn_val = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1697 | ored_ch = 0; |
| 1698 | |
| 1699 | debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg); |
| 1700 | debug_print_list("expand_vars_to_list", output, n); |
| 1701 | n = o_save_ptr(output, n); |
| 1702 | debug_print_list("expand_vars_to_list[0]", output, n); |
| 1703 | |
| 1704 | while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) { |
| 1705 | #if ENABLE_HUSH_TICK |
| 1706 | o_string subst_result = NULL_O_STRING; |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 1707 | #endif |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1708 | #if ENABLE_SH_MATH_SUPPORT |
| 1709 | char arith_buf[sizeof(arith_t)*3 + 2]; |
| 1710 | #endif |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1711 | o_addblock(output, arg, p - arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1712 | debug_print_list("expand_vars_to_list[1]", output, n); |
| 1713 | arg = ++p; |
| 1714 | p = strchr(p, SPECIAL_VAR_SYMBOL); |
| 1715 | |
| 1716 | first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */ |
| 1717 | /* "$@" is special. Even if quoted, it can still |
| 1718 | * expand to nothing (not even an empty string) */ |
| 1719 | if ((first_ch & 0x7f) != '@') |
| 1720 | ored_ch |= first_ch; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1721 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1722 | val = NULL; |
| 1723 | switch (first_ch & 0x7f) { |
| 1724 | /* Highest bit in first_ch indicates that var is double-quoted */ |
| 1725 | case '$': /* pid */ |
| 1726 | val = utoa(G.root_pid); |
| 1727 | break; |
| 1728 | case '!': /* bg pid */ |
| 1729 | val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)""; |
| 1730 | break; |
| 1731 | case '?': /* exitcode */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 1732 | val = utoa(G.last_exitcode); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1733 | break; |
| 1734 | case '#': /* argc */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1735 | if (arg[1] != SPECIAL_VAR_SYMBOL) |
| 1736 | /* actually, it's a ${#var} */ |
| 1737 | goto case_default; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1738 | val = utoa(G.global_argc ? G.global_argc-1 : 0); |
| 1739 | break; |
| 1740 | case '*': |
| 1741 | case '@': |
| 1742 | i = 1; |
| 1743 | if (!G.global_argv[i]) |
| 1744 | break; |
| 1745 | ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */ |
| 1746 | if (!(first_ch & 0x80)) { /* unquoted $* or $@ */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1747 | smallint sv = output->o_escape; |
| 1748 | /* unquoted var's contents should be globbed, so don't escape */ |
| 1749 | output->o_escape = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1750 | while (G.global_argv[i]) { |
| 1751 | n = expand_on_ifs(output, n, G.global_argv[i]); |
| 1752 | debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1); |
| 1753 | if (G.global_argv[i++][0] && G.global_argv[i]) { |
| 1754 | /* this argv[] is not empty and not last: |
| 1755 | * put terminating NUL, start new word */ |
| 1756 | o_addchr(output, '\0'); |
| 1757 | debug_print_list("expand_vars_to_list[2]", output, n); |
| 1758 | n = o_save_ptr(output, n); |
| 1759 | debug_print_list("expand_vars_to_list[3]", output, n); |
| 1760 | } |
| 1761 | } |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1762 | output->o_escape = sv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1763 | } else |
| 1764 | /* If or_mask is nonzero, we handle assignment 'a=....$@.....' |
| 1765 | * and in this case should treat it like '$*' - see 'else...' below */ |
| 1766 | if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */ |
| 1767 | while (1) { |
| 1768 | o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i])); |
| 1769 | if (++i >= G.global_argc) |
| 1770 | break; |
| 1771 | o_addchr(output, '\0'); |
| 1772 | debug_print_list("expand_vars_to_list[4]", output, n); |
| 1773 | n = o_save_ptr(output, n); |
| 1774 | } |
| 1775 | } else { /* quoted $*: add as one word */ |
| 1776 | while (1) { |
| 1777 | o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i])); |
| 1778 | if (!G.global_argv[++i]) |
| 1779 | break; |
| 1780 | if (G.ifs[0]) |
| 1781 | o_addchr(output, G.ifs[0]); |
| 1782 | } |
| 1783 | } |
| 1784 | break; |
| 1785 | case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */ |
| 1786 | /* "Empty variable", used to make "" etc to not disappear */ |
| 1787 | arg++; |
| 1788 | ored_ch = 0x80; |
| 1789 | break; |
| 1790 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 1791 | case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1792 | *p = '\0'; |
| 1793 | arg++; |
| 1794 | //TODO: can we just stuff it into "output" directly? |
| 1795 | debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 1796 | process_command_subs(&subst_result, arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1797 | debug_printf_subst("SUBST RES '%s'\n", subst_result.data); |
| 1798 | val = subst_result.data; |
| 1799 | goto store_val; |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 1800 | #endif |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1801 | #if ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1802 | case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */ |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1803 | arith_eval_hooks_t hooks; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1804 | arith_t res; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1805 | int errcode; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1806 | char *exp_str; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1807 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1808 | arg++; /* skip '+' */ |
| 1809 | *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */ |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1810 | debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1811 | |
| 1812 | /* Optional: skip expansion if expr is simple ("a + 3", "i++" etc) */ |
Denis Vlasenko | b1d11bf | 2009-04-06 12:24:58 +0000 | [diff] [blame] | 1813 | exp_str = NULL; |
| 1814 | if (strchr(arg, '$') != NULL |
| 1815 | #if ENABLE_HUSH_TICK |
| 1816 | || strchr(arg, '`') != NULL |
| 1817 | #endif |
| 1818 | ) { |
| 1819 | /* We need to expand. Example: |
| 1820 | * echo $(($a + `echo 1`)) $((1 + $((2)) )) |
| 1821 | */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1822 | struct in_str input; |
| 1823 | o_string dest = NULL_O_STRING; |
| 1824 | |
| 1825 | setup_string_in_str(&input, arg); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1826 | parse_stream_dquoted(NULL, &dest, &input, EOF); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1827 | //bb_error_msg("'%s' -> '%s'", arg, dest.data); |
| 1828 | exp_str = expand_string_to_string(dest.data); |
| 1829 | //bb_error_msg("'%s' -> '%s'", dest.data, exp_str); |
Denis Vlasenko | 5e883fb | 2009-04-06 12:28:34 +0000 | [diff] [blame] | 1830 | o_free_unsafe(&dest); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1831 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 1832 | hooks.lookupvar = get_local_var_value; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1833 | hooks.setvar = arith_set_local_var; |
| 1834 | hooks.endofname = endofname; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1835 | res = arith(exp_str ? exp_str : arg, &errcode, &hooks); |
| 1836 | free(exp_str); |
| 1837 | |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1838 | if (errcode < 0) { |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1839 | switch (errcode) { |
| 1840 | case -3: maybe_die("arith", "exponent less than 0"); break; |
| 1841 | case -2: maybe_die("arith", "divide by zero"); break; |
| 1842 | case -5: maybe_die("arith", "expression recursion loop detected"); break; |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1843 | default: maybe_die("arith", "syntax error"); break; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1844 | } |
Denis Vlasenko | b29eb6e | 2009-04-02 13:46:27 +0000 | [diff] [blame] | 1845 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1846 | debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1847 | sprintf(arith_buf, arith_t_fmt, res); |
| 1848 | val = arith_buf; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 1849 | break; |
| 1850 | } |
| 1851 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1852 | default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1853 | case_default: { |
Denis Vlasenko | 232be3e | 2009-04-05 09:16:00 +0000 | [diff] [blame] | 1854 | bool exp_len = false; |
| 1855 | bool exp_null = false; |
| 1856 | char *var = arg; |
| 1857 | char exp_save = exp_save; /* for compiler */ |
| 1858 | char exp_op = exp_op; /* for compiler */ |
| 1859 | char *exp_word = exp_word; /* for compiler */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1860 | size_t exp_off = 0; |
Denis Vlasenko | 232be3e | 2009-04-05 09:16:00 +0000 | [diff] [blame] | 1861 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1862 | *p = '\0'; |
| 1863 | arg[0] = first_ch & 0x7f; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1864 | |
| 1865 | /* prepare for expansions */ |
| 1866 | if (var[0] == '#') { |
| 1867 | /* handle length expansion ${#var} */ |
| 1868 | exp_len = true; |
| 1869 | ++var; |
| 1870 | } else { |
| 1871 | /* maybe handle parameter expansion */ |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 1872 | exp_off = strcspn(var, ":-=+?%#"); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1873 | if (!var[exp_off]) |
| 1874 | exp_off = 0; |
| 1875 | if (exp_off) { |
| 1876 | exp_save = var[exp_off]; |
| 1877 | exp_null = exp_save == ':'; |
| 1878 | exp_word = var + exp_off; |
| 1879 | if (exp_null) ++exp_word; |
| 1880 | exp_op = *exp_word++; |
| 1881 | var[exp_off] = '\0'; |
| 1882 | } |
| 1883 | } |
| 1884 | |
| 1885 | /* lookup the variable in question */ |
| 1886 | if (isdigit(var[0])) { |
Mike Frysinger | 7c3e52c | 2009-03-28 21:06:22 +0000 | [diff] [blame] | 1887 | /* handle_dollar() should have vetted var for us */ |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1888 | i = xatoi_u(var); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1889 | if (i < G.global_argc) |
| 1890 | val = G.global_argv[i]; |
| 1891 | /* else val remains NULL: $N with too big N */ |
| 1892 | } else |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 1893 | val = get_local_var_value(var); |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1894 | |
| 1895 | /* handle any expansions */ |
| 1896 | if (exp_len) { |
| 1897 | debug_printf_expand("expand: length of '%s' = ", val); |
| 1898 | val = utoa(val ? strlen(val) : 0); |
| 1899 | debug_printf_expand("%s\n", val); |
| 1900 | } else if (exp_off) { |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 1901 | if (exp_op == '%' || exp_op == '#') { |
| 1902 | /* we need to do a pattern match */ |
| 1903 | bool zero; |
| 1904 | char *loc; |
| 1905 | scan_t scan = pick_scan(exp_op, *exp_word, &zero); |
| 1906 | if (exp_op == *exp_word) /* ## or %% */ |
| 1907 | ++exp_word; |
| 1908 | val = dyn_val = xstrdup(val); |
| 1909 | loc = scan(dyn_val, exp_word, zero); |
| 1910 | if (zero) |
| 1911 | val = loc; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1912 | else |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 1913 | *loc = '\0'; |
| 1914 | } else { |
| 1915 | /* we need to do an expansion */ |
| 1916 | int exp_test = (!val || (exp_null && !val[0])); |
| 1917 | if (exp_op == '+') |
| 1918 | exp_test = !exp_test; |
| 1919 | debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op, |
| 1920 | exp_null ? "true" : "false", exp_test); |
| 1921 | if (exp_test) { |
| 1922 | if (exp_op == '?') |
| 1923 | maybe_die(var, *exp_word ? exp_word : "parameter null or not set"); |
| 1924 | else |
| 1925 | val = exp_word; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1926 | |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 1927 | if (exp_op == '=') { |
| 1928 | if (isdigit(var[0]) || var[0] == '#') { |
| 1929 | maybe_die(var, "special vars cannot assign in this way"); |
| 1930 | val = NULL; |
| 1931 | } else { |
| 1932 | char *new_var = xmalloc(strlen(var) + strlen(val) + 2); |
| 1933 | sprintf(new_var, "%s=%s", var, val); |
| 1934 | set_local_var(new_var, -1, 0); |
| 1935 | } |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1936 | } |
| 1937 | } |
| 1938 | } |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 1939 | |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1940 | var[exp_off] = exp_save; |
| 1941 | } |
| 1942 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1943 | arg[0] = first_ch; |
| 1944 | #if ENABLE_HUSH_TICK |
| 1945 | store_val: |
| 1946 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1947 | if (!(first_ch & 0x80)) { /* unquoted $VAR */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1948 | 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] | 1949 | if (val) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1950 | /* unquoted var's contents should be globbed, so don't escape */ |
| 1951 | smallint sv = output->o_escape; |
| 1952 | output->o_escape = 0; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1953 | n = expand_on_ifs(output, n, val); |
| 1954 | val = NULL; |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1955 | output->o_escape = sv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1956 | } |
| 1957 | } else { /* quoted $VAR, val will be appended below */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 1958 | 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] | 1959 | } |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1960 | } /* default: */ |
| 1961 | } /* switch (char after <SPECIAL_VAR_SYMBOL>) */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1962 | if (val) { |
| 1963 | o_addQstr(output, val, strlen(val)); |
| 1964 | } |
Mike Frysinger | a4f331d | 2009-04-07 06:03:22 +0000 | [diff] [blame] | 1965 | free(dyn_val); |
| 1966 | dyn_val = NULL; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1967 | /* Do the check to avoid writing to a const string */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 1968 | if (*p != SPECIAL_VAR_SYMBOL) |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 1969 | *p = SPECIAL_VAR_SYMBOL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1970 | |
| 1971 | #if ENABLE_HUSH_TICK |
| 1972 | o_free(&subst_result); |
| 1973 | #endif |
| 1974 | arg = ++p; |
| 1975 | } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */ |
| 1976 | |
| 1977 | if (arg[0]) { |
| 1978 | debug_print_list("expand_vars_to_list[a]", output, n); |
| 1979 | /* this part is literal, and it was already pre-quoted |
| 1980 | * if needed (much earlier), do not use o_addQstr here! */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 1981 | o_addstr_with_NUL(output, arg); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1982 | debug_print_list("expand_vars_to_list[b]", output, n); |
| 1983 | } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */ |
| 1984 | && !(ored_ch & 0x80) /* and all vars were not quoted. */ |
| 1985 | ) { |
| 1986 | n--; |
| 1987 | /* allow to reuse list[n] later without re-growth */ |
| 1988 | output->has_empty_slot = 1; |
| 1989 | } else { |
| 1990 | o_addchr(output, '\0'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1991 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1992 | return n; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1993 | } |
| 1994 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1995 | static char **expand_variables(char **argv, int or_mask) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 1996 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 1997 | int n; |
| 1998 | char **list; |
| 1999 | char **v; |
| 2000 | o_string output = NULL_O_STRING; |
| 2001 | |
| 2002 | if (or_mask & 0x100) { |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 2003 | output.o_escape = 1; /* protect against globbing for "$var" */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2004 | /* (unquoted $var will temporarily switch it off) */ |
| 2005 | output.o_glob = 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2006 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2007 | |
| 2008 | n = 0; |
| 2009 | v = argv; |
| 2010 | while (*v) { |
| 2011 | n = expand_vars_to_list(&output, n, *v, (char)or_mask); |
| 2012 | v++; |
| 2013 | } |
| 2014 | debug_print_list("expand_variables", &output, n); |
| 2015 | |
| 2016 | /* output.data (malloced in one block) gets returned in "list" */ |
| 2017 | list = o_finalize_list(&output, n); |
| 2018 | debug_print_strings("expand_variables[1]", list); |
| 2019 | return list; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2020 | } |
| 2021 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2022 | static char **expand_strvec_to_strvec(char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2023 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2024 | return expand_variables(argv, 0x100); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2025 | } |
| 2026 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2027 | /* Used for expansion of right hand of assignments */ |
| 2028 | /* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs |
| 2029 | * "v=/bin/c*" */ |
| 2030 | static char *expand_string_to_string(const char *str) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2031 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2032 | char *argv[2], **list; |
| 2033 | |
| 2034 | argv[0] = (char*)str; |
| 2035 | argv[1] = NULL; |
| 2036 | list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */ |
| 2037 | if (HUSH_DEBUG) |
| 2038 | if (!list[0] || list[1]) |
| 2039 | bb_error_msg_and_die("BUG in varexp2"); |
| 2040 | /* actually, just move string 2*sizeof(char*) bytes back */ |
| 2041 | overlapping_strcpy((char*)list, list[0]); |
| 2042 | debug_printf_expand("string_to_string='%s'\n", (char*)list); |
| 2043 | return (char*)list; |
| 2044 | } |
| 2045 | |
| 2046 | /* Used for "eval" builtin */ |
| 2047 | static char* expand_strvec_to_string(char **argv) |
| 2048 | { |
| 2049 | char **list; |
| 2050 | |
| 2051 | list = expand_variables(argv, 0x80); |
| 2052 | /* Convert all NULs to spaces */ |
| 2053 | if (list[0]) { |
| 2054 | int n = 1; |
| 2055 | while (list[n]) { |
| 2056 | if (HUSH_DEBUG) |
| 2057 | if (list[n-1] + strlen(list[n-1]) + 1 != list[n]) |
| 2058 | bb_error_msg_and_die("BUG in varexp3"); |
| 2059 | list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */ |
| 2060 | n++; |
| 2061 | } |
| 2062 | } |
| 2063 | overlapping_strcpy((char*)list, list[0]); |
| 2064 | debug_printf_expand("strvec_to_string='%s'\n", (char*)list); |
| 2065 | return (char*)list; |
| 2066 | } |
| 2067 | |
| 2068 | static char **expand_assignments(char **argv, int count) |
| 2069 | { |
| 2070 | int i; |
| 2071 | char **p = NULL; |
| 2072 | /* Expand assignments into one string each */ |
| 2073 | for (i = 0; i < count; i++) { |
| 2074 | p = add_string_to_strings(p, expand_string_to_string(argv[i])); |
| 2075 | } |
| 2076 | return p; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2077 | } |
| 2078 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 2079 | |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2080 | #if BB_MMU |
| 2081 | void re_execute_shell(const char *s, int is_heredoc); /* never called */ |
| 2082 | #define clean_up_after_re_execute() ((void)0) |
| 2083 | static void reset_traps_to_defaults(void) |
| 2084 | { |
| 2085 | unsigned sig; |
| 2086 | int dirty; |
| 2087 | |
| 2088 | if (!G.traps) |
| 2089 | return; |
| 2090 | dirty = 0; |
| 2091 | for (sig = 0; sig < NSIG; sig++) { |
| 2092 | if (!G.traps[sig]) |
| 2093 | continue; |
| 2094 | free(G.traps[sig]); |
| 2095 | G.traps[sig] = NULL; |
| 2096 | /* There is no signal for 0 (EXIT) */ |
| 2097 | if (sig == 0) |
| 2098 | continue; |
| 2099 | /* there was a trap handler, we are removing it |
| 2100 | * (if sig has non-DFL handling, |
| 2101 | * we don't need to do anything) */ |
| 2102 | if (sig < 32 && (G.non_DFL_mask & (1 << sig))) |
| 2103 | continue; |
| 2104 | sigdelset(&G.blocked_set, sig); |
| 2105 | dirty = 1; |
| 2106 | } |
| 2107 | if (dirty) |
| 2108 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 2109 | } |
| 2110 | |
| 2111 | #else /* !BB_MMU */ |
| 2112 | |
| 2113 | static void re_execute_shell(const char *s, int is_heredoc) NORETURN; |
| 2114 | static void re_execute_shell(const char *s, int is_heredoc) |
| 2115 | { |
| 2116 | char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4]; |
| 2117 | struct variable *cur; |
| 2118 | char **argv, **pp, **pp2; |
| 2119 | unsigned cnt; |
| 2120 | |
| 2121 | sprintf(param_buf, "-$%x:%x:%x" USE_HUSH_LOOPS(":%x") |
| 2122 | , (unsigned) G.root_pid |
| 2123 | , (unsigned) G.last_bg_pid |
| 2124 | , (unsigned) G.last_exitcode |
| 2125 | USE_HUSH_LOOPS(, G.depth_of_loop) |
| 2126 | ); |
| 2127 | /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...> |
| 2128 | * 3:-c 4:<cmd> <argN...> 5:NULL |
| 2129 | */ |
| 2130 | cnt = 5 + G.global_argc; |
| 2131 | for (cur = G.top_var; cur; cur = cur->next) { |
| 2132 | if (!cur->flg_export || cur->flg_read_only) |
| 2133 | cnt += 2; |
| 2134 | } |
| 2135 | G.argv_from_re_execing = pp = xzalloc(sizeof(argv[0]) * cnt); |
| 2136 | *pp++ = (char *) G.argv0_for_re_execing; |
| 2137 | *pp++ = param_buf; |
| 2138 | for (cur = G.top_var; cur; cur = cur->next) { |
| 2139 | if (cur->varstr == hush_version_str) |
| 2140 | continue; |
| 2141 | if (cur->flg_read_only) { |
| 2142 | *pp++ = (char *) "-R"; |
| 2143 | *pp++ = cur->varstr; |
| 2144 | } else if (!cur->flg_export) { |
| 2145 | *pp++ = (char *) "-V"; |
| 2146 | *pp++ = cur->varstr; |
| 2147 | } |
| 2148 | } |
| 2149 | //TODO: pass functions |
| 2150 | /* We can pass activated traps here. Say, -Tnn:trap_string |
| 2151 | * |
| 2152 | * However, POSIX says that subshells reset signals with traps |
| 2153 | * to SIG_DFL. |
| 2154 | * I tested bash-3.2 and it not only does that with true subshells |
| 2155 | * of the form ( list ), but with any forked children shells. |
| 2156 | * I set trap "echo W" WINCH; and then tried: |
| 2157 | * |
| 2158 | * { echo 1; sleep 20; echo 2; } & |
| 2159 | * while true; do echo 1; sleep 20; echo 2; break; done & |
| 2160 | * true | { echo 1; sleep 20; echo 2; } | cat |
| 2161 | * |
| 2162 | * In all these cases sending SIGWINCH to the child shell |
| 2163 | * did not run the trap. If I add trap "echo V" WINCH; |
| 2164 | * _inside_ group (just before echo 1), it works. |
| 2165 | * |
| 2166 | * I conclude it means we don't need to pass active traps here. |
| 2167 | * exec syscall below resets them to SIG_DFL for us. |
| 2168 | */ |
| 2169 | *pp++ = (char *) (is_heredoc ? "-<" : "-c"); |
| 2170 | *pp++ = (char *) s; |
| 2171 | pp2 = G.global_argv; |
| 2172 | while (*pp2) |
| 2173 | *pp++ = *pp2++; |
| 2174 | /* *pp = NULL; - is already there */ |
| 2175 | |
| 2176 | debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s); |
| 2177 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
| 2178 | execv(bb_busybox_exec_path, G.argv_from_re_execing); |
| 2179 | /* Fallback. Useful for init=/bin/hush usage etc */ |
| 2180 | if (G.argv0_for_re_execing[0] == '/') |
| 2181 | execv(G.argv0_for_re_execing, G.argv_from_re_execing); |
| 2182 | xfunc_error_retval = 127; |
| 2183 | bb_error_msg_and_die("can't re-execute the shell"); |
| 2184 | } |
| 2185 | |
| 2186 | static void clean_up_after_re_execute(void) |
| 2187 | { |
| 2188 | char **pp = G.argv_from_re_execing; |
| 2189 | if (pp) { |
| 2190 | /* Must match re_execute_shell's allocations (if any) */ |
| 2191 | free(pp); |
| 2192 | G.argv_from_re_execing = NULL; |
| 2193 | } |
| 2194 | } |
| 2195 | #endif /* !BB_MMU */ |
| 2196 | |
| 2197 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2198 | static void setup_heredoc(int fd, const char *heredoc) |
| 2199 | { |
| 2200 | struct fd_pair pair; |
| 2201 | pid_t pid; |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2202 | int len, written; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2203 | |
| 2204 | xpiped_pair(pair); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2205 | xmove_fd(pair.rd, fd); |
| 2206 | |
| 2207 | len = strlen(heredoc); |
| 2208 | /* Try writing without forking. Newer kernels have |
| 2209 | * dynamically growing pipes. Must use non-blocking write! */ |
| 2210 | ndelay_on(pair.wr); |
| 2211 | while (1) { |
| 2212 | written = write(pair.wr, heredoc, len); |
| 2213 | if (written <= 0) |
| 2214 | break; |
| 2215 | len -= written; |
| 2216 | if (len == 0) { |
| 2217 | close(pair.wr); |
| 2218 | return; |
| 2219 | } |
| 2220 | heredoc += written; |
| 2221 | } |
| 2222 | ndelay_off(pair.wr); |
| 2223 | |
| 2224 | /* Okay, pipe buffer was not big enough */ |
| 2225 | /* Note: we must not create a stray child (bastard? :) |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2226 | * for the unsuspecting parent process. Child creates a grandchild |
| 2227 | * and exits before parent execs the process which consumes heredoc |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2228 | * (that exec happens after we return from this function) */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2229 | pid = vfork(); |
| 2230 | if (pid < 0) |
| 2231 | bb_perror_msg_and_die("vfork"); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2232 | if (pid == 0) { |
| 2233 | /* child */ |
| 2234 | pid = BB_MMU ? fork() : vfork(); |
| 2235 | if (pid < 0) |
| 2236 | bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork"); |
| 2237 | if (pid != 0) |
| 2238 | _exit(0); |
| 2239 | /* grandchild */ |
| 2240 | close(fd); /* read side of the pipe */ |
| 2241 | #if BB_MMU |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2242 | full_write(pair.wr, heredoc, len); /* may loop or block */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2243 | _exit(0); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2244 | #else |
| 2245 | /* Delegate blocking writes to another process */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2246 | disable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2247 | xmove_fd(pair.wr, STDOUT_FILENO); |
| 2248 | re_execute_shell(heredoc, 1); |
| 2249 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2250 | } |
| 2251 | /* parent */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2252 | enable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2253 | clean_up_after_re_execute(); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2254 | close(pair.wr); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2255 | wait(NULL); /* wait till child has died */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2256 | } |
| 2257 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2258 | /* squirrel != NULL means we squirrel away copies of stdin, stdout, |
| 2259 | * and stderr if they are redirected. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2260 | static int setup_redirects(struct command *prog, int squirrel[]) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2261 | { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2262 | //TODO: no callers ever check return value - ?! |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2263 | int openfd, mode; |
| 2264 | struct redir_struct *redir; |
| 2265 | |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2266 | for (redir = prog->redirects; redir; redir = redir->next) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2267 | if (redir->rd_type == REDIRECT_HEREDOC2) { |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2268 | if (squirrel && redir->rd_fd < 3) { |
| 2269 | squirrel[redir->rd_fd] = dup(redir->rd_fd); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2270 | } |
| 2271 | /* for REDIRECT_HEREDOC2, rd_filename holds _contents_ |
| 2272 | * of the heredoc */ |
| 2273 | debug_printf_parse("set heredoc '%s'\n", |
| 2274 | redir->rd_filename); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2275 | setup_heredoc(redir->rd_fd, redir->rd_filename); |
Eric Andersen | 817e73c | 2001-06-06 17:56:09 +0000 | [diff] [blame] | 2276 | continue; |
| 2277 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2278 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2279 | if (redir->rd_dup == -1) { |
Denis Vlasenko | cccdc4e | 2007-11-23 21:08:38 +0000 | [diff] [blame] | 2280 | char *p; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2281 | if (redir->rd_filename == NULL) { |
| 2282 | /* Something went wrong in the parse. |
| 2283 | * Pretend it didn't happen */ |
| 2284 | continue; |
| 2285 | } |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 2286 | mode = redir_table[redir->rd_type].mode; |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 2287 | //TODO: check redir for names like '\\' |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 2288 | p = expand_string_to_string(redir->rd_filename); |
Denis Vlasenko | cccdc4e | 2007-11-23 21:08:38 +0000 | [diff] [blame] | 2289 | openfd = open_or_warn(p, mode); |
| 2290 | free(p); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2291 | if (openfd < 0) { |
| 2292 | /* this could get lost if stderr has been redirected, but |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 2293 | * bash and ash both lose it as well (though zsh doesn't!) */ |
| 2294 | //what the above comment tries to say? |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2295 | return 1; |
| 2296 | } |
| 2297 | } else { |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2298 | openfd = redir->rd_dup; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2299 | } |
| 2300 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2301 | if (openfd != redir->rd_fd) { |
| 2302 | if (squirrel && redir->rd_fd < 3) { |
| 2303 | squirrel[redir->rd_fd] = dup(redir->rd_fd); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2304 | } |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2305 | if (openfd == -3) { |
Mike Frysinger | dc41780 | 2009-04-06 12:35:41 +0000 | [diff] [blame] | 2306 | /* "-" means "close me" and we use -3 for that */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2307 | close(redir->rd_fd); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2308 | } else { |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2309 | dup2(openfd, redir->rd_fd); |
| 2310 | if (redir->rd_dup == -1) |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2311 | close(openfd); |
Eric Andersen | 83a2ae2 | 2001-05-07 17:59:25 +0000 | [diff] [blame] | 2312 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2313 | } |
| 2314 | } |
| 2315 | return 0; |
| 2316 | } |
| 2317 | |
| 2318 | static void restore_redirects(int squirrel[]) |
| 2319 | { |
| 2320 | int i, fd; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 2321 | for (i = 0; i < 3; i++) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2322 | fd = squirrel[i]; |
| 2323 | if (fd != -1) { |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 2324 | /* We simply die on error */ |
| 2325 | xmove_fd(fd, i); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2326 | } |
| 2327 | } |
| 2328 | } |
| 2329 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2330 | |
Denis Vlasenko | a0e6512 | 2009-04-05 23:39:14 +0000 | [diff] [blame] | 2331 | #if !DEBUG_CLEAN |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2332 | #define free_pipe_list(head, indent) free_pipe_list(head) |
| 2333 | #define free_pipe(pi, indent) free_pipe(pi) |
| 2334 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2335 | static void free_pipe_list(struct pipe *head, int indent); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2336 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2337 | /* Return code is the exit status of the pipe */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2338 | static void free_pipe(struct pipe *pi, int indent) |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2339 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2340 | char **p; |
| 2341 | struct command *command; |
| 2342 | struct redir_struct *r, *rnext; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2343 | int a, i; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2344 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2345 | if (pi->stopped_cmds > 0) /* why? */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2346 | return; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2347 | debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid()); |
| 2348 | for (i = 0; i < pi->num_cmds; i++) { |
| 2349 | command = &pi->cmds[i]; |
| 2350 | debug_printf_clean("%s command %d:\n", indenter(indent), i); |
| 2351 | if (command->argv) { |
| 2352 | for (a = 0, p = command->argv; *p; a++, p++) { |
| 2353 | debug_printf_clean("%s argv[%d] = %s\n", indenter(indent), a, *p); |
| 2354 | } |
| 2355 | free_strings(command->argv); |
| 2356 | command->argv = NULL; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2357 | } |
| 2358 | /* not "else if": on syntax error, we may have both! */ |
| 2359 | if (command->group) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2360 | 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] | 2361 | free_pipe_list(command->group, indent+3); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2362 | debug_printf_clean("%s end group\n", indenter(indent)); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2363 | command->group = NULL; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2364 | } |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2365 | #if !BB_MMU |
| 2366 | free(command->group_as_string); |
| 2367 | command->group_as_string = NULL; |
| 2368 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2369 | for (r = command->redirects; r; r = rnext) { |
| 2370 | debug_printf_clean("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->rd_type].descrip); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2371 | if (r->rd_dup == -1) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2372 | /* guard against the case >$FOO, where foo is unset or blank */ |
| 2373 | if (r->rd_filename) { |
| 2374 | debug_printf_clean(" %s\n", r->rd_filename); |
| 2375 | free(r->rd_filename); |
| 2376 | r->rd_filename = NULL; |
| 2377 | } |
| 2378 | } else { |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2379 | debug_printf_clean("&%d\n", r->rd_dup); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2380 | } |
| 2381 | rnext = r->next; |
| 2382 | free(r); |
| 2383 | } |
| 2384 | command->redirects = NULL; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2385 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2386 | free(pi->cmds); /* children are an array, they get freed all at once */ |
| 2387 | pi->cmds = NULL; |
| 2388 | #if ENABLE_HUSH_JOB |
| 2389 | free(pi->cmdtext); |
| 2390 | pi->cmdtext = NULL; |
| 2391 | #endif |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2392 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 2393 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2394 | static void free_pipe_list(struct pipe *head, int indent) |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2395 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2396 | struct pipe *pi, *next; |
| 2397 | |
| 2398 | for (pi = head; pi; pi = next) { |
| 2399 | #if HAS_KEYWORDS |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 2400 | 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] | 2401 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 2402 | free_pipe(pi, indent); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2403 | debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup); |
| 2404 | next = pi->next; |
| 2405 | /*pi->next = NULL;*/ |
| 2406 | free(pi); |
| 2407 | } |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2408 | } |
| 2409 | |
| 2410 | |
| 2411 | #if !BB_MMU |
| 2412 | typedef struct nommu_save_t { |
| 2413 | char **new_env; |
| 2414 | char **old_env; |
| 2415 | char **argv; |
| 2416 | } nommu_save_t; |
| 2417 | #else |
| 2418 | #define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \ |
| 2419 | pseudo_exec_argv(argv, assignment_cnt, argv_expanded) |
| 2420 | #define pseudo_exec(nommu_save, command, argv_expanded) \ |
| 2421 | pseudo_exec(command, argv_expanded) |
| 2422 | #endif |
| 2423 | |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 2424 | /* Called after [v]fork() in run_pipe, or from builtin_exec. |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2425 | * Never returns. |
| 2426 | * XXX no exit() here. If you don't exec, use _exit instead. |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2427 | * The at_exit handlers apparently confuse the calling process, |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2428 | * in particular stdin handling. Not sure why? -- because of vfork! (vda) */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2429 | static void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 2430 | char **argv, int assignment_cnt, |
| 2431 | char **argv_expanded) NORETURN; |
| 2432 | static void pseudo_exec_argv(nommu_save_t *nommu_save, |
| 2433 | char **argv, int assignment_cnt, |
| 2434 | char **argv_expanded) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2435 | { |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2436 | char **new_env; |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2437 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2438 | /* Case when we are here: ... | var=val | ... */ |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2439 | if (!argv[assignment_cnt]) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2440 | _exit(EXIT_SUCCESS); |
Denis Vlasenko | 87cb2db | 2007-04-21 10:00:01 +0000 | [diff] [blame] | 2441 | |
Denis Vlasenko | 9504e44 | 2008-10-29 01:19:15 +0000 | [diff] [blame] | 2442 | new_env = expand_assignments(argv, assignment_cnt); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2443 | #if BB_MMU |
| 2444 | putenv_all(new_env); |
| 2445 | free(new_env); /* optional */ |
| 2446 | #else |
| 2447 | nommu_save->new_env = new_env; |
| 2448 | nommu_save->old_env = putenv_all_and_save_old(new_env); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 2449 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2450 | if (argv_expanded) { |
| 2451 | argv = argv_expanded; |
| 2452 | } else { |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 2453 | argv = expand_strvec_to_strvec(argv + assignment_cnt); |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2454 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2455 | nommu_save->argv = argv; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2456 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2457 | } |
Denis Vlasenko | 764d59d | 2007-05-14 16:23:23 +0000 | [diff] [blame] | 2458 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2459 | /* On NOMMU, we must never block! |
| 2460 | * Example: { sleep 99999 | read line } & echo Ok |
| 2461 | * read builtin will block on read syscall, leaving parent blocked |
| 2462 | * in vfork. Therefore we can't do this: |
| 2463 | */ |
| 2464 | #if BB_MMU |
| 2465 | /* Check if the command matches any of the builtins. |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2466 | * Depending on context, this might be redundant. But it's |
| 2467 | * easier to waste a few CPU cycles than it is to figure out |
| 2468 | * if this is one of those cases. |
| 2469 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 2470 | { |
| 2471 | int rcode; |
| 2472 | const struct built_in_command *x; |
| 2473 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
| 2474 | if (strcmp(argv[0], x->cmd) == 0) { |
| 2475 | debug_printf_exec("running builtin '%s'\n", |
| 2476 | argv[0]); |
| 2477 | rcode = x->function(argv); |
| 2478 | fflush(NULL); |
| 2479 | _exit(rcode); |
| 2480 | } |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2481 | } |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2482 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2483 | #endif |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 2484 | |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 2485 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2486 | /* Check if the command matches any busybox applets */ |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2487 | if (strchr(argv[0], '/') == NULL) { |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 2488 | int a = find_applet_by_name(argv[0]); |
| 2489 | if (a >= 0) { |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2490 | #if BB_MMU /* see above why on NOMMU it is not allowed */ |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 2491 | if (APPLET_IS_NOEXEC(a)) { |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2492 | debug_printf_exec("running applet '%s'\n", argv[0]); |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 2493 | run_applet_no_and_exit(a, argv); |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2494 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2495 | #endif |
| 2496 | /* Re-exec ourselves */ |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2497 | debug_printf_exec("re-execing applet '%s'\n", argv[0]); |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2498 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
| 2499 | execv(bb_busybox_exec_path, argv); |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2500 | /* If they called chroot or otherwise made the binary no longer |
| 2501 | * executable, fall through */ |
| 2502 | } |
| 2503 | } |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 2504 | #endif |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2505 | |
| 2506 | debug_printf_exec("execing '%s'\n", argv[0]); |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2507 | sigprocmask(SIG_SETMASK, &G.inherited_set, NULL); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2508 | execvp(argv[0], argv); |
Bernhard Reutner-Fischer | a53de7f | 2008-07-21 13:46:54 +0000 | [diff] [blame] | 2509 | bb_perror_msg("can't exec '%s'", argv[0]); |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 2510 | _exit(EXIT_FAILURE); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2511 | } |
| 2512 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 2513 | static int run_list(struct pipe *pi); |
| 2514 | |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 2515 | /* Called after [v]fork() in run_pipe |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2516 | */ |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2517 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 2518 | struct command *command, |
| 2519 | char **argv_expanded) NORETURN; |
| 2520 | static void pseudo_exec(nommu_save_t *nommu_save, |
| 2521 | struct command *command, |
| 2522 | char **argv_expanded) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2523 | { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2524 | if (command->argv) { |
| 2525 | pseudo_exec_argv(nommu_save, command->argv, |
| 2526 | command->assignment_cnt, argv_expanded); |
| 2527 | } |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2528 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2529 | if (command->group) { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2530 | /* Cases when we are here: |
| 2531 | * ( list ) |
| 2532 | * { list } & |
| 2533 | * ... | ( list ) | ... |
| 2534 | * ... | { list } | ... |
| 2535 | */ |
| 2536 | #if BB_MMU |
Denis Vlasenko | 3b49216 | 2007-12-24 14:26:57 +0000 | [diff] [blame] | 2537 | int rcode; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2538 | debug_printf_exec("pseudo_exec: run_list\n"); |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 2539 | reset_traps_to_defaults(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2540 | rcode = run_list(command->group); |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 2541 | /* OK to leak memory by not calling free_pipe_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2542 | * since this process is about to exit */ |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 2543 | _exit(rcode); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2544 | #else |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 2545 | re_execute_shell(command->group_as_string, 0); |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 2546 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2547 | } |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2548 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2549 | /* Case when we are here: ... | >file */ |
| 2550 | debug_printf_exec("pseudo_exec'ed null command\n"); |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2551 | _exit(EXIT_SUCCESS); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2552 | } |
| 2553 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2554 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2555 | static const char *get_cmdtext(struct pipe *pi) |
| 2556 | { |
| 2557 | char **argv; |
| 2558 | char *p; |
| 2559 | int len; |
| 2560 | |
| 2561 | /* This is subtle. ->cmdtext is created only on first backgrounding. |
| 2562 | * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...) |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2563 | * On subsequent bg argv is trashed, but we won't use it */ |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2564 | if (pi->cmdtext) |
| 2565 | return pi->cmdtext; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2566 | argv = pi->cmds[0].argv; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 2567 | if (!argv || !argv[0]) { |
| 2568 | pi->cmdtext = xzalloc(1); |
| 2569 | return pi->cmdtext; |
| 2570 | } |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2571 | |
| 2572 | len = 0; |
| 2573 | do len += strlen(*argv) + 1; while (*++argv); |
| 2574 | pi->cmdtext = p = xmalloc(len); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2575 | argv = pi->cmds[0].argv; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2576 | do { |
| 2577 | len = strlen(*argv); |
| 2578 | memcpy(p, *argv, len); |
| 2579 | p += len; |
| 2580 | *p++ = ' '; |
| 2581 | } while (*++argv); |
| 2582 | p[-1] = '\0'; |
| 2583 | return pi->cmdtext; |
| 2584 | } |
| 2585 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2586 | static void insert_bg_job(struct pipe *pi) |
| 2587 | { |
| 2588 | struct pipe *thejob; |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2589 | int i; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2590 | |
| 2591 | /* Linear search for the ID of the job to use */ |
| 2592 | pi->jobid = 1; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2593 | for (thejob = G.job_list; thejob; thejob = thejob->next) |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2594 | if (thejob->jobid >= pi->jobid) |
| 2595 | pi->jobid = thejob->jobid + 1; |
| 2596 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2597 | /* Add thejob to the list of running jobs */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2598 | if (!G.job_list) { |
| 2599 | thejob = G.job_list = xmalloc(sizeof(*thejob)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2600 | } else { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2601 | for (thejob = G.job_list; thejob->next; thejob = thejob->next) |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2602 | continue; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2603 | thejob->next = xmalloc(sizeof(*thejob)); |
| 2604 | thejob = thejob->next; |
| 2605 | } |
| 2606 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2607 | /* Physically copy the struct job */ |
Eric Andersen | 0fcd447 | 2001-05-02 20:12:03 +0000 | [diff] [blame] | 2608 | memcpy(thejob, pi, sizeof(struct pipe)); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2609 | thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds); |
| 2610 | /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */ |
| 2611 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2612 | // TODO: do we really need to have so many fields which are just dead weight |
| 2613 | // at execution stage? |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2614 | thejob->cmds[i].pid = pi->cmds[i].pid; |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 2615 | /* all other fields are not used and stay zero */ |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2616 | } |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2617 | thejob->next = NULL; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 2618 | thejob->cmdtext = xstrdup(get_cmdtext(pi)); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2619 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2620 | /* We don't wait for background thejobs to return -- append it |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2621 | to the list of backgrounded thejobs and leave it alone */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 2622 | if (G_interactive_fd) |
Mike Frysinger | 87824e0 | 2009-03-30 00:19:30 +0000 | [diff] [blame] | 2623 | 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] | 2624 | G.last_bg_pid = thejob->cmds[0].pid; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2625 | G.last_jobid = thejob->jobid; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2626 | } |
| 2627 | |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2628 | static void remove_bg_job(struct pipe *pi) |
| 2629 | { |
| 2630 | struct pipe *prev_pipe; |
| 2631 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2632 | if (pi == G.job_list) { |
| 2633 | G.job_list = pi->next; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2634 | } else { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2635 | prev_pipe = G.job_list; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2636 | while (prev_pipe->next != pi) |
| 2637 | prev_pipe = prev_pipe->next; |
| 2638 | prev_pipe->next = pi->next; |
| 2639 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2640 | if (G.job_list) |
| 2641 | G.last_jobid = G.job_list->jobid; |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 2642 | else |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2643 | G.last_jobid = 0; |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2644 | } |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 2645 | |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2646 | /* Remove a backgrounded job */ |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2647 | static void delete_finished_bg_job(struct pipe *pi) |
| 2648 | { |
| 2649 | remove_bg_job(pi); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2650 | pi->stopped_cmds = 0; |
Eric Andersen | bf7df04 | 2001-05-23 22:18:35 +0000 | [diff] [blame] | 2651 | free_pipe(pi, 0); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2652 | free(pi); |
| 2653 | } |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2654 | #endif /* JOB */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2655 | |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2656 | /* Check to see if any processes have exited -- if they |
| 2657 | * have, figure out why and see if a job has completed */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2658 | static int checkjobs(struct pipe* fg_pipe) |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2659 | { |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2660 | int attributes; |
| 2661 | int status; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2662 | #if ENABLE_HUSH_JOB |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2663 | struct pipe *pi; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2664 | #endif |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2665 | pid_t childpid; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2666 | int rcode = 0; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2667 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 2668 | debug_printf_jobs("checkjobs %p\n", fg_pipe); |
| 2669 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 2670 | errno = 0; |
| 2671 | // if (G.handled_SIGCHLD == G.count_SIGCHLD) |
| 2672 | // /* avoid doing syscall, nothing there anyway */ |
| 2673 | // return rcode; |
| 2674 | |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2675 | attributes = WUNTRACED; |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2676 | if (fg_pipe == NULL) |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2677 | attributes |= WNOHANG; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2678 | |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2679 | /* Do we do this right? |
| 2680 | * bash-3.00# sleep 20 | false |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 2681 | * <ctrl-Z pressed> |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2682 | * [3]+ Stopped sleep 20 | false |
| 2683 | * bash-3.00# echo $? |
| 2684 | * 1 <========== bg pipe is not fully done, but exitcode is already known! |
| 2685 | */ |
| 2686 | |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2687 | //FIXME: non-interactive bash does not continue even if all processes in fg pipe |
| 2688 | //are stopped. Testcase: "cat | cat" in a script (not on command line) |
| 2689 | // + killall -STOP cat |
| 2690 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2691 | wait_more: |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 2692 | while (1) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2693 | int i; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 2694 | int dead; |
| 2695 | |
| 2696 | // i = G.count_SIGCHLD; |
| 2697 | childpid = waitpid(-1, &status, attributes); |
| 2698 | if (childpid <= 0) { |
| 2699 | if (childpid && errno != ECHILD) |
| 2700 | bb_perror_msg("waitpid"); |
| 2701 | // else /* Until next SIGCHLD, waitpid's are useless */ |
| 2702 | // G.handled_SIGCHLD = i; |
| 2703 | break; |
| 2704 | } |
| 2705 | dead = WIFEXITED(status) || WIFSIGNALED(status); |
| 2706 | |
Denis Vlasenko | b61e13d | 2008-06-17 05:11:43 +0000 | [diff] [blame] | 2707 | #if DEBUG_JOBS |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2708 | if (WIFSTOPPED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 2709 | debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2710 | childpid, WSTOPSIG(status), WEXITSTATUS(status)); |
| 2711 | if (WIFSIGNALED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 2712 | debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2713 | childpid, WTERMSIG(status), WEXITSTATUS(status)); |
| 2714 | if (WIFEXITED(status)) |
Denis Vlasenko | d01ff13 | 2007-05-02 21:40:23 +0000 | [diff] [blame] | 2715 | debug_printf_jobs("pid %d exited, exitcode %d\n", |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2716 | childpid, WEXITSTATUS(status)); |
| 2717 | #endif |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2718 | /* Were we asked to wait for fg pipe? */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2719 | if (fg_pipe) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2720 | for (i = 0; i < fg_pipe->num_cmds; i++) { |
| 2721 | debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid); |
| 2722 | if (fg_pipe->cmds[i].pid != childpid) |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2723 | continue; |
| 2724 | /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */ |
| 2725 | if (dead) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2726 | fg_pipe->cmds[i].pid = 0; |
| 2727 | fg_pipe->alive_cmds--; |
| 2728 | if (i == fg_pipe->num_cmds - 1) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2729 | /* last process gives overall exitstatus */ |
| 2730 | rcode = WEXITSTATUS(status); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 2731 | IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2732 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2733 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2734 | fg_pipe->cmds[i].is_stopped = 1; |
| 2735 | fg_pipe->stopped_cmds++; |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2736 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2737 | debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n", |
| 2738 | fg_pipe->alive_cmds, fg_pipe->stopped_cmds); |
| 2739 | if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) { |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2740 | /* All processes in fg pipe have exited/stopped */ |
| 2741 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2742 | if (fg_pipe->alive_cmds) |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2743 | insert_bg_job(fg_pipe); |
| 2744 | #endif |
| 2745 | return rcode; |
| 2746 | } |
| 2747 | /* There are still running processes in the fg pipe */ |
| 2748 | goto wait_more; /* do waitpid again */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2749 | } |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2750 | /* it wasnt fg_pipe, look for process in bg pipes */ |
Eric Andersen | c798b07 | 2001-06-22 06:23:03 +0000 | [diff] [blame] | 2751 | } |
| 2752 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2753 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2754 | /* We asked to wait for bg or orphaned children */ |
| 2755 | /* No need to remember exitcode in this case */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 2756 | for (pi = G.job_list; pi; pi = pi->next) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2757 | for (i = 0; i < pi->num_cmds; i++) { |
| 2758 | if (pi->cmds[i].pid == childpid) |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 2759 | goto found_pi_and_prognum; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 2760 | } |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2761 | } |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 2762 | /* Happens when shell is used as init process (init=/bin/sh) */ |
| 2763 | debug_printf("checkjobs: pid %d was not in our list!\n", childpid); |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2764 | continue; /* do waitpid again */ |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 2765 | |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 2766 | found_pi_and_prognum: |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2767 | if (dead) { |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2768 | /* child exited */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2769 | pi->cmds[i].pid = 0; |
| 2770 | pi->alive_cmds--; |
| 2771 | if (!pi->alive_cmds) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 2772 | if (G_interactive_fd) |
Mike Frysinger | 87824e0 | 2009-03-30 00:19:30 +0000 | [diff] [blame] | 2773 | printf(JOB_STATUS_FORMAT, pi->jobid, |
| 2774 | "Done", pi->cmdtext); |
Denis Vlasenko | 1359da6 | 2007-04-21 23:27:30 +0000 | [diff] [blame] | 2775 | delete_finished_bg_job(pi); |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2776 | } |
| 2777 | } else { |
| 2778 | /* child stopped */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2779 | pi->cmds[i].is_stopped = 1; |
| 2780 | pi->stopped_cmds++; |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2781 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2782 | #endif |
Denis Vlasenko | 003f9fb | 2008-06-24 00:47:58 +0000 | [diff] [blame] | 2783 | } /* while (waitpid succeeds)... */ |
Eric Andersen | bafd94f | 2001-05-02 16:11:59 +0000 | [diff] [blame] | 2784 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2785 | return rcode; |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 2786 | } |
| 2787 | |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 2788 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 2789 | static int checkjobs_and_fg_shell(struct pipe* fg_pipe) |
| 2790 | { |
| 2791 | pid_t p; |
| 2792 | int rcode = checkjobs(fg_pipe); |
| 2793 | /* Job finished, move the shell to the foreground */ |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 2794 | p = getpgid(0); /* pgid of our process */ |
| 2795 | debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 2796 | tcsetpgrp(G_interactive_fd, p); |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 2797 | return rcode; |
| 2798 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 2799 | #endif |
Denis Vlasenko | 52881e9 | 2007-04-21 13:42:52 +0000 | [diff] [blame] | 2800 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2801 | /* Start all the jobs, but don't wait for anything to finish. |
| 2802 | * See checkjobs(). |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2803 | * |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2804 | * 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] | 2805 | * to finish to determine the exit status of the pipe. If the pipe |
| 2806 | * is a simple builtin command, however, the action is done by the |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2807 | * time run_pipe returns, and the exit code is provided as the |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2808 | * return value. |
| 2809 | * |
Denis Vlasenko | 170435c | 2007-05-23 13:01:10 +0000 | [diff] [blame] | 2810 | * Returns -1 only if started some children. IOW: we have to |
| 2811 | * mask out retvals of builtins etc with 0xff! |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2812 | * |
| 2813 | * The only case when we do not need to [v]fork is when the pipe |
| 2814 | * is single, non-backgrounded, non-subshell command. Examples: |
| 2815 | * cmd ; ... { list } ; ... |
| 2816 | * cmd && ... { list } && ... |
| 2817 | * cmd || ... { list } || ... |
| 2818 | * If it is, then we can run cmd as a builtin, NOFORK [do we do this?], |
| 2819 | * or (if SH_STANDALONE) an applet, and we can run the { list } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 2820 | * 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] | 2821 | * |
| 2822 | * Cases when we must fork: |
| 2823 | * non-single: cmd | cmd |
| 2824 | * backgrounded: cmd & { list } & |
| 2825 | * subshell: ( list ) [&] |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2826 | */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2827 | static int run_pipe(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2828 | { |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2829 | static const char *const null_ptr = NULL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2830 | int i; |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2831 | int nextin; |
| 2832 | int pipefds[2]; /* pipefds[0] is for reading */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2833 | struct command *command; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2834 | char **argv_expanded; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2835 | char **argv; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 2836 | char *p; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 2837 | /* it is not always needed, but we aim to smaller code */ |
| 2838 | int squirrel[] = { -1, -1, -1 }; |
| 2839 | int rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2840 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2841 | debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds); |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 2842 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2843 | USE_HUSH_JOB(pi->pgrp = -1;) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2844 | pi->stopped_cmds = 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2845 | command = &(pi->cmds[0]); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2846 | argv_expanded = NULL; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2847 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2848 | if (pi->num_cmds != 1 |
| 2849 | || pi->followup == PIPE_BG |
| 2850 | || command->grp_type == GRP_SUBSHELL |
| 2851 | ) { |
| 2852 | goto must_fork; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2853 | } |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 2854 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2855 | pi->alive_cmds = 1; |
| 2856 | |
| 2857 | debug_printf_exec(": group:%p argv:'%s'\n", |
| 2858 | command->group, command->argv ? command->argv[0] : "NONE"); |
| 2859 | |
| 2860 | if (command->group) { |
| 2861 | #if ENABLE_HUSH_FUNCTIONS |
| 2862 | if (command->grp_type == GRP_FUNCTION) { |
| 2863 | /* func () { list } */ |
| 2864 | bb_error_msg("here we ought to remember function definition, and go on"); |
| 2865 | return EXIT_SUCCESS; |
| 2866 | } |
| 2867 | #endif |
| 2868 | /* { list } */ |
| 2869 | debug_printf("non-subshell group\n"); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2870 | setup_redirects(command, squirrel); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2871 | debug_printf_exec(": run_list\n"); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2872 | rcode = run_list(command->group) & 0xff; |
Eric Andersen | 04407e5 | 2001-06-07 16:42:05 +0000 | [diff] [blame] | 2873 | restore_redirects(squirrel); |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2874 | debug_printf_exec("run_pipe return %d\n", rcode); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 2875 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2876 | return rcode; |
Denis Vlasenko | f03dbed | 2007-04-13 19:55:50 +0000 | [diff] [blame] | 2877 | } |
| 2878 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2879 | argv = command->argv ? command->argv : (char **) &null_ptr; |
| 2880 | { |
| 2881 | const struct built_in_command *x; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2882 | char **new_env = NULL; |
| 2883 | char **old_env = NULL; |
| 2884 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2885 | if (argv[command->assignment_cnt] == NULL) { |
| 2886 | /* Assignments, but no command */ |
| 2887 | /* Ensure redirects take effect. Try "a=t >file" */ |
| 2888 | setup_redirects(command, squirrel); |
| 2889 | restore_redirects(squirrel); |
| 2890 | /* Set shell variables */ |
| 2891 | while (*argv) { |
| 2892 | p = expand_string_to_string(*argv); |
| 2893 | debug_printf_exec("set shell var:'%s'->'%s'\n", |
| 2894 | *argv, p); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 2895 | set_local_var(p, 0, 0); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2896 | argv++; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 2897 | } |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2898 | /* Do we need to flag set_local_var() errors? |
| 2899 | * "assignment to readonly var" and "putenv error" |
| 2900 | */ |
| 2901 | return EXIT_SUCCESS; |
Eric Andersen | 78a7c99 | 2001-05-15 16:30:25 +0000 | [diff] [blame] | 2902 | } |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2903 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2904 | /* Expand the rest into (possibly) many strings each */ |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2905 | argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt); |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2906 | |
Denis Vlasenko | dd316dd | 2008-06-14 15:50:55 +0000 | [diff] [blame] | 2907 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2908 | if (strcmp(argv_expanded[0], x->cmd) != 0) |
| 2909 | continue; |
| 2910 | if (x->function == builtin_exec && argv_expanded[1] == NULL) { |
| 2911 | debug_printf("exec with redirects only\n"); |
| 2912 | setup_redirects(command, NULL); |
| 2913 | rcode = EXIT_SUCCESS; |
| 2914 | goto clean_up_and_ret1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2915 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2916 | debug_printf("builtin inline %s\n", argv_expanded[0]); |
| 2917 | /* XXX setup_redirects acts on file descriptors, not FILEs. |
| 2918 | * This is perfect for work that comes after exec(). |
| 2919 | * Is it really safe for inline use? Experimentally, |
| 2920 | * things seem to work with glibc. */ |
| 2921 | setup_redirects(command, squirrel); |
| 2922 | new_env = expand_assignments(argv, command->assignment_cnt); |
| 2923 | old_env = putenv_all_and_save_old(new_env); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2924 | debug_printf_exec(": builtin '%s' '%s'...\n", |
| 2925 | x->cmd, argv_expanded[1]); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2926 | rcode = x->function(argv_expanded) & 0xff; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2927 | #if ENABLE_FEATURE_SH_STANDALONE |
| 2928 | clean_up_and_ret: |
| 2929 | #endif |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2930 | restore_redirects(squirrel); |
| 2931 | free_strings_and_unsetenv(new_env, 1); |
| 2932 | putenv_all(old_env); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2933 | free(old_env); /* not free_strings()! */ |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2934 | clean_up_and_ret1: |
| 2935 | free(argv_expanded); |
| 2936 | IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;) |
| 2937 | debug_printf_exec("run_pipe return %d\n", rcode); |
| 2938 | return rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2939 | } |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 2940 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2941 | i = find_applet_by_name(argv_expanded[0]); |
| 2942 | if (i >= 0 && APPLET_IS_NOFORK(i)) { |
| 2943 | setup_redirects(command, squirrel); |
| 2944 | save_nofork_data(&G.nofork_save); |
| 2945 | new_env = expand_assignments(argv, command->assignment_cnt); |
| 2946 | old_env = putenv_all_and_save_old(new_env); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2947 | debug_printf_exec(": run_nofork_applet '%s' '%s'...\n", |
| 2948 | argv_expanded[0], argv_expanded[1]); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 2949 | rcode = run_nofork_applet_prime(&G.nofork_save, i, argv_expanded); |
| 2950 | goto clean_up_and_ret; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 2951 | } |
| 2952 | #endif |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2953 | /* It is neither builtin nor applet. We must fork. */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2954 | } |
| 2955 | |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2956 | must_fork: |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 2957 | /* NB: argv_expanded may already be created, and that |
| 2958 | * might include `cmd` runs! Do not rerun it! We *must* |
| 2959 | * use argv_expanded if it's non-NULL */ |
| 2960 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2961 | /* Going to fork a child per each pipe member */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2962 | pi->alive_cmds = 0; |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2963 | nextin = 0; |
| 2964 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2965 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2966 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 2967 | volatile nommu_save_t nommu_save; |
| 2968 | nommu_save.new_env = NULL; |
| 2969 | nommu_save.old_env = NULL; |
| 2970 | nommu_save.argv = NULL; |
Denis Vlasenko | 76d5041 | 2008-06-10 16:19:39 +0000 | [diff] [blame] | 2971 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2972 | command = &(pi->cmds[i]); |
| 2973 | if (command->argv) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 2974 | debug_printf_exec(": pipe member '%s' '%s'...\n", |
| 2975 | command->argv[0], command->argv[1]); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2976 | } else { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 2977 | debug_printf_exec(": pipe member with no argv\n"); |
Denis Vlasenko | 552433b | 2009-04-04 19:29:21 +0000 | [diff] [blame] | 2978 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2979 | |
| 2980 | /* pipes are inserted between pairs of commands */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2981 | pipefds[0] = 0; |
| 2982 | pipefds[1] = 1; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2983 | if ((i + 1) < pi->num_cmds) |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2984 | xpipe(pipefds); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 2985 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 2986 | command->pid = BB_MMU ? fork() : vfork(); |
| 2987 | if (!command->pid) { /* child */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 2988 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 2989 | disable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 2990 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2991 | /* Every child adds itself to new process group |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2992 | * with pgid == pid_of_first_child_in_pipe */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 2993 | if (G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2994 | pid_t pgrp; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 2995 | pgrp = pi->pgrp; |
| 2996 | if (pgrp < 0) /* true for 1st process only */ |
| 2997 | pgrp = getpid(); |
| 2998 | if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 2999 | /* We do it in *every* child, not just first, |
| 3000 | * to avoid races */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3001 | tcsetpgrp(G_interactive_fd, pgrp); |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3002 | } |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3003 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3004 | #endif |
Denis Vlasenko | 8412d79 | 2007-10-01 09:59:47 +0000 | [diff] [blame] | 3005 | xmove_fd(nextin, 0); |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3006 | xmove_fd(pipefds[1], 1); /* write end */ |
| 3007 | if (pipefds[0] > 1) |
| 3008 | close(pipefds[0]); /* read end */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3009 | /* Like bash, explicit redirects override pipes, |
| 3010 | * and the pipe fd is available for dup'ing. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3011 | setup_redirects(command, NULL); |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 3012 | |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 3013 | /* Restore default handlers just prior to exec */ |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 3014 | /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */ |
| 3015 | |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3016 | /* Stores to nommu_save list of env vars putenv'ed |
| 3017 | * (NOMMU, on MMU we don't need that) */ |
| 3018 | /* cast away volatility... */ |
| 3019 | pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3020 | /* pseudo_exec() does not return */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3021 | } |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 3022 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 3023 | /* parent or error */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3024 | enable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3025 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3026 | /* Clean up after vforked child */ |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 3027 | clean_up_after_re_execute(); |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 3028 | free(nommu_save.argv); |
| 3029 | free_strings_and_unsetenv(nommu_save.new_env, 1); |
| 3030 | putenv_all(nommu_save.old_env); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 3031 | #endif |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 3032 | free(argv_expanded); |
| 3033 | argv_expanded = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3034 | if (command->pid < 0) { /* [v]fork failed */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3035 | /* Clearly indicate, was it fork or vfork */ |
Denis Vlasenko | 82604e9 | 2008-07-01 15:59:42 +0000 | [diff] [blame] | 3036 | bb_perror_msg(BB_MMU ? "fork" : "vfork"); |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3037 | } else { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3038 | pi->alive_cmds++; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3039 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3040 | /* Second and next children need to know pid of first one */ |
| 3041 | if (pi->pgrp < 0) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3042 | pi->pgrp = command->pid; |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3043 | #endif |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3044 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3045 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3046 | if (i) |
| 3047 | close(nextin); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3048 | if ((i + 1) < pi->num_cmds) |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3049 | close(pipefds[1]); /* write end */ |
| 3050 | /* Pass read (output) pipe end to next iteration */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3051 | nextin = pipefds[0]; |
| 3052 | } |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 3053 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3054 | if (!pi->alive_cmds) { |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3055 | debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n"); |
| 3056 | return 1; |
| 3057 | } |
| 3058 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3059 | 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] | 3060 | return -1; |
| 3061 | } |
| 3062 | |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 3063 | #ifndef debug_print_tree |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3064 | static void debug_print_tree(struct pipe *pi, int lvl) |
| 3065 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3066 | static const char *const PIPE[] = { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3067 | [PIPE_SEQ] = "SEQ", |
| 3068 | [PIPE_AND] = "AND", |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3069 | [PIPE_OR ] = "OR" , |
| 3070 | [PIPE_BG ] = "BG" , |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3071 | }; |
| 3072 | static const char *RES[] = { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3073 | [RES_NONE ] = "NONE" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3074 | #if ENABLE_HUSH_IF |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3075 | [RES_IF ] = "IF" , |
| 3076 | [RES_THEN ] = "THEN" , |
| 3077 | [RES_ELIF ] = "ELIF" , |
| 3078 | [RES_ELSE ] = "ELSE" , |
| 3079 | [RES_FI ] = "FI" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3080 | #endif |
| 3081 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3082 | [RES_FOR ] = "FOR" , |
| 3083 | [RES_WHILE] = "WHILE", |
| 3084 | [RES_UNTIL] = "UNTIL", |
| 3085 | [RES_DO ] = "DO" , |
| 3086 | [RES_DONE ] = "DONE" , |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 3087 | #endif |
| 3088 | #if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3089 | [RES_IN ] = "IN" , |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3090 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3091 | #if ENABLE_HUSH_CASE |
| 3092 | [RES_CASE ] = "CASE" , |
| 3093 | [RES_MATCH] = "MATCH", |
| 3094 | [RES_CASEI] = "CASEI", |
| 3095 | [RES_ESAC ] = "ESAC" , |
| 3096 | #endif |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3097 | [RES_XXXX ] = "XXXX" , |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3098 | [RES_SNTX ] = "SNTX" , |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3099 | }; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3100 | static const char *const GRPTYPE[] = { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3101 | "{}", |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 3102 | "()", |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3103 | #if ENABLE_HUSH_FUNCTIONS |
| 3104 | "func()", |
| 3105 | #endif |
| 3106 | }; |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3107 | |
| 3108 | int pin, prn; |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3109 | |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3110 | pin = 0; |
| 3111 | while (pi) { |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3112 | fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "", |
| 3113 | pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3114 | prn = 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3115 | while (prn < pi->num_cmds) { |
| 3116 | struct command *command = &pi->cmds[prn]; |
| 3117 | char **argv = command->argv; |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 3118 | |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3119 | fprintf(stderr, "%*s cmd %d assignment_cnt:%d", |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3120 | lvl*2, "", prn, |
| 3121 | command->assignment_cnt); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3122 | if (command->group) { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3123 | fprintf(stderr, " group %s: (argv=%p)\n", |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3124 | GRPTYPE[command->grp_type], |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 3125 | argv); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3126 | debug_print_tree(command->group, lvl+1); |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3127 | prn++; |
| 3128 | continue; |
| 3129 | } |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3130 | if (argv) while (*argv) { |
| 3131 | fprintf(stderr, " '%s'", *argv); |
| 3132 | argv++; |
Denis Vlasenko | 4b924f3 | 2007-05-30 00:29:55 +0000 | [diff] [blame] | 3133 | } |
Denis Vlasenko | 400c5b6 | 2007-05-04 13:07:27 +0000 | [diff] [blame] | 3134 | fprintf(stderr, "\n"); |
| 3135 | prn++; |
| 3136 | } |
| 3137 | pi = pi->next; |
| 3138 | pin++; |
| 3139 | } |
| 3140 | } |
| 3141 | #endif |
| 3142 | |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 3143 | /* NB: called by pseudo_exec, and therefore must not modify any |
| 3144 | * global data until exec/_exit (we can be a child after vfork!) */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3145 | static int run_list(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3146 | { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3147 | #if ENABLE_HUSH_CASE |
| 3148 | char *case_word = NULL; |
| 3149 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3150 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3151 | struct pipe *loop_top = NULL; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3152 | char *for_varname = NULL; |
| 3153 | char **for_lcur = NULL; |
| 3154 | char **for_list = NULL; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3155 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3156 | smallint last_followup; |
| 3157 | smalluint rcode; |
Denis Vlasenko | d91afa3 | 2008-07-29 11:10:01 +0000 | [diff] [blame] | 3158 | #if ENABLE_HUSH_IF || ENABLE_HUSH_CASE |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3159 | smalluint cond_code = 0; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3160 | #else |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3161 | enum { cond_code = 0 }; |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3162 | #endif |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3163 | #if HAS_KEYWORDS |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3164 | smallint rword; /* enum reserved_style */ |
| 3165 | smallint last_rword; /* ditto */ |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3166 | #endif |
Denis Vlasenko | 4ac530c | 2007-05-02 15:35:45 +0000 | [diff] [blame] | 3167 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3168 | 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] | 3169 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3170 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3171 | /* Check syntax for "for" */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3172 | for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) { |
| 3173 | if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3174 | continue; |
| 3175 | /* current word is FOR or IN (BOLD in comments below) */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3176 | if (cpipe->next == NULL) { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3177 | syntax("malformed for"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3178 | 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] | 3179 | return 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3180 | } |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3181 | /* "FOR v; do ..." and "for v IN a b; do..." are ok */ |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3182 | if (cpipe->next->res_word == RES_DO) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3183 | continue; |
| 3184 | /* 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] | 3185 | if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */ |
| 3186 | || 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] | 3187 | ) { |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3188 | syntax("malformed for"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3189 | 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] | 3190 | return 1; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3191 | } |
| 3192 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3193 | #endif |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3194 | |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3195 | /* Past this point, all code paths should jump to ret: label |
Denis Vlasenko | 12acec5 | 2008-07-28 15:15:59 +0000 | [diff] [blame] | 3196 | * in order to return, no direct "return" statements please. |
| 3197 | * This helps to ensure that no memory is leaked. */ |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3198 | |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 3199 | ////TODO: ctrl-Z handling needs re-thinking and re-testing |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3200 | |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3201 | #if ENABLE_HUSH_JOB |
| 3202 | /* Example of nested list: "while true; do { sleep 1 | exit 2; } done". |
| 3203 | * We are saving state before entering outermost list ("while...done") |
| 3204 | * so that ctrl-Z will correctly background _entire_ outermost list, |
| 3205 | * not just a part of it (like "sleep 1 | exit 2") */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3206 | if (++G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3207 | if (sigsetjmp(G.toplevel_jb, 1)) { |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3208 | /* ctrl-Z forked and we are parent; or ctrl-C. |
| 3209 | * Sighandler has longjmped us here */ |
| 3210 | signal(SIGINT, SIG_IGN); |
| 3211 | signal(SIGTSTP, SIG_IGN); |
| 3212 | /* Restore level (we can be coming from deep inside |
| 3213 | * nested levels) */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3214 | G.run_list_level = 1; |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3215 | #if ENABLE_FEATURE_SH_STANDALONE |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3216 | if (G.nofork_save.saved) { /* if save area is valid */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3217 | debug_printf_jobs("exiting nofork early\n"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3218 | restore_nofork_data(&G.nofork_save); |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3219 | } |
| 3220 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3221 | //// if (G.ctrl_z_flag) { |
| 3222 | //// /* ctrl-Z has forked and stored pid of the child in pi->pid. |
| 3223 | //// * Remember this child as background job */ |
| 3224 | //// insert_bg_job(pi); |
| 3225 | //// } else { |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3226 | /* ctrl-C. We just stop doing whatever we were doing */ |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 3227 | bb_putchar('\n'); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3228 | //// } |
Denis Vlasenko | ff29b4f | 2008-07-29 13:57:59 +0000 | [diff] [blame] | 3229 | USE_HUSH_LOOPS(loop_top = NULL;) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3230 | USE_HUSH_LOOPS(G.depth_of_loop = 0;) |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3231 | rcode = 0; |
| 3232 | goto ret; |
| 3233 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3234 | //// /* ctrl-Z handler will store pid etc in pi */ |
| 3235 | //// G.toplevel_list = pi; |
| 3236 | //// G.ctrl_z_flag = 0; |
| 3237 | ////#if ENABLE_FEATURE_SH_STANDALONE |
| 3238 | //// G.nofork_save.saved = 0; /* in case we will run a nofork later */ |
| 3239 | ////#endif |
| 3240 | //// signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z); |
| 3241 | //// signal(SIGINT, handler_ctrl_c); |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3242 | } |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3243 | #endif /* JOB */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3244 | |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3245 | #if HAS_KEYWORDS |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3246 | rword = RES_NONE; |
| 3247 | last_rword = RES_XXXX; |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3248 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3249 | last_followup = PIPE_SEQ; |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3250 | rcode = G.last_exitcode; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3251 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3252 | /* Go through list of pipes, (maybe) executing them. */ |
| 3253 | 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] | 3254 | if (G.flag_SIGINT) |
| 3255 | break; |
| 3256 | |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3257 | IF_HAS_KEYWORDS(rword = pi->res_word;) |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3258 | debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n", |
| 3259 | rword, cond_code, last_rword); |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3260 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 4554b72 | 2008-07-29 13:36:09 +0000 | [diff] [blame] | 3261 | if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3262 | && loop_top == NULL /* avoid bumping G.depth_of_loop twice */ |
Denis Vlasenko | 4554b72 | 2008-07-29 13:36:09 +0000 | [diff] [blame] | 3263 | ) { |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3264 | /* start of a loop: remember where loop starts */ |
| 3265 | loop_top = pi; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3266 | G.depth_of_loop++; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3267 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3268 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3269 | /* Still in the same "if...", "then..." or "do..." branch? */ |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3270 | if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3271 | if ((rcode == 0 && last_followup == PIPE_OR) |
| 3272 | || (rcode != 0 && last_followup == PIPE_AND) |
| 3273 | ) { |
| 3274 | /* It is "<true> || CMD" or "<false> && CMD" |
| 3275 | * and we should not execute CMD */ |
| 3276 | debug_printf_exec("skipped cmd because of || or &&\n"); |
| 3277 | last_followup = pi->followup; |
| 3278 | continue; |
| 3279 | } |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3280 | } |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3281 | last_followup = pi->followup; |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3282 | IF_HAS_KEYWORDS(last_rword = rword;) |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3283 | #if ENABLE_HUSH_IF |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3284 | if (cond_code) { |
| 3285 | if (rword == RES_THEN) { |
Denis Vlasenko | 0e15138 | 2009-04-06 18:40:31 +0000 | [diff] [blame] | 3286 | /* if false; then ... fi has exitcode 0! */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3287 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3288 | /* "if <false> THEN cmd": skip cmd */ |
| 3289 | continue; |
| 3290 | } |
| 3291 | } else { |
| 3292 | if (rword == RES_ELSE || rword == RES_ELIF) { |
| 3293 | /* "if <true> then ... ELSE/ELIF cmd": |
| 3294 | * skip cmd and all following ones */ |
| 3295 | break; |
| 3296 | } |
| 3297 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3298 | #endif |
| 3299 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3300 | if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3301 | if (!for_lcur) { |
Denis Vlasenko | d65ea39 | 2007-10-01 10:02:25 +0000 | [diff] [blame] | 3302 | /* first loop through for */ |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3303 | |
| 3304 | static const char encoded_dollar_at[] ALIGN1 = { |
| 3305 | SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0' |
| 3306 | }; /* encoded representation of "$@" */ |
| 3307 | static const char *const encoded_dollar_at_argv[] = { |
| 3308 | encoded_dollar_at, NULL |
| 3309 | }; /* argv list with one element: "$@" */ |
| 3310 | char **vals; |
| 3311 | |
| 3312 | vals = (char**)encoded_dollar_at_argv; |
Denis Vlasenko | cf22c89 | 2008-07-28 15:17:44 +0000 | [diff] [blame] | 3313 | if (pi->next->res_word == RES_IN) { |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3314 | /* if no variable values after "in" we skip "for" */ |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3315 | if (!pi->next->cmds[0].argv) { |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3316 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3317 | debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n"); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3318 | break; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3319 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3320 | vals = pi->next->cmds[0].argv; |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3321 | } /* else: "for var; do..." -> assume "$@" list */ |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3322 | /* create list of variable values */ |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3323 | debug_print_strings("for_list made from", vals); |
| 3324 | for_list = expand_strvec_to_strvec(vals); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3325 | for_lcur = for_list; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3326 | debug_print_strings("for_list", for_list); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3327 | for_varname = pi->cmds[0].argv[0]; |
| 3328 | pi->cmds[0].argv[0] = NULL; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3329 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3330 | free(pi->cmds[0].argv[0]); |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3331 | if (!*for_lcur) { |
Denis Vlasenko | 12acec5 | 2008-07-28 15:15:59 +0000 | [diff] [blame] | 3332 | /* "for" loop is over, clean up */ |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3333 | free(for_list); |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3334 | for_list = NULL; |
Denis Vlasenko | 03eb8bf | 2007-05-14 16:19:34 +0000 | [diff] [blame] | 3335 | for_lcur = NULL; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3336 | pi->cmds[0].argv[0] = for_varname; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3337 | break; |
Eric Andersen | 4c9b68f | 2002-04-13 12:33:41 +0000 | [diff] [blame] | 3338 | } |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3339 | /* Insert next value from for_lcur */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3340 | //TODO: does it need escaping? |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3341 | pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++); |
| 3342 | pi->cmds[0].assignment_cnt = 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3343 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3344 | if (rword == RES_IN) { |
| 3345 | continue; /* "for v IN list;..." - "in" has no cmds anyway */ |
| 3346 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3347 | if (rword == RES_DONE) { |
| 3348 | continue; /* "done" has no cmds too */ |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3349 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3350 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3351 | #if ENABLE_HUSH_CASE |
| 3352 | if (rword == RES_CASE) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3353 | case_word = expand_strvec_to_string(pi->cmds->argv); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3354 | continue; |
| 3355 | } |
| 3356 | if (rword == RES_MATCH) { |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 3357 | char **argv; |
| 3358 | |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3359 | if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */ |
| 3360 | break; |
| 3361 | /* all prev words didn't match, does this one match? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3362 | argv = pi->cmds->argv; |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 3363 | while (*argv) { |
| 3364 | char *pattern = expand_string_to_string(*argv); |
| 3365 | /* TODO: which FNM_xxx flags to use? */ |
| 3366 | cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0); |
| 3367 | free(pattern); |
| 3368 | if (cond_code == 0) { /* match! we will execute this branch */ |
| 3369 | free(case_word); /* make future "word)" stop */ |
| 3370 | case_word = NULL; |
| 3371 | break; |
| 3372 | } |
| 3373 | argv++; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3374 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3375 | continue; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3376 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3377 | if (rword == RES_CASEI) { /* inside of a case branch */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3378 | if (cond_code != 0) |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3379 | continue; /* not matched yet, skip this pipe */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3380 | } |
| 3381 | #endif |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3382 | /* Just pressing <enter> in shell should check for jobs. |
| 3383 | * OTOH, in non-interactive shell this is useless |
| 3384 | * and only leads to extra job checks */ |
| 3385 | if (pi->num_cmds == 0) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3386 | if (G_interactive_fd) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3387 | goto check_jobs_and_continue; |
| 3388 | continue; |
| 3389 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3390 | |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3391 | /* After analyzing all keywords and conditions, we decided |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3392 | * to execute this pipe. NB: have to do checkjobs(NULL) |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3393 | * after run_pipe to collect any background children, |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3394 | * even if list execution is to be stopped. */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3395 | debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3396 | { |
| 3397 | int r; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3398 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3399 | G.flag_break_continue = 0; |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3400 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3401 | rcode = r = run_pipe(pi); /* NB: rcode is a smallint */ |
| 3402 | if (r != -1) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3403 | /* We only ran a builtin: rcode is already known |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3404 | * and we don't need to wait for anything. */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3405 | G.last_exitcode = rcode; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3406 | debug_printf_exec(": builtin exitcode %d\n", rcode); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3407 | check_and_run_traps(0); |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3408 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3409 | /* Was it "break" or "continue"? */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3410 | if (G.flag_break_continue) { |
| 3411 | smallint fbc = G.flag_break_continue; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3412 | /* We might fall into outer *loop*, |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3413 | * don't want to break it too */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3414 | if (loop_top) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3415 | G.depth_break_continue--; |
| 3416 | if (G.depth_break_continue == 0) |
| 3417 | G.flag_break_continue = 0; |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3418 | /* else: e.g. "continue 2" should *break* once, *then* continue */ |
| 3419 | } /* 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] | 3420 | if (G.depth_break_continue != 0 || fbc == BC_BREAK) |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3421 | goto check_jobs_and_break; |
| 3422 | /* "continue": simulate end of loop */ |
| 3423 | rword = RES_DONE; |
| 3424 | continue; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3425 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 3426 | #endif |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3427 | } else if (pi->followup == PIPE_BG) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3428 | /* What does bash do with attempts to background builtins? */ |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3429 | /* even bash 3.2 doesn't do that well with nested bg: |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3430 | * try "{ { sleep 10; echo DEEP; } & echo HERE; } &". |
| 3431 | * I'm NOT treating inner &'s as jobs */ |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3432 | check_and_run_traps(0); |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3433 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3434 | if (G.run_list_level == 1) |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3435 | insert_bg_job(pi); |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 3436 | #endif |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3437 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3438 | debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n"); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3439 | } else { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3440 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3441 | if (G.run_list_level == 1 && G_interactive_fd) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3442 | /* Waits for completion, then fg's main shell */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3443 | rcode = checkjobs_and_fg_shell(pi); |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3444 | debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3445 | check_and_run_traps(0); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3446 | } else |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 3447 | #endif |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3448 | { /* This one just waits for completion */ |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3449 | rcode = checkjobs(pi); |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3450 | debug_printf_exec(": checkjobs exitcode %d\n", rcode); |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 3451 | check_and_run_traps(0); |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3452 | } |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3453 | G.last_exitcode = rcode; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3454 | } |
| 3455 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3456 | |
| 3457 | /* Analyze how result affects subsequent commands */ |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3458 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 219e88d | 2007-05-21 10:18:23 +0000 | [diff] [blame] | 3459 | if (rword == RES_IF || rword == RES_ELIF) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3460 | cond_code = rcode; |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3461 | #endif |
| 3462 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3463 | /* Beware of "while false; true; do ..."! */ |
| 3464 | if (pi->next && pi->next->res_word == RES_DO) { |
| 3465 | if (rword == RES_WHILE) { |
| 3466 | if (rcode) { |
| 3467 | /* "while false; do...done" - exitcode 0 */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 3468 | G.last_exitcode = rcode = EXIT_SUCCESS; |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3469 | debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n"); |
| 3470 | goto check_jobs_and_break; |
| 3471 | } |
Denis Vlasenko | 918a34b | 2008-07-28 23:17:31 +0000 | [diff] [blame] | 3472 | } |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3473 | if (rword == RES_UNTIL) { |
| 3474 | if (!rcode) { |
| 3475 | debug_printf_exec(": until expr is true: breaking\n"); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3476 | check_jobs_and_break: |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3477 | checkjobs(NULL); |
| 3478 | break; |
| 3479 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 3480 | } |
Denis Vlasenko | 5e052ca | 2008-07-28 15:15:09 +0000 | [diff] [blame] | 3481 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3482 | #endif |
Mike Frysinger | 8ec1c9d | 2009-03-29 00:45:26 +0000 | [diff] [blame] | 3483 | |
| 3484 | check_jobs_and_continue: |
Eric Andersen | 028b65b | 2001-06-28 01:10:11 +0000 | [diff] [blame] | 3485 | checkjobs(NULL); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3486 | } /* for (pi) */ |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3487 | |
| 3488 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3489 | //// if (G.ctrl_z_flag) { |
| 3490 | //// /* ctrl-Z forked somewhere in the past, we are the child, |
| 3491 | //// * and now we completed running the list. Exit. */ |
| 3492 | //////TODO: _exit? |
| 3493 | //// exit(rcode); |
| 3494 | //// } |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3495 | ret: |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3496 | G.run_list_level--; |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 3497 | //// if (!G.run_list_level && G_interactive_fd) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 3498 | //// signal(SIGTSTP, SIG_IGN); |
| 3499 | //// signal(SIGINT, SIG_IGN); |
| 3500 | //// } |
Denis Vlasenko | ac0e5ab | 2007-05-04 21:37:27 +0000 | [diff] [blame] | 3501 | #endif |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3502 | 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] | 3503 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 3504 | if (loop_top) |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3505 | G.depth_of_loop--; |
Denis Vlasenko | be709c2 | 2008-07-28 00:01:16 +0000 | [diff] [blame] | 3506 | free(for_list); |
| 3507 | #endif |
| 3508 | #if ENABLE_HUSH_CASE |
| 3509 | free(case_word); |
| 3510 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3511 | return rcode; |
| 3512 | } |
| 3513 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3514 | /* Select which version we will use */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3515 | static int run_and_free_list(struct pipe *pi) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3516 | { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 3517 | int rcode = 0; |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3518 | debug_printf_exec("run_and_free_list entered\n"); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 3519 | if (!G.fake_mode) { |
Denis Vlasenko | a2b11e3 | 2009-04-06 14:11:13 +0000 | [diff] [blame] | 3520 | 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] | 3521 | rcode = run_list(pi); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3522 | } |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 3523 | /* free_pipe_list has the side effect of clearing memory. |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3524 | * In the long run that function can be merged with run_list, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3525 | * but doing that now would hobble the debugging effort. */ |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 3526 | free_pipe_list(pi, /* indent: */ 0); |
Denis Vlasenko | 87f40ba | 2008-06-10 22:39:37 +0000 | [diff] [blame] | 3527 | debug_printf_exec("run_and_free_list return %d\n", rcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3528 | return rcode; |
| 3529 | } |
| 3530 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 3531 | |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 3532 | static struct pipe *new_pipe(void) |
| 3533 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3534 | struct pipe *pi; |
Denis Vlasenko | 3ac0e00 | 2007-04-28 16:45:22 +0000 | [diff] [blame] | 3535 | pi = xzalloc(sizeof(struct pipe)); |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3536 | /*pi->followup = 0; - deliberately invalid value */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3537 | /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3538 | return pi; |
| 3539 | } |
| 3540 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3541 | /* Command (member of a pipe) is complete. The only possible error here |
| 3542 | * is out of memory, in which case xmalloc exits. */ |
| 3543 | static int done_command(struct parse_context *ctx) |
| 3544 | { |
| 3545 | /* The command is really already in the pipe structure, so |
| 3546 | * advance the pipe counter and make a new, null command. */ |
| 3547 | struct pipe *pi = ctx->pipe; |
| 3548 | struct command *command = ctx->command; |
| 3549 | |
| 3550 | if (command) { |
| 3551 | if (command->group == NULL |
| 3552 | && command->argv == NULL |
| 3553 | && command->redirects == NULL |
| 3554 | ) { |
| 3555 | debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3556 | memset(command, 0, sizeof(*command)); /* paranoia */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3557 | return pi->num_cmds; |
| 3558 | } |
| 3559 | pi->num_cmds++; |
| 3560 | debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3561 | //debug_print_tree(ctx->list_head, 20); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3562 | } else { |
| 3563 | debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds); |
| 3564 | } |
| 3565 | |
| 3566 | /* Only real trickiness here is that the uncommitted |
| 3567 | * command structure is not counted in pi->num_cmds. */ |
| 3568 | pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1)); |
| 3569 | command = &pi->cmds[pi->num_cmds]; |
| 3570 | memset(command, 0, sizeof(*command)); |
| 3571 | |
| 3572 | ctx->command = command; |
| 3573 | /* but ctx->pipe and ctx->list_head remain unchanged */ |
| 3574 | |
| 3575 | return pi->num_cmds; /* used only for 0/nonzero check */ |
| 3576 | } |
| 3577 | |
| 3578 | static void done_pipe(struct parse_context *ctx, pipe_style type) |
| 3579 | { |
| 3580 | int not_null; |
| 3581 | |
| 3582 | debug_printf_parse("done_pipe entered, followup %d\n", type); |
| 3583 | /* Close previous command */ |
| 3584 | not_null = done_command(ctx); |
| 3585 | ctx->pipe->followup = type; |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3586 | #if HAS_KEYWORDS |
| 3587 | ctx->pipe->pi_inverted = ctx->ctx_inverted; |
| 3588 | ctx->ctx_inverted = 0; |
| 3589 | ctx->pipe->res_word = ctx->ctx_res_w; |
| 3590 | #endif |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3591 | |
| 3592 | /* Without this check, even just <enter> on command line generates |
| 3593 | * tree of three NOPs (!). Which is harmless but annoying. |
| 3594 | * IOW: it is safe to do it unconditionally. |
| 3595 | * RES_NONE case is for "for a in; do ..." (empty IN set) |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3596 | * and other cases to work. */ |
| 3597 | if (not_null |
| 3598 | #if HAS_KEYWORDS |
| 3599 | || ctx->ctx_res_w == RES_FI |
| 3600 | || ctx->ctx_res_w == RES_DONE |
| 3601 | || ctx->ctx_res_w == RES_FOR |
| 3602 | || ctx->ctx_res_w == RES_IN |
| 3603 | || ctx->ctx_res_w == RES_ESAC |
| 3604 | #endif |
| 3605 | ) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3606 | struct pipe *new_p; |
| 3607 | debug_printf_parse("done_pipe: adding new pipe: " |
| 3608 | "not_null:%d ctx->ctx_res_w:%d\n", |
| 3609 | not_null, ctx->ctx_res_w); |
| 3610 | new_p = new_pipe(); |
| 3611 | ctx->pipe->next = new_p; |
| 3612 | ctx->pipe = new_p; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3613 | /* RES_THEN, RES_DO etc are "sticky" - |
| 3614 | * they remain set for commands inside if/while. |
| 3615 | * This is used to control execution. |
| 3616 | * RES_FOR and RES_IN are NOT sticky (needed to support |
| 3617 | * cases where variable or value happens to match a keyword): |
| 3618 | */ |
| 3619 | #if ENABLE_HUSH_LOOPS |
| 3620 | if (ctx->ctx_res_w == RES_FOR |
| 3621 | || ctx->ctx_res_w == RES_IN) |
| 3622 | ctx->ctx_res_w = RES_NONE; |
| 3623 | #endif |
| 3624 | #if ENABLE_HUSH_CASE |
| 3625 | if (ctx->ctx_res_w == RES_MATCH) |
| 3626 | ctx->ctx_res_w = RES_CASEI; |
| 3627 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3628 | ctx->command = NULL; /* trick done_command below */ |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3629 | /* Create the memory for command, roughly: |
| 3630 | * ctx->pipe->cmds = new struct command; |
| 3631 | * ctx->command = &ctx->pipe->cmds[0]; |
| 3632 | */ |
| 3633 | done_command(ctx); |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 3634 | //debug_print_tree(ctx->list_head, 10); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 3635 | } |
| 3636 | debug_printf_parse("done_pipe return\n"); |
| 3637 | } |
| 3638 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3639 | static void initialize_context(struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3640 | { |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3641 | memset(ctx, 0, sizeof(*ctx)); |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3642 | ctx->pipe = ctx->list_head = new_pipe(); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3643 | /* Create the memory for command, roughly: |
| 3644 | * ctx->pipe->cmds = new struct command; |
| 3645 | * ctx->command = &ctx->pipe->cmds[0]; |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3646 | */ |
| 3647 | done_command(ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3648 | } |
| 3649 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3650 | /* If a reserved word is found and processed, parse context is modified |
| 3651 | * and 1 is returned. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3652 | */ |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3653 | #if HAS_KEYWORDS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3654 | struct reserved_combo { |
| 3655 | char literal[6]; |
| 3656 | unsigned char res; |
| 3657 | unsigned char assignment_flag; |
| 3658 | int flag; |
| 3659 | }; |
| 3660 | enum { |
| 3661 | FLAG_END = (1 << RES_NONE ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3662 | #if ENABLE_HUSH_IF |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3663 | FLAG_IF = (1 << RES_IF ), |
| 3664 | FLAG_THEN = (1 << RES_THEN ), |
| 3665 | FLAG_ELIF = (1 << RES_ELIF ), |
| 3666 | FLAG_ELSE = (1 << RES_ELSE ), |
| 3667 | FLAG_FI = (1 << RES_FI ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3668 | #endif |
| 3669 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3670 | FLAG_FOR = (1 << RES_FOR ), |
| 3671 | FLAG_WHILE = (1 << RES_WHILE), |
| 3672 | FLAG_UNTIL = (1 << RES_UNTIL), |
| 3673 | FLAG_DO = (1 << RES_DO ), |
| 3674 | FLAG_DONE = (1 << RES_DONE ), |
| 3675 | FLAG_IN = (1 << RES_IN ), |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3676 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3677 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3678 | FLAG_MATCH = (1 << RES_MATCH), |
| 3679 | FLAG_ESAC = (1 << RES_ESAC ), |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3680 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3681 | FLAG_START = (1 << RES_XXXX ), |
| 3682 | }; |
| 3683 | |
| 3684 | static const struct reserved_combo* match_reserved_word(o_string *word) |
| 3685 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3686 | /* Mostly a list of accepted follow-up reserved words. |
| 3687 | * FLAG_END means we are done with the sequence, and are ready |
| 3688 | * to turn the compound list into a command. |
| 3689 | * FLAG_START means the word must start a new compound list. |
| 3690 | */ |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3691 | static const struct reserved_combo reserved_list[] = { |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3692 | #if ENABLE_HUSH_IF |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3693 | { "!", RES_NONE, NOT_ASSIGNMENT , 0 }, |
| 3694 | { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START }, |
| 3695 | { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI }, |
| 3696 | { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN }, |
| 3697 | { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI }, |
| 3698 | { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3699 | #endif |
| 3700 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3701 | { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START }, |
| 3702 | { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START }, |
| 3703 | { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START }, |
| 3704 | { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO }, |
| 3705 | { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE }, |
| 3706 | { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3707 | #endif |
| 3708 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3709 | { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START }, |
| 3710 | { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END }, |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3711 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3712 | }; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3713 | const struct reserved_combo *r; |
| 3714 | |
| 3715 | for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) { |
| 3716 | if (strcmp(word->data, r->literal) == 0) |
| 3717 | return r; |
| 3718 | } |
| 3719 | return NULL; |
| 3720 | } |
| 3721 | static int reserved_word(o_string *word, struct parse_context *ctx) |
| 3722 | { |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3723 | #if ENABLE_HUSH_CASE |
| 3724 | static const struct reserved_combo reserved_match = { |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3725 | "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3726 | }; |
| 3727 | #endif |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3728 | const struct reserved_combo *r; |
Denis Vlasenko | c72c1ed | 2007-01-30 22:31:26 +0000 | [diff] [blame] | 3729 | |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3730 | r = match_reserved_word(word); |
| 3731 | if (!r) |
| 3732 | return 0; |
| 3733 | |
| 3734 | 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] | 3735 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3736 | if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE) |
| 3737 | /* "case word IN ..." - IN part starts first match part */ |
| 3738 | r = &reserved_match; |
| 3739 | else |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3740 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3741 | if (r->flag == 0) { /* '!' */ |
| 3742 | if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3743 | syntax("! ! command"); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3744 | IF_HAS_KEYWORDS(ctx->ctx_res_w = RES_SNTX;) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3745 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3746 | ctx->ctx_inverted = 1; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 3747 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3748 | } |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3749 | if (r->flag & FLAG_START) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3750 | struct parse_context *old; |
| 3751 | old = xmalloc(sizeof(*old)); |
| 3752 | debug_printf_parse("push stack %p\n", old); |
| 3753 | *old = *ctx; /* physical copy */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3754 | initialize_context(ctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3755 | ctx->stack = old; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3756 | } 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] | 3757 | syntax(word->data); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3758 | ctx->ctx_res_w = RES_SNTX; |
| 3759 | return 1; |
| 3760 | } |
| 3761 | ctx->ctx_res_w = r->res; |
| 3762 | ctx->old_flag = r->flag; |
| 3763 | if (ctx->old_flag & FLAG_END) { |
| 3764 | struct parse_context *old; |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3765 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3766 | debug_printf_parse("pop stack %p\n", ctx->stack); |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3767 | old = ctx->stack; |
| 3768 | old->command->group = ctx->list_head; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 3769 | old->command->grp_type = GRP_NORMAL; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 3770 | #if !BB_MMU |
| 3771 | o_addstr(&old->as_string, ctx->as_string.data); |
| 3772 | o_free_unsafe(&ctx->as_string); |
| 3773 | old->command->group_as_string = xstrdup(old->as_string.data); |
| 3774 | debug_printf_parse("pop, remembering as:'%s'\n", |
| 3775 | old->command->group_as_string); |
| 3776 | #endif |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 3777 | *ctx = *old; /* physical copy */ |
| 3778 | free(old); |
| 3779 | } |
| 3780 | word->o_assignment = r->assignment_flag; |
| 3781 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3782 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3783 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3784 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3785 | /* Word is complete, look at it and update parsing context. |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3786 | * Normal return is 0. Syntax errors return 1. |
| 3787 | * Note: on return, word is reset, but not o_free'd! |
| 3788 | */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3789 | static int done_word(o_string *word, struct parse_context *ctx) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3790 | { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3791 | struct command *command = ctx->command; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3792 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3793 | debug_printf_parse("done_word entered: '%s' %p\n", word->data, command); |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3794 | if (word->length == 0 && word->nonnull == 0) { |
| 3795 | debug_printf_parse("done_word return 0: true null, ignored\n"); |
| 3796 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3797 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3798 | /* If this word wasn't an assignment, next ones definitely |
| 3799 | * can't be assignments. Even if they look like ones. */ |
| 3800 | if (word->o_assignment != DEFINITELY_ASSIGNMENT |
| 3801 | && word->o_assignment != WORD_IS_KEYWORD |
| 3802 | ) { |
| 3803 | word->o_assignment = NOT_ASSIGNMENT; |
| 3804 | } else { |
| 3805 | if (word->o_assignment == DEFINITELY_ASSIGNMENT) |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3806 | command->assignment_cnt++; |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 3807 | word->o_assignment = MAYBE_ASSIGNMENT; |
| 3808 | } |
| 3809 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3810 | if (ctx->pending_redirect) { |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3811 | /* We do not glob in e.g. >*.tmp case. bash seems to glob here |
| 3812 | * only if run as "bash", not "sh" */ |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3813 | /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html |
| 3814 | * "2.7 Redirection |
| 3815 | * ...the word that follows the redirection operator |
| 3816 | * shall be subjected to tilde expansion, parameter expansion, |
| 3817 | * command substitution, arithmetic expansion, and quote |
| 3818 | * removal. Pathname expansion shall not be performed |
| 3819 | * on the word by a non-interactive shell; an interactive |
| 3820 | * shell may perform it, but shall do so only when |
| 3821 | * the expansion would result in one word." |
| 3822 | */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3823 | ctx->pending_redirect->rd_filename = xstrdup(word->data); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 3824 | word->o_assignment = NOT_ASSIGNMENT; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3825 | debug_printf_parse("word stored in rd_filename: '%s'\n", word->data); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3826 | } else { |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 3827 | /* "{ echo foo; } echo bar" - bad */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3828 | /* NB: bash allows e.g.: |
| 3829 | * if true; then { echo foo; } fi |
| 3830 | * while if false; then false; fi do break; done |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3831 | * and disallows: |
| 3832 | * while if false; then false; fi; do; break; done |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3833 | * TODO? */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3834 | if (command->group) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 3835 | syntax(word->data); |
| 3836 | debug_printf_parse("done_word return 1: syntax error, " |
| 3837 | "groups and arglists don't mix\n"); |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 3838 | return 1; |
| 3839 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3840 | #if HAS_KEYWORDS |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3841 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | 757361f | 2008-07-14 08:26:47 +0000 | [diff] [blame] | 3842 | if (ctx->ctx_dsemicolon |
| 3843 | && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */ |
| 3844 | ) { |
Denis Vlasenko | 395ae45 | 2008-07-14 06:29:38 +0000 | [diff] [blame] | 3845 | /* already done when ctx_dsemicolon was set to 1: */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3846 | /* ctx->ctx_res_w = RES_MATCH; */ |
| 3847 | ctx->ctx_dsemicolon = 0; |
| 3848 | } else |
| 3849 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3850 | if (!command->argv /* if it's the first word... */ |
Denis Vlasenko | 6bdff08 | 2008-07-09 20:14:53 +0000 | [diff] [blame] | 3851 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3852 | && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */ |
| 3853 | && ctx->ctx_res_w != RES_IN |
Denis Vlasenko | 6bdff08 | 2008-07-09 20:14:53 +0000 | [diff] [blame] | 3854 | #endif |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3855 | ) { |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3856 | debug_printf_parse(": checking '%s' for reserved-ness\n", word->data); |
| 3857 | if (reserved_word(word, ctx)) { |
| 3858 | o_reset(word); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 3859 | debug_printf_parse("done_word return %d\n", |
| 3860 | (ctx->ctx_res_w == RES_SNTX)); |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3861 | return (ctx->ctx_res_w == RES_SNTX); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3862 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3863 | } |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 3864 | #endif |
Denis Vlasenko | ff182a3 | 2008-07-05 20:29:59 +0000 | [diff] [blame] | 3865 | 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] | 3866 | /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */ |
| 3867 | && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL) |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3868 | /* (otherwise it's known to be not empty and is already safe) */ |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3869 | ) { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3870 | /* exclude "$@" - it can expand to no word despite "" */ |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 3871 | char *p = word->data; |
| 3872 | while (p[0] == SPECIAL_VAR_SYMBOL |
| 3873 | && (p[1] & 0x7f) == '@' |
| 3874 | && p[2] == SPECIAL_VAR_SYMBOL |
| 3875 | ) { |
| 3876 | p += 3; |
| 3877 | } |
| 3878 | if (p == word->data || p[0] != '\0') { |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3879 | /* saw no "$@", or not only "$@" but some |
| 3880 | * real text is there too */ |
| 3881 | /* insert "empty variable" reference, this makes |
Denis Vlasenko | afdcd12 | 2008-07-05 17:40:04 +0000 | [diff] [blame] | 3882 | * e.g. "", $empty"" etc to not disappear */ |
| 3883 | o_addchr(word, SPECIAL_VAR_SYMBOL); |
| 3884 | o_addchr(word, SPECIAL_VAR_SYMBOL); |
| 3885 | } |
Denis Vlasenko | c1c63b6 | 2008-06-18 09:20:35 +0000 | [diff] [blame] | 3886 | } |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 3887 | command->argv = add_string_to_strings(command->argv, xstrdup(word->data)); |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3888 | debug_print_strings("word appended to argv", command->argv); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3889 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3890 | |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 3891 | o_reset(word); |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3892 | ctx->pending_redirect = NULL; |
| 3893 | |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3894 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | ab876cd | 2008-06-18 16:29:32 +0000 | [diff] [blame] | 3895 | /* Force FOR to have just one word (variable name) */ |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3896 | /* NB: basically, this makes hush see "for v in ..." syntax as if |
| 3897 | * as it is "for v; in ...". FOR and IN become two pipe structs |
| 3898 | * in parse tree. */ |
| 3899 | if (ctx->ctx_res_w == RES_FOR) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 3900 | //TODO: check that command->argv[0] is a valid variable name! |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 3901 | done_pipe(ctx, PIPE_SEQ); |
Denis Vlasenko | 733e3fb | 2008-07-06 10:01:13 +0000 | [diff] [blame] | 3902 | } |
Denis Vlasenko | 0681033 | 2007-05-21 23:30:54 +0000 | [diff] [blame] | 3903 | #endif |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 3904 | #if ENABLE_HUSH_CASE |
| 3905 | /* Force CASE to have just one word */ |
| 3906 | if (ctx->ctx_res_w == RES_CASE) { |
| 3907 | done_pipe(ctx, PIPE_SEQ); |
| 3908 | } |
| 3909 | #endif |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 3910 | debug_printf_parse("done_word return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 3911 | return 0; |
| 3912 | } |
| 3913 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3914 | |
| 3915 | /* Peek ahead in the input to find out if we have a "&n" construct, |
| 3916 | * as in "2>&1", that represents duplicating a file descriptor. |
| 3917 | * Return: -3 if >&- "close fd" construct is seen, |
| 3918 | * -2 (syntax error), -1 if no & was seen, or the number found. |
| 3919 | */ |
| 3920 | #if BB_MMU |
| 3921 | #define redirect_dup_num(as_string, input) \ |
| 3922 | redirect_dup_num(input) |
| 3923 | #endif |
| 3924 | static int redirect_dup_num(o_string *as_string, struct in_str *input) |
| 3925 | { |
| 3926 | int ch, d, ok; |
| 3927 | |
| 3928 | ch = i_peek(input); |
| 3929 | if (ch != '&') |
| 3930 | return -1; |
| 3931 | |
| 3932 | ch = i_getch(input); /* get the & */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3933 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3934 | ch = i_peek(input); |
| 3935 | if (ch == '-') { |
| 3936 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3937 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3938 | return -3; /* "-" represents "close me" */ |
| 3939 | } |
| 3940 | d = 0; |
| 3941 | ok = 0; |
| 3942 | while (ch != EOF && isdigit(ch)) { |
| 3943 | d = d*10 + (ch-'0'); |
| 3944 | ok = 1; |
| 3945 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3946 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3947 | ch = i_peek(input); |
| 3948 | } |
| 3949 | if (ok) return d; |
| 3950 | |
| 3951 | //TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2) |
| 3952 | |
| 3953 | bb_error_msg("ambiguous redirect"); |
| 3954 | return -2; |
| 3955 | } |
| 3956 | |
| 3957 | /* Return code is 0 normally, 1 if a syntax error is detected |
| 3958 | */ |
| 3959 | static int parse_redirect(struct parse_context *ctx, |
| 3960 | int fd, |
| 3961 | redir_type style, |
| 3962 | struct in_str *input) |
| 3963 | { |
| 3964 | struct command *command = ctx->command; |
| 3965 | struct redir_struct *redir; |
| 3966 | struct redir_struct **redirp; |
| 3967 | int dup_num; |
| 3968 | |
| 3969 | dup_num = -1; |
| 3970 | if (style != REDIRECT_HEREDOC) { |
| 3971 | /* Check for a '2>&1' type redirect */ |
| 3972 | dup_num = redirect_dup_num(&ctx->as_string, input); |
| 3973 | if (dup_num == -2) |
| 3974 | return 1; /* syntax error */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3975 | } else { |
| 3976 | int ch = i_peek(input); |
| 3977 | dup_num = (ch == '-'); |
| 3978 | if (dup_num) { /* <<-... */ |
| 3979 | ch = i_getch(input); |
| 3980 | nommu_addchr(&ctx->as_string, ch); |
| 3981 | ch = i_peek(input); |
| 3982 | } |
| 3983 | /* <<[-] word is the same as <<[-]word */ |
| 3984 | while (ch == ' ' || ch == '\t') { |
| 3985 | ch = i_getch(input); |
| 3986 | nommu_addchr(&ctx->as_string, ch); |
| 3987 | ch = i_peek(input); |
| 3988 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3989 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 3990 | |
| 3991 | if (style == REDIRECT_OVERWRITE && dup_num == -1) { |
| 3992 | int ch = i_peek(input); |
| 3993 | if (ch == '|') { |
| 3994 | /* >|FILE redirect ("clobbering" >). |
| 3995 | * Since we do not support "set -o noclobber" yet, |
| 3996 | * >| and > are the same for now. Just eat |. |
| 3997 | */ |
| 3998 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 3999 | nommu_addchr(&ctx->as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4000 | } |
| 4001 | } |
| 4002 | |
| 4003 | /* Create a new redir_struct and append it to the linked list */ |
| 4004 | redirp = &command->redirects; |
| 4005 | while ((redir = *redirp) != NULL) { |
| 4006 | redirp = &(redir->next); |
| 4007 | } |
| 4008 | *redirp = redir = xzalloc(sizeof(*redir)); |
| 4009 | /* redir->next = NULL; */ |
| 4010 | /* redir->rd_filename = NULL; */ |
| 4011 | redir->rd_type = style; |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4012 | redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4013 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4014 | debug_printf_parse("redirect type %d %s\n", redir->rd_fd, redir_table[style].descrip); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4015 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4016 | redir->rd_dup = dup_num; |
| 4017 | if (style != REDIRECT_HEREDOC && dup_num != -1) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4018 | /* Erik had a check here that the file descriptor in question |
| 4019 | * is legit; I postpone that to "run time" |
| 4020 | * A "-" representation of "close me" shows up as a -3 here */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4021 | debug_printf_parse("duplicating redirect '%d>&%d'\n", redir->rd_fd, redir->rd_dup); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4022 | } else { |
| 4023 | /* Set ctx->pending_redirect, so we know what to do at the |
| 4024 | * end of the next parsed word. */ |
| 4025 | ctx->pending_redirect = redir; |
| 4026 | } |
| 4027 | return 0; |
| 4028 | } |
| 4029 | |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4030 | /* If a redirect is immediately preceded by a number, that number is |
| 4031 | * supposed to tell which file descriptor to redirect. This routine |
| 4032 | * looks for such preceding numbers. In an ideal world this routine |
| 4033 | * needs to handle all the following classes of redirects... |
| 4034 | * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo |
| 4035 | * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo |
| 4036 | * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo |
| 4037 | * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4038 | * |
| 4039 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html |
| 4040 | * "2.7 Redirection |
| 4041 | * ... If n is quoted, the number shall not be recognized as part of |
| 4042 | * the redirection expression. For example: |
| 4043 | * echo \2>a |
| 4044 | * writes the character 2 into file a" |
| 4045 | * I am not sure we do it right (and not sure we care) |
| 4046 | * |
| 4047 | * A -1 return means no valid number was found, |
| 4048 | * the caller should use the appropriate default for this redirection. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4049 | */ |
| 4050 | static int redirect_opt_num(o_string *o) |
| 4051 | { |
| 4052 | int num; |
| 4053 | |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4054 | if (o->data == NULL) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4055 | return -1; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4056 | num = bb_strtou(o->data, NULL, 10); |
| 4057 | if (errno || num < 0) |
| 4058 | return -1; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4059 | o_reset(o); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4060 | return num; |
| 4061 | } |
| 4062 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4063 | #if BB_MMU |
| 4064 | #define fetch_till_str(as_string, input, word, skip_tabs) \ |
| 4065 | fetch_till_str(input, word, skip_tabs) |
| 4066 | #endif |
| 4067 | static char *fetch_till_str(o_string *as_string, |
| 4068 | struct in_str *input, |
| 4069 | const char *word, |
| 4070 | int skip_tabs) |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4071 | { |
| 4072 | o_string heredoc = NULL_O_STRING; |
| 4073 | int past_EOL = 0; |
| 4074 | int ch; |
| 4075 | |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4076 | goto jump_in; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4077 | while (1) { |
| 4078 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4079 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4080 | if (ch == '\n') { |
| 4081 | if (strcmp(heredoc.data + past_EOL, word) == 0) { |
| 4082 | heredoc.data[past_EOL] = '\0'; |
| 4083 | debug_printf_parse("parsed heredoc '%s'\n", heredoc.data); |
| 4084 | return heredoc.data; |
| 4085 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4086 | do { |
| 4087 | o_addchr(&heredoc, ch); |
| 4088 | past_EOL = heredoc.length; |
| 4089 | jump_in: |
| 4090 | do { |
| 4091 | ch = i_getch(input); |
| 4092 | nommu_addchr(as_string, ch); |
| 4093 | } while (skip_tabs && ch == '\t'); |
| 4094 | } while (ch == '\n'); |
| 4095 | } |
| 4096 | if (ch == EOF) { |
| 4097 | o_free_unsafe(&heredoc); |
| 4098 | return NULL; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4099 | } |
| 4100 | o_addchr(&heredoc, ch); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4101 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4102 | } |
| 4103 | } |
| 4104 | |
| 4105 | static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input) |
| 4106 | { |
| 4107 | struct pipe *pi = ctx->list_head; |
| 4108 | |
| 4109 | while (pi) { |
| 4110 | int i; |
| 4111 | struct command *cmd = pi->cmds; |
| 4112 | |
| 4113 | debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n", |
| 4114 | pi->num_cmds, |
| 4115 | cmd->argv ? cmd->argv[0] : "NONE"); |
| 4116 | for (i = 0; i < pi->num_cmds; i++) { |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4117 | struct redir_struct *redir = cmd->redirects; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4118 | |
| 4119 | debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n", |
| 4120 | i, cmd->argv ? cmd->argv[0] : "NONE"); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4121 | while (redir) { |
| 4122 | if (redir->rd_type == REDIRECT_HEREDOC) { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4123 | char *p; |
| 4124 | |
| 4125 | if (heredoc_cnt <= 0) |
| 4126 | return 1; /* error */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4127 | redir->rd_type = REDIRECT_HEREDOC2; |
| 4128 | /* redir->dup is (ab)used to indicate <<- */ |
| 4129 | p = fetch_till_str(&ctx->as_string, input, |
| 4130 | redir->rd_filename, redir->rd_dup); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4131 | if (!p) |
| 4132 | return 1; /* unexpected EOF */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4133 | free(redir->rd_filename); |
| 4134 | redir->rd_filename = p; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4135 | heredoc_cnt--; |
| 4136 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4137 | redir = redir->next; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4138 | } |
| 4139 | cmd++; |
| 4140 | } |
| 4141 | pi = pi->next; |
| 4142 | } |
| 4143 | /* Should be 0. If it isn't, it's a parse error */ |
| 4144 | return heredoc_cnt; |
| 4145 | } |
| 4146 | |
| 4147 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4148 | #if BB_MMU |
| 4149 | #define parse_stream(pstring, input, end_trigger) \ |
| 4150 | parse_stream(input, end_trigger) |
| 4151 | #endif |
| 4152 | static struct pipe *parse_stream(char **pstring, |
| 4153 | struct in_str *input, |
| 4154 | int end_trigger); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4155 | static void parse_and_run_string(const char *s); |
Mike Frysinger | ddbee97 | 2009-03-22 22:48:41 +0000 | [diff] [blame] | 4156 | |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4157 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4158 | static FILE *generate_stream_from_string(const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4159 | { |
| 4160 | FILE *pf; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4161 | int pid, channel[2]; |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 4162 | |
Denis Vlasenko | 5a6aedd | 2007-05-26 16:44:20 +0000 | [diff] [blame] | 4163 | xpipe(channel); |
Denis Vlasenko | 82604e9 | 2008-07-01 15:59:42 +0000 | [diff] [blame] | 4164 | pid = BB_MMU ? fork() : vfork(); |
| 4165 | if (pid < 0) |
| 4166 | bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork"); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4167 | |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4168 | if (pid == 0) { /* child */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4169 | disable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | ba7cf26 | 2007-05-25 14:34:30 +0000 | [diff] [blame] | 4170 | /* Process substitution is not considered to be usual |
| 4171 | * 'command execution'. |
Denis Vlasenko | abedaac | 2009-03-31 12:03:40 +0000 | [diff] [blame] | 4172 | * SUSv3 says ctrl-Z should be ignored, ctrl-C should not. |
| 4173 | */ |
Denis Vlasenko | e0755e5 | 2009-04-03 21:16:45 +0000 | [diff] [blame] | 4174 | bb_signals(0 |
| 4175 | + (1 << SIGTSTP) |
| 4176 | + (1 << SIGTTIN) |
| 4177 | + (1 << SIGTTOU) |
| 4178 | , SIG_IGN); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4179 | close(channel[0]); /* NB: close _first_, then move fd! */ |
| 4180 | xmove_fd(channel[1], 1); |
| 4181 | /* Prevent it from trying to handle ctrl-z etc */ |
| 4182 | USE_HUSH_JOB(G.run_list_level = 1;) |
| 4183 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4184 | reset_traps_to_defaults(); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4185 | parse_and_run_string(s); |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 4186 | _exit(G.last_exitcode); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4187 | #else |
| 4188 | /* We re-execute after vfork on NOMMU. This makes this script safe: |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 4189 | * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG |
| 4190 | * huge=`cat BIG` # was blocking here forever |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4191 | * echo OK |
| 4192 | */ |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 4193 | re_execute_shell(s, 0); |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4194 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4195 | } |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4196 | |
| 4197 | /* parent */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4198 | enable_restore_tty_pgrp_on_exit(); |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 4199 | clean_up_after_re_execute(); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4200 | close(channel[1]); |
Denis Vlasenko | 5f786c2 | 2007-04-20 08:35:45 +0000 | [diff] [blame] | 4201 | pf = fdopen(channel[0], "r"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4202 | return pf; |
| 4203 | } |
| 4204 | |
Denis Vlasenko | 21f0d4c | 2007-05-06 14:15:42 +0000 | [diff] [blame] | 4205 | /* Return code is exit status of the process that is run. */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4206 | static int process_command_subs(o_string *dest, const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4207 | { |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4208 | FILE *pf; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4209 | struct in_str pipe_str; |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4210 | int ch, eol_cnt; |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4211 | |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4212 | pf = generate_stream_from_string(s); |
| 4213 | if (pf == NULL) |
Denis Vlasenko | 05743d7 | 2008-02-10 12:10:08 +0000 | [diff] [blame] | 4214 | return 1; |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4215 | close_on_exec_on(fileno(pf)); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4216 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4217 | /* Now send results of command back into original context */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4218 | setup_file_in_str(&pipe_str, pf); |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4219 | eol_cnt = 0; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4220 | while ((ch = i_getch(&pipe_str)) != EOF) { |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4221 | if (ch == '\n') { |
| 4222 | eol_cnt++; |
| 4223 | continue; |
| 4224 | } |
| 4225 | while (eol_cnt) { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4226 | o_addchr(dest, '\n'); |
Denis Vlasenko | 3e9aaae | 2007-05-11 12:56:43 +0000 | [diff] [blame] | 4227 | eol_cnt--; |
| 4228 | } |
Denis Vlasenko | 7e3d33b | 2008-06-12 13:31:04 +0000 | [diff] [blame] | 4229 | o_addQchr(dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4230 | } |
| 4231 | |
| 4232 | debug_printf("done reading from pipe, pclose()ing\n"); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4233 | /* Note: we got EOF, and we just close the read end of the pipe. |
| 4234 | * 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] | 4235 | * Try these: |
| 4236 | * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec |
| 4237 | * `false`; echo $? - bash outputs "1" |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4238 | */ |
Denis Vlasenko | db2a9b6 | 2009-04-03 22:31:18 +0000 | [diff] [blame] | 4239 | fclose(pf); |
| 4240 | debug_printf("closed FILE from child. return 0\n"); |
| 4241 | return 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4242 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4243 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4244 | |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4245 | static int parse_group(o_string *dest, struct parse_context *ctx, |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4246 | struct in_str *input, int ch) |
| 4247 | { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4248 | /* dest contains characters seen prior to ( or {. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4249 | * Typically it's empty, but for function defs, |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4250 | * it contains function name (without '()'). */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4251 | struct pipe *pipe_list; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4252 | int endch; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4253 | struct command *command = ctx->command; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4254 | |
| 4255 | debug_printf_parse("parse_group entered\n"); |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4256 | #if ENABLE_HUSH_FUNCTIONS |
| 4257 | if (ch == 'F') { /* function definition? */ |
| 4258 | bb_error_msg("aha '%s' is a function, parsing it...", dest->data); |
| 4259 | //command->fname = dest->data; |
| 4260 | command->grp_type = GRP_FUNCTION; |
| 4261 | //TODO: review every o_reset() location... do they handle all o_string fields correctly? |
| 4262 | memset(dest, 0, sizeof(*dest)); |
| 4263 | } |
| 4264 | #endif |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4265 | if (command->argv /* word [word](... */ |
| 4266 | || dest->length /* word(... */ |
| 4267 | || dest->nonnull /* ""(... */ |
| 4268 | ) { |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4269 | syntax(NULL); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4270 | debug_printf_parse("parse_group return 1: " |
| 4271 | "syntax error, groups and arglists don't mix\n"); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4272 | return 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4273 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4274 | endch = '}'; |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4275 | if (ch == '(') { |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4276 | endch = ')'; |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 4277 | command->grp_type = GRP_SUBSHELL; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4278 | } |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4279 | { |
| 4280 | #if !BB_MMU |
| 4281 | char *as_string = NULL; |
| 4282 | #endif |
| 4283 | pipe_list = parse_stream(&as_string, input, endch); |
| 4284 | #if !BB_MMU |
| 4285 | if (as_string) |
| 4286 | o_addstr(&ctx->as_string, as_string); |
| 4287 | #endif |
| 4288 | /* empty ()/{} or parse error? */ |
| 4289 | if (!pipe_list || pipe_list == ERR_PTR) { |
| 4290 | #if !BB_MMU |
| 4291 | free(as_string); |
| 4292 | #endif |
| 4293 | syntax(NULL); |
| 4294 | debug_printf_parse("parse_group return 1: " |
| 4295 | "parse_stream returned %p\n", pipe_list); |
| 4296 | return 1; |
| 4297 | } |
| 4298 | command->group = pipe_list; |
| 4299 | #if !BB_MMU |
| 4300 | as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */ |
| 4301 | command->group_as_string = as_string; |
| 4302 | debug_printf_parse("end of group, remembering as:'%s'\n", |
| 4303 | command->group_as_string); |
| 4304 | #endif |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4305 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4306 | debug_printf_parse("parse_group return 0\n"); |
| 4307 | return 0; |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 4308 | /* command remains "open", available for possible redirects */ |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4309 | } |
| 4310 | |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4311 | #if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4312 | /* Subroutines for copying $(...) and `...` things */ |
| 4313 | static void add_till_backquote(o_string *dest, struct in_str *input); |
| 4314 | /* '...' */ |
| 4315 | static void add_till_single_quote(o_string *dest, struct in_str *input) |
| 4316 | { |
| 4317 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4318 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4319 | if (ch == EOF) |
| 4320 | break; |
| 4321 | if (ch == '\'') |
| 4322 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4323 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4324 | } |
| 4325 | } |
| 4326 | /* "...\"...`..`...." - do we need to handle "...$(..)..." too? */ |
| 4327 | static void add_till_double_quote(o_string *dest, struct in_str *input) |
| 4328 | { |
| 4329 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4330 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4331 | if (ch == '"') |
| 4332 | break; |
| 4333 | if (ch == '\\') { /* \x. Copy both chars. */ |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4334 | o_addchr(dest, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4335 | ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4336 | } |
| 4337 | if (ch == EOF) |
| 4338 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4339 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4340 | if (ch == '`') { |
| 4341 | add_till_backquote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4342 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4343 | continue; |
| 4344 | } |
Denis Vlasenko | 5703c22 | 2008-06-15 11:49:42 +0000 | [diff] [blame] | 4345 | //if (ch == '$') ... |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4346 | } |
| 4347 | } |
| 4348 | /* Process `cmd` - copy contents until "`" is seen. Complicated by |
| 4349 | * \` quoting. |
| 4350 | * "Within the backquoted style of command substitution, backslash |
| 4351 | * shall retain its literal meaning, except when followed by: '$', '`', or '\'. |
| 4352 | * The search for the matching backquote shall be satisfied by the first |
| 4353 | * backquote found without a preceding backslash; during this search, |
| 4354 | * if a non-escaped backquote is encountered within a shell comment, |
| 4355 | * a here-document, an embedded command substitution of the $(command) |
| 4356 | * form, or a quoted string, undefined results occur. A single-quoted |
| 4357 | * or double-quoted string that begins, but does not end, within the |
| 4358 | * "`...`" sequence produces undefined results." |
| 4359 | * Example Output |
| 4360 | * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST |
| 4361 | */ |
| 4362 | static void add_till_backquote(o_string *dest, struct in_str *input) |
| 4363 | { |
| 4364 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4365 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4366 | if (ch == '`') |
| 4367 | break; |
| 4368 | if (ch == '\\') { /* \x. Copy both chars unless it is \` */ |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4369 | int ch2 = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4370 | if (ch2 != '`' && ch2 != '$' && ch2 != '\\') |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4371 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4372 | ch = ch2; |
| 4373 | } |
| 4374 | if (ch == EOF) |
| 4375 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4376 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4377 | } |
| 4378 | } |
| 4379 | /* Process $(cmd) - copy contents until ")" is seen. Complicated by |
| 4380 | * quoting and nested ()s. |
| 4381 | * "With the $(command) style of command substitution, all characters |
| 4382 | * following the open parenthesis to the matching closing parenthesis |
| 4383 | * constitute the command. Any valid shell script can be used for command, |
| 4384 | * except a script consisting solely of redirections which produces |
| 4385 | * unspecified results." |
| 4386 | * Example Output |
| 4387 | * echo $(echo '(TEST)' BEST) (TEST) BEST |
| 4388 | * echo $(echo 'TEST)' BEST) TEST) BEST |
| 4389 | * echo $(echo \(\(TEST\) BEST) ((TEST) BEST |
| 4390 | */ |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4391 | 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] | 4392 | { |
| 4393 | int count = 0; |
| 4394 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4395 | int ch = i_getch(input); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4396 | if (ch == EOF) |
| 4397 | break; |
| 4398 | if (ch == '(') |
| 4399 | count++; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4400 | if (ch == ')') { |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4401 | if (--count < 0) { |
| 4402 | if (!dbl) |
| 4403 | break; |
| 4404 | if (i_peek(input) == ')') { |
| 4405 | i_getch(input); |
| 4406 | break; |
| 4407 | } |
| 4408 | } |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4409 | } |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4410 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4411 | if (ch == '\'') { |
| 4412 | add_till_single_quote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4413 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4414 | continue; |
| 4415 | } |
| 4416 | if (ch == '"') { |
| 4417 | add_till_double_quote(dest, input); |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4418 | o_addchr(dest, ch); |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4419 | continue; |
| 4420 | } |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4421 | if (ch == '\\') { /* \x. Copy verbatim. Important for \(, \) */ |
| 4422 | ch = i_getch(input); |
| 4423 | if (ch == EOF) |
| 4424 | break; |
Denis Vlasenko | 82dfec3 | 2008-06-16 12:47:11 +0000 | [diff] [blame] | 4425 | o_addchr(dest, ch); |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4426 | continue; |
| 4427 | } |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4428 | } |
| 4429 | } |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4430 | #endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */ |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4431 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 4432 | /* Return code: 0 for OK, 1 for syntax error */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4433 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4434 | #define handle_dollar(as_string, dest, input) \ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4435 | handle_dollar(dest, input) |
| 4436 | #endif |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4437 | static int handle_dollar(o_string *as_string, |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4438 | o_string *dest, |
| 4439 | struct in_str *input) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4440 | { |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 4441 | int expansion; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4442 | int ch = i_peek(input); /* first character after the $ */ |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 4443 | unsigned char quote_mask = dest->o_escape ? 0x80 : 0; |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4444 | |
| 4445 | debug_printf_parse("handle_dollar entered: ch='%c'\n", ch); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 4446 | if (isalpha(ch)) { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4447 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4448 | nommu_addchr(as_string, ch); |
Denis Vlasenko | d498131 | 2008-07-31 10:34:48 +0000 | [diff] [blame] | 4449 | make_var: |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4450 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4451 | while (1) { |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4452 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4453 | o_addchr(dest, ch | quote_mask); |
Denis Vlasenko | 1f4cf51 | 2007-05-16 10:39:24 +0000 | [diff] [blame] | 4454 | quote_mask = 0; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4455 | ch = i_peek(input); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4456 | if (!isalnum(ch) && ch != '_') |
| 4457 | break; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4458 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4459 | nommu_addchr(as_string, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4460 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4461 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4462 | } else if (isdigit(ch)) { |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4463 | make_one_char_var: |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4464 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4465 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4466 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 602d13c | 2007-05-13 18:34:53 +0000 | [diff] [blame] | 4467 | debug_printf_parse(": '%c'\n", ch); |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4468 | o_addchr(dest, ch | quote_mask); |
| 4469 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4470 | } else switch (ch) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4471 | case '$': /* pid */ |
| 4472 | case '!': /* last bg pid */ |
| 4473 | case '?': /* last exit code */ |
| 4474 | case '#': /* number of args */ |
| 4475 | case '*': /* args */ |
| 4476 | case '@': /* args */ |
| 4477 | goto make_one_char_var; |
| 4478 | case '{': { |
| 4479 | bool first_char, all_digits; |
Mike Frysinger | 6379bb4 | 2009-03-28 18:55:03 +0000 | [diff] [blame] | 4480 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4481 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4482 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4483 | nommu_addchr(as_string, ch); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4484 | /* XXX maybe someone will try to escape the '}' */ |
| 4485 | expansion = 0; |
| 4486 | first_char = true; |
| 4487 | all_digits = false; |
| 4488 | while (1) { |
| 4489 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4490 | nommu_addchr(as_string, ch); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4491 | if (ch == '}') |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4492 | break; |
Mike Frysinger | 98c5264 | 2009-04-02 10:02:37 +0000 | [diff] [blame] | 4493 | |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4494 | if (first_char) { |
| 4495 | if (ch == '#') |
| 4496 | /* ${#var}: length of var contents */ |
| 4497 | goto char_ok; |
| 4498 | else if (isdigit(ch)) { |
| 4499 | all_digits = true; |
| 4500 | goto char_ok; |
| 4501 | } |
| 4502 | } |
| 4503 | |
| 4504 | if (expansion < 2 |
| 4505 | && ( (all_digits && !isdigit(ch)) |
| 4506 | || (!all_digits && !isalnum(ch) && ch != '_') |
| 4507 | ) |
| 4508 | ) { |
| 4509 | /* handle parameter expansions |
| 4510 | * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02 |
| 4511 | */ |
| 4512 | if (first_char) |
| 4513 | goto case_default; |
| 4514 | switch (ch) { |
| 4515 | case ':': /* null modifier */ |
| 4516 | if (expansion == 0) { |
| 4517 | debug_printf_parse(": null modifier\n"); |
| 4518 | ++expansion; |
| 4519 | break; |
| 4520 | } |
| 4521 | goto case_default; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4522 | case '#': /* remove prefix */ |
| 4523 | case '%': /* remove suffix */ |
| 4524 | if (expansion == 0) { |
| 4525 | debug_printf_parse(": remove suffix/prefix\n"); |
| 4526 | expansion = 2; |
| 4527 | break; |
| 4528 | } |
| 4529 | goto case_default; |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4530 | case '-': /* default value */ |
| 4531 | case '=': /* assign default */ |
| 4532 | case '+': /* alternative */ |
| 4533 | case '?': /* error indicate */ |
| 4534 | debug_printf_parse(": parameter expansion\n"); |
| 4535 | expansion = 2; |
| 4536 | break; |
| 4537 | default: |
| 4538 | case_default: |
| 4539 | syntax("unterminated ${name}"); |
| 4540 | debug_printf_parse("handle_dollar return 1: unterminated ${name}\n"); |
| 4541 | return 1; |
| 4542 | } |
| 4543 | } |
| 4544 | char_ok: |
| 4545 | debug_printf_parse(": '%c'\n", ch); |
| 4546 | o_addchr(dest, ch | quote_mask); |
| 4547 | quote_mask = 0; |
| 4548 | first_char = false; |
| 4549 | } |
| 4550 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4551 | break; |
| 4552 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4553 | #if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK) |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4554 | case '(': { |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4555 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4556 | int pos; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4557 | # endif |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4558 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4559 | nommu_addchr(as_string, ch); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4560 | # if ENABLE_SH_MATH_SUPPORT |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4561 | if (i_peek(input) == '(') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4562 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4563 | nommu_addchr(as_string, ch); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4564 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4565 | o_addchr(dest, /*quote_mask |*/ '+'); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4566 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4567 | pos = dest->length; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4568 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4569 | add_till_closing_paren(dest, input, true); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4570 | # if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4571 | if (as_string) { |
| 4572 | o_addstr(as_string, dest->data + pos); |
| 4573 | o_addchr(as_string, ')'); |
| 4574 | o_addchr(as_string, ')'); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4575 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4576 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4577 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4578 | break; |
Denis Vlasenko | 76db5ad | 2008-06-12 12:58:20 +0000 | [diff] [blame] | 4579 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4580 | # endif |
| 4581 | # if ENABLE_HUSH_TICK |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4582 | //int pos = dest->length; |
| 4583 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4584 | o_addchr(dest, quote_mask | '`'); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4585 | # if !BB_MMU |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4586 | pos = dest->length; |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4587 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4588 | add_till_closing_paren(dest, input, false); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4589 | # if !BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4590 | if (as_string) { |
| 4591 | o_addstr(as_string, dest->data + pos); |
| 4592 | o_addchr(as_string, '`'); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4593 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4594 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4595 | //debug_printf_subst("SUBST RES2 '%s'\n", dest->data + pos); |
| 4596 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4597 | # endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4598 | break; |
| 4599 | } |
Denis Vlasenko | d85a5df | 2009-04-05 08:43:57 +0000 | [diff] [blame] | 4600 | #endif |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4601 | case '_': |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4602 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4603 | nommu_addchr(as_string, ch); |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4604 | ch = i_peek(input); |
| 4605 | if (isalnum(ch)) { /* it's $_name or $_123 */ |
| 4606 | ch = '_'; |
| 4607 | goto make_var; |
| 4608 | } |
| 4609 | /* else: it's $_ */ |
| 4610 | /* TODO: */ |
| 4611 | /* $_ Shell or shell script name; or last cmd name */ |
| 4612 | /* $- Option flags set by set builtin or shell options (-i etc) */ |
| 4613 | default: |
| 4614 | o_addQchr(dest, '$'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4615 | } |
Denis Vlasenko | e0a3367 | 2007-05-10 23:06:55 +0000 | [diff] [blame] | 4616 | debug_printf_parse("handle_dollar return 0\n"); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4617 | return 0; |
| 4618 | } |
| 4619 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4620 | #if BB_MMU |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4621 | #define parse_stream_dquoted(as_string, dest, input, dquote_end) \ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4622 | parse_stream_dquoted(dest, input, dquote_end) |
| 4623 | #endif |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4624 | static int parse_stream_dquoted(o_string *as_string, |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4625 | o_string *dest, |
| 4626 | struct in_str *input, |
| 4627 | int dquote_end) |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4628 | { |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4629 | int ch; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4630 | int next; |
| 4631 | |
| 4632 | again: |
| 4633 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4634 | if (ch != EOF) |
| 4635 | nommu_addchr(as_string, ch); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4636 | if (ch == dquote_end) { /* may be only '"' or EOF */ |
| 4637 | dest->nonnull = 1; |
| 4638 | if (dest->o_assignment == NOT_ASSIGNMENT) |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 4639 | dest->o_escape ^= 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4640 | debug_printf_parse("parse_stream_dquoted return 0\n"); |
| 4641 | return 0; |
| 4642 | } |
| 4643 | if (ch == EOF) { |
| 4644 | syntax("unterminated \""); |
| 4645 | debug_printf_parse("parse_stream_dquoted return 1: unterminated \"\n"); |
| 4646 | return 1; |
| 4647 | } |
| 4648 | next = '\0'; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4649 | if (ch != '\n') { |
| 4650 | next = i_peek(input); |
| 4651 | } |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 4652 | debug_printf_parse(": ch=%c (%d) escape=%d\n", |
| 4653 | ch, ch, dest->o_escape); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4654 | if (ch == '\\') { |
| 4655 | if (next == EOF) { |
| 4656 | syntax("\\<eof>"); |
| 4657 | debug_printf_parse("parse_stream_dquoted return 1: \\<eof>\n"); |
| 4658 | return 1; |
| 4659 | } |
| 4660 | /* bash: |
| 4661 | * "The backslash retains its special meaning [in "..."] |
| 4662 | * only when followed by one of the following characters: |
| 4663 | * $, `, ", \, or <newline>. A double quote may be quoted |
| 4664 | * within double quotes by preceding it with a backslash. |
| 4665 | * If enabled, history expansion will be performed unless |
| 4666 | * an ! appearing in double quotes is escaped using |
| 4667 | * a backslash. The backslash preceding the ! is not removed." |
| 4668 | */ |
| 4669 | if (strchr("$`\"\\", next) != NULL) { |
| 4670 | o_addqchr(dest, i_getch(input)); |
| 4671 | } else { |
| 4672 | o_addqchr(dest, '\\'); |
| 4673 | } |
| 4674 | goto again; |
| 4675 | } |
| 4676 | if (ch == '$') { |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4677 | if (handle_dollar(as_string, dest, input) != 0) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4678 | debug_printf_parse("parse_stream_dquoted return 1: " |
| 4679 | "handle_dollar returned non-0\n"); |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4680 | return 1; |
| 4681 | } |
| 4682 | goto again; |
| 4683 | } |
| 4684 | #if ENABLE_HUSH_TICK |
| 4685 | if (ch == '`') { |
| 4686 | //int pos = dest->length; |
| 4687 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4688 | o_addchr(dest, 0x80 | '`'); |
| 4689 | add_till_backquote(dest, input); |
| 4690 | o_addchr(dest, SPECIAL_VAR_SYMBOL); |
| 4691 | //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos); |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 4692 | goto again; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4693 | } |
| 4694 | #endif |
Denis Vlasenko | f328e00 | 2009-04-02 16:55:38 +0000 | [diff] [blame] | 4695 | o_addQchr(dest, ch); |
| 4696 | if (ch == '=' |
| 4697 | && (dest->o_assignment == MAYBE_ASSIGNMENT |
| 4698 | || dest->o_assignment == WORD_IS_KEYWORD) |
| 4699 | && is_assignment(dest->data) |
| 4700 | ) { |
| 4701 | dest->o_assignment = DEFINITELY_ASSIGNMENT; |
| 4702 | } |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4703 | goto again; |
| 4704 | } |
| 4705 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4706 | /* |
| 4707 | * Scan input until EOF or end_trigger char. |
| 4708 | * Return a list of pipes to execute, or NULL on EOF |
| 4709 | * or if end_trigger character is met. |
| 4710 | * On syntax error, exit is shell is not interactive, |
| 4711 | * reset parsing machinery and start parsing anew, |
| 4712 | * or return ERR_PTR. |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 4713 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4714 | static struct pipe *parse_stream(char **pstring, |
| 4715 | struct in_str *input, |
| 4716 | int end_trigger) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4717 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4718 | struct parse_context ctx; |
| 4719 | o_string dest = NULL_O_STRING; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4720 | int is_in_dquote; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4721 | int heredoc_cnt; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4722 | |
Denis Vlasenko | b7aaae9 | 2009-04-02 20:17:49 +0000 | [diff] [blame] | 4723 | /* Double-quote state is handled in the state variable is_in_dquote. |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4724 | * 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] | 4725 | * found. When recursing, quote state is passed in via dest->o_escape. |
| 4726 | */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4727 | debug_printf_parse("parse_stream entered, end_trigger='%c'\n", |
| 4728 | end_trigger ? : 'X'); |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4729 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4730 | G.ifs = get_local_var_value("IFS"); |
| 4731 | if (G.ifs == NULL) |
| 4732 | G.ifs = " \t\n"; |
| 4733 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4734 | reset: |
| 4735 | #if ENABLE_HUSH_INTERACTIVE |
| 4736 | input->promptmode = 0; /* PS1 */ |
| 4737 | #endif |
| 4738 | /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */ |
| 4739 | initialize_context(&ctx); |
| 4740 | is_in_dquote = 0; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4741 | heredoc_cnt = 0; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4742 | while (1) { |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4743 | const char *is_ifs; |
| 4744 | const char *is_special; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4745 | int ch; |
| 4746 | int next; |
| 4747 | int redir_fd; |
| 4748 | redir_type redir_style; |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4749 | |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4750 | if (is_in_dquote) { |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4751 | if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4752 | goto parse_error; |
| 4753 | } |
| 4754 | /* We reached closing '"' */ |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4755 | is_in_dquote = 0; |
| 4756 | } |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4757 | ch = i_getch(input); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4758 | debug_printf_parse(": ch=%c (%d) escape=%d\n", |
| 4759 | ch, ch, dest.o_escape); |
| 4760 | if (ch == EOF) { |
| 4761 | struct pipe *pi; |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4762 | |
| 4763 | if (heredoc_cnt) { |
| 4764 | syntax("unterminated here document"); |
| 4765 | goto parse_error; |
| 4766 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4767 | if (done_word(&dest, &ctx)) { |
| 4768 | goto parse_error; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4769 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4770 | o_free(&dest); |
| 4771 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4772 | pi = ctx.list_head; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4773 | /* If we got nothing... */ |
| 4774 | // TODO: test script consisting of just "&" |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4775 | if (pi->num_cmds == 0 |
| 4776 | IF_HAS_KEYWORDS( && pi->res_word == RES_NONE) |
| 4777 | ) { |
| 4778 | free_pipe_list(pi, 0); |
| 4779 | pi = NULL; |
| 4780 | } |
| 4781 | debug_printf_parse("parse_stream return %p\n", pi); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4782 | #if !BB_MMU |
| 4783 | debug_printf_parse("as_string '%s'\n", ctx.as_string.data); |
| 4784 | if (pstring) |
| 4785 | *pstring = ctx.as_string.data; |
| 4786 | else |
| 4787 | o_free_unsafe(&ctx.as_string); |
| 4788 | #endif |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4789 | return pi; |
Denis Vlasenko | 1a73586 | 2007-05-23 00:32:25 +0000 | [diff] [blame] | 4790 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4791 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4792 | is_ifs = strchr(G.ifs, ch); |
| 4793 | is_special = strchr("<>;&|(){}#'" /* special outside of "str" */ |
| 4794 | "\\$\"" USE_HUSH_TICK("`") /* always special */ |
| 4795 | , ch); |
| 4796 | |
| 4797 | if (!is_special && !is_ifs) { /* ordinary char */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4798 | o_addQchr(&dest, ch); |
| 4799 | if ((dest.o_assignment == MAYBE_ASSIGNMENT |
| 4800 | || dest.o_assignment == WORD_IS_KEYWORD) |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4801 | && ch == '=' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4802 | && is_assignment(dest.data) |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4803 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4804 | dest.o_assignment = DEFINITELY_ASSIGNMENT; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4805 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4806 | continue; |
| 4807 | } |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4808 | |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4809 | if (is_ifs) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4810 | if (done_word(&dest, &ctx)) { |
| 4811 | goto parse_error; |
Eric Andersen | aac75e5 | 2001-04-30 18:18:45 +0000 | [diff] [blame] | 4812 | } |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 4813 | if (ch == '\n') { |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 4814 | #if ENABLE_HUSH_CASE |
| 4815 | /* "case ... in <newline> word) ..." - |
| 4816 | * newlines are ignored (but ';' wouldn't be) */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4817 | if (ctx.command->argv == NULL |
| 4818 | && ctx.ctx_res_w == RES_MATCH |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 4819 | ) { |
| 4820 | continue; |
| 4821 | } |
| 4822 | #endif |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4823 | /* Treat newline as a command separator. */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4824 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4825 | debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt); |
| 4826 | if (heredoc_cnt) { |
| 4827 | if (fetch_heredocs(heredoc_cnt, &ctx, input)) |
| 4828 | goto parse_error; |
| 4829 | heredoc_cnt = 0; |
| 4830 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4831 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4832 | ch = ';'; |
Denis Vlasenko | 7c98612 | 2009-04-04 12:15:42 +0000 | [diff] [blame] | 4833 | /* note: if (is_ifs) continue; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4834 | * will still trigger for us */ |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4835 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4836 | } |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4837 | if (end_trigger && end_trigger == ch |
| 4838 | && (heredoc_cnt == 0 || end_trigger != ';') |
| 4839 | ) { |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4840 | //TODO: disallow "{ cmd }" without semicolon |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4841 | if (heredoc_cnt) { |
| 4842 | /* This is technically valid: |
| 4843 | * { cat <<HERE; }; echo Ok |
| 4844 | * heredoc |
| 4845 | * heredoc |
| 4846 | * heredoc |
| 4847 | * HERE |
| 4848 | * but we don't support this. |
| 4849 | * We require heredoc to be in enclosing {}/(), |
| 4850 | * if any. |
| 4851 | */ |
| 4852 | syntax("unterminated here document"); |
| 4853 | goto parse_error; |
| 4854 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4855 | if (done_word(&dest, &ctx)) { |
| 4856 | goto parse_error; |
| 4857 | } |
| 4858 | done_pipe(&ctx, PIPE_SEQ); |
| 4859 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Denis Vlasenko | 240c255 | 2009-04-03 03:45:05 +0000 | [diff] [blame] | 4860 | /* Do we sit outside of any if's, loops or case's? */ |
Denis Vlasenko | 3718168 | 2009-04-03 03:19:15 +0000 | [diff] [blame] | 4861 | if (!HAS_KEYWORDS |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4862 | 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] | 4863 | ) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4864 | debug_printf_parse("parse_stream return %p: " |
| 4865 | "end_trigger char found\n", |
| 4866 | ctx.list_head); |
| 4867 | o_free(&dest); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4868 | #if !BB_MMU |
| 4869 | debug_printf_parse("as_string '%s'\n", ctx.as_string.data); |
| 4870 | if (pstring) |
| 4871 | *pstring = ctx.as_string.data; |
| 4872 | else |
| 4873 | o_free_unsafe(&ctx.as_string); |
| 4874 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4875 | return ctx.list_head; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4876 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4877 | } |
Denis Vlasenko | 6da69cd | 2009-04-04 12:12:58 +0000 | [diff] [blame] | 4878 | if (is_ifs) |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4879 | continue; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4880 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4881 | if (dest.o_assignment == MAYBE_ASSIGNMENT) { |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4882 | /* ch is a special char and thus this word |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4883 | * cannot be an assignment */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4884 | dest.o_assignment = NOT_ASSIGNMENT; |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4885 | } |
| 4886 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 4887 | next = '\0'; |
| 4888 | if (ch != '\n') { |
| 4889 | next = i_peek(input); |
| 4890 | } |
| 4891 | |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4892 | switch (ch) { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4893 | case '#': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4894 | if (dest.length == 0) { |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4895 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4896 | ch = i_peek(input); |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4897 | if (ch == EOF || ch == '\n') |
| 4898 | break; |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4899 | i_getch(input); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4900 | /* note: we do not add it to &ctx.as_string */ |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4901 | } |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4902 | //TODO: go back one char? |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4903 | nommu_addchr(&ctx.as_string, '\n'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4904 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4905 | o_addQchr(&dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4906 | } |
| 4907 | break; |
| 4908 | case '\\': |
| 4909 | if (next == EOF) { |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4910 | syntax("\\<eof>"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4911 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4912 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4913 | o_addchr(&dest, '\\'); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4914 | ch = i_getch(input); |
| 4915 | o_addchr(&dest, ch); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4916 | nommu_addchr(&ctx.as_string, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4917 | break; |
| 4918 | case '$': |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 4919 | if (handle_dollar(&ctx.as_string, &dest, input) != 0) { |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 4920 | debug_printf_parse("parse_stream parse error: " |
| 4921 | "handle_dollar returned non-0\n"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4922 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 4923 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4924 | break; |
| 4925 | case '\'': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4926 | dest.nonnull = 1; |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4927 | while (1) { |
Denis Vlasenko | 46ccdcb | 2008-06-10 18:05:12 +0000 | [diff] [blame] | 4928 | ch = i_getch(input); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4929 | if (ch == EOF) { |
| 4930 | syntax("unterminated '"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4931 | goto parse_error; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4932 | } |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4933 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 4934 | if (ch == '\'') |
Denis Vlasenko | 0c886c6 | 2007-01-30 22:30:09 +0000 | [diff] [blame] | 4935 | break; |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4936 | if (dest.o_assignment == NOT_ASSIGNMENT) |
| 4937 | o_addqchr(&dest, ch); |
Denis Vlasenko | 55789c6 | 2008-06-18 16:30:42 +0000 | [diff] [blame] | 4938 | else |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4939 | o_addchr(&dest, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4940 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4941 | break; |
| 4942 | case '"': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4943 | dest.nonnull = 1; |
Denis Vlasenko | 2f1d394 | 2009-04-02 16:31:29 +0000 | [diff] [blame] | 4944 | is_in_dquote ^= 1; /* invert */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4945 | if (dest.o_assignment == NOT_ASSIGNMENT) |
| 4946 | dest.o_escape ^= 1; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4947 | break; |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4948 | #if ENABLE_HUSH_TICK |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4949 | case '`': { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4950 | //int pos = dest.length; |
| 4951 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 4952 | o_addchr(&dest, '`'); |
| 4953 | add_till_backquote(&dest, input); |
| 4954 | o_addchr(&dest, SPECIAL_VAR_SYMBOL); |
| 4955 | //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4956 | break; |
Denis Vlasenko | 7b4f3f1 | 2008-06-10 18:04:32 +0000 | [diff] [blame] | 4957 | } |
Denis Vlasenko | 14b5dd9 | 2007-05-20 21:51:38 +0000 | [diff] [blame] | 4958 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4959 | case '>': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4960 | redir_fd = redirect_opt_num(&dest); |
| 4961 | if (done_word(&dest, &ctx)) { |
| 4962 | goto parse_error; |
| 4963 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4964 | redir_style = REDIRECT_OVERWRITE; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4965 | if (next == '>') { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4966 | redir_style = REDIRECT_APPEND; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4967 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4968 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4969 | } |
| 4970 | #if 0 |
| 4971 | else if (next == '(') { |
| 4972 | syntax(">(process) not supported"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4973 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4974 | } |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4975 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4976 | if (parse_redirect(&ctx, redir_fd, redir_style, input)) |
| 4977 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4978 | break; |
| 4979 | case '<': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4980 | redir_fd = redirect_opt_num(&dest); |
| 4981 | if (done_word(&dest, &ctx)) { |
| 4982 | goto parse_error; |
| 4983 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4984 | redir_style = REDIRECT_INPUT; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4985 | if (next == '<') { |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 4986 | redir_style = REDIRECT_HEREDOC; |
| 4987 | heredoc_cnt++; |
| 4988 | debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4989 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4990 | nommu_addchr(&ctx.as_string, ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 4991 | } else if (next == '>') { |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 4992 | redir_style = REDIRECT_IO; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 4993 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 4994 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 4995 | } |
| 4996 | #if 0 |
| 4997 | else if (next == '(') { |
| 4998 | syntax("<(process) not supported"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 4999 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5000 | } |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 5001 | #endif |
Denis Vlasenko | 6c9be7f | 2009-04-07 02:29:51 +0000 | [diff] [blame] | 5002 | if (parse_redirect(&ctx, redir_fd, redir_style, input)) |
| 5003 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5004 | break; |
| 5005 | case ';': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5006 | #if ENABLE_HUSH_CASE |
| 5007 | case_semi: |
| 5008 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5009 | if (done_word(&dest, &ctx)) { |
| 5010 | goto parse_error; |
| 5011 | } |
| 5012 | done_pipe(&ctx, PIPE_SEQ); |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5013 | #if ENABLE_HUSH_CASE |
| 5014 | /* Eat multiple semicolons, detect |
| 5015 | * whether it means something special */ |
| 5016 | while (1) { |
| 5017 | ch = i_peek(input); |
| 5018 | if (ch != ';') |
| 5019 | break; |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5020 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5021 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5022 | if (ctx.ctx_res_w == RES_CASEI) { |
| 5023 | ctx.ctx_dsemicolon = 1; |
| 5024 | ctx.ctx_res_w = RES_MATCH; |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5025 | break; |
| 5026 | } |
| 5027 | } |
| 5028 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5029 | new_cmd: |
| 5030 | /* We just finished a cmd. New one may start |
| 5031 | * with an assignment */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5032 | dest.o_assignment = MAYBE_ASSIGNMENT; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5033 | break; |
| 5034 | case '&': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5035 | if (done_word(&dest, &ctx)) { |
| 5036 | goto parse_error; |
| 5037 | } |
Denis Vlasenko | bb81c58 | 2007-01-30 22:32:09 +0000 | [diff] [blame] | 5038 | if (next == '&') { |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5039 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5040 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5041 | done_pipe(&ctx, PIPE_AND); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5042 | } else { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5043 | done_pipe(&ctx, PIPE_BG); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5044 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5045 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5046 | case '|': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5047 | if (done_word(&dest, &ctx)) { |
| 5048 | goto parse_error; |
| 5049 | } |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 5050 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5051 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5052 | break; /* we are in case's "word | word)" */ |
Denis Vlasenko | fbeeb32 | 2008-07-31 00:17:01 +0000 | [diff] [blame] | 5053 | #endif |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5054 | if (next == '|') { /* || */ |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5055 | ch = i_getch(input); |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5056 | nommu_addchr(&ctx.as_string, ch); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5057 | done_pipe(&ctx, PIPE_OR); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5058 | } else { |
| 5059 | /* we could pick up a file descriptor choice here |
| 5060 | * with redirect_opt_num(), but bash doesn't do it. |
| 5061 | * "echo foo 2| cat" yields "foo 2". */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5062 | done_command(&ctx); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5063 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5064 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5065 | case '(': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5066 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | f173607 | 2008-07-31 10:09:26 +0000 | [diff] [blame] | 5067 | /* "case... in [(]word)..." - skip '(' */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5068 | if (ctx.ctx_res_w == RES_MATCH |
| 5069 | && ctx.command->argv == NULL /* not (word|(... */ |
| 5070 | && dest.length == 0 /* not word(... */ |
| 5071 | && dest.nonnull == 0 /* not ""(... */ |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5072 | ) { |
| 5073 | continue; |
| 5074 | } |
| 5075 | #endif |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 5076 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5077 | if (dest.length != 0 /* not just () but word() */ |
| 5078 | && dest.nonnull == 0 /* not a"b"c() */ |
| 5079 | && ctx.command->argv == NULL /* it's the first word */ |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 5080 | //TODO: "func ( ) {...}" - note spaces - is valid format too in bash |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 5081 | && i_peek(input) == ')' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5082 | && !match_reserved_word(&dest) |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 5083 | ) { |
| 5084 | bb_error_msg("seems like a function definition"); |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 5085 | i_getch(input); |
Denis Vlasenko | 609f2ab | 2009-04-04 23:15:14 +0000 | [diff] [blame] | 5086 | //if !BB_MMU o_addchr(&ctx.as_string... |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 5087 | do { |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 5088 | //TODO: do it properly. |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 5089 | ch = i_getch(input); |
| 5090 | } while (ch == ' ' || ch == '\n'); |
| 5091 | if (ch != '{') { |
| 5092 | syntax("was expecting {"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5093 | goto parse_error; |
Denis Vlasenko | 22d10a0 | 2008-10-13 08:53:43 +0000 | [diff] [blame] | 5094 | } |
Denis Vlasenko | 371de4a | 2008-10-14 12:43:13 +0000 | [diff] [blame] | 5095 | ch = 'F'; /* magic value */ |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 5096 | } |
| 5097 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5098 | case '{': |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5099 | if (parse_group(&dest, &ctx, input, ch) != 0) { |
| 5100 | goto parse_error; |
Denis Vlasenko | e725bfe | 2007-05-03 22:45:39 +0000 | [diff] [blame] | 5101 | } |
Denis Vlasenko | 2b576b8 | 2008-08-04 00:46:07 +0000 | [diff] [blame] | 5102 | goto new_cmd; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5103 | case ')': |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5104 | #if ENABLE_HUSH_CASE |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5105 | if (ctx.ctx_res_w == RES_MATCH) |
Denis Vlasenko | 17f02e7 | 2008-07-14 04:32:29 +0000 | [diff] [blame] | 5106 | goto case_semi; |
| 5107 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5108 | case '}': |
Denis Vlasenko | c373527 | 2008-10-09 12:58:26 +0000 | [diff] [blame] | 5109 | /* proper use of this character is caught by end_trigger: |
| 5110 | * if we see {, we call parse_group(..., end_trigger='}') |
| 5111 | * and it will match } earlier (not here). */ |
Denis Vlasenko | a844200 | 2008-06-14 11:00:17 +0000 | [diff] [blame] | 5112 | syntax("unexpected } or )"); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5113 | goto parse_error; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5114 | default: |
Denis Vlasenko | 5ec6132 | 2008-06-24 00:50:07 +0000 | [diff] [blame] | 5115 | if (HUSH_DEBUG) |
Denis Vlasenko | 90e485c | 2007-05-23 15:22:50 +0000 | [diff] [blame] | 5116 | bb_error_msg_and_die("BUG: unexpected %c\n", ch); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5117 | } |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5118 | } /* while (1) */ |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5119 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5120 | parse_error: |
| 5121 | { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5122 | struct parse_context *pctx; |
| 5123 | IF_HAS_KEYWORDS(struct parse_context *p2;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5124 | |
| 5125 | /* Clean up allocated tree. |
| 5126 | * Samples for finding leaks on syntax error recovery path. |
Denis Vlasenko | a24c8ca | 2009-04-04 15:24:40 +0000 | [diff] [blame] | 5127 | * Run them from interactive shell, watch pmap `pidof hush`. |
| 5128 | * while if false; then false; fi do break; done |
| 5129 | * (bash accepts it) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5130 | * while if false; then false; fi; do break; fi |
Denis Vlasenko | cc4c693 | 2009-04-05 07:38:48 +0000 | [diff] [blame] | 5131 | * Samples to catch leaks at execution: |
| 5132 | * while if (true | {true;}); then echo ok; fi; do break; done |
| 5133 | * 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] | 5134 | */ |
| 5135 | pctx = &ctx; |
| 5136 | do { |
| 5137 | /* Update pipe/command counts, |
| 5138 | * otherwise freeing may miss some */ |
| 5139 | done_pipe(pctx, PIPE_SEQ); |
| 5140 | debug_printf_clean("freeing list %p from ctx %p\n", |
| 5141 | pctx->list_head, pctx); |
| 5142 | debug_print_tree(pctx->list_head, 0); |
| 5143 | free_pipe_list(pctx->list_head, 0); |
| 5144 | debug_printf_clean("freed list %p\n", pctx->list_head); |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5145 | #if !BB_MMU |
| 5146 | o_free_unsafe(&pctx->as_string); |
| 5147 | #endif |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5148 | IF_HAS_KEYWORDS(p2 = pctx->stack;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5149 | if (pctx != &ctx) { |
| 5150 | free(pctx); |
| 5151 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5152 | IF_HAS_KEYWORDS(pctx = p2;) |
| 5153 | } while (HAS_KEYWORDS && pctx); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5154 | /* Free text, clear all dest fields */ |
| 5155 | o_free(&dest); |
| 5156 | /* If we are not in top-level parse, we return, |
| 5157 | * our caller will propagate error. |
| 5158 | */ |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5159 | if (end_trigger != ';') { |
| 5160 | #if !BB_MMU |
| 5161 | if (pstring) |
| 5162 | *pstring = NULL; |
| 5163 | #endif |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5164 | return ERR_PTR; |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5165 | } |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5166 | /* Discard cached input, force prompt */ |
| 5167 | input->p = NULL; |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5168 | USE_HUSH_INTERACTIVE(input->promptme = 1;) |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5169 | goto reset; |
Denis Vlasenko | 027e3fd | 2009-04-02 22:50:40 +0000 | [diff] [blame] | 5170 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5171 | } |
| 5172 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5173 | /* Executing from string: eval, sh -c '...' |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5174 | * or from file: /etc/profile, . file, sh <script>, sh (intereactive) |
| 5175 | * end_trigger controls how often we stop parsing |
| 5176 | * NUL: parse all, execute, return |
| 5177 | * ';': parse till ';' or newline, execute, repeat till EOF |
| 5178 | */ |
| 5179 | 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] | 5180 | { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5181 | while (1) { |
| 5182 | struct pipe *pipe_list; |
Denis Vlasenko | f8d01d3 | 2008-06-14 17:13:20 +0000 | [diff] [blame] | 5183 | |
Denis Vlasenko | 9aa7d6f | 2009-04-04 22:47:50 +0000 | [diff] [blame] | 5184 | pipe_list = parse_stream(NULL, inp, end_trigger); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5185 | if (!pipe_list) /* EOF */ |
| 5186 | break; |
| 5187 | debug_print_tree(pipe_list, 0); |
| 5188 | debug_printf_exec("parse_and_run_stream: run_and_free_list\n"); |
| 5189 | run_and_free_list(pipe_list); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5190 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5191 | } |
| 5192 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5193 | static void parse_and_run_string(const char *s) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5194 | { |
| 5195 | struct in_str input; |
| 5196 | setup_string_in_str(&input, s); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5197 | parse_and_run_stream(&input, '\0'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5198 | } |
| 5199 | |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5200 | static void parse_and_run_file(FILE *f) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5201 | { |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5202 | struct in_str input; |
| 5203 | setup_file_in_str(&input, f); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5204 | parse_and_run_stream(&input, ';'); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5205 | } |
| 5206 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5207 | /* Called a few times only (or even once if "sh -c") */ |
| 5208 | static void block_signals(int second_time) |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 5209 | { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5210 | unsigned sig; |
| 5211 | unsigned mask; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5212 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5213 | mask = (1 << SIGQUIT); |
| 5214 | if (G_interactive_fd) { |
| 5215 | mask = 0 |
| 5216 | | (1 << SIGQUIT) |
| 5217 | | (1 << SIGTERM) |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5218 | //TODO | (1 << SIGHUP) |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5219 | #if ENABLE_HUSH_JOB |
| 5220 | | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP) |
| 5221 | #endif |
| 5222 | | (1 << SIGINT) |
| 5223 | ; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5224 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5225 | G.non_DFL_mask = mask; |
Eric Andersen | 52a97ca | 2001-06-22 06:49:26 +0000 | [diff] [blame] | 5226 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5227 | if (!second_time) |
| 5228 | sigprocmask(SIG_SETMASK, NULL, &G.blocked_set); |
| 5229 | sig = 0; |
| 5230 | while (mask) { |
| 5231 | if (mask & 1) |
| 5232 | sigaddset(&G.blocked_set, sig); |
| 5233 | mask >>= 1; |
| 5234 | sig++; |
| 5235 | } |
| 5236 | sigdelset(&G.blocked_set, SIGCHLD); |
| 5237 | |
| 5238 | sigprocmask(SIG_SETMASK, &G.blocked_set, |
| 5239 | second_time ? NULL : &G.inherited_set); |
| 5240 | /* POSIX allows shell to re-enable SIGCHLD |
| 5241 | * even if it was SIG_IGN on entry */ |
| 5242 | // G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */ |
| 5243 | if (!second_time) |
| 5244 | signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler); |
| 5245 | } |
| 5246 | |
| 5247 | #if ENABLE_HUSH_JOB |
| 5248 | /* helper */ |
| 5249 | static void maybe_set_to_sigexit(int sig) |
| 5250 | { |
| 5251 | void (*handler)(int); |
| 5252 | /* non_DFL_mask'ed signals are, well, masked, |
| 5253 | * no need to set handler for them. |
| 5254 | */ |
| 5255 | if (!((G.non_DFL_mask >> sig) & 1)) { |
| 5256 | handler = signal(sig, sigexit); |
| 5257 | if (handler == SIG_IGN) /* oops... restore back to IGN! */ |
| 5258 | signal(sig, handler); |
| 5259 | } |
| 5260 | } |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5261 | /* Set handlers to restore tty pgrp and exit */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5262 | static void set_fatal_handlers(void) |
| 5263 | { |
Denis Vlasenko | a6c467f | 2007-05-05 15:10:52 +0000 | [diff] [blame] | 5264 | /* We _must_ restore tty pgrp on fatal signals */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5265 | if (HUSH_DEBUG) { |
| 5266 | maybe_set_to_sigexit(SIGILL ); |
| 5267 | maybe_set_to_sigexit(SIGFPE ); |
| 5268 | maybe_set_to_sigexit(SIGBUS ); |
| 5269 | maybe_set_to_sigexit(SIGSEGV); |
| 5270 | maybe_set_to_sigexit(SIGTRAP); |
| 5271 | } /* else: hush is perfect. what SEGV? */ |
| 5272 | maybe_set_to_sigexit(SIGABRT); |
| 5273 | /* bash 3.2 seems to handle these just like 'fatal' ones */ |
| 5274 | maybe_set_to_sigexit(SIGPIPE); |
| 5275 | maybe_set_to_sigexit(SIGALRM); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5276 | //TODO: disable and move down when proper SIGHUP handling is added |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5277 | maybe_set_to_sigexit(SIGHUP ); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5278 | /* if we are interactive, [SIGHUP,] SIGTERM and SIGINT are masked. |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5279 | * if we aren't interactive... but in this case |
| 5280 | * we never want to restore pgrp on exit, and this fn is not called */ |
| 5281 | /*maybe_set_to_sigexit(SIGTERM);*/ |
| 5282 | /*maybe_set_to_sigexit(SIGINT );*/ |
Eric Andersen | 6c947d2 | 2001-06-25 22:24:38 +0000 | [diff] [blame] | 5283 | } |
Denis Vlasenko | b81b3df | 2007-04-28 16:48:04 +0000 | [diff] [blame] | 5284 | #endif |
Eric Andersen | ada18ff | 2001-05-21 16:18:22 +0000 | [diff] [blame] | 5285 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5286 | static int set_mode(const char cstate, const char mode) |
| 5287 | { |
| 5288 | int state = (cstate == '-' ? 1 : 0); |
| 5289 | switch (mode) { |
| 5290 | case 'n': G.fake_mode = state; break; |
| 5291 | case 'x': /*G.debug_mode = state;*/ break; |
| 5292 | default: return EXIT_FAILURE; |
| 5293 | } |
| 5294 | return EXIT_SUCCESS; |
| 5295 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5296 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 5297 | int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Matt Kraai | 2d91deb | 2001-08-01 17:21:35 +0000 | [diff] [blame] | 5298 | int hush_main(int argc, char **argv) |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5299 | { |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5300 | static const struct variable const_shell_ver = { |
| 5301 | .next = NULL, |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 5302 | .varstr = (char*)hush_version_str, |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5303 | .max_len = 1, /* 0 can provoke free(name) */ |
| 5304 | .flg_export = 1, |
| 5305 | .flg_read_only = 1, |
| 5306 | }; |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5307 | int signal_mask_is_inited = 0; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5308 | int opt; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5309 | char **e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5310 | struct variable *cur_var; |
Eric Andersen | bc604a2 | 2001-05-16 05:24:03 +0000 | [diff] [blame] | 5311 | |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 5312 | INIT_G(); |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5313 | if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */ |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 5314 | G.last_exitcode = EXIT_SUCCESS; |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5315 | #if !BB_MMU |
| 5316 | G.argv0_for_re_execing = argv[0]; |
| 5317 | #endif |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5318 | /* Deal with HUSH_VERSION */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5319 | G.shell_ver = const_shell_ver; /* copying struct here */ |
| 5320 | G.top_var = &G.shell_ver; |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 5321 | debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION"); |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5322 | unsetenv("HUSH_VERSION"); /* in case it exists in initial env */ |
| 5323 | /* Initialize our shell local variables with the values |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5324 | * currently living in the environment */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5325 | cur_var = G.top_var; |
Denis Vlasenko | 0a83fc3 | 2007-05-25 11:12:32 +0000 | [diff] [blame] | 5326 | e = environ; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5327 | if (e) while (*e) { |
| 5328 | char *value = strchr(*e, '='); |
| 5329 | if (value) { /* paranoia */ |
| 5330 | cur_var->next = xzalloc(sizeof(*cur_var)); |
| 5331 | cur_var = cur_var->next; |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 5332 | cur_var->varstr = *e; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5333 | cur_var->max_len = strlen(*e); |
| 5334 | cur_var->flg_export = 1; |
| 5335 | } |
| 5336 | e++; |
| 5337 | } |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 5338 | debug_printf_env("putenv '%s'\n", hush_version_str); |
Denis Vlasenko | afd7a8d | 2008-10-09 16:29:44 +0000 | [diff] [blame] | 5339 | putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */ |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 5340 | #if ENABLE_FEATURE_EDITING |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5341 | G.line_input_state = new_line_input_t(FOR_SHELL); |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 5342 | #endif |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5343 | G.global_argc = argc; |
| 5344 | G.global_argv = argv; |
Eric Andersen | 94ac244 | 2001-05-22 19:05:18 +0000 | [diff] [blame] | 5345 | /* Initialize some more globals to non-zero values */ |
| 5346 | set_cwd(); |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5347 | #if ENABLE_HUSH_INTERACTIVE |
Mike Frysinger | ec2c655 | 2009-03-28 12:24:44 +0000 | [diff] [blame] | 5348 | if (ENABLE_FEATURE_EDITING) |
| 5349 | cmdedit_set_initial_prompt(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5350 | G.PS2 = "> "; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5351 | #endif |
Denis Vlasenko | c8be5ee | 2007-05-17 15:38:46 +0000 | [diff] [blame] | 5352 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5353 | /* Shell is non-interactive at first. We need to call |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5354 | * block_signals(0) if we are going to execute "sh <script>", |
| 5355 | * "sh -c <cmds>" or login shell's /etc/profile and friends. |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5356 | * If we later decide that we are interactive, we run block_signals(0) |
| 5357 | * (or re-run block_signals(1) if we ran block_signals(0) before) |
| 5358 | * in order to intercept (more) signals. |
| 5359 | */ |
| 5360 | |
| 5361 | /* Parse options */ |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 5362 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */ |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5363 | while (1) { |
| 5364 | opt = getopt(argc, argv, "c:xins" |
| 5365 | #if !BB_MMU |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 5366 | "<:$:!:?:D:R:V:" |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5367 | #endif |
| 5368 | ); |
| 5369 | if (opt <= 0) |
| 5370 | break; |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5371 | switch (opt) { |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5372 | case 'c': |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5373 | if (!G.root_pid) |
| 5374 | G.root_pid = getpid(); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5375 | G.global_argv = argv + optind; |
Denis Vlasenko | a8b6dff | 2009-03-20 12:05:14 +0000 | [diff] [blame] | 5376 | if (!argv[optind]) { |
| 5377 | /* -c 'script' (no params): prevent empty $0 */ |
| 5378 | *--G.global_argv = argv[0]; |
| 5379 | optind--; |
| 5380 | } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */ |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5381 | G.global_argc = argc - optind; |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5382 | block_signals(0); /* 0: called 1st time */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5383 | parse_and_run_string(optarg); |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5384 | goto final_return; |
| 5385 | case 'i': |
Denis Vlasenko | c666f71 | 2007-05-16 22:18:54 +0000 | [diff] [blame] | 5386 | /* Well, we cannot just declare interactiveness, |
| 5387 | * we have to have some stuff (ctty, etc) */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5388 | /* G_interactive_fd++; */ |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5389 | break; |
Mike Frysinger | 19a7ea1 | 2009-03-28 13:02:11 +0000 | [diff] [blame] | 5390 | case 's': |
| 5391 | /* "-s" means "read from stdin", but this is how we always |
| 5392 | * operate, so simply do nothing here. */ |
| 5393 | break; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5394 | #if !BB_MMU |
Denis Vlasenko | 50f3aa4 | 2009-04-07 10:52:40 +0000 | [diff] [blame] | 5395 | case '<': /* "big heredoc" support */ |
| 5396 | full_write(STDOUT_FILENO, optarg, strlen(optarg)); |
| 5397 | _exit(0); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5398 | case '$': |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 5399 | G.root_pid = bb_strtou(optarg, &optarg, 16); |
| 5400 | optarg++; |
| 5401 | G.last_bg_pid = bb_strtou(optarg, &optarg, 16); |
| 5402 | optarg++; |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 5403 | G.last_exitcode = bb_strtou(optarg, &optarg, 16); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5404 | # if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 5405 | optarg++; |
| 5406 | G.depth_of_loop = bb_strtou(optarg, &optarg, 16); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5407 | # endif |
Denis Vlasenko | 34e573d | 2009-04-06 12:56:28 +0000 | [diff] [blame] | 5408 | break; |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5409 | case 'R': |
| 5410 | case 'V': |
| 5411 | set_local_var(xstrdup(optarg), 0, opt == 'R'); |
| 5412 | break; |
| 5413 | #endif |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5414 | case 'n': |
| 5415 | case 'x': |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5416 | if (!set_mode('-', opt)) |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5417 | break; |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5418 | default: |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 5419 | #ifndef BB_VER |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5420 | fprintf(stderr, "Usage: sh [FILE]...\n" |
| 5421 | " or: sh -c command [args]...\n\n"); |
| 5422 | exit(EXIT_FAILURE); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 5423 | #else |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5424 | bb_show_usage(); |
Eric Andersen | 9ffb7dd | 2001-05-19 03:00:46 +0000 | [diff] [blame] | 5425 | #endif |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5426 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5427 | } /* option parsing loop */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5428 | |
| 5429 | if (!G.root_pid) |
| 5430 | G.root_pid = getpid(); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5431 | |
| 5432 | /* If we are login shell... */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5433 | if (argv[0] && argv[0][0] == '-') { |
| 5434 | FILE *input; |
| 5435 | /* XXX what should argv be while sourcing /etc/profile? */ |
| 5436 | debug_printf("sourcing /etc/profile\n"); |
| 5437 | input = fopen_for_read("/etc/profile"); |
| 5438 | if (input != NULL) { |
| 5439 | close_on_exec_on(fileno(input)); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5440 | block_signals(0); /* 0: called 1st time */ |
| 5441 | signal_mask_is_inited = 1; |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5442 | parse_and_run_file(input); |
| 5443 | fclose(input); |
| 5444 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5445 | /* bash: after sourcing /etc/profile, |
| 5446 | * tries to source (in the given order): |
| 5447 | * ~/.bash_profile, ~/.bash_login, ~/.profile, |
| 5448 | * stopping of first found. --noprofile turns this off. |
| 5449 | * bash also sources ~/.bash_logout on exit. |
| 5450 | * If called as sh, skips .bash_XXX files. |
| 5451 | */ |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5452 | } |
| 5453 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5454 | if (argv[optind]) { |
| 5455 | FILE *input; |
| 5456 | /* |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5457 | * "bash <script>" (which is never interactive (unless -i?)) |
| 5458 | * sources $BASH_ENV here (without scanning $PATH). |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5459 | * If called as sh, does the same but with $ENV. |
| 5460 | */ |
| 5461 | debug_printf("running script '%s'\n", argv[optind]); |
| 5462 | G.global_argv = argv + optind; |
| 5463 | G.global_argc = argc - optind; |
| 5464 | input = xfopen_for_read(argv[optind]); |
| 5465 | close_on_exec_on(fileno(input)); |
| 5466 | if (!signal_mask_is_inited) |
| 5467 | block_signals(0); /* 0: called 1st time */ |
| 5468 | parse_and_run_file(input); |
| 5469 | #if ENABLE_FEATURE_CLEAN_UP |
| 5470 | fclose(input); |
| 5471 | #endif |
| 5472 | goto final_return; |
| 5473 | } |
| 5474 | |
Denis Vlasenko | c4a7af5 | 2009-04-05 20:33:27 +0000 | [diff] [blame] | 5475 | /* Up to here, shell was non-interactive. Now it may become one. |
| 5476 | * NB: don't forget to (re)run block_signals(0/1) as needed. |
| 5477 | */ |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5478 | |
Denis Vlasenko | fbf6dea | 2007-04-13 19:56:56 +0000 | [diff] [blame] | 5479 | /* 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] | 5480 | * the following conditions are met: |
Denis Vlasenko | 55b2de7 | 2007-04-18 17:21:28 +0000 | [diff] [blame] | 5481 | * no -c command |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5482 | * no arguments remaining or the -s flag given |
| 5483 | * standard input is a terminal |
| 5484 | * standard output is a terminal |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5485 | * Refer to Posix.2, the description of the 'sh' utility. |
| 5486 | */ |
| 5487 | #if ENABLE_HUSH_JOB |
| 5488 | if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5489 | G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO); |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5490 | debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp); |
Denis Vlasenko | d3f973e | 2009-04-06 10:21:42 +0000 | [diff] [blame] | 5491 | //TODO: "interactive" and "have job control" are two different things. |
| 5492 | //If tcgetpgrp fails here, "have job control" is false, but "interactive" |
| 5493 | //should stay on! Currently, we mix these into one. |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5494 | if (G.saved_tty_pgrp >= 0) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5495 | /* try to dup stdin to high fd#, >= 255 */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5496 | G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255); |
| 5497 | if (G_interactive_fd < 0) { |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5498 | /* try to dup to any fd */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5499 | G_interactive_fd = dup(STDIN_FILENO); |
| 5500 | if (G_interactive_fd < 0) |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5501 | /* give up */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5502 | G_interactive_fd = 0; |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5503 | } |
Denis Vlasenko | 46f9b6d | 2009-04-05 10:39:03 +0000 | [diff] [blame] | 5504 | // TODO: track & disallow any attempts of user |
| 5505 | // to (inadvertently) close/redirect it |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5506 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5507 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5508 | debug_printf("interactive_fd:%d\n", G_interactive_fd); |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5509 | if (G_interactive_fd) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5510 | pid_t shell_pgrp; |
| 5511 | |
| 5512 | /* We are indeed interactive shell, and we will perform |
| 5513 | * job control. Setting up for that. */ |
| 5514 | |
| 5515 | close_on_exec_on(G_interactive_fd); |
| 5516 | /* If we were run as 'hush &', sleep until we are |
| 5517 | * in the foreground (tty pgrp == our pgrp). |
| 5518 | * If we get started under a job aware app (like bash), |
| 5519 | * make sure we are now in charge so we don't fight over |
| 5520 | * who gets the foreground */ |
| 5521 | while (1) { |
| 5522 | shell_pgrp = getpgrp(); |
| 5523 | G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd); |
| 5524 | if (G.saved_tty_pgrp == shell_pgrp) |
| 5525 | break; |
| 5526 | /* send TTIN to ourself (should stop us) */ |
| 5527 | kill(- shell_pgrp, SIGTTIN); |
| 5528 | } |
| 5529 | /* Block some signals */ |
| 5530 | block_signals(signal_mask_is_inited); |
| 5531 | /* Set other signals to restore saved_tty_pgrp */ |
| 5532 | set_fatal_handlers(); |
| 5533 | /* Put ourselves in our own process group */ |
| 5534 | bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */ |
| 5535 | /* Grab control of the terminal */ |
| 5536 | tcsetpgrp(G_interactive_fd, getpid()); |
Denis Vlasenko | 4ecfcdc | 2008-02-11 08:32:31 +0000 | [diff] [blame] | 5537 | /* -1 is special - makes xfuncs longjmp, not exit |
Denis Vlasenko | c04163a | 2008-02-11 08:30:53 +0000 | [diff] [blame] | 5538 | * (we reset die_sleep = 0 whereever we [v]fork) */ |
Denis Vlasenko | af07b7c | 2009-04-07 13:26:18 +0000 | [diff] [blame] | 5539 | enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */ |
Denis Vlasenko | 54e7ffb | 2007-04-21 00:03:36 +0000 | [diff] [blame] | 5540 | if (setjmp(die_jmp)) { |
| 5541 | /* xfunc has failed! die die die */ |
| 5542 | hush_exit(xfunc_error_retval); |
| 5543 | } |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5544 | } else if (!signal_mask_is_inited) { |
| 5545 | block_signals(0); /* 0: called 1st time */ |
| 5546 | } /* else: block_signals(0) was done before */ |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5547 | #elif ENABLE_HUSH_INTERACTIVE |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5548 | /* No job control compiled in, only prompt/line editing */ |
| 5549 | if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) { |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5550 | G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255); |
| 5551 | if (G_interactive_fd < 0) { |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5552 | /* try to dup to any fd */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5553 | G_interactive_fd = dup(STDIN_FILENO); |
| 5554 | if (G_interactive_fd < 0) |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5555 | /* give up */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5556 | G_interactive_fd = 0; |
Denis Vlasenko | e3f2f89 | 2007-04-28 16:48:27 +0000 | [diff] [blame] | 5557 | } |
| 5558 | } |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5559 | if (G_interactive_fd) { |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5560 | close_on_exec_on(G_interactive_fd); |
| 5561 | block_signals(signal_mask_is_inited); |
| 5562 | } else if (!signal_mask_is_inited) { |
| 5563 | block_signals(0); |
| 5564 | } |
| 5565 | #else |
| 5566 | /* We have interactiveness code disabled */ |
| 5567 | if (!signal_mask_is_inited) { |
| 5568 | block_signals(0); |
| 5569 | } |
| 5570 | #endif |
| 5571 | /* bash: |
| 5572 | * if interactive but not a login shell, sources ~/.bashrc |
| 5573 | * (--norc turns this off, --rcfile <file> overrides) |
| 5574 | */ |
| 5575 | |
| 5576 | if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) { |
Mike Frysinger | 258275d | 2009-04-05 21:19:43 +0000 | [diff] [blame] | 5577 | printf("\n\n%s hush - the humble shell\n", bb_banner); |
Mike Frysinger | b2705e1 | 2009-03-23 08:44:02 +0000 | [diff] [blame] | 5578 | printf("Enter 'help' for a list of built-in commands.\n\n"); |
| 5579 | } |
| 5580 | |
Denis Vlasenko | f937528 | 2009-04-05 19:13:39 +0000 | [diff] [blame] | 5581 | parse_and_run_file(stdin); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5582 | |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5583 | final_return: |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 5584 | #if ENABLE_FEATURE_CLEAN_UP |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5585 | if (G.cwd != bb_msg_unknown) |
| 5586 | free((char*)G.cwd); |
| 5587 | cur_var = G.top_var->next; |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5588 | while (cur_var) { |
| 5589 | struct variable *tmp = cur_var; |
| 5590 | if (!cur_var->max_len) |
Denis Vlasenko | 28c0f0f | 2007-05-25 02:46:01 +0000 | [diff] [blame] | 5591 | free(cur_var->varstr); |
Denis Vlasenko | d76c049 | 2007-05-25 02:16:25 +0000 | [diff] [blame] | 5592 | cur_var = cur_var->next; |
| 5593 | free(tmp); |
Eric Andersen | aeb44c4 | 2001-05-22 20:29:00 +0000 | [diff] [blame] | 5594 | } |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5595 | #endif |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 5596 | hush_exit(G.last_exitcode); |
Eric Andersen | 25f2703 | 2001-04-26 23:22:31 +0000 | [diff] [blame] | 5597 | } |
Denis Vlasenko | 96702ca | 2007-11-23 23:28:55 +0000 | [diff] [blame] | 5598 | |
| 5599 | |
| 5600 | #if ENABLE_LASH |
| 5601 | int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 5602 | int lash_main(int argc, char **argv) |
| 5603 | { |
| 5604 | //bb_error_msg("lash is deprecated, please use hush instead"); |
| 5605 | return hush_main(argc, argv); |
| 5606 | } |
| 5607 | #endif |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5608 | |
| 5609 | |
| 5610 | /* |
| 5611 | * Built-ins |
| 5612 | */ |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5613 | static int builtin_trap(char **argv) |
| 5614 | { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5615 | int i; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5616 | int sig; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5617 | char *new_cmd; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5618 | |
| 5619 | if (!G.traps) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5620 | G.traps = xzalloc(sizeof(G.traps[0]) * NSIG); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5621 | |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 5622 | argv++; |
| 5623 | if (!*argv) { |
| 5624 | /* No args: print all trapped. This isn't 100% correct as we |
| 5625 | * 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] | 5626 | */ |
| 5627 | for (i = 0; i < NSIG; ++i) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5628 | if (G.traps[i]) |
| 5629 | printf("trap -- '%s' %s\n", G.traps[i], get_signame(i)); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5630 | return EXIT_SUCCESS; |
| 5631 | } |
| 5632 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5633 | new_cmd = NULL; |
| 5634 | i = 0; |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 5635 | /* If first arg is decimal: reset all specified signals */ |
| 5636 | sig = bb_strtou(*argv, NULL, 10); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5637 | if (errno == 0) { |
| 5638 | int ret; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5639 | set_all: |
| 5640 | ret = EXIT_SUCCESS; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5641 | while (*argv) { |
| 5642 | sig = get_signum(*argv++); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5643 | if (sig < 0 || sig >= NSIG) { |
| 5644 | ret = EXIT_FAILURE; |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 5645 | /* Mimic bash message exactly */ |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5646 | bb_perror_msg("trap: %s: invalid signal specification", argv[i]); |
| 5647 | continue; |
| 5648 | } |
| 5649 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5650 | free(G.traps[sig]); |
| 5651 | G.traps[sig] = xstrdup(new_cmd); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5652 | |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5653 | debug_printf("trap: setting SIG%s (%i) to '%s'", |
| 5654 | get_signame(sig), sig, G.traps[sig]); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5655 | |
| 5656 | /* There is no signal for 0 (EXIT) */ |
| 5657 | if (sig == 0) |
| 5658 | continue; |
| 5659 | |
| 5660 | if (new_cmd) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5661 | sigaddset(&G.blocked_set, sig); |
| 5662 | } else { |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 5663 | /* There was a trap handler, we are removing it |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5664 | * (if sig has non-DFL handling, |
| 5665 | * we don't need to do anything) */ |
| 5666 | if (sig < 32 && (G.non_DFL_mask & (1 << sig))) |
| 5667 | continue; |
| 5668 | sigdelset(&G.blocked_set, sig); |
| 5669 | } |
| 5670 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5671 | } |
| 5672 | return ret; |
| 5673 | } |
| 5674 | |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 5675 | /* First arg is "-": reset all specified to default */ |
| 5676 | /* First arg is "": ignore all specified */ |
| 5677 | /* Everything else: execute first arg upon signal */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5678 | if (!argv[1]) { |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5679 | bb_error_msg("trap: invalid arguments"); |
| 5680 | return EXIT_FAILURE; |
| 5681 | } |
Denis Vlasenko | c8d2733 | 2009-04-06 10:47:21 +0000 | [diff] [blame] | 5682 | if (NOT_LONE_DASH(*argv)) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5683 | new_cmd = *argv; |
| 5684 | argv++; |
Mike Frysinger | 9f8128f | 2009-03-29 23:49:37 +0000 | [diff] [blame] | 5685 | goto set_all; |
| 5686 | } |
| 5687 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 5688 | static int builtin_true(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5689 | { |
| 5690 | return 0; |
| 5691 | } |
| 5692 | |
| 5693 | static int builtin_test(char **argv) |
| 5694 | { |
| 5695 | int argc = 0; |
| 5696 | while (*argv) { |
| 5697 | argc++; |
| 5698 | argv++; |
| 5699 | } |
| 5700 | return test_main(argc, argv - argc); |
| 5701 | } |
| 5702 | |
| 5703 | static int builtin_echo(char **argv) |
| 5704 | { |
| 5705 | int argc = 0; |
| 5706 | while (*argv) { |
| 5707 | argc++; |
| 5708 | argv++; |
| 5709 | } |
| 5710 | return echo_main(argc, argv - argc); |
| 5711 | } |
| 5712 | |
| 5713 | static int builtin_eval(char **argv) |
| 5714 | { |
| 5715 | int rcode = EXIT_SUCCESS; |
| 5716 | |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5717 | if (*++argv) { |
| 5718 | char *str = expand_strvec_to_string(argv); |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5719 | /* bash: |
| 5720 | * eval "echo Hi; done" ("done" is syntax error): |
| 5721 | * "echo Hi" will not execute too. |
| 5722 | */ |
| 5723 | parse_and_run_string(str); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5724 | free(str); |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 5725 | rcode = G.last_exitcode; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5726 | } |
| 5727 | return rcode; |
| 5728 | } |
| 5729 | |
| 5730 | static int builtin_cd(char **argv) |
| 5731 | { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5732 | const char *newdir = argv[1]; |
| 5733 | if (newdir == NULL) { |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 5734 | /* bash does nothing (exitcode 0) if HOME is ""; if it's unset, |
| 5735 | * bash says "bash: cd: HOME not set" and does nothing (exitcode 1) |
| 5736 | */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5737 | newdir = getenv("HOME") ? : "/"; |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5738 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5739 | if (chdir(newdir)) { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 5740 | /* Mimic bash message exactly */ |
| 5741 | bb_perror_msg("cd: %s", newdir); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5742 | return EXIT_FAILURE; |
| 5743 | } |
| 5744 | set_cwd(); |
| 5745 | return EXIT_SUCCESS; |
| 5746 | } |
| 5747 | |
| 5748 | static int builtin_exec(char **argv) |
| 5749 | { |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5750 | if (*++argv == NULL) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5751 | return EXIT_SUCCESS; /* bash does this */ |
| 5752 | { |
| 5753 | #if !BB_MMU |
Denis Vlasenko | f886fd2 | 2008-10-13 12:36:05 +0000 | [diff] [blame] | 5754 | nommu_save_t dummy; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5755 | #endif |
| 5756 | // FIXME: if exec fails, bash does NOT exit! We do... |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5757 | pseudo_exec_argv(&dummy, argv, 0, NULL); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5758 | /* never returns */ |
| 5759 | } |
| 5760 | } |
| 5761 | |
| 5762 | static int builtin_exit(char **argv) |
| 5763 | { |
Denis Vlasenko | cd418a2 | 2009-04-06 18:08:35 +0000 | [diff] [blame] | 5764 | debug_printf_exec("%s()\n", __func__); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5765 | // TODO: bash does it ONLY on top-level sh exit (+interacive only?) |
| 5766 | //puts("exit"); /* bash does it */ |
| 5767 | // TODO: warn if we have background jobs: "There are stopped jobs" |
| 5768 | // On second consecutive 'exit', exit anyway. |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5769 | if (*++argv == NULL) |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 5770 | hush_exit(G.last_exitcode); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5771 | /* mimic bash: exit 123abc == exit 255 + error msg */ |
| 5772 | xfunc_error_retval = 255; |
| 5773 | /* bash: exit -2 == exit 254, no error msg */ |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5774 | hush_exit(xatoi(*argv) & 0xff); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5775 | } |
| 5776 | |
| 5777 | static int builtin_export(char **argv) |
| 5778 | { |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5779 | if (*++argv == NULL) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5780 | // TODO: |
| 5781 | // ash emits: export VAR='VAL' |
| 5782 | // bash: declare -x VAR="VAL" |
| 5783 | // (both also escape as needed (quotes, $, etc)) |
| 5784 | char **e = environ; |
| 5785 | if (e) |
| 5786 | while (*e) |
| 5787 | puts(*e++); |
| 5788 | return EXIT_SUCCESS; |
| 5789 | } |
| 5790 | |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5791 | do { |
| 5792 | const char *value; |
| 5793 | char *name = *argv; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5794 | |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5795 | value = strchr(name, '='); |
| 5796 | if (!value) { |
| 5797 | /* They are exporting something without a =VALUE */ |
| 5798 | struct variable *var; |
| 5799 | |
| 5800 | var = get_local_var(name); |
| 5801 | if (var) { |
| 5802 | var->flg_export = 1; |
| 5803 | debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr); |
| 5804 | putenv(var->varstr); |
| 5805 | } |
| 5806 | /* bash does not return an error when trying to export |
| 5807 | * an undefined variable. Do likewise. */ |
| 5808 | continue; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5809 | } |
Denis Vlasenko | b0a6478 | 2009-04-06 11:33:07 +0000 | [diff] [blame] | 5810 | set_local_var(xstrdup(name), 1, 0); |
| 5811 | } while (*++argv); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5812 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5813 | return EXIT_SUCCESS; |
| 5814 | } |
| 5815 | |
| 5816 | #if ENABLE_HUSH_JOB |
| 5817 | /* built-in 'fg' and 'bg' handler */ |
| 5818 | static int builtin_fg_bg(char **argv) |
| 5819 | { |
| 5820 | int i, jobnum; |
| 5821 | struct pipe *pi; |
| 5822 | |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5823 | if (!G_interactive_fd) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5824 | return EXIT_FAILURE; |
| 5825 | /* If they gave us no args, assume they want the last backgrounded task */ |
| 5826 | if (!argv[1]) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5827 | for (pi = G.job_list; pi; pi = pi->next) { |
| 5828 | if (pi->jobid == G.last_jobid) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5829 | goto found; |
| 5830 | } |
| 5831 | } |
| 5832 | bb_error_msg("%s: no current job", argv[0]); |
| 5833 | return EXIT_FAILURE; |
| 5834 | } |
| 5835 | if (sscanf(argv[1], "%%%d", &jobnum) != 1) { |
| 5836 | bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]); |
| 5837 | return EXIT_FAILURE; |
| 5838 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5839 | for (pi = G.job_list; pi; pi = pi->next) { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5840 | if (pi->jobid == jobnum) { |
| 5841 | goto found; |
| 5842 | } |
| 5843 | } |
| 5844 | bb_error_msg("%s: %d: no such job", argv[0], jobnum); |
| 5845 | return EXIT_FAILURE; |
| 5846 | found: |
| 5847 | // TODO: bash prints a string representation |
| 5848 | // of job being foregrounded (like "sleep 1 | cat") |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 5849 | if (argv[0][0] == 'f') { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5850 | /* Put the job into the foreground. */ |
Denis Vlasenko | 60b392f | 2009-04-03 19:14:32 +0000 | [diff] [blame] | 5851 | tcsetpgrp(G_interactive_fd, pi->pgrp); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5852 | } |
| 5853 | |
| 5854 | /* Restart the processes in the job */ |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 5855 | debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp); |
| 5856 | for (i = 0; i < pi->num_cmds; i++) { |
| 5857 | debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid); |
| 5858 | pi->cmds[i].is_stopped = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5859 | } |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 5860 | pi->stopped_cmds = 0; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5861 | |
| 5862 | i = kill(- pi->pgrp, SIGCONT); |
| 5863 | if (i < 0) { |
| 5864 | if (errno == ESRCH) { |
| 5865 | delete_finished_bg_job(pi); |
| 5866 | return EXIT_SUCCESS; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5867 | } |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 5868 | bb_perror_msg("kill (SIGCONT)"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5869 | } |
| 5870 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 5871 | if (argv[0][0] == 'f') { |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5872 | remove_bg_job(pi); |
| 5873 | return checkjobs_and_fg_shell(pi); |
| 5874 | } |
| 5875 | return EXIT_SUCCESS; |
| 5876 | } |
| 5877 | #endif |
| 5878 | |
| 5879 | #if ENABLE_HUSH_HELP |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 5880 | static int builtin_help(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5881 | { |
| 5882 | const struct built_in_command *x; |
| 5883 | |
Denis Vlasenko | 34d4d89 | 2009-04-04 20:24:37 +0000 | [diff] [blame] | 5884 | printf("\n" |
| 5885 | "Built-in commands:\n" |
| 5886 | "------------------\n"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5887 | for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) { |
| 5888 | printf("%s\t%s\n", x->cmd, x->descr); |
| 5889 | } |
| 5890 | printf("\n\n"); |
| 5891 | return EXIT_SUCCESS; |
| 5892 | } |
| 5893 | #endif |
| 5894 | |
| 5895 | #if ENABLE_HUSH_JOB |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 5896 | static int builtin_jobs(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5897 | { |
| 5898 | struct pipe *job; |
| 5899 | const char *status_string; |
| 5900 | |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5901 | for (job = G.job_list; job; job = job->next) { |
Denis Vlasenko | 9af22c7 | 2008-10-09 12:54:58 +0000 | [diff] [blame] | 5902 | if (job->alive_cmds == job->stopped_cmds) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5903 | status_string = "Stopped"; |
| 5904 | else |
| 5905 | status_string = "Running"; |
| 5906 | |
| 5907 | printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext); |
| 5908 | } |
| 5909 | return EXIT_SUCCESS; |
| 5910 | } |
| 5911 | #endif |
| 5912 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 5913 | static int builtin_pwd(char **argv UNUSED_PARAM) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5914 | { |
| 5915 | puts(set_cwd()); |
| 5916 | return EXIT_SUCCESS; |
| 5917 | } |
| 5918 | |
| 5919 | static int builtin_read(char **argv) |
| 5920 | { |
| 5921 | char *string; |
| 5922 | const char *name = argv[1] ? argv[1] : "REPLY"; |
Denis Vlasenko | a0e6512 | 2009-04-05 23:39:14 +0000 | [diff] [blame] | 5923 | //TODO: check that argv[1] is a valid variable name |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5924 | |
| 5925 | string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL); |
Denis Vlasenko | 0bb4a23 | 2009-04-05 01:42:59 +0000 | [diff] [blame] | 5926 | return set_local_var(string, 0, 0); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5927 | } |
| 5928 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5929 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set |
| 5930 | * built-in 'set' handler |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5931 | * SUSv3 says: |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5932 | * set [-abCefhmnuvx] [-o option] [argument...] |
| 5933 | * set [+abCefhmnuvx] [+o option] [argument...] |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5934 | * set -- [argument...] |
| 5935 | * set -o |
| 5936 | * set +o |
| 5937 | * Implementations shall support the options in both their hyphen and |
| 5938 | * plus-sign forms. These options can also be specified as options to sh. |
| 5939 | * Examples: |
| 5940 | * Write out all variables and their values: set |
| 5941 | * Set $1, $2, and $3 and set "$#" to 3: set c a b |
| 5942 | * Turn on the -x and -v options: set -xv |
| 5943 | * Unset all positional parameters: set -- |
| 5944 | * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x" |
| 5945 | * Set the positional parameters to the expansion of x, even if x expands |
| 5946 | * with a leading '-' or '+': set -- $x |
| 5947 | * |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5948 | * 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] | 5949 | */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5950 | static int builtin_set(char **argv) |
| 5951 | { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5952 | int n; |
| 5953 | char **pp, **g_argv; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5954 | char *arg = *++argv; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5955 | |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5956 | if (arg == NULL) { |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5957 | struct variable *e; |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 5958 | for (e = G.top_var; e; e = e->next) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5959 | puts(e->varstr); |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5960 | return EXIT_SUCCESS; |
Denis Vlasenko | 11fb7cf | 2009-03-20 10:13:08 +0000 | [diff] [blame] | 5961 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 5962 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5963 | do { |
| 5964 | if (!strcmp(arg, "--")) { |
| 5965 | ++argv; |
| 5966 | goto set_argv; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5967 | } |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5968 | |
| 5969 | if (arg[0] == '+' || arg[0] == '-') { |
| 5970 | for (n = 1; arg[n]; ++n) |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 5971 | if (set_mode(arg[0], arg[n])) |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5972 | goto error; |
| 5973 | continue; |
| 5974 | } |
| 5975 | |
| 5976 | break; |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5977 | } while ((arg = *++argv) != NULL); |
| 5978 | /* Now argv[0] is 1st argument */ |
| 5979 | |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 5980 | /* Only reset global_argv if we didn't process anything */ |
| 5981 | if (arg == NULL) |
| 5982 | return EXIT_SUCCESS; |
| 5983 | set_argv: |
| 5984 | |
Denis Vlasenko | 424f79b | 2009-03-22 14:23:34 +0000 | [diff] [blame] | 5985 | /* NB: G.global_argv[0] ($0) is never freed/changed */ |
| 5986 | g_argv = G.global_argv; |
| 5987 | if (G.global_args_malloced) { |
| 5988 | pp = g_argv; |
| 5989 | while (*++pp) |
| 5990 | free(*pp); |
| 5991 | g_argv[1] = NULL; |
| 5992 | } else { |
| 5993 | G.global_args_malloced = 1; |
| 5994 | pp = xzalloc(sizeof(pp[0]) * 2); |
| 5995 | pp[0] = g_argv[0]; /* retain $0 */ |
| 5996 | g_argv = pp; |
| 5997 | } |
| 5998 | /* This realloc's G.global_argv */ |
| 5999 | G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1); |
| 6000 | |
| 6001 | n = 1; |
| 6002 | while (*++pp) |
| 6003 | n++; |
| 6004 | G.global_argc = n; |
| 6005 | |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6006 | return EXIT_SUCCESS; |
Mike Frysinger | ad88d5a | 2009-03-28 13:44:51 +0000 | [diff] [blame] | 6007 | |
| 6008 | /* Nothing known, so abort */ |
| 6009 | error: |
| 6010 | bb_error_msg("set: %s: invalid option", arg); |
| 6011 | return EXIT_FAILURE; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6012 | } |
| 6013 | |
| 6014 | static int builtin_shift(char **argv) |
| 6015 | { |
| 6016 | int n = 1; |
| 6017 | if (argv[1]) { |
| 6018 | n = atoi(argv[1]); |
| 6019 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6020 | if (n >= 0 && n < G.global_argc) { |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 6021 | if (G.global_args_malloced) { |
| 6022 | int m = 1; |
| 6023 | while (m <= n) |
| 6024 | free(G.global_argv[m++]); |
| 6025 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6026 | G.global_argc -= n; |
Denis Vlasenko | e1300f6 | 2009-03-22 11:41:18 +0000 | [diff] [blame] | 6027 | memmove(&G.global_argv[1], &G.global_argv[n+1], |
| 6028 | G.global_argc * sizeof(G.global_argv[0])); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6029 | return EXIT_SUCCESS; |
| 6030 | } |
| 6031 | return EXIT_FAILURE; |
| 6032 | } |
| 6033 | |
| 6034 | static int builtin_source(char **argv) |
| 6035 | { |
| 6036 | FILE *input; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6037 | |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6038 | if (*++argv == NULL) |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6039 | return EXIT_FAILURE; |
| 6040 | |
| 6041 | /* XXX search through $PATH is missing */ |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6042 | input = fopen_or_warn(*argv, "r"); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6043 | if (!input) { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6044 | /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6045 | return EXIT_FAILURE; |
| 6046 | } |
| 6047 | close_on_exec_on(fileno(input)); |
| 6048 | |
| 6049 | /* Now run the file */ |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6050 | //TODO: |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6051 | /* 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] | 6052 | * (pointer only is OK!) on this stack frame, |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6053 | * set G.global_argv=argv+1, recurse, and restore. */ |
Denis Vlasenko | b6e6556 | 2009-04-03 16:49:04 +0000 | [diff] [blame] | 6054 | parse_and_run_file(input); |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6055 | fclose(input); |
Denis Vlasenko | ab2b064 | 2009-04-06 18:42:11 +0000 | [diff] [blame] | 6056 | return G.last_exitcode; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6057 | } |
| 6058 | |
| 6059 | static int builtin_umask(char **argv) |
| 6060 | { |
| 6061 | mode_t new_umask; |
| 6062 | const char *arg = argv[1]; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6063 | if (arg) { |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6064 | //TODO: umask may take chmod-like symbolic masks |
Mike Frysinger | 40b8dc4 | 2009-03-29 00:50:30 +0000 | [diff] [blame] | 6065 | new_umask = bb_strtou(arg, NULL, 8); |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6066 | if (errno) { |
| 6067 | //Message? bash examples: |
| 6068 | //bash: umask: 'q': invalid symbolic mode operator |
| 6069 | //bash: umask: 999: octal number out of range |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6070 | return EXIT_FAILURE; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6071 | } |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6072 | } else { |
| 6073 | new_umask = umask(0); |
| 6074 | printf("%.3o\n", (unsigned) new_umask); |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6075 | /* fall through and restore new_umask which we set to 0 */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6076 | } |
| 6077 | umask(new_umask); |
| 6078 | return EXIT_SUCCESS; |
| 6079 | } |
| 6080 | |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6081 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */ |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6082 | static int builtin_unset(char **argv) |
| 6083 | { |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6084 | int ret; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6085 | char var; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6086 | |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6087 | if (!*++argv) |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6088 | return EXIT_SUCCESS; |
| 6089 | |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6090 | var = 'v'; |
| 6091 | if (argv[0][0] == '-') { |
| 6092 | switch (argv[0][1]) { |
| 6093 | case 'v': |
| 6094 | case 'f': |
| 6095 | var = argv[0][1]; |
| 6096 | break; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6097 | default: |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6098 | bb_error_msg("unset: %s: invalid option", *argv); |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6099 | return EXIT_FAILURE; |
| 6100 | } |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6101 | //TODO: disallow "unset -vf ..." too |
| 6102 | argv++; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6103 | } |
| 6104 | |
| 6105 | ret = EXIT_SUCCESS; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6106 | while (*argv) { |
| 6107 | if (var == 'v') { |
| 6108 | if (unset_local_var(*argv)) { |
| 6109 | /* unset <nonexistent_var> doesn't fail. |
| 6110 | * Error is when one tries to unset RO var. |
| 6111 | * Message was printed by unset_local_var. */ |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6112 | ret = EXIT_FAILURE; |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6113 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6114 | } |
| 6115 | #if ENABLE_HUSH_FUNCTIONS |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6116 | else { |
| 6117 | unset_local_func(*argv); |
| 6118 | } |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6119 | #endif |
Denis Vlasenko | bfbc971 | 2009-04-06 12:04:42 +0000 | [diff] [blame] | 6120 | argv++; |
Mike Frysinger | d690f68 | 2009-03-30 06:50:54 +0000 | [diff] [blame] | 6121 | } |
| 6122 | return ret; |
Denis Vlasenko | c7985b7 | 2008-06-17 05:43:38 +0000 | [diff] [blame] | 6123 | } |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 6124 | |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 6125 | /* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */ |
| 6126 | static int builtin_wait(char **argv) |
| 6127 | { |
| 6128 | int ret = EXIT_SUCCESS; |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 6129 | int status, sig; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 6130 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 6131 | if (*++argv == NULL) { |
| 6132 | /* Don't care about wait results */ |
| 6133 | /* Note 1: must wait until there are no more children */ |
| 6134 | /* Note 2: must be interruptible */ |
| 6135 | /* Examples: |
| 6136 | * $ sleep 3 & sleep 6 & wait |
| 6137 | * [1] 30934 sleep 3 |
| 6138 | * [2] 30935 sleep 6 |
| 6139 | * [1] Done sleep 3 |
| 6140 | * [2] Done sleep 6 |
| 6141 | * $ sleep 3 & sleep 6 & wait |
| 6142 | * [1] 30936 sleep 3 |
| 6143 | * [2] 30937 sleep 6 |
| 6144 | * [1] Done sleep 3 |
| 6145 | * ^C <-- after ~4 sec from keyboard |
| 6146 | * $ |
| 6147 | */ |
| 6148 | sigaddset(&G.blocked_set, SIGCHLD); |
| 6149 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 6150 | while (1) { |
| 6151 | checkjobs(NULL); |
| 6152 | if (errno == ECHILD) |
| 6153 | break; |
| 6154 | /* Wait for SIGCHLD or any other signal of interest */ |
| 6155 | /* sigtimedwait with infinite timeout: */ |
| 6156 | sig = sigwaitinfo(&G.blocked_set, NULL); |
| 6157 | if (sig > 0) { |
| 6158 | sig = check_and_run_traps(sig); |
| 6159 | if (sig && sig != SIGCHLD) { /* see note 2 */ |
| 6160 | ret = 128 + sig; |
| 6161 | break; |
| 6162 | } |
| 6163 | } |
| 6164 | } |
| 6165 | sigdelset(&G.blocked_set, SIGCHLD); |
| 6166 | sigprocmask(SIG_SETMASK, &G.blocked_set, NULL); |
| 6167 | return ret; |
| 6168 | } |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 6169 | |
Denis Vlasenko | 7566bae | 2009-03-31 17:24:49 +0000 | [diff] [blame] | 6170 | /* This is probably buggy wrt interruptible-ness */ |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 6171 | while (*argv) { |
| 6172 | pid_t pid = bb_strtou(*argv, NULL, 10); |
Mike Frysinger | 40b8dc4 | 2009-03-29 00:50:30 +0000 | [diff] [blame] | 6173 | if (errno) { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 6174 | /* mimic bash message */ |
| 6175 | 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] | 6176 | return EXIT_FAILURE; |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 6177 | } |
| 6178 | if (waitpid(pid, &status, 0) == pid) { |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 6179 | if (WIFSIGNALED(status)) |
| 6180 | ret = 128 + WTERMSIG(status); |
| 6181 | else if (WIFEXITED(status)) |
| 6182 | ret = WEXITSTATUS(status); |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 6183 | else /* wtf? */ |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 6184 | ret = EXIT_FAILURE; |
| 6185 | } else { |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 6186 | bb_perror_msg("wait %s", *argv); |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 6187 | ret = 127; |
| 6188 | } |
Denis Vlasenko | d576293 | 2009-03-31 11:22:57 +0000 | [diff] [blame] | 6189 | argv++; |
Mike Frysinger | 56bdea1 | 2009-03-28 20:01:58 +0000 | [diff] [blame] | 6190 | } |
| 6191 | |
| 6192 | return ret; |
| 6193 | } |
| 6194 | |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 6195 | #if ENABLE_HUSH_LOOPS |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 6196 | static int builtin_break(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 6197 | { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6198 | if (G.depth_of_loop == 0) { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 6199 | bb_error_msg("%s: only meaningful in a loop", argv[0]); |
Denis Vlasenko | fcf37c3 | 2008-07-29 11:37:15 +0000 | [diff] [blame] | 6200 | return EXIT_SUCCESS; /* bash compat */ |
| 6201 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6202 | G.flag_break_continue++; /* BC_BREAK = 1 */ |
| 6203 | G.depth_break_continue = 1; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 6204 | if (argv[1]) { |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6205 | G.depth_break_continue = bb_strtou(argv[1], NULL, 10); |
| 6206 | if (errno || !G.depth_break_continue || argv[2]) { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 6207 | bb_error_msg("%s: bad arguments", argv[0]); |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6208 | G.flag_break_continue = BC_BREAK; |
| 6209 | G.depth_break_continue = UINT_MAX; |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 6210 | } |
| 6211 | } |
Denis Vlasenko | 87a8655 | 2008-07-29 19:43:10 +0000 | [diff] [blame] | 6212 | if (G.depth_of_loop < G.depth_break_continue) |
| 6213 | G.depth_break_continue = G.depth_of_loop; |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 6214 | return EXIT_SUCCESS; |
| 6215 | } |
| 6216 | |
Denis Vlasenko | 6a2d40f | 2008-07-28 23:07:06 +0000 | [diff] [blame] | 6217 | static int builtin_continue(char **argv) |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 6218 | { |
Denis Vlasenko | 4f504a9 | 2008-07-29 19:48:30 +0000 | [diff] [blame] | 6219 | G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */ |
| 6220 | return builtin_break(argv); |
Denis Vlasenko | bcb2553 | 2008-07-28 23:04:34 +0000 | [diff] [blame] | 6221 | } |
Denis Vlasenko | dadfb49 | 2008-07-29 10:16:05 +0000 | [diff] [blame] | 6222 | #endif |